/* =========================================================================
   Astro Life Cycles — hand-written stylesheet
   Palette: deep midnight sky · soft gold · muted violet
   Type: Cormorant Garamond (serif display) · Inter (sans body)
   ========================================================================= */

:root {
  /* Sky - Upgraded to specific color scheme */
  --sky-0:   #0F0F0F;   /* deepest near-black */
  --sky-1:   #14172b;   /* midnight navy */
  --sky-2:   #26316E;   /* raised panel (dark navy) */
  --sky-3:   #28268C;   /* hover panel / deep indigo */
  --sky-line:#4D5CB0;   /* border lines (medium blue) */

  /* Accents */
  --gold:    #FCE935;   /* vibrant yellow */
  --gold-soft:#F2D022;   /* warm gold */
  --gold-deep:#E35A05;   /* accent orange */
  --violet:  #4D5CB0;   /* medium blue */
  --violet-soft:#8a96d6;
  --violet-deep:#28268C;

  /* Text */
  --ink:     #FFFFFF;   /* pure white */
  --ink-soft:#d5d9eb;   /* high contrast readable body */
  --ink-mute:#8c93b5;   /* muted text */

  --radius:  16px;
  --radius-sm: 10px;
  --maxw:    1160px;
  --gutter:  clamp(1.2rem, 4vw, 3rem);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Type scale — from font-size.txt. Each clamp runs mobile → desktop:
     hero 40→72px, section 32→48px, sub 24→32px, body 16→19px, nav 15→18px. */
  --fs-hero:    clamp(2.5rem,  7.5vw, 4.5rem);
  --fs-section: clamp(2rem,    4.5vw, 3rem);
  --fs-sub:     clamp(1.5rem,  2.6vw, 2rem);
  --fs-lead:    clamp(1.125rem, 1.8vw, 1.5rem);
  --fs-body:    clamp(1rem,    1.1vw, 1.1875rem);
  --fs-nav:     clamp(.9375rem, 1vw, 1.0625rem);
  --lh-body:    1.8;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 60px -20px rgba(0,0,0,0.7);
}

/* ---- Reset-ish -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--sky-1);
  line-height: 1.65;
  overflow-x: clip; /* prevent H-scroll WITHOUT making <body> a scroll container */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-soft); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 500; line-height: 1.12; margin: 0 0 .5em; letter-spacing: .01em; }
p { margin: 0 0 1.1em; }

/* ---- Accessibility ---------------------------------------------------- */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 200;
  background: var(--gold); color: var(--sky-0);
  padding: .6rem 1rem; border-radius: 8px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--sky-0); }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Layout ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(4.5rem, 10vw, 9rem); }
.eyebrow {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  margin-bottom: 1rem; display: inline-block;
}
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--ink-soft); max-width: 60ch; }

/* ---- Scroll progress + nav ------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--violet), var(--gold));
  transform-origin: left;
}

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(8, 11, 28, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--sky-line);
}
.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0.9rem clamp(1rem, 2.5vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  flex: 0 0 auto;
  min-width: max-content;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.1vw, 2.15rem);
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand-text {
  white-space: nowrap;
}
.brand-logo {
  height: 68px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.footer-brand .brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}
.brand-mark { color: var(--gold); font-size: 1.1em; }
.brand-thin { color: var(--violet-soft); font-weight: 400; }

/* ---- Primary menu + dropdowns ----------------------------------------- */
.nav-menu {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}
.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(0.55rem, 1.1vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; flex: 0 0 auto; }
.nav-parent { display: inline-flex; align-items: center; gap: .15rem; }

