/* ══════════════════════════════════════════════════════
   Nakshatra — Design System
   ══════════════════════════════════════════════════════ */

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --bg:        #040712;
  --bg2:       #070d1f;
  --bg3:       #0c1432;
  --gold:      #c8974a;
  --gold-lt:   #e8b96a;
  --gold-dk:   #8a6530;
  --saffron:   #e07833;
  --saffron-lt:#f0975a;
  --purple:    #7c3aed;
  --purple-lt: #a855f7;
  --silver:    #94a3b8;
  --white:     #f0ead8;
  --glass-bg:  rgba(255,255,255,.04);
  --glass-bd:  rgba(200,151,74,.18);

  --font-display: 'Cinzel Decorative', serif;
  --font-head:    'Cinzel', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --radius:    12px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.reveal--right {
  transform: translateX(32px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.25rem 2rem;
  transition: background var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(4,7,18,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: .8rem 2rem;
  border-bottom: 1px solid rgba(200,151,74,.12);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: .05em;
}
.nav__logo-symbol { font-size: 1.6rem; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  padding: .5rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 40px;
  color: var(--gold) !important;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero__aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(124,58,237,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 70%, rgba(200,151,74,.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.hero__eyebrow {
  font-family: var(--font-serif);
  font-size: .85rem;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 400;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,151,74,.2);
}
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat__unit { font-family: var(--font-head); font-size: 2rem; color: var(--gold); }
.stat__label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: .25rem;
  display: block;
}

/* ── Zodiac Wheel ── */
.hero__wheel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wheel__glow {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.25) 0%, transparent 70%);
  pointer-events: none;
}
.wheel {
  --wheel-r: 222px;
  position: relative;
  width: 520px;
  height: 520px;
  animation: wheelSpin 90s linear infinite;
}
.wheel__orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform: rotate(calc(var(--i) * 30deg));
}
.wheel__sign {
  position: absolute;
  transform: translateX(-50%) translateY(calc(-1 * var(--wheel-r)));
  animation: signLevel 90s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  width: 40px;
}
.wheel__sign span {
  font-family: var(--font-serif);
  font-size: .55rem;
  letter-spacing: .08em;
  color: var(--gold);
  opacity: .8;
  display: block;
  white-space: nowrap;
}
/* the glyph itself */
.wheel__sign > :first-child {
  font-size: 1.4rem;
  color: var(--gold-lt);
  text-shadow: 0 0 12px rgba(200,151,74,.6);
}
@keyframes wheelSpin {
  to { transform: rotate(360deg); }
}
@keyframes signLevel {
  from { transform: translateX(-50%) translateY(calc(-1 * var(--wheel-r))) rotate(0deg); }
  to   { transform: translateX(-50%) translateY(calc(-1 * var(--wheel-r))) rotate(-360deg); }
}
.wheel__ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(200,151,74,.2);
}
.wheel__ring--outer { width: 460px; height: 460px; }
.wheel__ring--mid   { width: 360px; height: 360px; border-color: rgba(200,151,74,.12); }
.wheel__ring--inner { width: 200px; height: 200px; border-color: rgba(124,58,237,.2); }
.wheel__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,74,.15), transparent);
  border: 1px solid rgba(200,151,74,.4);
  display: flex; align-items: center; justify-content: center;
  animation: wheelSpin 90s linear infinite reverse;
}
.wheel__om {
  font-size: 2rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(200,151,74,.8);
  font-family: serif;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: .6;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.1); }
}

/* ══════════════════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════════════════ */
.ticker-wrap {
  background: linear-gradient(90deg, rgba(200,151,74,.08), rgba(200,151,74,.14), rgba(200,151,74,.08));
  border-top: 1px solid rgba(200,151,74,.2);
  border-bottom: 1px solid rgba(200,151,74,.2);
  overflow: hidden;
  padding: .85rem 0;
}
.ticker {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  will-change: transform;
}
.ticker span {
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--gold);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   SECTIONS — shared
   ══════════════════════════════════════════════════════ */
