/* ==========================================================================
   Golden Space Malaysia — "Guided Meditation for a Quieter Mind"
   --------------------------------------------------------------------------
   Design system (final, per content & build spec):

     #283747  navy         primary dark background
     #1F2C38  navy-deep    secondary dark bands (trust strip, research,
                           footer, sticky CTA)
     #F7F2EA  cream        light background
     #EDE5D8  cream-deep   light secondary bands
     #CBA43C  gold         muted brass accent
     #F3E9C4  gold-soft    badge labels + highlight marker effect
     #1A1A1A  ink          text on light backgrounds
     #5C5850  muted        secondary text on light (SOLID, not opacity)
     #B7BFC7  dark-body    body text on dark backgrounds (SOLID)
     #9AA3AB  dark-dim     dimmer text on dark backgrounds (SOLID)
     #2D6A4F  green        deliberate exception: pricing checklist +
                           date-picker checkmarks / warning / "Save 62%"

   Rules from the spec, honoured throughout:
   - No opacity-faded TEXT anywhere; every muted tone is a solid hex above.
     (Low-opacity CARD FILLS on dark bands are part of the spec and remain.)
   - Body text 18–19px minimum, line-height 1.7 (presbyopia-friendly).
   - Eyebrows / meta / CTA notes never below 14px.
   - Headings: Bricolage Grotesque, weight 500 (not heavier), ~20–28px.
   - Buttons / tap targets: 48px minimum height.
   - Icons: outline set (self-hosted, phosphor-icons.css), always with text.
   - GREEN appears only in the Pricing card + Date Picker; every other
     checklist on the page uses GOLD. Keep this distinction.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --navy: #283747;
  --navy-deep: #1F2C38;
  --cream: #F7F2EA;
  --cream-deep: #EDE5D8;
  --gold: #CBA43C;
  --gold-soft: #F3E9C4;
  --ink: #1A1A1A;
  --muted: #5C5850;        /* secondary text on light */
  --dark-body: #B7BFC7;    /* body text on dark */
  --dark-dim: #9AA3AB;     /* dimmer text on dark */
  --green: #2D6A4F;
  --white: #FFFFFF;

  /* hairlines + faint fills (fills may use alpha; text never does) */
  --ink-line: color-mix(in srgb, var(--ink) 14%, transparent);
  --ink-faint: color-mix(in srgb, var(--ink) 5%, transparent);
  --cream-line: color-mix(in srgb, var(--cream) 14%, transparent);
  --gold-line: color-mix(in srgb, var(--gold) 30%, transparent);

  /* WooCommerce stylesheet compatibility (assets/css/woocommerce.css) */
  --navy-line: color-mix(in srgb, var(--ink) 14%, transparent);
  --navy-muted: var(--muted);
  --navy-faint: color-mix(in srgb, var(--ink) 5%, transparent);
  --cream-muted: var(--dark-body);

  --font-display: "Bricolage Grotesque", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Karla", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --shell: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.75rem, 8vw, 6.5rem);

  --r-panel: 14px;
  --r-pill: 999px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --header-h: 68px;

  /* set per band, used by focus rings */
  --focus: var(--ink);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.1875rem;          /* 19px — spec minimum 18–19px */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;              /* spec: 500, not heavier */
  letter-spacing: -0.02em;
}
p, ul, ol, dl, figure, blockquote, fieldset { margin: 0; }
ul, ol { list-style: none; padding: 0; }
fieldset { padding: 0; border: 0; }
a { color: inherit; }
b, strong { font-weight: 700; }
mark { background: none; color: inherit; }
::selection { background: var(--gold); color: var(--navy-deep); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -110%);
  z-index: 100;
  background: var(--gold); color: var(--navy-deep);
  padding: .7rem 1.25rem; border-radius: 0 0 var(--r-panel) var(--r-panel);
  font-weight: 700; text-decoration: none;
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

/* ---------- layout primitives ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell-narrow { max-width: 860px; }

main > section { padding-block: var(--section-y); position: relative; }
main > section[id],
#main { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* Fixed header is always visible; on inner pages, clear it. The front page
   hero carries its own clearance. */
body:not(.home) main { padding-top: var(--header-h); }