/* font-size.txt: Source Sans 3 SemiBold, 17–18px, .05em tracking, all caps. */
.nav-link {
  display: inline-block;
  white-space: nowrap;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: clamp(0.72rem, 0.85vw, 0.9rem);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  padding: .35rem 0;
  transition: color .3s var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-link:hover, .nav-item.is-active > .nav-link,
.nav-item.is-active > .nav-parent > .nav-link { color: var(--gold); }
.nav-link:hover::after,
.nav-item.is-active > .nav-link::after,
.nav-item.is-active > .nav-parent > .nav-link::after { transform: scaleX(1); transform-origin: left; }

.nav-cta.nav-link {
  border: 1px solid var(--gold-deep); color: var(--gold);
  padding: .4rem .9rem; border-radius: 999px;
  text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-cta.nav-link::after { display: none; }
.nav-cta.nav-link:hover { background: var(--gold); color: var(--sky-0); }

.nav-link.nav-soon {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.nav-soon-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--violet-soft);
  border: 1px dashed var(--sky-line);
  border-radius: 999px;
  padding: .15rem .45rem;
  white-space: nowrap;
  line-height: 1.2;
}
.nav-link.nav-soon:hover .nav-soon-badge {
  border-color: var(--gold-deep);
  color: var(--gold);
}

/* Spanish: slightly tighter gaps for longer labels */
.lang-es .nav-list {
  gap: clamp(0.45rem, 0.9vw, 1rem);
}
.lang-es .nav-link {
  font-size: clamp(0.68rem, 0.8vw, 0.85rem);
  letter-spacing: .03em;
}

@media (min-width: 1201px) and (max-width: 1360px) {
  .nav-list {
    gap: 0.55rem;
  }
  .lang-es .nav-list {
    gap: 0.4rem;
  }
  .nav-cta.nav-link {
    padding: 0.35rem 0.7rem;
  }
  .nav-lang-toggle {
    margin-left: 0.15rem;
    padding: 0.2rem 0.5rem;
  }
}


.nav-sub-toggle {
  display: inline-grid; place-items: center;
  background: none; border: 0; cursor: pointer;
  color: var(--ink-mute); padding: .25rem; line-height: 0;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.nav-sub-toggle svg { width: 11px; height: 8px; }
.nav-item.is-open .nav-sub-toggle { color: var(--gold); transform: rotate(180deg); }
.nav-sub-toggle:hover { color: var(--gold); }

.nav-sub {
  position: absolute; top: calc(100% + .65rem); left: -1rem;
  min-width: 19rem;
  list-style: none; margin: 0; padding: .5rem;
  background: rgba(12, 16, 40, .97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--sky-line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 110;
}
.nav-item.is-open > .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-sub::before { /* hover bridge so the menu survives the gap */
  content: ''; position: absolute; top: -.65rem; left: 0; right: 0; height: .65rem;
}
.nav-sub a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .6rem .85rem; border-radius: 8px;
  color: var(--ink-soft); font-size: .95rem; font-weight: 400;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-sub a:hover { background: rgba(77, 92, 176, .22); color: var(--gold); }
.nav-sub-meta { color: var(--ink-mute); font-size: .85rem; font-variant-numeric: tabular-nums; }
.nav-sub a:hover .nav-sub-meta { color: var(--gold-soft); }
.nav-sub-all { border-top: 1px solid var(--sky-line); margin-top: .4rem; padding-top: .4rem; }
.nav-sub-all a { color: var(--violet-soft); font-size: .875rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 500; font-size: 1rem;
  padding: .85rem 1.7rem; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--sky-0); box-shadow: 0 10px 30px -12px rgba(232,197,131,.5); }
.btn-primary:hover { color: var(--sky-0); transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(232,197,131,.6); }
.btn-ghost { border-color: var(--sky-line); color: var(--ink); background: rgba(255,255,255,.02); }
.btn-ghost:hover { color: var(--ink); border-color: var(--violet); background: rgba(169,155,214,.08); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  text-align: center; overflow: hidden; isolation: isolate;
  background-image:
    radial-gradient(110% 85% at 50% -5%, rgba(38, 49, 110, 0.55) 0%, rgba(12, 16, 48, 0.72) 42%, rgba(6, 8, 24, 0.92) 78%, #03040c 100%),
    radial-gradient(55% 45% at 18% 38%, rgba(255, 214, 120, 0.14), transparent 70%),
    radial-gradient(45% 40% at 82% 34%, rgba(90, 160, 255, 0.12), transparent 70%),
    url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; pointer-events: none; }
.hero::before { /* animated nebula clouds — brighter, more dimensional */
  content: ""; position: absolute; inset: -25%; z-index: 0;
  background:
    radial-gradient(42% 34% at 20% 32%, rgba(140, 118, 210, .48), transparent 62%),
    radial-gradient(34% 30% at 82% 24%, rgba(255, 214, 130, .22), transparent 60%),
    radial-gradient(50% 42% at 58% 72%, rgba(90, 78, 170, .38), transparent 64%),
    radial-gradient(30% 28% at 10% 78%, rgba(170, 110, 190, .26), transparent 60%),
    radial-gradient(24% 22% at 70% 40%, rgba(100, 180, 255, .12), transparent 65%);
  filter: blur(18px);
  animation: nebulaDrift 46s ease-in-out infinite alternate;
  will-change: transform, opacity;
  pointer-events: none;
}
@keyframes nebulaDrift {
  0%   { transform: rotate(0deg)  scale(1);    opacity: .85; }
  50%  { opacity: 1; }
  100% { transform: rotate(8deg)  scale(1.14); opacity: .95; }
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }
.hero::after { /* vignette — softer so the scene reads brighter */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(95% 70% at 50% 42%, transparent 28%, rgba(4, 6, 18, .28) 72%, rgba(3, 4, 12, .62) 100%),
    radial-gradient(120% 90% at 50% 8%, rgba(120, 100, 190, .22), transparent 55%),
    linear-gradient(180deg, rgba(8, 12, 36, .15), rgba(6, 8, 22, .45));
  pointer-events: none;
}

/* Faint astrological geometry behind the headline */
.hero-geometry {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  display: grid; place-items: center;
}
.hero-geometry-halo {
  position: absolute;
  width: min(78vw, 52rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(243, 221, 176, .08) 0%, rgba(109, 95, 166, .06) 35%, transparent 68%);
  filter: blur(2px);
  animation: geometryPulse 10s ease-in-out infinite alternate;
}
.hero-geometry-wheel {
  position: absolute;
  width: min(68vw, 44rem);
  aspect-ratio: 1;
  background: url("../img/zodiac-wheel.svg") center / contain no-repeat;
  opacity: .14;
  filter: drop-shadow(0 0 24px rgba(232, 197, 131, .18));
  animation: geometrySpin 160s linear infinite;
}
.hero-geometry-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 191, 232, .16);
  box-shadow: inset 0 0 40px rgba(109, 95, 166, .06), 0 0 30px rgba(232, 197, 131, .04);
}
.hero-geometry-orbit--a {
  width: min(56vw, 36rem); aspect-ratio: 1.55 / 1;
  transform: rotate(-18deg);
  border-color: rgba(232, 197, 131, .18);
  animation: geometryOrbit 28s ease-in-out infinite alternate;
}
.hero-geometry-orbit--b {
  width: min(48vw, 30rem); aspect-ratio: 1.7 / 1;
  transform: rotate(12deg);
  border-style: dashed;
  border-color: rgba(150, 170, 230, .18);
  animation: geometryOrbit 36s ease-in-out infinite alternate-reverse;
}
.hero-geometry-orbit--c {
  width: min(38vw, 24rem); aspect-ratio: 1;
  border-color: rgba(243, 221, 176, .12);
}
@keyframes geometrySpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes geometryOrbit {
  from { opacity: .55; transform: rotate(-18deg) scale(1); }
  to { opacity: .9; transform: rotate(-10deg) scale(1.03); }
}
@keyframes geometryPulse {
  from { opacity: .7; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-geometry-wheel,
  .hero-geometry-orbit--a,
  .hero-geometry-orbit--b,
  .hero-geometry-halo { animation: none; }
}

.hero-inner {
  position: relative; z-index: 2;
  padding: 8rem var(--gutter) 6rem; max-width: 60rem;
}
.hero-eyebrow {
  color: var(--gold-soft);
  letter-spacing: .3em;
  text-shadow: 0 0 24px rgba(232, 197, 131, .35);
}
.hero h1 {
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  font-weight: 500; line-height: 1.03; margin-bottom: .4em;
  text-wrap: balance;
  text-shadow:
    0 0 40px rgba(8, 12, 36, .85),
    0 2px 24px rgba(6, 8, 20, .7),
    0 0 60px rgba(109, 95, 166, .25);
}
.hero h1 .shimmer {
  background: linear-gradient(100deg, #fff6d6, var(--gold), var(--violet-soft), var(--gold-soft));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmerSweep 8s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 .shimmer { animation: none; }
}
.hero p.lead { margin-inline: auto; color: var(--ink-soft); }
.hero-cta { margin-top: 2.2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero Slider CSS */
.hero-slider-container {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
  min-height: 240px;
  display: grid;
  place-items: center;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
  transform: translateX(40px);
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  position: relative;
}
.hero-slide.slide-out {
  transform: translateX(-40px);
  opacity: 0;
}
.hero-slider-controls {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.slider-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 197, 131, 0.18);
  color: var(--gold-soft);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(6px);
}
.slider-control:hover {
  background: rgba(232, 197, 131, 0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(232, 197, 131, .25);
}
.slider-dots {
  display: flex;
  gap: 0.6rem;
}
.slider-dots .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.55);
}
.slider-dots .dot.active {
  background: var(--gold);
  transform: scale(1.35);
  box-shadow: 0 0 10px var(--gold);
}

/* Adjust lead size inside slider */
.hero-slide .hero-tagline {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  color: rgba(220, 224, 242, .92);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.55;
  margin-top: 0.8rem;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(4, 6, 18, .75);
}

@media (max-width: 768px) {
  .hero-slider-container {
    min-height: 320px;
  }
  .hero-geometry-wheel { opacity: .1; width: min(92vw, 28rem); }
  .hero-geometry-orbit--a { width: min(86vw, 26rem); }
  .hero-geometry-orbit--b { width: min(74vw, 22rem); }
  .hero-geometry-orbit--c { width: min(60vw, 18rem); }
}

/* =========================================================================
   Reveal-on-scroll primitive (JS toggles .is-visible)
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; } }
.about-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; background: var(--sky-2); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,8,20,.5)); }
.about-body h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
.about-quote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 1.9rem); font-style: italic; color: var(--gold-soft); border-left: 2px solid var(--gold-deep); padding-left: 1.2rem; margin: 1.8rem 0; }
.pillars { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 560px) {
  .pillars:has(> :nth-child(2)) { grid-template-columns: 1fr 1fr; }
}
.pillar { background: var(--sky-2); border: 1px solid var(--sky-line); border-radius: var(--radius-sm); padding: 1.2rem 1.3rem; }
.pillar h3 { font-size: 1.15rem; color: var(--gold); margin-bottom: .3rem; }
.pillar p { margin: 0 0 .75rem; font-size: .95rem; color: var(--ink-soft); }
.pillar p:last-child { margin-bottom: 0; }
.pillar p strong { color: var(--ink); font-weight: 600; }

/* =========================================================================
   REDESIGNED INTRO / ABOUT SECTION
   ========================================================================= */
.intro-redesign-section {
  background: radial-gradient(circle at 50% 15%, rgba(38, 49, 110, 0.38), transparent 75%), var(--sky-1);
}

.intro-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}

.intro-header .section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--ink);
  margin-top: 0.5rem;
}