.section {
  padding: 7rem 0;
}
.section__head {
  text-align: center;
  margin-bottom: 4rem;
}
.section__tag {
  font-family: var(--font-serif);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  font-style: italic;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.section__title em {
  font-style: normal;
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 400;
}
.section__sub {
  font-size: .95rem;
  color: var(--silver);
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #0a0c18;
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,151,74,.35);
}
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(200,151,74,.4);
  color: var(--gold);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(200,151,74,.08);
}
.btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  padding: .75rem 2.5rem;
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--saffron {
  background: linear-gradient(135deg, var(--saffron) 0%, #c05c1a 100%);
  color: #fff;
}
.btn--saffron:hover {
  background: linear-gradient(135deg, var(--saffron-lt) 0%, var(--saffron) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,120,51,.35);
}
.btn--sm { padding: .6rem 1.4rem; font-size: .75rem; }
.btn--xs { padding: .45rem 1rem; font-size: .7rem; border-radius: 6px; }

/* ══════════════════════════════════════════════════════
   GLASS CARD
   ══════════════════════════════════════════════════════ */
.glass-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(
    from var(--angle),
    transparent 30%,
    rgba(200,151,74,.5) 50%,
    rgba(124,58,237,.4) 60%,
    transparent 80%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  animation: rotateBorder 7s linear infinite;
  opacity: 0;
  transition: opacity .4s;
}
.glass-card:hover::before { opacity: 1; }
@keyframes rotateBorder {
  to { --angle: 360deg; }
}

/* ══════════════════════════════════════════════════════
   PREDICTIONS
   ══════════════════════════════════════════════════════ */
.predictions { background: var(--bg); }
.pred__tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
}
.pred__tab {
  padding: .5rem 1.6rem;
  border-radius: 40px;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(200,151,74,.25);
  color: var(--silver);
  transition: all var(--transition);
}
.pred__tab--active,
.pred__tab:hover {
  background: rgba(200,151,74,.12);
  border-color: var(--gold);
  color: var(--gold);
}
.pred__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.pred__card {
  padding: 1.8rem;
  transition: transform var(--transition);
}
.pred__card:hover { transform: translateY(-4px); }
.pred__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pred__glyph {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold-lt);
  text-shadow: 0 0 16px rgba(200,151,74,.5);
}
.pred__sign-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.pred__date-range {
  font-size: .7rem;
  color: var(--silver);
  letter-spacing: .05em;
  margin-top: 2px;
}
.pred__rating {
  margin-left: auto;
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: -.1em;
}
.pred__text {
  font-size: .875rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.pred__link {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: opacity var(--transition);
}
.pred__link:hover { opacity: .7; }

/* ══════════════════════════════════════════════════════
   FOUNDER
   ══════════════════════════════════════════════════════ */
.founder {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.founder__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 15% 50%, rgba(200,151,74,.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(124,58,237,.1) 0%, transparent 55%);
  pointer-events: none;
}
.founder__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 5rem;
}

/* ── Portrait side ── */
.founder__portrait-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
/* Spinning gold ring behind image */
.founder__glow-ring {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(200,151,74,.35);
  box-shadow: 0 0 60px rgba(200,151,74,.1), inset 0 0 40px rgba(200,151,74,.05);
  animation: geomRotate 25s linear infinite;
}
.founder__glow-ring::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px dashed rgba(200,151,74,.2);
}
.founder__glow-ring::after {
  content: '';
  position: absolute;
  inset: 36px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,.2);
}

/* Orbiting symbols */
.founder__orbit {
  position: absolute;
  width: 440px; height: 440px;
  border-radius: 50%;
  animation: geomRotate 18s linear infinite reverse;
  pointer-events: none;
}
.founder__orbit-sym {
  position: absolute;
  font-family: serif;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: .55;
}
.founder__orbit-sym--1 { top: -14px;  left: 50%; transform: translateX(-50%); font-size: 1.5rem; }
.founder__orbit-sym--2 { right: -14px; top: 50%; transform: translateY(-50%); }
.founder__orbit-sym--3 { bottom: -14px; left: 50%; transform: translateX(-50%); }
.founder__orbit-sym--4 { left: -14px;  top: 50%; transform: translateY(-50%); }