/* ---------- bands ---------- */
.band-navy      { background: var(--navy);      color: var(--cream); --focus: var(--gold); }
.band-navy-deep { background: var(--navy-deep); color: var(--cream); --focus: var(--gold); }
.band-cream      { background: var(--cream);      color: var(--ink); --focus: var(--ink); }
.band-cream-deep { background: var(--cream-deep); color: var(--ink); --focus: var(--ink); }

/* Default body copy per band — solid colours only, no opacity text. */
.band-navy p,
.band-navy-deep p { color: var(--dark-body); }
.band-navy h1, .band-navy h2, .band-navy h3,
.band-navy-deep h1, .band-navy-deep h2, .band-navy-deep h3 { color: var(--cream); }
.band-cream p, .band-cream-deep p { color: var(--ink); }
.t-muted { color: var(--muted); }
.t-dim { color: var(--dark-dim); }

/* ---------- type ---------- */
p.eyebrow,
.eyebrow {
  font-family: var(--font-body);
  font-size: .9375rem;           /* 15px — spec minimum 14–16px */
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: var(--muted);
}
.band-navy .eyebrow,
.band-navy-deep .eyebrow { color: var(--gold); }

h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);   /* 28–36px */
  line-height: 1.2;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);      /* 24–28px */
  line-height: 1.25;
  max-width: 26ch;
}
h3 { font-size: 1.3125rem; line-height: 1.3; }  /* 21px */

p.section-intro,
.section-intro {
  margin-top: 1.1rem;
  max-width: 58ch;
  color: var(--muted);
}
.band-navy .section-intro,
.band-navy-deep .section-intro { color: var(--dark-body); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 48px;              /* spec: 48px minimum tap target */
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  padding: .8rem 1.9rem;
  border: 0;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 8px 20px -10px color-mix(in srgb, var(--navy-deep) 70%, transparent);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px -12px color-mix(in srgb, var(--navy-deep) 75%, transparent);
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

.btn-sm { padding: .55rem 1.3rem; font-size: 1rem; }
.btn-lg { padding: .95rem 2.4rem; font-size: 1.125rem; }
.btn-xl { padding: 1.05rem 2.8rem; font-size: clamp(1.125rem, 1.6vw, 1.25rem); gap: .9rem; }
.btn-block { width: 100%; }
.btn-note {
  font-weight: 700;
  font-size: 1em;
  padding-left: .9rem;
  border-left: 1px solid color-mix(in srgb, var(--navy-deep) 30%, transparent);
}

/* Small note under a CTA — lock icon + text. Never below 14px. */
.cta-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .9375rem;
  color: var(--dark-dim);
}
.cta-note .ph { color: var(--gold); font-size: 1.05rem; }
.band-navy .cta-note,
.band-navy-deep .cta-note { color: var(--dark-dim); }
.band-cream .cta-note,
.band-cream-deep .cta-note,
.price-card .cta-note { color: var(--muted); }

/* ==========================================================================
   0. HEADER  |  navy, sticky, slightly transparent + blurred
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background: color-mix(in srgb, var(--navy) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-line);
  color: var(--cream);
  --focus: var(--gold);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .55);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo: the bundled The Golden Space image (header.php fallback). */
.site-logo { display: inline-flex; align-items: center; line-height: 0; }

/* One sizing rule for both the bundled logo and a Customizer logo. */
.site-logo img,
.site-header .custom-logo,
.site-header .custom-logo-link img {
  display: block;
  height: clamp(34px, 5vw, 44px) !important;
  width: auto !important;
  max-height: clamp(34px, 5vw, 44px) !important;
  max-width: 220px;
  object-fit: contain;
}
.site-header { overflow: hidden; }
.site-header .custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--navy); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* ==========================================================================
   1. HERO  |  navy · copy left, photo right, navy gradient on the photo's
   left edge blending it into the band
   ========================================================================== */
.hero {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-copy { max-width: 36rem; }

.hero h1 { max-width: 20ch; }
.hero .h1-quiet { color: var(--cream); display: block; }
.hero .h1-loud { color: var(--gold); display: block; }

.hero-deck {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.4375rem);
  line-height: 1.35;
  margin-top: 1.1rem;
  color: var(--cream) !important;
}
.hero-body { margin-top: 1rem; max-width: 46ch; }

/* Trust badges — gold pill outline, icon gold, label gold-soft. */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.6rem;
}
.badges li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .95rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--gold) 7%, transparent);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--gold-soft);
  white-space: nowrap;
}
.badges .ph { color: var(--gold); font-size: 1.1rem; }