/* Split grid */
.intro-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: 3.5rem;
}

@media (min-width: 860px) {
  .intro-split-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.about-photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  aspect-ratio: 4 / 5;
  background: var(--sky-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: rgba(20, 23, 43, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(230, 195, 123, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-photo-badge .badge-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.about-photo-badge .badge-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.intro-text-col .lead-text {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 1.4rem;
}

.intro-text-col p {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--ink-soft);
  line-height: 1.75;
}

/* 3-Box Purpose, Dharma & Discover Grid */
.intro-three-boxes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 680px) {
  .intro-three-boxes-grid {
    grid-template-columns: 1fr 1fr; /* 50% width each for the first two boxes */
  }

  .intro-three-boxes-grid .full-width-card {
    grid-column: 1 / -1; /* 100% width for the third box */
  }
}

.intro-three-boxes-grid .comparison-card {
  background: linear-gradient(145deg, rgba(38, 49, 110, 0.55), rgba(20, 23, 43, 0.85));
  border: 2px solid #E53935; /* Red frame border */
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(229, 57, 53, 0.12);
}

.intro-three-boxes-grid .comparison-card .card-label {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF; /* White title */
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.intro-three-boxes-grid .comparison-card .card-question {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-style: italic;
  color: var(--gold); /* Gold text */
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.intro-three-boxes-grid .full-width-card .discover-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .intro-three-boxes-grid .full-width-card .discover-list {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-three-boxes-grid .full-width-card .discover-list li {
  font-size: 1rem;
  color: var(--gold); /* Gold text */
  background: rgba(38, 49, 110, 0.35);
  border: 1px solid rgba(229, 57, 53, 0.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.45;
}

.intro-three-boxes-grid .comparison-card .discover-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Comparison Cards Grid (Legacy fallback) */
.intro-comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 680px) {
  .intro-comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-card {
  background: linear-gradient(145deg, rgba(38, 49, 110, 0.45), rgba(20, 23, 43, 0.75));
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.comparison-card .card-badge {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.comparison-card .card-question {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-style: italic;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.comparison-card .card-label {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.comparison-card .card-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Discover Showcase */
.intro-discover-showcase {
  background: rgba(20, 23, 43, 0.7);
  border: 1px solid var(--sky-line);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.discover-heading {
  font-size: 1.35rem;
  color: var(--gold-soft);
  margin-bottom: 1.4rem;
  text-align: center;
}

.discover-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .discover-list {
    grid-template-columns: 1fr 1fr;
  }
}
.discover-list li {
  font-size: 1.05rem;
  color: var(--ink);
  background: rgba(38, 49, 110, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.discover-list .discover-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

@media (min-width: 600px) {
  .discover-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.discover-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(38, 49, 110, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
}

.discover-icon {
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 0.15rem;
}

.discover-content h4 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.2rem 0;
}

.discover-content p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Empowerment Quote */
.intro-empowerment-quote {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 3.5rem;
  position: relative;
}

.intro-empowerment-quote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
}

/* Reports Bento Box */
.intro-reports-bento {
  background: linear-gradient(145deg, rgba(38, 49, 110, 0.6), rgba(20, 23, 43, 0.9));
  border: 1px solid var(--gold-deep);
  border-radius: 2rem;
  padding: clamp(2.2rem, 5vw, 3.5rem);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.intro-reports-bento .bento-badge {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(230, 195, 123, 0.12);
  border: 1px solid rgba(230, 195, 123, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.intro-reports-bento h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.reports-bento-body .reports-lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  max-width: 65ch;
}

.reports-topics-container {
  background: rgba(20, 23, 43, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.8rem;
}

.reports-topics-container .topics-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 1rem;
}

.reports-topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topic-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(38, 49, 110, 0.45);
  border: 1px solid rgba(230, 195, 123, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.topic-tag:hover {
  border-color: var(--gold);
  background: rgba(230, 195, 123, 0.15);
}

.topic-tag .tag-star {
  color: var(--gold);
  font-size: 0.85rem;
}

.reports-bento-body .reports-closing {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--ink-soft);
  line-height: 1.7;
  font-style: italic;
  max-width: 60ch;
  margin-bottom: 0;
}

.intro-reports-bento .bento-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Story Callout */
.story-band { background: var(--navy-mid); border-block: 1px solid var(--sky-line); }
.story-callout { text-align: center; background: radial-gradient(circle at center, rgba(230,195,123,.08), transparent 70%), var(--sky-2); border: 1px solid var(--gold-deep); border-radius: var(--radius); padding: 2.2rem 2rem; margin: 2.2rem 0; box-shadow: var(--shadow-sm); }
.story-question { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem); font-style: italic; color: var(--gold); margin: 0 0 .5rem 0; letter-spacing: -0.01em; text-shadow: 0 0 24px rgba(230,195,123,.25); }
.story-subtext { font-size: 1.1rem; color: var(--ink-soft); font-style: italic; margin: 0; }

/* Human vs AI differentiator band */
.differentiator { text-align: center; position: relative; }
.differentiator .lead { margin-inline: auto; }
.diff-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--violet-soft); border: 1px solid var(--violet-deep); border-radius: 999px; padding: .4rem 1rem; margin-bottom: 1.4rem; }

/* =========================================================================
   SERVICES
   ========================================================================= */
.services {
  background-image:
    url("../img/bg-stars.svg"),
    radial-gradient(60% 50% at 85% 0%, rgba(109,95,166,.12), transparent 60%);
  background-repeat: repeat, no-repeat;
  background-size: 340px 340px, auto;
  background-color: var(--sky-0);
}
.services-head { max-width: 46rem; margin-bottom: 2.5rem; }
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 620px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }

/* Bento Grid Layout for Services */
.services-sub-block {
  margin-bottom: 4.5rem;
}
.services-sub-block:last-child {
  margin-bottom: 0;
}
.consultations-sub-block {
  margin-top: 5.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--sky-line);
}
.services-see-all {
  display: inline-block;
  margin-left: 0.5rem;
  color: var(--gold-soft);
  font-weight: 600;
  white-space: nowrap;
}
.services-see-all:hover {
  color: var(--gold);
  text-decoration: underline;
}
/* Reports Horizontal Carousel */
.reports-carousel {
  position: relative;
  margin-top: 2rem;
}

.reports-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: none;
}
.reports-track::-webkit-scrollbar {
  display: none;
}

.report-carousel-card {
  flex: 0 0 clamp(320px, 85vw, 680px);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 2.2rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.report-carousel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(252, 233, 53, 0.25);
  box-shadow: var(--shadow);
}

.report-card-inner {
  background: linear-gradient(180deg, var(--sky-2), var(--sky-1));
  border-radius: calc(2.2rem - 0.5rem);
  width: 100%;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

@media (min-width: 650px) {
  .report-card-inner {
    flex-direction: row;
    align-items: stretch;
  }
  .report-card-text {
    width: 60%;
    padding: 2.2rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .report-card-image {
    width: 40%;
    position: relative;
    min-height: 100%;
  }
  .report-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.reports-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1rem;
}

.reports-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--sky-line);
  background: var(--sky-2);
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.reports-arrow:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--sky-1);
  color: #fff;
}

.reports-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.consultations-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .consultations-home-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.consult-home-card .bento-card-inner {
  display: flex;
  flex-direction: column;
}

.services-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .services-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-bento-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 2.2rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.bento-card-inner {
  background: linear-gradient(180deg, var(--sky-2), var(--sky-1));
  border-radius: calc(2.2rem - 0.5rem);
  width: 100%;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.service-bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(252, 233, 53, 0.25);
  box-shadow: var(--shadow);
}

/* Wide Cards layout (desktop/tablet) */
@media (min-width: 768px) {
  .bento-hero, .bento-consult {
    grid-column: span 2;
  }
  .bento-hero .bento-card-inner, 
  .bento-consult .bento-card-inner {
    flex-direction: row;
    align-items: stretch;
  }
  .bento-hero .bento-text,
  .bento-consult .bento-text {
    width: 55%;
    padding: 2.2rem;
  }
  .bento-hero .bento-image,
  .bento-consult .bento-image {
    width: 45%;
    position: relative;
    overflow: hidden;
    min-height: 320px;
  }
  .bento-hero .bento-image img,
  .bento-consult .bento-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
  }
}

/* Vertical / Square Card layout */
.bento-image-top {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.bento-image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-bento-card:hover .bento-image-top img,
.service-bento-card:hover .bento-image img {
  transform: scale(1.04);
}

/* Bento Card Text & Elements */
.bento-text {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.bento-text h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.bento-text .service-cat {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.8rem;
  display: inline-block;
  font-weight: 600;
}
.bento-text .service-summary {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.bento-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.6rem;
}
.bento-bullets li {
  font-size: 0.88rem;
  color: var(--violet-soft);
}
.bento-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--sky-line);
}
.bento-footer .service-price {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
}
.bento-footer .service-price small {
  font-size: 0.8rem;
  color: var(--ink-mute);
  display: block;
  font-family: var(--sans);
}
.bento-footer .service-actions {
  display: flex;
  gap: 0.6rem;
}
.bento-footer .service-actions .btn {
  padding: 0.65rem 1.3rem;
  font-size: 0.88rem;
}

.service-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--sky-2), var(--sky-1));
  border: 1px solid var(--sky-line); border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold-deep); box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) { .service-card:hover { transform: none; } }
.service-media { aspect-ratio: 16 / 9; background: var(--sky-3); position: relative; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-cat { position: absolute; top: .8rem; left: .8rem; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; background: rgba(6,8,20,.7); color: var(--gold); padding: .3rem .7rem; border-radius: 999px; border: 1px solid var(--gold-deep); }
.service-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.5rem; margin-bottom: .2rem; }
.service-sub { font-style: italic; color: var(--violet-soft); font-family: var(--serif); font-size: 1.05rem; margin-bottom: .8rem; }
.service-summary { font-size: .96rem; color: var(--ink-soft); flex: 1; }
.service-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin: 1rem 0 1.2rem; padding-top: 1rem; border-top: 1px solid var(--sky-line); }
.service-price { font-family: var(--serif); font-size: 1.7rem; color: var(--gold); }
.service-price small { font-size: .8rem; color: var(--ink-mute); display: block; font-family: var(--sans); }
.service-format { font-size: .82rem; color: var(--ink-mute); text-align: right; }
.service-actions { display: flex; gap: .7rem; }
.service-actions .btn { padding: .7rem 1.3rem; font-size: .92rem; }