/* The actual photo */
.founder__portrait {
  position: relative;
  width: 310px; height: 400px;
  border-radius: 55% 55% 48% 48% / 60% 60% 40% 40%;
  overflow: hidden;
  /* golden border */
  border: 2px solid rgba(200,151,74,.5);
  box-shadow:
    0 0 0 6px rgba(200,151,74,.06),
    0 0 60px rgba(200,151,74,.22),
    0 0 120px rgba(124,58,237,.14),
    0 30px 80px rgba(0,0,0,.6);
  /* Fade the bright background into the dark theme */
  -webkit-mask-image: radial-gradient(ellipse 88% 92% at 50% 48%, black 52%, rgba(0,0,0,.7) 68%, transparent 85%);
  mask-image: radial-gradient(ellipse 88% 92% at 50% 48%, black 52%, rgba(0,0,0,.7) 68%, transparent 85%);
}
.founder__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  /* Tone down slightly to match dark palette */
  filter: brightness(.88) contrast(1.06) saturate(.88);
}
/* Gradient overlay: dark bottom fade + subtle cosmic tint */
.founder__portrait-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 45%, rgba(7,13,31,.75) 100%),
    linear-gradient(135deg, rgba(124,58,237,.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Years badge */
.founder__badge {
  position: absolute;
  bottom: 40px; right: calc(50% - 190px);
  background: linear-gradient(135deg, rgba(200,151,74,.95), rgba(138,101,48,.9));
  border-radius: 12px;
  padding: .75rem 1.1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200,151,74,.3);
  min-width: 100px;
}
.founder__badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a0c18;
  line-height: 1;
}
.founder__badge-num sup { font-size: 1rem; }
.founder__badge-label {
  display: block;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(10,12,24,.75);
  margin-top: 3px;
}

/* ── Content side ── */
.founder__name {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: .5rem;
}
.founder__name em {
  font-style: normal;
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}
.founder__designation {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: 2rem;
  opacity: .85;
}
.founder__quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 0 1rem 1.5rem;
  margin: 0 0 1.75rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(240,234,216,.8);
  line-height: 1.8;
  position: relative;
}
.founder__quote-mark {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.5rem;
  opacity: .6;
}
.founder__bio {
  font-size: .9rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.founder__creds {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.founder__cred {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 1.25rem;
  background: rgba(200,151,74,.05);
  border: 1px solid rgba(200,151,74,.12);
  border-radius: 10px;
  transition: border-color var(--transition), background var(--transition);
}
.founder__cred:hover {
  background: rgba(200,151,74,.09);
  border-color: rgba(200,151,74,.28);
}
.founder__cred-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.founder__cred h4 {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .2rem;
}
.founder__cred p {
  font-size: .75rem;
  color: var(--silver);
  letter-spacing: .03em;
}
.founder__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .founder__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .founder__portrait-wrap { min-height: 420px; }
  .founder__quote { text-align: left; }
  .founder__actions { justify-content: center; }
  .founder__badge { right: calc(50% - 170px); }
}
@media (max-width: 640px) {
  .founder__portrait { width: 260px; height: 330px; }
  .founder__glow-ring { width: 320px; height: 320px; }
  .founder__orbit { width: 360px; height: 360px; }
  .founder__badge { bottom: 20px; right: calc(50% - 150px); }
}

/* ══════════════════════════════════════════════════════
   ASTROLOGERS
   ══════════════════════════════════════════════════════ */
.astrologers {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.astrologers__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(124,58,237,.08) 0%, transparent 70%);
  pointer-events: none;
}
.astro__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.astro__card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,151,74,.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.astro__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--purple));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.astro__card:hover::after { transform: scaleX(1); }
.astro__card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,151,74,.3);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.astro__avatar {
  position: relative;
  width: 100px; height: 100px;
  margin: 0 auto 1.5rem;
}
.astro__geometry {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: geomRotate 20s linear infinite;
}
@keyframes geomRotate { to { transform: rotate(360deg); } }
.astro__initials {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  background: radial-gradient(circle, rgba(200,151,74,.12), transparent 70%);
  border-radius: 50%;
  border: 1px solid rgba(200,151,74,.3);
}
.astro__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .25rem;
}
.astro__title {
  font-size: .78rem;
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
}
.astro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.astro__tags span {
  padding: .2rem .7rem;
  border-radius: 20px;
  font-size: .65rem;
  letter-spacing: .08em;
  background: rgba(200,151,74,.1);
  border: 1px solid rgba(200,151,74,.2);
  color: var(--gold);
}
.astro__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: .75rem;
  color: var(--silver);
}
.astro__price { color: var(--gold); font-weight: 500; }