/* Price + meta list with gold dot separators. */
.hero-price {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-top: 1.7rem;
}
.price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--gold);
}
.price-was {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--dark-dim);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-top: .5rem;
  font-size: .9375rem;
  color: var(--dark-dim);
}
.hero-meta li { display: inline-flex; align-items: baseline; }
.hero-meta li + li::before {
  content: "·";
  color: var(--gold);
  font-weight: 700;
  margin-inline: .7rem;
}

.hero-cta { margin-top: 1.9rem; }

.hero-media {
  position: relative;
  border-radius: var(--r-panel);
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 62% 50%;
}
/* Spec: navy-to-transparent gradient on the image's LEFT edge. */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 34%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-media { order: 2; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .hero-media::after { background: linear-gradient(180deg, var(--navy) 0%, transparent 34%); }
}

/* ==========================================================================
   2. TRUST STRIP  |  navy-deep, thin band
   ========================================================================== */
main > section.trust { padding-block: clamp(1.5rem, 3vw, 2.1rem); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem clamp(1.5rem, 4vw, 3.25rem);
}
.trust-stat {
  display: flex;
  align-items: baseline;
  gap: .55rem;
}
.trust-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--gold);
}
.trust-label { font-size: .9375rem; color: var(--dark-dim); }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--dark-body);
}
.trust-badge .ph { color: var(--gold); font-size: 1.15rem; }

@media (max-width: 720px) {
  .trust-row { justify-content: flex-start; }
}

/* ==========================================================================
   3. EMOTIONAL STORY  |  cream · one line at a time, gold-soft highlights
   ========================================================================== */
.story-lines { margin-top: clamp(1.75rem, 4vw, 2.5rem); max-width: 56ch; }
.story-lines p { margin-top: 1.35rem; }
.story-lines p:first-child { margin-top: 0; }
.hl {
  background: var(--gold-soft);
  color: var(--ink);
  padding: .08em .3em;
  border-radius: 5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 600;
}

/* ==========================================================================
   4. SIGNS YOU NEED THIS  |  cream-deep · six white cards, gold icons
   ========================================================================== */
.signs-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}
.sign-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--r-panel);
  padding: clamp(1.25rem, 2.4vw, 1.6rem);
  box-shadow: 0 10px 30px -22px color-mix(in srgb, var(--ink) 55%, transparent);
}
.sign-icon {
  flex: none;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-deep);
}
.sign-icon .ph { color: var(--gold); font-size: 1.55rem; }
.sign-card p { font-weight: 500; line-height: 1.5; }

@media (max-width: 960px) { .signs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .signs-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   5. WHY IT HAPPENS  |  navy · the cycle, then the gold solution callout
   ========================================================================== */
.cycle-steps {
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 640px;
}
.cycle-step {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: color-mix(in srgb, var(--cream) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 12%, transparent);
  border-radius: var(--r-panel);
  padding: 1rem 1.25rem;
}
.cycle-num {
  flex: none;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.cycle-step p { color: var(--cream); font-weight: 500; line-height: 1.5; }
.cycle-arrow {
  display: flex;
  justify-content: center;
  padding: .35rem 0;
  color: var(--gold);
  font-size: 1.3rem;
}

.solution-callout {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  max-width: 640px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--gold) 10%, transparent),
    color-mix(in srgb, var(--gold) 4%, transparent)
  );
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  border-radius: var(--r-panel);
  padding: clamp(1.5rem, 3vw, 2.1rem);
}
.solution-callout h3 { color: var(--gold); }
.solution-callout p { margin-top: .8rem; }

/* ==========================================================================
   6. WHAT YOU'LL EXPERIENCE  |  cream · photo + gold checklist
   ========================================================================== */
.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.experience-media { border-radius: var(--r-panel); overflow: hidden; }
.experience-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.checklist { margin-top: 1.6rem; display: grid; gap: 1.1rem; }
.checklist li { display: flex; align-items: flex-start; gap: .85rem; }
.checklist .ph-bold { flex: none; margin-top: .3rem; font-size: 1.25rem; color: var(--gold); }
.checklist b { font-weight: 700; }
.checklist p { line-height: 1.55; }
.experience .btn { margin-top: 1.9rem; }