/* =========================================================================
   Astrological section decorations (subtle celestial motifs behind content)
   ========================================================================= */
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* About — slow-turning orbit rings in the upper right */
#about { position: relative; overflow: hidden; }
#about > .container { position: relative; z-index: 1; }
#about::before {
  content: ""; position: absolute; top: -70px; right: -90px;
  width: 360px; height: 360px; pointer-events: none; opacity: .5;
  background: url("../img/orbit-rings.svg") no-repeat center / contain;
  animation: spinSlow 90s linear infinite;
}

/* Human-vs-AI band — faint constellation behind the text */
.differentiator::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, 88%); aspect-ratio: 400 / 260; pointer-events: none;
  opacity: .3; z-index: 0;
  background: url("../img/bg-constellation.svg") no-repeat center / contain;
}
.differentiator > * { position: relative; z-index: 1; }

/* Contact — large zodiac wheel drifting in the corner */
.contact { position: relative; overflow: hidden; }
.contact > .container { position: relative; z-index: 1; }
.contact::before {
  content: ""; position: absolute; right: -130px; bottom: -130px;
  width: 460px; height: 460px; pointer-events: none; opacity: .22;
  background: url("../img/zodiac-wheel.svg") no-repeat center / contain;
  animation: spinSlow 160s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  #about::before, .contact::before { animation: none; }
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials { background: var(--sky-0); }
.testi-head { text-align: center; max-width: 46rem; margin-inline: auto; }
.testi-head .lead { margin-inline: auto; }
.testi-summary { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.5rem; padding: .5rem 1.1rem; border: 1px solid var(--sky-line); border-radius: 999px; background: color-mix(in srgb, var(--sky-2) 45%, transparent); }
.testi-summary-stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.testi-summary-text { font-size: .9rem; color: var(--ink-soft); }
.testi-summary-text strong { color: var(--ink); }

.testi-carousel { position: relative; margin-top: 3rem; }
.testi-track {
  display: flex; gap: 1.5rem; overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: .6rem .3rem 1.4rem; margin-inline: -.3rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-track:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: var(--radius); }
.testi-track > .testi-card { flex: 0 0 auto; width: min(85vw, 22rem); scroll-snap-align: center; }
/* Fade the edges so cards slide in/out of view gracefully */
@media (min-width: 720px) {
  .testi-carousel::before, .testi-carousel::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 4rem; z-index: 2; pointer-events: none;
  }
  .testi-carousel::before { left: 0;  background: linear-gradient(90deg, var(--sky-0), transparent); }
  .testi-carousel::after  { right: 0; background: linear-gradient(270deg, var(--sky-0), transparent); }
}

.testi-nav { display: flex; gap: .7rem; justify-content: center; margin-top: .4rem; }
.testi-arrow {
  width: 2.9rem; height: 2.9rem; border-radius: 50%; border: 1px solid var(--sky-line);
  background: color-mix(in srgb, var(--sky-2) 55%, transparent); color: var(--ink-soft);
  font-size: 1.4rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), opacity .3s var(--ease);
}
.testi-arrow:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.testi-arrow:disabled { opacity: .3; cursor: default; }

.testi-card { position: relative; overflow: hidden; background: linear-gradient(158deg, var(--sky-2), var(--sky-1)); border: 1px solid var(--sky-line); border-radius: var(--radius); padding: 2rem 1.9rem 1.7rem; display: flex; flex-direction: column; transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease); }
.testi-card::before { /* gradient hairline that lights up on hover */
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(158deg, rgba(252,233,53,.55), rgba(138,150,214,.25) 45%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s var(--ease); pointer-events: none;
}
.testi-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 26px 52px -26px rgba(0,0,0,.75); }
.testi-card:hover::before { opacity: 1; }