/* ══════════════════════════════════════════════════════
   PUJA
   ══════════════════════════════════════════════════════ */
.puja {
  background: var(--bg);
  position: relative;
}
.puja::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}
.puja__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.puja__card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(224,120,51,.15);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.puja__card:hover {
  transform: translateY(-4px);
  border-color: rgba(224,120,51,.4);
  box-shadow: 0 16px 40px rgba(224,120,51,.12);
}
.puja__card--featured {
  border-color: rgba(224,120,51,.4);
  background: rgba(224,120,51,.06);
}
.puja__badge {
  position: absolute;
  top: -1px; right: 1.2rem;
  background: var(--saffron);
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 0 0 8px 8px;
}
.puja__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.puja__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
}
.puja__desc {
  font-size: .85rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.puja__includes {
  margin-bottom: 1.5rem;
}
.puja__includes li {
  font-size: .78rem;
  color: rgba(200,151,74,.8);
  padding: .25rem 0;
  letter-spacing: .03em;
}
.puja__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(224,120,51,.15);
  padding-top: 1rem;
}
.puja__price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--saffron);
}

/* ══════════════════════════════════════════════════════
   SHOP
   ══════════════════════════════════════════════════════ */
.shop { background: var(--bg2); }
.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.shop__card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,151,74,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.shop__card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,151,74,.3);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.shop__img-wrap {
  position: relative;
  height: 200px;
}
.shop__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.shop__img--crystal  { background: linear-gradient(135deg, #1a1040, #0d1f3c); }
.shop__img--rudraksha{ background: linear-gradient(135deg, #2a1500, #1a0d00); }
.shop__img--yantra   { background: linear-gradient(135deg, #1a1200, #2a1e00); }
.shop__img--book     { background: linear-gradient(135deg, #0d1a0d, #112211); }
.shop__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 20px;
}
.shop__badge--new        { background: rgba(124,58,237,.8); color: #fff; }
.shop__badge--bestseller { background: rgba(200,151,74,.9); color: #0a0c18; }
.shop__info { padding: 1.25rem 1.5rem; }
.shop__name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}
.shop__desc {
  font-size: .78rem;
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.shop__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop__price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════ */
.blog { background: var(--bg); }
.blog__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
}
.blog__card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,151,74,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog__card:hover {
  border-color: rgba(200,151,74,.3);
  transform: translateY(-4px);
}
.blog__img {
  height: 240px;
  background-size: cover;
  background-position: center;
}
.blog__img--mini { height: 140px; }
.blog__img--1 {
  background: linear-gradient(135deg, rgba(124,58,237,.4), rgba(200,151,74,.2)),
              radial-gradient(circle at 30% 50%, rgba(200,151,74,.3), transparent 60%);
  background-color: #0e0820;
}
.blog__img--2 {
  background: linear-gradient(135deg, rgba(0,50,100,.4), rgba(124,58,237,.2));
  background-color: #060f24;
}
.blog__img--3 {
  background: linear-gradient(135deg, rgba(200,151,74,.2), rgba(30,10,60,.4));
  background-color: #100a1f;
}
.blog__side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.blog__card--mini .blog__img {
  flex-shrink: 0;
}
.blog__card--mini {
  display: flex;
  flex-direction: column;
}
.blog__body { padding: 1.5rem; }
.blog__tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,151,74,.1);
  padding: .2rem .7rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: .8rem;
}
.blog__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: .75rem;
}
.blog__card--featured .blog__title {
  font-size: 1.3rem;
}
.blog__excerpt {
  font-size: .85rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.blog__foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .72rem;
  color: rgba(148,163,184,.6);
}
.blog__author { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════ */
.newsletter {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(124,58,237,.12) 0%, rgba(200,151,74,.06) 100%);
  border-top: 1px solid rgba(200,151,74,.15);
  border-bottom: 1px solid rgba(200,151,74,.15);
  text-align: center;
}
.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
}
.newsletter__stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .5em;
  margin-bottom: 1.5rem;
  opacity: .6;
}
.newsletter__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.newsletter__title em {
  font-style: normal;
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 400;
}
.newsletter__sub {
  font-size: .9rem;
  color: var(--silver);
  margin-bottom: 2rem;
}
.newsletter__form {
  display: flex;
  gap: .75rem;
  max-width: 460px;
  margin: 0 auto 1rem;
}
.newsletter__input {
  flex: 1;
  padding: .85rem 1.25rem;
  border-radius: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,151,74,.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter__input::placeholder { color: rgba(255,255,255,.3); }
.newsletter__input:focus { border-color: var(--gold); }
.newsletter__note {
  font-size: .72rem;
  color: rgba(148,163,184,.5);
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid rgba(200,151,74,.1);
}
.footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: .75rem;
}
.footer__tagline {
  font-size: .85rem;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
}
.footer__socials {
  display: flex;
  gap: 1rem;
}
.footer__socials a {
  font-size: 1.2rem;
  color: var(--silver);
  transition: color var(--transition);
}
.footer__socials a:hover { color: var(--gold); }
.footer__col h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col a {
  font-size: .82rem;
  color: var(--silver);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: .72rem;
  color: rgba(148,163,184,.4);
  max-width: 1200px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__wheel-wrap { order: -1; }
  .wheel { width: 380px; height: 380px; --wheel-r: 162px; }
  .wheel__ring--outer { width: 340px; height: 340px; }
  .wheel__ring--mid   { width: 260px; height: 260px; }
  .blog__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(4,7,18,.97);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 950;
  }
  .nav__links.open a { font-size: 1.1rem; }
  .nav__burger { display: flex; }
  .hero__wheel-wrap { display: none; }
  .wheel__glow { display: none; }
  .hero__content { grid-template-columns: 1fr; }
  .hero__stats { gap: 2rem; flex-wrap: wrap; }
  .newsletter__form { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .pred__grid { grid-template-columns: 1fr; }
  .astro__grid { grid-template-columns: 1fr 1fr; }
  .puja__grid { grid-template-columns: 1fr; }
  .shop__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .astro__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .section { padding: 5rem 0; }
}

/* ══════════════════════════════════════════════════════
   MOBILE HORIZONTAL CAROUSELS
   pred__grid / puja__grid / shop__grid scroll left-right
   on screens ≤ 768 px. Card peek (~18 %) hints at more.
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* --- shared carousel container ---------------------- */
  .pred__grid,
  .puja__grid,
  .shop__grid {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    /* bleed to container edges so cards go wall-to-wall */
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    /* right padding lets last card fully scroll into view */
    padding-right: 2rem;
    padding-bottom: 1rem;
    /* hide scrollbar track */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .pred__grid::-webkit-scrollbar,
  .puja__grid::-webkit-scrollbar,
  .shop__grid::-webkit-scrollbar { display: none; }

  /* right-edge fade: indicates more cards beyond the edge */
  .predictions .container,
  .puja .container,
  .shop .container {
    position: relative;
  }
  .predictions .container::after,
  .puja .container::after,
  .shop .container::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 3rem;
    background: linear-gradient(to left, var(--bg1, #04071200) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
  }

  /* --- cards: 82 vw → next card peeks at ~18 % -------- */
  .pred__card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
  .puja__card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
  .shop__card {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: start;
  }

  /* --- swipe hint label ------------------------------- */
  .carousel-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    margin-top: .5rem;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .65;
    pointer-events: none;
  }
  .carousel-hint svg {
    animation: hint-arrow 1.6s ease-in-out infinite;
  }
  @keyframes hint-arrow {
    0%, 100% { transform: translateX(0); opacity: .5; }
    50%       { transform: translateX(6px); opacity: 1; }
  }
}

/* on ≥ 769 px the hint label stays hidden */
.carousel-hint { display: none; }

/* ══════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ══════════════════════════════════════════════════════ */
.theme-toggle {
  background: none;
  border: 1px solid rgba(200,151,74,.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--gold);
  transition: all var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: rgba(200,151,74,.12);
  border-color: var(--gold);
  transform: rotate(20deg);
}

/* ══════════════════════════════════════════════════════
   LIGHT THEME OVERRIDES
   ══════════════════════════════════════════════════════ */
[data-theme="light"] {
  --bg:        #faf8f4;
  --bg2:       #f2ede4;
  --bg3:       #e8e0d0;
  --gold:      #a8742a;
  --gold-lt:   #c4893a;
  --gold-dk:   #7a5520;
  --saffron:   #c86020;
  --saffron-lt:#d87030;
  --purple:    #6622cc;
  --purple-lt: #8833ee;
  --silver:    #4a5568;
  --white:     #1a1410;
  --glass-bg:  rgba(0,0,0,.035);
  --glass-bd:  rgba(168,116,42,.22);
}

/* ── Hero ── */
[data-theme="light"] .hero__canvas { opacity: 0; }

[data-theme="light"] .hero__aurora {
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(102,34,204,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 70%, rgba(168,116,42,.07) 0%, transparent 50%);
}

[data-theme="light"] .hero__stats {
  border-top-color: rgba(168,116,42,.25);
}

/* ── Nav ── */
[data-theme="light"] .nav.scrolled {
  background: rgba(250,248,244,.92);
  border-bottom-color: rgba(168,116,42,.15);
}

[data-theme="light"] .nav__links.open {
  background: rgba(250,248,244,.97);
}

/* ── Zodiac Wheel ── */
[data-theme="light"] .wheel__glow {
  background: radial-gradient(circle, rgba(102,34,204,.1) 0%, transparent 70%);
}

[data-theme="light"] .wheel__ring        { border-color: rgba(168,116,42,.25); }
[data-theme="light"] .wheel__ring--mid   { border-color: rgba(168,116,42,.15); }
[data-theme="light"] .wheel__ring--inner { border-color: rgba(102,34,204,.18); }

[data-theme="light"] .wheel__center {
  background: radial-gradient(circle, rgba(168,116,42,.1), transparent);
  border-color: rgba(168,116,42,.4);
}

/* ── Ticker ── */
[data-theme="light"] .ticker-wrap {
  background: linear-gradient(90deg, rgba(168,116,42,.05), rgba(168,116,42,.1), rgba(168,116,42,.05));
  border-top-color:    rgba(168,116,42,.22);
  border-bottom-color: rgba(168,116,42,.22);
}

/* ── Predictions ── */
[data-theme="light"] .pred__tab {
  border-color: rgba(168,116,42,.3);
}

/* ── Glass Cards ── */
[data-theme="light"] .glass-card {
  background: rgba(0,0,0,.03);
}

/* ── Founder ── */
[data-theme="light"] .founder__bg {
  background:
    radial-gradient(ellipse 70% 90% at 15% 50%, rgba(168,116,42,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(102,34,204,.07) 0%, transparent 55%);
}

[data-theme="light"] .founder__glow-ring {
  border-color: rgba(168,116,42,.28);
  box-shadow: 0 0 40px rgba(168,116,42,.06), inset 0 0 20px rgba(168,116,42,.03);
}
[data-theme="light"] .founder__glow-ring::before { border-color: rgba(168,116,42,.16); }
[data-theme="light"] .founder__glow-ring::after  { border-color: rgba(102,34,204,.12); }

[data-theme="light"] .founder__portrait {
  box-shadow:
    0 0 0 6px rgba(168,116,42,.05),
    0 0 40px rgba(168,116,42,.1),
    0 30px 60px rgba(0,0,0,.15);
}
[data-theme="light"] .founder__portrait img {
  filter: brightness(1.02) contrast(1.02) saturate(0.95);
}
[data-theme="light"] .founder__portrait-overlay {
  background:
    linear-gradient(to bottom, transparent 45%, rgba(242,237,228,.72) 100%),
    linear-gradient(135deg, rgba(102,34,204,.04) 0%, transparent 60%);
}

[data-theme="light"] .founder__quote { color: rgba(26,20,16,.72); }

[data-theme="light"] .founder__cred {
  background: rgba(168,116,42,.04);
  border-color: rgba(168,116,42,.13);
}
[data-theme="light"] .founder__cred:hover {
  background: rgba(168,116,42,.08);
  border-color: rgba(168,116,42,.26);
}

/* ── Astrologers ── */
[data-theme="light"] .astrologers__bg {
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(102,34,204,.04) 0%, transparent 70%);
}

[data-theme="light"] .astro__card {
  background: rgba(0,0,0,.03);
}
[data-theme="light"] .astro__card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
}
[data-theme="light"] .astro__initials {
  background: radial-gradient(circle, rgba(168,116,42,.08), transparent 70%);
}

/* ── Puja ── */
[data-theme="light"] .puja__card {
  background: rgba(0,0,0,.03);
}
[data-theme="light"] .puja__card--featured {
  background: rgba(200,96,32,.04);
}
[data-theme="light"] .puja__footer {
  border-top-color: rgba(200,96,32,.18);
}
[data-theme="light"] .puja__includes li {
  color: rgba(140,88,20,.85);
}

/* ── Shop ── */
[data-theme="light"] .shop__card {
  background: rgba(0,0,0,.03);
}
[data-theme="light"] .shop__card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
}
[data-theme="light"] .shop__img--crystal   { background: linear-gradient(135deg, #d8ccf0, #c8d8f0); }
[data-theme="light"] .shop__img--rudraksha { background: linear-gradient(135deg, #e8d4a8, #d4bc88); }
[data-theme="light"] .shop__img--yantra    { background: linear-gradient(135deg, #e8e4b8, #d8d490); }
[data-theme="light"] .shop__img--book      { background: linear-gradient(135deg, #c8d8c0, #b0c8a8); }

/* ── Blog ── */
[data-theme="light"] .blog__card {
  background: rgba(0,0,0,.03);
}
[data-theme="light"] .blog__img--1 {
  background: linear-gradient(135deg, rgba(102,34,204,.12), rgba(168,116,42,.08)),
              radial-gradient(circle at 30% 50%, rgba(168,116,42,.12), transparent 60%);
  background-color: #ede8f4;
}
[data-theme="light"] .blog__img--2 {
  background: linear-gradient(135deg, rgba(0,80,160,.1), rgba(102,34,204,.06));
  background-color: #d8e8f4;
}
[data-theme="light"] .blog__img--3 {
  background: linear-gradient(135deg, rgba(168,116,42,.08), rgba(80,20,120,.1));
  background-color: #f0e8d8;
}
[data-theme="light"] .blog__foot  { color: rgba(74,85,104,.65); }
[data-theme="light"] .blog__tag   { background: rgba(168,116,42,.1); }

/* ── Newsletter ── */
[data-theme="light"] .newsletter {
  background: linear-gradient(135deg, rgba(102,34,204,.05) 0%, rgba(168,116,42,.04) 100%);
  border-top-color:    rgba(168,116,42,.18);
  border-bottom-color: rgba(168,116,42,.18);
}
[data-theme="light"] .newsletter__input {
  background: rgba(0,0,0,.04);
  border-color: rgba(168,116,42,.28);
  color: var(--white);
}
[data-theme="light"] .newsletter__input::placeholder { color: rgba(0,0,0,.3); }
[data-theme="light"] .newsletter__note { color: rgba(74,85,104,.6); }

/* ── Footer ── */
[data-theme="light"] .footer {
  border-top-color: rgba(168,116,42,.14);
}
[data-theme="light"] .footer__bottom {
  border-top-color: rgba(0,0,0,.07);
  color: rgba(74,85,104,.55);
}

/* ── Buttons ── */
[data-theme="light"] .btn--outline {
  border-color: rgba(0,0,0,.18);
  color: var(--white);
}
[data-theme="light"] .btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
[data-theme="light"] .btn--ghost {
  border-color: rgba(168,116,42,.4);
}

/* ══════════════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════════════ */
.contact {
  background: var(--bg2);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact__info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact__info-label {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.contact__info-value { font-size: .9rem; color: var(--silver); line-height: 1.6; }
.contact__info-value a { color: var(--silver); transition: color var(--transition); }
.contact__info-value a:hover { color: var(--gold); }

/* ── Form ── */
.contact__field { margin-bottom: 1.2rem; }
.contact__label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: .4rem;
}
.contact__input,
.contact__textarea {
  width: 100%;
  padding: .8rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,151,74,.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .875rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.contact__input::placeholder,
.contact__textarea::placeholder { color: rgba(255,255,255,.22); }
.contact__input:focus,
.contact__textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.07);
}
.contact__textarea { resize: vertical; min-height: 120px; }
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact__alert {
  padding: .85rem 1.2rem;
  border-radius: var(--radius);
  font-size: .85rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.contact__alert--success {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  color: #4ade80;
}
.contact__alert--error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  color: #f87171;
}
.contact__alert--error ul { margin: .4rem 0 0 1.25rem; }
.contact__alert--error li { font-size: .8rem; margin-bottom: .15rem; }

/* ── Light theme ── */
[data-theme="light"] .contact__input,
[data-theme="light"] .contact__textarea {
  background: rgba(0,0,0,.04);
  border-color: rgba(168,116,42,.22);
  color: var(--white);
}
[data-theme="light"] .contact__input::placeholder,
[data-theme="light"] .contact__textarea::placeholder { color: rgba(0,0,0,.28); }
[data-theme="light"] .contact__input:focus,
[data-theme="light"] .contact__textarea:focus {
  border-color: var(--gold);
  background: rgba(0,0,0,.06);
}
[data-theme="light"] .contact__alert--success { background: rgba(21,128,61,.08);  border-color: rgba(21,128,61,.3);  color: #166534; }
[data-theme="light"] .contact__alert--error   { background: rgba(185,28,28,.08);  border-color: rgba(185,28,28,.3);  color: #991b1b; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 540px) {
  .contact__row { grid-template-columns: 1fr; gap: 0; }
}

/* ── Expanded / featured contact layout ── */
.contact--feature {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.contact--feature .astrologers__bg { pointer-events: none; }

.contact__expanded {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 5rem;
  align-items: start;
}

.contact__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(200,151,74,.3), transparent);
  margin: 2rem 0;
}

.contact__topics-label {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}
.contact__topics {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.contact__topic-chip {
  padding: .3rem .85rem;
  border-radius: 20px;
  font-size: .72rem;
  letter-spacing: .06em;
  background: rgba(200,151,74,.08);
  border: 1px solid rgba(200,151,74,.2);
  color: var(--gold);
  font-family: var(--font-body);
}

.contact__steps { display: flex; flex-direction: column; gap: 1.1rem; }
.contact__step  { display: flex; align-items: flex-start; gap: 1rem; }
.contact__step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(200,151,74,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2px;
}
.contact__step-text h5 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .18rem;
}
.contact__step-text p {
  font-size: .78rem;
  color: var(--silver);
  line-height: 1.55;
}

[data-theme="light"] .contact__topic-chip {
  background: rgba(168,116,42,.07);
  border-color: rgba(168,116,42,.2);
}
[data-theme="light"] .contact__divider {
  background: linear-gradient(90deg, rgba(168,116,42,.3), transparent);
}
[data-theme="light"] .contact__step-num {
  border-color: rgba(168,116,42,.4);
}

@media (max-width: 1024px) {
  .contact__expanded { grid-template-columns: 1fr; gap: 3rem; }
}

/* ══════════════════════════════════════════════════════
   SUCCESS MODAL
   ══════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,7,18,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.modal-overlay.modal--open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--bg2);
  border: 1px solid var(--glass-bd);
  border-radius: calc(var(--radius) * 1.5);
  padding: 3rem 2.5rem 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  transform: translateY(28px) scale(.96);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.modal-overlay.modal--open .modal {
  transform: translateY(0) scale(1);
}
.modal__icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(200,151,74,.5);
}
.modal__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.modal__body {
  font-size: .9rem;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.modal__close-x {
  position: absolute;
  top: 1rem; right: 1.1rem;
  background: none;
  border: none;
  color: var(--silver);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: .3rem .5rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.modal__close-x:hover { color: var(--gold); background: rgba(200,151,74,.1); }

[data-theme="light"] .modal-overlay { background: rgba(180,168,148,.65); }
[data-theme="light"] .modal { background: var(--bg); border-color: rgba(168,116,42,.28); }