@media (max-width: 900px) {
  .experience-grid { grid-template-columns: 1fr; }
  .experience-media { order: -1; }
}

/* ==========================================================================
   7. TRANSFORMATION TIMELINE  |  cream-deep · four centred white cards
   ========================================================================== */
.timeline-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}
.timeline-card {
  background: var(--white);
  border-radius: var(--r-panel);
  padding: clamp(1.4rem, 2.6vw, 1.9rem) 1.25rem;
  text-align: center;
  box-shadow: 0 10px 30px -22px color-mix(in srgb, var(--ink) 55%, transparent);
}
.timeline-card .timeline-when {
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.timeline-what {
  margin-top: .7rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1875rem;
  line-height: 1.45;
  color: var(--ink);
}

@media (max-width: 960px) { .timeline-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .timeline-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   8. AUTHORITY / INSTRUCTOR  |  navy · photo, stat grid, awards list
   ========================================================================== */
.authority-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}
.authority-media {
  border-radius: var(--r-panel);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.authority-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.authority-copy p { margin-top: 1.1rem; max-width: 56ch; }
.gold-em { color: var(--gold); font-weight: 600; }

.stat-grid {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
}
.stat-card {
  background: color-mix(in srgb, var(--cream) 4%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 10%, transparent);
  border-radius: var(--r-panel);
  padding: 1.1rem .9rem;
  text-align: center;
}
.stat-card .stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat-card .stat-label { margin-top: .3rem; font-size: .9375rem; color: var(--dark-dim); }

.awards { margin-top: 1.9rem; display: grid; gap: .85rem; }
.awards li { display: flex; align-items: flex-start; gap: .75rem; color: var(--dark-body); }
.awards .ph { flex: none; margin-top: .35rem; color: var(--gold); font-size: 1.2rem; }

@media (max-width: 900px) {
  .authority-grid { grid-template-columns: 1fr; }
  .authority-media { position: static; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   9. TESTIMONIALS  |  cream · white cards in a horizontal scroll rail
   ========================================================================== */
.voices-rail {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  gap: clamp(1rem, 2vw, 1.4rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--gutter) 1rem;
  max-width: var(--shell);
  margin-inline: auto;
}
.voice {
  flex: 0 0 min(82%, 21.5rem);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--r-panel);
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  box-shadow: 0 10px 30px -22px color-mix(in srgb, var(--ink) 55%, transparent);
}

/*
 * Scroll rail thumb, themed gold. Only the thumb is visible — the track is
 * transparent, so there's no grey rail or border, just a slim gold bar that
 * shrinks as you scroll. Its length maps to the scrollable content, so the
 * left edge lines up under the first card. No margin/padding on the track:
 * the rail's own inline padding already insets it to the card edge, and
 * adding more would push the bar off to the right. Styled for both
 * WebKit/Blink (::-webkit-scrollbar) and Firefox (scrollbar-*).
 */
.voices-rail {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.voices-rail::-webkit-scrollbar {
  height: 6px;
}
.voices-rail::-webkit-scrollbar-track {
  background: transparent;
}
.voices-rail::-webkit-scrollbar-thumb {
  background: var(--gold);
  border: 0;
  border-radius: 99px;
}
.voices-rail::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--gold) 82%, var(--ink));
}
.voice .stars,
.stars .ph { display: flex; gap: .2rem; color: var(--gold); font-size: 1.05rem; }
.stars .ph { display: inline-block; }
.voice blockquote {
  margin-top: .9rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--ink);
}
.voice figcaption {
  margin-top: 1.1rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   10. RESEARCH  |  navy-deep · four stat cards
   ========================================================================== */
.research-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.9rem, 2vw, 1.3rem);
}
.research-card {
  background: color-mix(in srgb, var(--cream) 4%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 12%, transparent);
  border-radius: var(--r-panel);
  padding: clamp(1.4rem, 2.6vw, 1.9rem) 1.25rem;
  text-align: center;
}
.research-card .research-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.research-label { margin-top: .5rem; line-height: 1.45; }
.research .source {
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  max-width: 64ch;
  font-size: .875rem;            /* 14px — the spec's floor for meta text */
  line-height: 1.6;
  color: var(--dark-dim);
}