.testi-mark { position: absolute; top: -.4rem; right: 1rem; font-family: var(--serif); font-size: 6rem; line-height: 1; color: var(--gold); opacity: .12; pointer-events: none; user-select: none; }
.testi-stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .9rem; font-size: .9rem; position: relative; }
.testi-quote { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--ink); line-height: 1.5; flex: 1; margin: 0; position: relative; }
.testi-author { margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--sky-line); display: flex; align-items: center; gap: .8rem; }
.testi-avatar { flex: none; width: 2.7rem; height: 2.7rem; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(140deg, var(--violet), var(--violet-deep)); color: var(--ink); font-size: .85rem; font-weight: 600; letter-spacing: .03em; border: 1px solid var(--sky-line); }
.testi-meta { display: flex; flex-direction: column; line-height: 1.35; text-align: left; }
.testi-name { font-size: .95rem; color: var(--gold-soft); font-weight: 500; }
.testi-loc { font-size: .82rem; color: var(--ink-mute); }
@media (prefers-reduced-motion: reduce) { .testi-card, .testi-card:hover { transform: none; } }

/* =========================================================================
   CONTACT + FORMS
   ========================================================================= */
.contact { background-image: radial-gradient(70% 90% at 15% 10%, rgba(109,95,166,.14), transparent 60%), radial-gradient(100% 100% at 50% 50%, rgba(8, 11, 28, 0.8) 0%, rgba(20, 23, 43, 0.96) 100%), url("../img/cosmic-bg.png"); background-size: cover; background-position: center; background-repeat: no-repeat; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .85fr 1.15fr; } }
.contact-aside h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.contact-details { margin-top: 1.6rem; display: grid; gap: 1rem; }
.contact-details a { color: var(--ink); }
.contact-details .cd { display: flex; gap: .8rem; align-items: flex-start; }
.contact-details .cd b { color: var(--gold); font-weight: 500; display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }

.form-card { background: var(--sky-2); border: 1px solid var(--sky-line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow); }
.form-tabs { display: flex; gap: .5rem; margin-bottom: 1.6rem; background: var(--sky-0); padding: .35rem; border-radius: 999px; }
.form-tab { flex: 1; text-align: center; padding: .6rem 1rem; border-radius: 999px; border: 0; background: transparent; color: var(--ink-soft); font-family: var(--sans); font-size: .95rem; font-weight: 500; cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease); }
.form-tab[aria-selected="true"] { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--sky-0); }

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; color: var(--ink); margin-bottom: .4rem; font-weight: 500; }
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--sky-0); border: 1px solid var(--sky-line); border-radius: var(--radius-sm);
  padding: .8rem .9rem; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,197,131,.15); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .field-row.cols-2 { grid-template-columns: 1fr 1fr; } .field-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }
.field-error { color: #ffb4a2; font-size: .82rem; margin-top: .35rem; display: none; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #e0736a; }
.field.has-error .field-error { display: block; }

.consent { display: grid; gap: .6rem; margin: 1.2rem 0; padding: 1rem 1.1rem; background: var(--sky-0); border: 1px solid var(--sky-line); border-radius: var(--radius-sm); }
.consent-item { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.consent-item input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--gold); flex: none; }

.fieldset-person { border: 1px solid var(--sky-line); border-radius: var(--radius-sm); padding: 1.2rem; margin-bottom: 1.1rem; }
.fieldset-person legend { font-family: var(--serif); color: var(--gold-soft); padding: 0 .5rem; font-size: 1.1rem; }
.hidden { display: none !important; }

.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: .8rem; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-size: .92rem; display: none; }
.form-status.show { display: block; }
.form-status.success { background: rgba(120,190,140,.12); border: 1px solid #4f8a63; color: #b9e6c7; }
.form-status.error { background: rgba(224,115,106,.12); border: 1px solid #b25049; color: #ffc4bd; }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--sky-0); border-top: 1px solid var(--sky-line); padding: clamp(3rem,6vw,5rem) 0 2rem; }
.footer-grid { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1.2fr 1fr; } }
.footer-brand .brand-mark { font-size: 1.6rem; color: var(--gold); }
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--ink); margin: .6rem 0; max-width: 26ch; }
.footer-calling { color: var(--gold-soft); font-family: var(--serif); font-size: 1.05rem; }
.footer-col h2 { font-family: var(--sans); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--ink-soft); font-size: .95rem; margin-bottom: .55rem; }
.footer-col a:hover { color: var(--gold); }
.footer-note { font-size: .85rem; color: var(--ink-mute); margin-top: .6rem; }
.footer-base { max-width: var(--maxw); margin: 3rem auto 0; padding: 1.8rem var(--gutter) 0; border-top: 1px solid var(--sky-line); display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: space-between; }
.footer-base p { margin: 0; font-size: .82rem; color: var(--ink-mute); }
.footer-fineprint { max-width: 60ch; }

/* =========================================================================
   Interior pages (about / offerings / legal)
   ========================================================================= */
.page-hero { padding: 10rem var(--gutter) 4rem; text-align: center; position: relative; background: radial-gradient(80% 80% at 50% -10%, rgba(109,95,166,.22), transparent 60%); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.page-hero p { max-width: 60ch; margin-inline: auto; color: var(--ink-soft); }

.offer-group { margin-top: 3.5rem; }
.offer-group > h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); border-bottom: 1px solid var(--sky-line); padding-bottom: .6rem; }
.offer-list { display: grid; grid-template-columns: 1fr; gap: 1.3rem; margin-top: 1.8rem; }
@media (min-width: 760px) { .offer-list { grid-template-columns: 1fr 1fr; } }
.offer-item { background: var(--sky-2); border: 1px solid var(--sky-line); border-radius: var(--radius); padding: 1.5rem 1.6rem; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.offer-item:hover { border-color: var(--gold-deep); transform: translateY(-4px); }
@media (prefers-reduced-motion: reduce){ .offer-item:hover { transform: none; } }
.offer-item h3 { font-size: 1.35rem; margin-bottom: .2rem; }
.offer-item .service-sub { font-size: 1rem; }
.offer-item ul { margin: .8rem 0 1rem; padding-left: 1.1rem; color: var(--ink-soft); font-size: .93rem; }
.offer-item ul li { margin-bottom: .3rem; }
.offer-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--sky-line); }

.prose { max-width: 74ch; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; color: var(--gold-soft); }
.prose h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }
.prose .muted { color: var(--ink-mute); font-size: .9rem; }
.legal-meta { color: var(--ink-mute); font-size: .88rem; border-left: 2px solid var(--violet-deep); padding-left: 1rem; margin-bottom: 2rem; }

.back-link { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.5rem; font-size: .9rem; }

/* schedule table */
.schedule { width: 100%; border-collapse: collapse; margin-top: 2rem; overflow: hidden; border-radius: var(--radius-sm); }
.schedule th, .schedule td { text-align: left; padding: .9rem 1rem; border-bottom: 1px solid var(--sky-line); font-size: .95rem; }
.schedule th { color: var(--gold); font-family: var(--sans); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; background: var(--sky-2); }
.schedule tr:hover td { background: var(--sky-2); }

