:root {
  --gold: #d4a017;
  --gold-bright: #f0c43a;
  --gold-soft: #e8d7a2;
  --teal: #4a9d96;
  --teal-deep: #2d6f6a;
  --teal-mist: #d7ece8;
  --ink: #141c28;
  --ink-soft: #1c2736;
  --dusk: #243044;
  --cream: #f6f1e6;
  --paper: #fffdf8;
  --sand: #ebe4d4;
  --text: #1c2430;
  --muted: #5c6570;
  --line: rgba(20, 28, 40, 0.1);
  --line-strong: rgba(20, 28, 40, 0.16);
  --shadow: 0 18px 40px rgba(20, 28, 40, 0.08);
  --shadow-soft: 0 8px 24px rgba(20, 28, 40, 0.06);
  --radius: 20px;
  --radius-sm: 12px;
  --header-h: 76px;
  --container: 1180px;
  --font-display: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
.btn {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 230, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(20, 28, 40, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
  flex-shrink: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--teal-deep);
  background: rgba(74, 157, 150, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(ellipse 70% 55% at 85% -10%, rgba(240, 196, 58, 0.2), transparent 55%),
    radial-gradient(ellipse 45% 40% at 8% 110%, rgba(74, 157, 150, 0.22), transparent 55%),
    linear-gradient(165deg, #101722 0%, #182233 52%, #1d2c3a 100%);
  padding: 4.5rem 0 5rem;
  margin-bottom: 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/stars.svg") center / cover no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: #f7f1e4;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-lead {
  font-size: 1.2rem;
  color: #d5ddd8;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  width: fit-content;
  max-width: 100%;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-bright);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: #f6efe0;
  border: 1px solid rgba(246, 241, 230, 0.28);
}

.btn-ghost:hover {
  color: #fff;
  border-color: #fff;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}

.btn-teal:hover {
  background: var(--teal-deep);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.hero-card {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(246, 241, 230, 0.14);
  border-radius: 24px;
  padding: 1.6rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.hero-card h2 {
  color: #f7f1e4;
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.hero-card p {
  color: #cfd8d4;
  margin-bottom: 1.1rem;
}

.hero-card .btn {
  width: 100%;
}

.hero-signs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.sign-chip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #f6efe0;
  border: 1px solid rgba(246, 241, 230, 0.2);
}

.sign-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.section {
  margin-bottom: 3.5rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  font-size: 2.4rem;
  margin: 0;
}

.section-kicker {
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.75fr);
  gap: 2.4rem;
  padding: 2.2rem 0 3.5rem;
}

.layout.is-full {
  grid-template-columns: 1fr;
  padding-top: 0;
}

.layout-main .card-grid {
  grid-template-columns: repeat(2, 1fr);
}

.lede {
  color: var(--muted);
  font-size: 1.15rem;
  margin: 0.8rem 0 0.4rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.post-card,
.list-card,
.widget,
.article,
.page-hero,
.contact-card,
.author-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.post-card a {
  color: inherit;
  text-decoration: none;
}

.post-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand);
}

.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.post-card h3 {
  font-size: 1.35rem;
  margin: 0;
}

.post-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.meta time,
.meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--teal-mist);
  color: var(--teal-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.list-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  margin-bottom: 1.1rem;
}

.list-card-media {
  min-height: 160px;
  background: var(--sand);
}

.list-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-card-body {
  padding: 1.2rem 1.3rem;
}

.list-card h2,
.list-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.list-card h2 a,
.list-card h3 a {
  color: inherit;
  text-decoration: none;
}

.page-hero {
  padding: 1.6rem 1.7rem;
  margin-bottom: 1.4rem;
  background:
    linear-gradient(180deg, rgba(212, 160, 23, 0.08), transparent 60%),
    var(--paper);
}

.page-hero h1 {
  font-size: 2.6rem;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.3rem;
}

.article {
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.article-media img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.article-body {
  padding: 1.8rem 1.8rem 2rem;
}

.article-body h1,
.article-body h2.article-title {
  font-size: 2.5rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.entry-content {
  font-size: 1.08rem;
  max-width: 68ch;
}

.entry-content p {
  margin-bottom: 1.05em;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.4em;
}

.entry-content img {
  border-radius: 14px;
  margin: 1.2rem 0;
}

.share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--paper);
}

.share-btn:hover,
.share-btn.is-copied {
  border-color: var(--gold);
  color: var(--ink);
}

.zodiac-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin: 1.2rem 0 1.6rem;
}

.zodiac-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 0.3rem;
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.zodiac-nav a:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.zodiac-nav img {
  width: 36px;
  height: 36px;
}

.zodiac-entry {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.zodiac-entry img {
  width: 88px;
  height: 88px;
}

.zodiac-entry h3 {
  font-size: 1.45rem;
  margin-bottom: 0.15rem;
}

.zodiac-dates {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.widget {
  padding: 1.3rem 1.25rem 1.4rem;
  margin-bottom: 1.1rem;
}

.widget h2 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.author-widget {
  text-align: center;
}

.author-widget img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.9rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--gold);
}

.author-widget .role {
  color: var(--teal-deep);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.sidebar-post {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}

.sidebar-post:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.sidebar-post img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.sidebar-post h3 {
  font-size: 1rem;
  margin: 0 0 0.2rem;
}

.sidebar-post h3 a {
  color: inherit;
  text-decoration: none;
}

.author-panel {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: center;
}

.author-panel img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
}

.contact-grid {
  display: grid;
  gap: 0.8rem;
}

.contact-card {
  padding: 1rem 1.1rem;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.6rem 0 0.4rem;
}

.pagination a,
.pagination span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  background: var(--paper);
  padding: 0 0.7rem;
}

.pagination .is-current {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.site-footer {
  background: var(--ink);
  color: #d7ddd8;
  padding: 3rem 0 1.4rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.site-footer h2,
.site-footer h3 {
  color: #f6efe0;
  font-size: 1.3rem;
}

.site-footer a {
  color: #d7ddd8;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: #f6efe0;
  text-decoration: none;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-copy {
  border-top: 1px solid rgba(246, 241, 230, 0.1);
  padding-top: 1rem;
  font-size: 0.88rem;
  color: #93a09a;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-band {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--ink);
  color: #d7ddd8;
  border-radius: 28px;
  padding: 2rem;
  margin: 1rem 0 3.2rem;
}

.about-band img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
}

.about-band h2 {
  color: #f6efe0;
  font-size: 2.1rem;
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto;
}

.cookie-bar[hidden] {
  display: none;
}

.empty-state {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.error-page {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.error-page h1 {
  font-size: 4rem;
  margin-bottom: 0.2rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .layout,
  .card-grid,
  .layout-main .card-grid,
  .footer-grid,
  .author-panel,
  .about-band,
  .list-card {
    grid-template-columns: 1fr;
  }

  .zodiac-nav {
    grid-template-columns: repeat(4, 1fr);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 0.6rem 1rem 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    width: 100%;
  }

  .header-inner {
    position: relative;
  }

  .list-card-media {
    min-height: 200px;
  }

  .about-band img,
  .author-panel img {
    width: 100%;
    height: auto;
    max-height: 320px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3rem 0 3.4rem;
  }

  .zodiac-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .zodiac-entry {
    grid-template-columns: 64px 1fr;
  }

  .article-body,
  .page-hero {
    padding: 1.2rem;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .brand-tag {
    display: none;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  h1 { font-size: 2.1rem; }
  .hero h1 { font-size: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