@media (max-width: 960px) { .research-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .research-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   11. PRICING  |  cream, centred · white card, 2px gold border, GREEN checks
   (the deliberate colour exception, together with the date picker)
   ========================================================================== */
.pricing { text-align: center; }
.pricing h2, .pricing .section-intro { margin-inline: auto; }

.price-card {
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  max-width: 34rem;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--r-panel);
  box-shadow: 0 22px 55px -25px color-mix(in srgb, var(--gold) 55%, transparent);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: left;
}
.price-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem .95rem;
  border-radius: var(--r-pill);
}
.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .7rem;
  margin-top: 1.1rem;
}
.price-now {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3rem);
  color: var(--ink);
  line-height: 1;
}
.price-old { font-size: 1.125rem; color: var(--muted); text-decoration: line-through; }
.price-save { font-size: 1rem; font-weight: 700; color: var(--green); }

.price-card .checklist { margin-top: 1.5rem; }
.price-card .checklist .ph-bold { color: var(--green); }  /* GREEN, per spec */
.price-card .btn { margin-top: 1.7rem; }
.price-card .cta-note { justify-content: center; }

/* ==========================================================================
   12. DATE PICKER  |  cream-deep · white card rows, green check + gold
   border on the selected row (the other half of the colour exception)
   ========================================================================== */
.dates-warning {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-top: 1.1rem;
  max-width: 58ch;
  font-weight: 700;
  color: var(--green) !important;
}
.dates-warning .ph { flex: none; margin-top: .3rem; font-size: 1.15rem; }

.date-list {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  display: grid;
  gap: .8rem;
}
.date-row {
  position: relative;
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr) 9.5rem 2rem;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--r-panel);
  box-shadow: 0 8px 24px -20px color-mix(in srgb, var(--ink) 55%, transparent);
  padding: 1.05rem 1.25rem;
  cursor: pointer;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.date-row:hover { transform: translateY(-1px); }
.date-row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.date-when b { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; color: var(--ink); }
.date-name { font-weight: 500; color: var(--ink); }
.date-time { color: var(--muted); font-size: .9375rem; white-space: nowrap; }

/* Green checkmark, visible only on the selected row; gold border marks it. */
.date-state {
  justify-self: end;
  color: var(--green);
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.date-row:has(input:checked) { border-color: var(--gold); }
.date-row:has(input:checked) .date-state { opacity: 1; }
.date-row:has(input:focus-visible) { outline: 2px solid var(--focus); outline-offset: 2px; }

/* Sold-out rows: visible for social proof, not selectable. */
.date-row.is-sold-out { cursor: not-allowed; box-shadow: none; background: color-mix(in srgb, var(--white) 55%, var(--cream-deep)); }
.date-row.is-sold-out:hover { transform: none; }
.date-row.is-sold-out .date-when b,
.date-row.is-sold-out .date-name { text-decoration: line-through; text-decoration-thickness: 1px; color: var(--muted); }
.date-state.date-soldout {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  color: var(--muted);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Empty / coming-soon state. */
.dates-empty {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  padding: clamp(2rem, 5vw, 3rem);
  background: var(--white);
  border-radius: var(--r-panel);
  text-align: center;
}
.dates-empty p { color: var(--muted); }

.dates-foot {
  margin-top: clamp(1.6rem, 3vw, 2.25rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.dates-note { font-size: 1rem; font-weight: 600; color: var(--ink); }

@media (max-width: 760px) {
  .date-row {
    grid-template-columns: 1fr 1.9rem;
    gap: .25rem 1rem;
    padding: 1.05rem 1.1rem;
  }
  .date-when { grid-column: 1; }
  .date-state { grid-column: 2; grid-row: 1 / span 3; align-self: center; justify-self: end; }
  .date-name { grid-column: 1; }
  .date-time { grid-column: 1; }
  .date-state.date-soldout { right: 1.1rem; }
}

/* ============================================================
   Booking popup / modal — shares the date-picker styling
   ============================================================ */
.tgs-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.tgs-modal[hidden] { display: none; }

.tgs-modal-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--navy-deep) 74%, transparent);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  animation: tgsFade .22s var(--ease) forwards;
}
.tgs-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 42rem;
  max-height: min(85dvh, 46rem);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--r-panel);
  box-shadow: 0 24px 64px -12px color-mix(in srgb, var(--navy-deep) 60%, transparent);
  overflow: hidden;
  transform: translateY(10px) scale(.985);
  opacity: 0;
  animation: tgsPop .26s var(--ease) forwards;
}
.tgs-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid var(--ink-line);
  flex: none;
}
.tgs-modal-title {
  font-size: 1.375rem;
  color: var(--ink);
}
.tgs-modal-close {
  flex: none;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.tgs-modal-close:hover { background: var(--ink-faint); color: var(--ink); }
.tgs-modal-body { padding: 1.1rem 1.35rem 1.35rem; overflow-y: auto; }
.tgs-modal-body .date-list { margin-top: .25rem; }
.tgs-modal-body .date-row { box-shadow: none; border-color: var(--ink-line); }
.tgs-modal-body .date-row:has(input:checked) { border-color: var(--gold); }
.tgs-modal-body .dates-empty { padding: 2rem 0; }

body.tgs-modal-open { overflow: hidden; }

@keyframes tgsFade { to { opacity: 1; } }
@keyframes tgsPop { to { opacity: 1; transform: translateY(0) scale(1); } }

/* ==========================================================================
   13. FAQ  |  cream accordion, gold chevron rotates when open
   ========================================================================== */
.accordion { margin-top: clamp(1.75rem, 3.5vw, 2.5rem); border-top: 1px solid var(--ink-line); }
.acc-item h3 { margin: 0; font-size: inherit; letter-spacing: normal; }
.acc-trigger {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink-line);
  padding: 1.2rem 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 1.4;
  cursor: pointer;
}
.acc-trigger i { flex: none; font-size: 1.15rem; color: var(--gold); transition: transform .3s var(--ease); }
.acc-trigger[aria-expanded="true"] { border-bottom-color: transparent; }
.acc-trigger[aria-expanded="true"] i { transform: rotate(180deg); }
.acc-trigger:hover { color: var(--muted); }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  border-bottom: 1px solid var(--ink-line);
  transition: grid-template-rows .35s var(--ease);
}
.acc-panel[hidden] { display: none; }
.acc-panel.is-open { grid-template-rows: 1fr; }
.acc-inner { overflow: hidden; }
.acc-inner p { padding: 0 0 1.6rem 0; max-width: none; color: var(--muted); }