/* ---- Mobile nav ------------------------------------------------------- */
@media (max-width: 1200px) {
  .nav-toggle { display: block; z-index: 130; flex-shrink: 0; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px);
    background: rgba(8,11,28,.98); backdrop-filter: blur(16px);
    padding: 5.5rem 1.5rem 3rem; transform: translateX(100%);
    transition: transform .4s var(--ease); border-left: 1px solid var(--sky-line);
    overflow-y: auto; overscroll-behavior: contain;
    display: block;
    flex: none;
    justify-content: flex-start;
  }
  .nav-menu.open { transform: translateX(0); }
  body.nav-open { overflow: hidden; }

  .brand {
    font-size: 1.3rem;
  }

  /* Stacked accordion instead of hover dropdowns. */
  .nav-list { flex-direction: column; align-items: stretch; gap: .25rem; justify-content: flex-start; }
  .nav-item { border-bottom: 1px solid rgba(77, 92, 176, .25); }
  .nav-item:last-child { border-bottom: 0; padding-top: 1rem; }
  .nav-parent { justify-content: space-between; width: 100%; }
  .nav-link { font-size: 1.05rem; padding: .95rem 0; width: 100%; letter-spacing: .05em; }
  .lang-es .nav-link { font-size: 1.05rem; }
  .nav-link::after { display: none; }
  .nav-cta.nav-link { width: auto; text-align: center; justify-content: center; }

  .nav-sub-toggle { padding: .95rem .5rem; }
  .nav-sub-toggle svg { width: 14px; height: 10px; }

  .nav-sub {
    position: static; min-width: 0; left: auto; top: auto;
    background: none; border: 0; box-shadow: none; backdrop-filter: none;
    padding: 0 0 .5rem .5rem;
    opacity: 1; visibility: visible; transform: none;
    display: none;
  }
  .nav-item.is-open > .nav-sub { display: block; }
  .nav-sub::before { display: none; }
  .nav-sub a { padding: .55rem .6rem; font-size: 1rem; }
  .nav-sub-all { border-top-color: rgba(77, 92, 176, .25); }
}

/* =========================================================================
   RESTRUCTURE — typography scale, service pages, blog, FAQ
   Added when the site was split into per-report pages, a blog, and an FAQ.
   ========================================================================= */

/* ---- Typography scale (font-size.txt) --------------------------------- */
body { font-size: var(--fs-body); line-height: var(--lh-body); }
.hero-title { font-size: var(--fs-hero); font-weight: 600; letter-spacing: .02em; line-height: 1.05; }
.hero-tagline {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(1.125rem, 2.2vw, 1.75rem);
  color: var(--ink-soft); max-width: 42ch; margin-inline: auto;
}
.hero-note {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.65;
  margin-top: 2.2rem;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}
.section-title { font-size: var(--fs-section); }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: var(--fs-section); }
h3 { font-size: var(--fs-sub); }
.lead { font-size: var(--fs-lead); line-height: 1.7; }

.container-narrow { max-width: 46rem; margin-inline: auto; }

/* ---- Breadcrumbs + language toggle ------------------------------------ */
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  font-size: .875rem; color: var(--ink-mute); margin-bottom: 1.25rem;
}
.crumbs a { color: var(--violet-soft); }
.crumbs a:hover { color: var(--gold); }

.lang-toggle {
  display: inline-flex; gap: .25rem; margin-bottom: 1.25rem;
  padding: .25rem; border: 1px solid var(--sky-line); border-radius: 999px;
}
.lang-toggle a {
  padding: .35rem 1rem; border-radius: 999px;
  font-size: .875rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-mute); transition: background .25s var(--ease), color .25s var(--ease);
}
.lang-toggle a:hover { color: var(--gold); }
.lang-toggle a.is-active { background: var(--violet-deep); color: var(--ink); }

/* ---- Service detail page ---------------------------------------------- */
.service-hero h1 { text-wrap: balance; }
.service-hook { font-size: var(--fs-lead); color: var(--ink-soft); max-width: 48ch; }
.service-lines {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem); color: var(--gold-soft);
  margin-top: 1.5rem; line-height: 1.5;
}
.service-keywords {
  margin-top: 1.25rem; color: var(--violet-soft);
  letter-spacing: .08em; text-transform: uppercase; font-size: .875rem; font-weight: 600;
}

.service-layout { display: grid; grid-template-columns: minmax(0, 1fr) 21rem; gap: 3rem; align-items: start; }
.service-main > h2 { margin-top: 2.5rem; }
.service-includes { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.service-includes li {
  position: relative; padding-left: 1.75rem; margin-bottom: .85rem; color: var(--ink-soft);
}
.service-includes li::before { content: '\2726'; position: absolute; left: 0; color: var(--gold); }

.service-closing {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--violet-deep);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: var(--gold-soft); line-height: 1.6;
}

.service-side { position: sticky; top: 6rem; }
.service-panel {
  background: var(--sky-2); border: 1px solid var(--sky-line);
  border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow);
}
.panel-price { font-family: var(--serif); font-size: 2.75rem; color: var(--gold); line-height: 1; margin: 0; }
.panel-note { color: var(--ink-mute); font-size: .875rem; margin-top: .5rem; }
.service-panel dl { margin: 1.5rem 0; display: grid; gap: .75rem; }
.service-panel dt {
  color: var(--violet-soft); font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.service-panel dd { margin: .2rem 0 0; color: var(--ink-soft); font-size: .95rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.panel-fine { color: var(--ink-mute); font-size: .8125rem; margin-top: 1rem; line-height: 1.6; }
.panel-fine a { color: var(--violet-soft); text-decoration: underline; }

/* ---- Tiers ------------------------------------------------------------- */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.tier-card {
  display: flex; flex-direction: column;
  background: var(--sky-1); border: 1px solid var(--sky-line);
  border-radius: var(--radius); padding: 1.5rem;
}
.tier-card h3 { margin: 0; font-size: 1.5rem; color: var(--gold-soft); }
.tier-price { font-family: var(--serif); font-size: 2rem; color: var(--gold); margin: .25rem 0 .35rem; }
.tier-format { color: var(--ink-soft); font-size: .9rem; margin: 0; }
.tier-delivery { color: var(--ink-mute); font-size: .8125rem; margin: .2rem 0 0; }
.tier-intro { color: var(--violet-soft); font-size: .875rem; font-style: italic; margin: 1rem 0 .5rem; }
.tier-card ul { list-style: none; padding: 0; margin: 1rem 0 1.5rem; flex: 1; }
.tier-card li { position: relative; padding-left: 1.35rem; margin-bottom: .6rem; font-size: .9375rem; color: var(--ink-soft); }
.tier-card li::before { content: '\2022'; position: absolute; left: .25rem; color: var(--gold); }
.btn-outline { border-color: var(--sky-line); color: var(--ink); background: transparent; }
.btn-outline:hover { color: var(--gold); border-color: var(--gold-deep); }

/* ---- Follow-up sessions ------------------------------------------------ */
.followup-list { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.followup { background: var(--sky-1); border: 1px solid var(--sky-line); border-radius: var(--radius); padding: 1.5rem; }
.followup-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.followup-head h3 { margin: 0; font-size: 1.35rem; }
.followup-price { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.followup ul { list-style: none; padding: 0; margin: 1rem 0 1.25rem; }
.followup li { position: relative; padding-left: 1.35rem; margin-bottom: .5rem; font-size: .9375rem; color: var(--ink-soft); }
.followup li::before { content: '\2022'; position: absolute; left: .25rem; color: var(--gold); }

/* ---- Index pages ------------------------------------------------------- */
.hero-facts { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: .6rem; }
.hero-facts li {
  position: relative; padding-left: 1.6rem;
  color: var(--ink-mute); font-size: .9375rem;
}
.hero-facts li::before { content: '\2726'; position: absolute; left: 0; color: var(--violet-soft); }

.offer-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); gap: 1.75rem; }
.offer-item {
  display: flex; flex-direction: column;
  background: var(--sky-1); border: 1px solid var(--sky-line);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.offer-item:hover { border-color: var(--violet); transform: translateY(-3px); }
.offer-item h3 { margin: 0 0 .35rem; font-size: 1.45rem; }
.offer-item h3 a { color: var(--ink); }
.offer-item h3 a:hover { color: var(--gold); }
.service-sub { color: var(--gold-soft); font-family: var(--serif); font-style: italic; font-size: 1.05rem; margin: 0 0 .75rem; }
.offer-item ul { list-style: none; padding: 0; margin: 1rem 0; }
.offer-item li { position: relative; padding-left: 1.35rem; margin-bottom: .45rem; font-size: .9rem; color: var(--ink-soft); }
.offer-item li::before { content: '\2022'; position: absolute; left: .25rem; color: var(--gold); }
.offer-foot {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem;
  margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--sky-line);
}
.service-price { font-family: var(--serif); font-size: 1.9rem; color: var(--gold); line-height: 1; }
.service-price small { display: block; font-family: var(--sans); font-size: .75rem; color: var(--ink-mute); margin-top: .35rem; }
.service-format { text-align: right; font-size: .8125rem; color: var(--ink-soft); }
.service-delivery { color: var(--ink-mute); }
.service-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
.service-actions .btn { font-size: .9rem; padding: .65rem 1.25rem; }
.offer-outro { margin-top: 2.5rem; }
.offer-outro a { color: var(--violet-soft); text-decoration: underline; }

.cross-sell {
  margin-top: 3.5rem; padding: 2.25rem; text-align: center;
  background: var(--sky-2); border: 1px solid var(--sky-line); border-radius: var(--radius);
}
.cross-sell h2 { margin-top: 0; font-size: var(--fs-sub); }
.cross-sell p { color: var(--ink-soft); max-width: 52ch; margin-inline: auto; }

.related-band { background: var(--sky-1); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.5rem; }
.related-card {
  display: block; padding: 1.5rem; border-radius: var(--radius);
  background: var(--sky-2); border: 1px solid var(--sky-line);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.related-card:hover { border-color: var(--violet); transform: translateY(-3px); }
.related-card h3 { margin: 0 0 .5rem; font-size: 1.25rem; color: var(--ink); }
.related-card p { color: var(--ink-mute); font-size: .9rem; margin: 0 0 1rem; }
.related-price { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); }

/* ---- About page -------------------------------------------------------- */
.about-credential { color: var(--gold-soft); letter-spacing: .04em; font-weight: 600; }
.about-photo figcaption { margin-top: .75rem; color: var(--ink-mute); font-size: .875rem; text-align: center; }
.about-topics { background: var(--sky-1); }
.topic-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: .75rem; }
.topic-list a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  background: var(--sky-2); border: 1px solid var(--sky-line);
  color: var(--ink-soft); transition: border-color .25s var(--ease), color .25s var(--ease);
}
.topic-list a:hover { border-color: var(--gold-deep); color: var(--gold); }
.topic-name { font-weight: 600; }
.topic-price { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }

.boutique-band { background: var(--sky-1); text-align: center; }
.boutique-status {
  display: inline-block; margin-top: 1rem; padding: .5rem 1.25rem;
  border: 1px dashed var(--sky-line); border-radius: 999px;
  color: var(--violet-soft); font-size: .875rem; letter-spacing: .05em; text-transform: uppercase;
}

.english-only-note {
  display: inline-block;
  margin: .65rem 0 0;
  padding: .35rem .85rem;
  border: 1px dashed var(--sky-line);
  border-radius: 999px;
  color: var(--violet-soft);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.3;
}
.page-hero .english-only-note { margin: .75rem 0 1rem; }
.offer-item .english-only-note { margin: 0 0 .75rem; }
.bento-text .english-only-note { margin: 0 0 .65rem; }
.service-hero .english-only-note { margin: .5rem 0 1rem; }

.timeline { list-style: none; padding: 0; margin: 2rem 0; display: grid; gap: 1.5rem; }
.timeline li { display: grid; grid-template-columns: 5rem 1fr; gap: 1.5rem; align-items: start; }
.timeline-year { font-family: var(--serif); font-size: 1.75rem; color: var(--gold); }
.timeline p { margin: 0; color: var(--ink-soft); }
.about-signoff { font-size: var(--fs-lead); color: var(--ink-soft); margin-top: 2rem; }
.about-signature { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold-soft); }
.background-band { background: var(--sky-1); }

/* ---- How Astrology Works ---------------------------------------------- */
.how-band { background-image: radial-gradient(100% 100% at 50% 50%, rgba(8, 11, 28, 0.8) 0%, rgba(20, 23, 43, 0.96) 100%), url("../img/cosmic-bg.png"); background-size: cover; background-position: center; background-repeat: no-repeat; }
.how-quote {
  margin: 2rem 0 0; padding: 1.5rem 0 1.5rem 2rem;
  border-left: 2px solid var(--gold-deep);
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic; color: var(--gold-soft);
}