/* ==========================================================================
   14. FINAL CTA  |  navy, centred
   ========================================================================== */
.final { text-align: center; padding-block: clamp(4.5rem, 9vw, 8rem); }
.final h2 { max-width: none; margin-inline: auto; }
.final .final-em { display: block; color: var(--gold); }
.final-sub { margin-top: 1.1rem; }
.final .btn { margin-top: 1.9rem; }
.final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.4rem;
  font-size: .9375rem;
  color: var(--dark-dim) !important;
}
.final-trust .ph { color: var(--gold); font-size: 1.1rem; }

/* ==========================================================================
   15. FOOTER  |  navy-deep
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding-block: 2.75rem;
  border-top: 1px solid var(--cream-line);
  text-align: center;
}
.footer-inner { display: grid; gap: .45rem; justify-items: center; }
.footer-logo { line-height: 0; margin-bottom: .25rem; }
.footer-logo img { display: block; height: clamp(46px, 7vw, 56px); width: auto; }
.footer-line { font-size: .9375rem; color: var(--dark-dim); }

/* ==========================================================================
   16. STICKY MOBILE CTA  |  navy, fixed to the bottom on scroll, mobile only
   ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: color-mix(in srgb, var(--navy) 96%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--cream-line);
  padding: .8rem var(--gutter);
  padding-bottom: calc(.8rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(105%);
  transition: transform .35s var(--ease);
}
.sticky-cta-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--gold);
  line-height: 1.15;
}
.sticky-cta-note { font-size: .875rem; color: var(--dark-dim); }
.sticky-cta .btn { flex: none; }

@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body.tgs-sticky-visible .sticky-cta { transform: translateY(0); }
  body.tgs-modal-open .sticky-cta { transform: translateY(105%); }
  /* Keep the last content clear of the bar when it is showing. */
  body.tgs-sticky-visible .site-footer { padding-bottom: 7rem; }
}

/* ==========================================================================
   MOTION  |  reveal-on-scroll (spec: sections fade/slide in on scroll)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  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; }
.reveal[data-delay="5"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .sticky-cta { transition: none; }
}