/* ---- Blog -------------------------------------------------------------- */
.blog-band { background: var(--sky-1); }
.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  color: var(--ink-mute); font-size: .8125rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.post-feature {
  display: block; margin-bottom: 2.5rem; padding: 2.5rem;
  border-radius: var(--radius); background: var(--sky-2);
  border: 1px solid var(--sky-line);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.post-feature:hover { border-color: var(--violet); transform: translateY(-3px); }
.post-feature h2 { margin: .25rem 0 .5rem; font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--ink); }
.post-feature p { color: var(--ink-soft); max-width: 60ch; margin-top: .25rem; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1.75rem; }
.post-card {
  display: flex; flex-direction: column; padding: 1.75rem;
  border-radius: var(--radius); background: var(--sky-1);
  border: 1px solid var(--sky-line);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.blog-band .post-card { background: var(--sky-2); }
.post-card:hover { border-color: var(--violet); transform: translateY(-3px); }
.post-card h3 { margin: .25rem 0 .5rem; font-size: 1.35rem; color: var(--ink); line-height: 1.3; }
.post-card p { color: var(--ink-mute); font-size: .9375rem; flex: 1; margin-top: .25rem; }
.post-more { color: var(--gold); font-weight: 600; font-size: .875rem; margin-top: .75rem; }

.post-hero { text-align: left; padding-bottom: 1.5rem; }
.post-hero h1 { max-width: 28ch; margin-bottom: 0.5rem; }
.post-body { margin-top: 0; }
.post-body > p:first-child { margin-top: 0; }
.post-body p { color: var(--ink-soft); line-height: 1.75; }
.post-body h2 { margin: 2.5rem 0 1rem; font-size: var(--fs-sub); color: var(--gold-soft); }
.post-questions { list-style: none; padding: 1.25rem 0 1.25rem 1.75rem; margin: 1.5rem 0; border-left: 2px solid var(--violet); }
.post-questions li { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--ink); margin-bottom: .5rem; }
.post-pull {
  margin: 2rem 0; padding: 1.5rem 0 1.5rem 2rem;
  border-left: 2px solid var(--gold-deep);
}
.post-pull p { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.5rem); font-style: italic; color: var(--gold-soft); margin: 0; }
.post-closing {
  margin: 2.5rem 0 0; font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem); color: var(--gold); text-align: center;
}
.post-cta {
  margin-top: 2rem; padding: 2rem; text-align: center;
  background: var(--sky-2); border: 1px solid var(--sky-line); border-radius: var(--radius);
}
.post-cta p { color: var(--ink-soft); margin-top: 0; }
.post-cta a { color: var(--gold); text-decoration: underline; }
.post-cta .btn { text-decoration: none; margin-top: .75rem; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.post-nav a {
  display: block; padding: 1.25rem; border-radius: var(--radius-sm);
  background: var(--sky-1); border: 1px solid var(--sky-line);
  transition: border-color .25s var(--ease);
}
.post-nav a:hover { border-color: var(--violet); }
.post-nav span { display: block; color: var(--ink-mute); font-size: .8125rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .35rem; }
.post-nav strong { color: var(--ink-soft); font-weight: 500; font-size: .95rem; }
.post-nav-next { text-align: right; grid-column: 2; }
.back-link-wrap { margin-top: 2.5rem; }

/* ---- FAQ --------------------------------------------------------------- */
.faq-jump { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 3rem; }
.faq-jump a {
  padding: .45rem 1rem; border-radius: 999px;
  border: 1px solid var(--sky-line); color: var(--ink-mute); font-size: .875rem;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.faq-jump a:hover { border-color: var(--gold-deep); color: var(--gold); }

.faq-group { margin-bottom: 3rem; scroll-margin-top: 6rem; }
.faq-group h2 { font-size: var(--fs-sub); color: var(--gold-soft); margin-bottom: 1.25rem; }
.faq-item { border-bottom: 1px solid var(--sky-line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0; cursor: pointer; list-style: none;
  font-size: 1.0625rem; font-weight: 600; color: var(--ink);
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-chevron { flex: none; width: 14px; height: 10px; color: var(--ink-mute); transition: transform .3s var(--ease); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-answer { padding: 0 0 1.5rem; }
.faq-answer p { margin: 0; color: var(--ink-soft); max-width: 68ch; }

/* ---- Contact page ------------------------------------------------------ */
.chosen-note {
  padding: 1.5rem; margin-bottom: 2rem;
  background: var(--sky-2); border: 1px solid var(--gold-deep); border-radius: var(--radius);
}
.chosen-note h2 { margin: .5rem 0; font-size: 1.35rem; }
.chosen-price { font-family: var(--serif); font-size: 1.75rem; color: var(--gold); margin: 0 0 .75rem; }
.chosen-price small { display: block; font-family: var(--sans); font-size: .75rem; color: var(--ink-mute); }
.contact-facts { margin-top: 2rem; }
.contact-facts h2 { font-size: 1.2rem; }
.contact-facts ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.contact-facts li { position: relative; padding-left: 1.6rem; margin-bottom: .6rem; color: var(--ink-mute); font-size: .9rem; }
.contact-facts li::before { content: '\2726'; position: absolute; left: 0; color: var(--violet-soft); }
.contact-facts a { color: var(--violet-soft); }
.field-hint { color: var(--ink-mute); font-size: .8125rem; margin: .35rem 0 0; }

/* ---- 404 / misc -------------------------------------------------------- */
.notfound-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.services-foot { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
.footer-legal { display: flex; flex-direction: column; gap: .4rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--sky-line); }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 960px) {
  .service-layout { grid-template-columns: 1fr; }
  .service-side { position: static; }
}
@media (max-width: 640px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { grid-column: 1; text-align: left; }
  .timeline li { grid-template-columns: 1fr; gap: .35rem; }
  .offer-foot { flex-direction: column; align-items: flex-start; }
  .service-format { text-align: left; }
  .post-feature { padding: 1.75rem; }
}

/* ---- Nav Language Selector -------------------------------------------- */
.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--sky-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  margin-left: 0.5rem;
}
.nav-lang-toggle a {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  transition: color 0.25s var(--ease);
}
.nav-lang-toggle a:hover, .nav-lang-toggle a.active {
  color: var(--gold);
}
.nav-lang-toggle .divider {
  font-size: 0.75rem;
  color: var(--sky-line);
}
@media (max-width: 1200px) {
  .nav-lang-toggle {
    margin-left: 0;
    margin-top: 1rem;
    padding: 0.4rem 1rem;
  }
  .nav-lang-toggle a {
    font-size: 0.85rem;
  }
}

/* Cinematic Video Section */
.video-section {
  background: var(--sky-2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 2.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  background: #000;
}
.cinematic-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* ==========================================================================
   Astro Life Boutique — product grid, product page, cart & checkout
   ========================================================================== */
.nav-cart { white-space: nowrap; }
.nav-cart-count {
  display: inline-block; min-width: 1.4em; padding: 0 .35em;
  border-radius: 999px; background: var(--accent, #FCE935); color: #14172b;
  font-size: .75em; font-weight: 700; text-align: center; vertical-align: middle;
}

.boutique-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.6rem; margin-top: 1rem;
}
.product-card {
  display: block; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09); border-radius: 14px;
  padding: 1rem; text-decoration: none; color: inherit;
  transition: transform .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(252,233,53,.5); }
.product-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px;
  background: rgba(255,255,255,.04);
}
.product-card h2 { font-size: 1.05rem; margin: .8rem 0 .2rem; line-height: 1.35; }
.product-price { color: #FCE935; font-weight: 600; margin: 0; }
.product-soldout { color: #f87171; font-size: .85rem; font-weight: 600; margin-top: .3rem; }
.product-noimg {
  width: 100%; aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 10px; background: rgba(255,255,255,.05);
  color: #FCE935; font-size: 3rem;
}

.product-layout {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2rem;
}
@media (min-width: 820px) { .product-layout { grid-template-columns: 1fr 1fr; } }
.product-media img[data-main-image] { width: 100%; border-radius: 14px; }
.product-noimg-lg { font-size: 5rem; }
.product-thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.product-thumb {
  width: 64px; height: 64px; padding: 0; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.15); background: none; cursor: pointer;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumb:hover { border-color: #FCE935; }
.product-detail-price { color: #FCE935; font-size: 1.6rem; font-weight: 700; margin: .4rem 0 1.2rem; }
.product-qty input { max-width: 110px; }
.product-desc { margin-top: 1.6rem; color: inherit; }
.product-desc p { margin-bottom: .9rem; }
form[data-add-to-cart] .btn { margin-right: .6rem; }

.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-top: 1.5rem; }
@media (min-width: 900px) { .checkout-layout { grid-template-columns: 1.1fr 1fr; align-items: start; } }
.cart-line {
  display: grid; grid-template-columns: 72px 1fr auto auto auto;
  gap: .9rem; align-items: center; padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cart-line img, .cart-line .product-noimg {
  width: 72px; height: 72px; aspect-ratio: 1; object-fit: cover;
  border-radius: 10px; font-size: 1.6rem;
}
.cart-line-title { font-weight: 600; margin: 0; }
.cart-line-variant, .cart-line-unit { color: rgba(213,217,235,.65); font-size: .85rem; margin: 0; }
.cart-line-qty input { width: 74px; }
.cart-line-total { font-weight: 700; color: #FCE935; margin: 0; white-space: nowrap; }
.cart-remove {
  background: none; border: none; color: rgba(213,217,235,.5);
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: .2rem .4rem;
}
.cart-remove:hover { color: #f87171; }
.cart-subtotal { text-align: right; margin-top: 1rem; font-size: 1.05rem; }
.cart-subtotal b { color: #FCE935; }
.checkout-form h2 { font-size: 1.1rem; margin: 1.2rem 0 .8rem; }
.checkout-form h2:first-of-type { margin-top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
@media (max-width: 560px) {
  .cart-line { grid-template-columns: 56px 1fr auto; grid-auto-rows: auto; }
  .cart-line img, .cart-line .product-noimg { width: 56px; height: 56px; }
  .cart-line-qty, .cart-line-total { grid-column: 2 / -1; justify-self: end; }
}
