/* ============================================================
   CAUSATION THERAPY — Global Stylesheet  v4
   Theme: Ocean Teal · Warm Earth · Ancient · Zen · Open
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Ocean Teal — the soul of the palette */
  --teal:         #1a7a8e;   /* deep ocean teal — main accent */
  --teal-mid:     #2896ad;   /* medium teal */
  --teal-light:   #60b8cc;   /* lighter teal */
  --teal-pale:    #e4f3f6;   /* misty aqua — section backgrounds */
  --teal-fog:     #eef7f9;   /* barely-there teal tint */
  --blue:     #ace6f9;   /* barely-there teal tint */
  /* --blue:         #5ea4c2;   /* ocean blue — secondary accent, blue-green */
  /* Deep Ocean — replaces all dark/black backgrounds */
  --deep:         #0c3a46;   /* deep sea — footer & CTA only */
  --deep-mid:     #144f60;

  /* Warm Earth — counterbalances the cool teal */
  --deep_sand:   #7a5a38;   /* deep antique gold-sand */
  --sand:         #b89060;   /* warm antique gold-sand */
  --sand-light:   #d4b07a;   /* lighter sand */
  --sand-pale:    #f2e6cc;   /* pale sand — warm section bg */
  --earth:        #7a5a38;   /* deep earth brown */
  --deep_earth:   #4d321f;   /* deeper earth for dark accents */
  --stone:        #f0ebe0;   /* warm cream-stone */
  --deep-stone:   #decfb8;   /* deeper stone for accents */

  /* Neutrals */
  --ivory:        #faf8f2;   /* body base — warm ivory */
  --white:        #ffffff;
  --border:       #cfe5ea;   /* teal-tinted border */
  --border-warm:  #e0d8cc;   /* warm border for earth sections */

  /* Type */
  --text:         #1a3c47;   /* dark teal — warm readable near-black */
  --text-mid:     #4a6e78;   /* medium teal-grey */
  --text-light:   #8aadb6;   /* light teal-grey */

  /* Fonts */
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-fine:    'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  /* Geometry */
  --radius:       6px;
  --radius-lg:    14px;
  --shadow:       0 2px 20px rgba(12,58,70,0.08);
  --shadow-lg:    0 10px 48px rgba(12,58,70,0.14);
  --transition:   0.3s ease;

  /* Aliases for backward compat with inline styles */
  --warm-white:   #faf8f2;
  --navy:         #0c3a46;
  --navy-mid:     #144f60;
  --navy-light:   #1a6070;
  --gold:         #b89060;
  --gold-light:   #d4b07a;
  --gold-pale:    #f2e6cc;
  --gold-rule:    #b89060;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  /* rem, not px, so the large-screen breakpoints below can scale the whole
     page from one value — spacing and components are already in rem. */
  font-size: 1rem;
  color: var(--earth);
  background: var(--ivory);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; color: var(--deep_earth); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-sans); color: var(--deep_earth); }
p  { color: var(--earth); line-height: 1.85; }

.label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold_rule);
}

.cardlabel {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep_earth);
}

.fine {
  font-family: var(--font-fine);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--earth);
  line-height: 1.7;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.container--narrow { max-width: 720px; margin: 0 auto; padding: 0 2.5rem; }
section { padding: 7rem 0; }

.divider {
  width: 44px; height: 1.5px;
  background: var(--sand);
  margin: 1.8rem 0;
  opacity: 0.8;
}
.divider--center { margin: 1.8rem auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.92rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
/* Primary: gold */
.btn--gold, .btn--teal {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--gold:hover, .btn--teal:hover {
  background: #144f60;
  border-color: #15576f;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26,122,142,0.3);
}
/* Secondary: sand outline */
.btn--outline {
  background: transparent;
  border-color: var(--sand);
  color: var(--sand);
}
.btn--outline:hover { background: var(--deep_sand); color: var(--stone); }

/* Outline on dark sections */
.btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
}
.btn--outline-light:hover { border-color: var(--sand-light); color: var(--sand-light); }

/* Earth/sand button */
.btn--sand {
  background: var(--sand);
  color: var(--white);
  border-color: var(--sand);
}
.btn--sand:hover { background: var(--earth); border-color: var(--earth); transform: translateY(-1px); }

.btn--navy, .btn--deep {
  background: var(--deep-mid);
  color: var(--gold-light);
  border-color: var(--deep);
}
.btn--navy:hover, .btn--deep:hover { background: var(--deep-mid); transform: translateY(-1px); }

.btn--white {
  background: var(--warm-white);
  color: var(--deep);
  border-color: var(--warm-white);
}
.btn--white:hover { background: var(--teal-pale); transform: translateY(-1px); }

/* ── Navigation — transparent over hero, white after scroll ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,0.18);
  /*border-radius: 24px;*/
  backdrop-filter: blur(8px);
  /*background: transparent;*/
  border-bottom: 1px solid transparent;
  padding: 1.2rem 0;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
/* White once user scrolls past the hero */
.nav.scrolled {
  background: var(--gold);
  border-bottom-color: var(--sand);
  box-shadow: 0 2px 20px rgba(12,58,70,0.08);
  padding: 0.85rem 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1380px; margin: 0 auto; padding: 0 2.5rem;
}
/* Logo — white over hero, deep when scrolled */
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 700;
  color: #fff; line-height: 1.2;
  transition: color 0.4s;
}
.nav.scrolled .nav__logo { color: var(--deep); }
.nav__logo span {
  display: block; font-size: 0.58rem; font-family: var(--font-sans);
  font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-top: 2px;
  transition: color 0.4s;
}
.nav.scrolled .nav__logo span { color: var(--deep-mid); }

/* Links — white over hero, mid-grey when scrolled */
.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links a {
  font-size: 0.79rem; font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em; transition: color 0.3s;
  white-space: nowrap;
}
.nav.scrolled .nav__links a { color: var(--deep-mid); }
.nav__links a:hover { color: #fff; }
.nav.scrolled .nav__links a:hover { color: var(--deep_earth); }

/* CTA button */
.nav__cta {
  font-size: 0.77rem !important; padding: 0.58rem 1.3rem;
  background: rgba(255,255,255,0.18) !important;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.6) !important;
  border-radius: var(--radius); font-weight: 600 !important;
  transition: background 0.3s, border-color 0.3s !important;
}
.nav__cta:hover { background: rgba(255,255,255,0.32) !important; }
.nav.scrolled .nav__cta {
  background: var(--deep-mid) !important;
  border-color: var(--deep) !important;
  color: var(--gold-light) !important;
}
.nav.scrolled .nav__cta:hover { background: #156b7d !important; }

/* Hamburger */
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav__hamburger span { width: 22px; height: 1.5px; background: #f0d3a7; display: block; transition: background 0.4s; }
.nav.scrolled .nav__hamburger span { background: var(--deep); }

/* ── Hero — rotating slideshow, full natural color ──────────── */
.hero {
  min-height: 95vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 9rem 0 8rem;
  background: var(--deep); /* fallback while images load */
}

/* ── Video background ── */
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* ── Headline ── */
.hero__inner {
  position: relative; z-index: 2;
  max-width: 780px; margin: 0 auto;
  padding: 2rem 2.5rem 3rem;
  text-align: center;
  /* background: rgba(0,0,0,0.18);
  border-radius: 24px;
  backdrop-filter: blur(8px); */
}
.hero__label {
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.14em;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.hero h1 {
  color: #ffffff;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  line-height: 1.02;
  text-shadow: 0 3px 30px rgba(0,0,0,0.75);
  margin-bottom: 5rem;
  letter-spacing: -0.02em;
  /* transition: opacity 0.8s ease; */
}
.hero h1 em {
  font-style: italic;
  color: var(--sand-light); /* warm gold on vivid backgrounds */
}
.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 500;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 2px 20px rgba(0,0,0,0.75);
  margin-bottom: 7rem; line-height: 1.75;
  max-width: 680px; margin-left: auto; margin-right: auto;
  /* transition: opacity 0.8s ease; */
}
.hero__actions { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 6rem; }


/* ── Intro — 2-col text + video ─────────────────────────────── */
.intro { background: var(--deep-stone); }
.intro__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.intro__content p { margin-bottom: 1.3rem; font-size: 1.02rem; }
.intro__image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
}
.intro__video-wrap {
  position: relative; width: 100%; height: 100%; min-height: 0;
}
.intro__image img,
.intro__image video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.intro__video-toggle {
  position: absolute; right: 1rem; top: 1rem;
  z-index: 2;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: none;
  background: rgba(16, 46, 66, 0.78);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.intro__video-toggle:hover {
  transform: translateY(-1px);
  background: rgba(16, 46, 66, 0.92);
}
.intro__image::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(26,122,142,0.15);
}

/* ── Process — numbered, no cards ───────────────────────────── */
.process { background: var(--teal-pale); position: relative; }
.process__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 6rem; margin-top: 4rem;
}

.process__step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.5rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process__step:nth-last-child(-n+2) { border-bottom: none; }
.process__num {
  font-family: var(--font-serif); font-size: 2.25rem; font-weight: 400;
  color: var(--sand); line-height: 1; padding-top: 0.1rem;
}
.process__step h4 { color: var(--deep); margin-bottom: 0.5rem; font-size: 1.25rem; }
.process__step p { font-size: 1.2rem; }

/* ── Pull quote ─────────────────────────────────────────────── */
.pull-quote { background: var(--deep); padding: 8rem 0; }
.pull-quote__inner {
  max-width: 800px; margin: 0 auto; text-align: center; padding: 0 2.5rem;
}
.pull-quote blockquote {
  font-family: var(--font-fine);
  font-size: clamp(1.5rem, 3vw, 2.1rem); font-style: italic;
  color: var(--sand-pale); line-height: 1.65;
  margin-bottom: 2rem; position: relative; padding: 0 1rem;
}
.pull-quote blockquote::before {
  content: '\201C';
  font-size: 7rem; color: var(--sand);
  position: absolute; top: -2.5rem; left: -1.5rem;
  font-family: var(--font-serif); line-height: 1; z-index: 0;
}
.pull-quote blockquote span { position: relative; z-index: 1; }
.pull-quote cite {
  font-size: 0.95rem; color: var(--sand-light); letter-spacing: 0.15em;
  text-transform: uppercase; font-style: normal; font-weight: 600;
}

/* ── Lead magnet — centered ─────────────────────────────────── */
.lead-magnet {
  background: var(--sand-pale);
  border-top: 1px solid var(--border-warm); border-bottom: 1px solid var(--border-warm);
}
.lead-magnet__center { max-width: 560px; margin: 0 auto; text-align: center; }
.lead-magnet__center h2 { color: var(--deep); margin-bottom: 1.2rem; }
.lead-magnet__center p { margin-bottom: 2rem; }
.lead-magnet__form {
  display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center;
}
.lead-magnet__form input[type="email"] {
  flex: 1; min-width: 220px; padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--border-warm); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.9rem;
  background: var(--white); outline: none; color: var(--text);
  transition: border-color 0.2s;
}
.lead-magnet__form input:focus { border-color: var(--teal); }


/* ── Offerings — video background + floating round flip cards ───────────── */

.offerings--video {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 7rem 0;
  background: var(--deep);
  isolation: isolate;
}

.offerings__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.offerings__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.10), transparent 34rem),
    linear-gradient(
      180deg,
      rgba(9, 28, 42, 0.68) 0%,
      rgba(9, 28, 42, 0.52) 42%,
      rgba(9, 28, 42, 0.76) 100%
    );
}

.offerings__content {
  position: relative;
  z-index: 1;
}

.offerings--video .section-header h2,
.offerings--video .section-header .label {
  color: var(--white);
}

.offerings--video .divider {
  background: rgba(255,255,255,0.55);
}

.offerings__intro {
  max-width: 560px;
  margin: 1.2rem auto 0;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  margin-top: 4.8rem;
  align-items: center;
  justify-items: center;
}

.offering-card {
  width: 300px;
  perspective: 1200px;
}

.offering-card__float {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: offeringFloat 7s ease-in-out infinite;
  will-change: transform;
}

.offering-card:nth-child(1) .offering-card__float {
  animation-duration: 6.5s;
}

.offering-card:nth-child(2) .offering-card__float {
  animation-duration: 7.8s;
  animation-delay: -1.8s;
}

.offering-card:nth-child(3) .offering-card__float {
  animation-duration: 7s;
  animation-delay: -3s;
}

.offering-card__circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  perspective: 1200px;
}

.offering-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.offering-card:hover .offering-card__inner,
.offering-card:focus-within .offering-card__inner {
  transform: rotateY(180deg);
}

.offering-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backface-visibility: hidden;
  text-align: center;
  padding: 2.4rem;
  overflow: hidden;
}

.offering-card__front {
  background: rgba(230, 194, 148, 0.3);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow:
    0 30px 70px rgba(50, 29, 5, 0.24),
    inset 0 0 40px rgba(255,255,255,0.28);
  backdrop-filter: blur(12px);
}

.offering-card__front::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border-radius: 50%;
  border: 1px solid rgba(246, 211, 160, 0.32);
}

.offering-card__number {
  color: var(--deep_stone);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.offering-card h3 {
  position: relative;
  z-index: 1;
  color: var(--deep);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
}

.offering-card__back {
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 52%),
    var(--gold);
  color: var(--white);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.30),
    inset 0 0 44px rgba(255,255,255,0.10);
}

.offering-card__back h3 {
  color: var(--deep_earth);
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.offering-card__back p {
  color: rgba(43, 24, 6, 0.88);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.btn--floating {
  margin-top: 1.4rem;
  background: rgba(160, 117, 58, 0.84);
  color: var(--white);
  border: 1px solid rgba(55, 33, 8, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.18);
}

.btn--floating:hover {
  background: var(--deep-mid);
  color: var(--white);
  border-color: var(--deep);
  transform: translateY(-2px);
}

@keyframes offeringFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Mobile / tablet */
@media (max-width: 980px) {
  .offerings--video {
    min-height: auto;
    padding: 5.5rem 0;
  }

  .offerings__grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    margin-top: 3.5rem;
  }

  .offering-card {
    width: 290px;
  }

  .offering-card__circle {
    width: 290px;
    height: 290px;
  }
}

@media (max-width: 420px) {
  .offering-card {
    width: 265px;
  }

  .offering-card__circle {
    width: 265px;
    height: 265px;
  }

  .offering-card__face {
    padding: 2rem;
  }

  .offering-card__back p {
    font-size: 0.82rem;
  }
}

/* Respect reduced-motion settings */
@media (prefers-reduced-motion: reduce) {
  .offering-card__float {
    animation: none;
  }

  .offering-card__inner {
    transition: none;
  }

  .offering-card:hover .offering-card__inner,
  .offering-card:focus-within .offering-card__inner {
    transform: none;
  }

  .offering-card__back {
    opacity: 0;
    transform: none;
    transition: opacity 200ms ease;
  }

  .offering-card:hover .offering-card__back,
  .offering-card:focus-within .offering-card__back {
    opacity: 1;
  }
}

/* ── Training CTA — deep ocean, not black ───────────────────── */
.training-cta {
  background: var(--deep);
  position: relative; overflow: hidden;
}
.training-cta::before {
  content: ''; position: absolute; top: -50%; right: -5%;
  width: 600px; height: 600px;
  border: 1px solid rgba(96,184,204,0.12); border-radius: 50%; pointer-events: none;
}
.training-cta::after {
  content: ''; position: absolute; bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  border: 1px solid rgba(96,184,204,0.07); border-radius: 50%; pointer-events: none;
}
.training-cta__inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto; text-align: center;
}
.training-cta h2 { color: var(--white); margin-bottom: 1rem; }
.training-cta p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 2.5rem; }
.training-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--deep) 0%, var(--teal) 100%);
  min-height: 70vh;
  padding: 9rem 0 5rem; text-align: center;
}
.page-hero .label { color: var(--sand-light); margin-bottom: 1rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* ── Section header ─────────────────────────────────────────── */
.section-header { margin-bottom: 2rem; }
.section-header--center { text-align: center; }
.section-header--center .divider { margin: 1.5rem auto; }

/* ── What is CT (method page + homepage) ───────────────────── */
.what-is { background: var(--white); }
.what-is__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.what-is__content p { margin-bottom: 1.3rem; }
.what-is__visual {
  background: linear-gradient(150deg, var(--teal-fog) 0%, var(--teal-pale) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 3rem;
}
.what-is__stat { text-align: center; padding: 1.6rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.what-is__stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.what-is__stat-num { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 0.4rem; }
.what-is__stat-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Pillar cards (used on homepage v1, kept for other pages) ─ */
.pillars { background: var(--ivory); }
.pillars__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.pillar-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem; transition: var(--transition);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar-card__icon {
  width: 52px; height: 52px; background: var(--teal-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.4rem;
}
.pillar-card h3 { margin-bottom: 0.8rem; font-size: 1.25rem; color: var(--deep); }
.pillar-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }


/* ── How the Work Unfolds — image background + split curved path ───────── */

.how-section--image {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  min-height: 760px;
  background: var(--deep);
  isolation: isolate;
}

.how-section__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../images/hero-1.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.how-section__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 45%, rgba(71, 157, 163, 0.18), transparent 30rem),
    linear-gradient(
      90deg,
      rgba(58, 57, 56, 0.316) 0%,
      rgba(49, 49, 48, 0.26) 34%,
      rgba(113, 112, 109, 0.18) 62%,
      rgba(231, 227, 216, 0.08) 100%
    );
}

.how-section__content {
  position: relative;
  z-index: 1;
}

.how-layout {
  display: grid;
  /* No hard minimum on the second column. It carried minmax(720px, ...),
     which with the first column's 300px and a 4.5rem gap demanded 1092px
     from a container that only ever provides 1020 — so the column overflowed
     and put the right-hand cards outside the container at every desktop
     width. */
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 3.5rem;
  align-items: center;
}

.how-copy {
  max-width: 470px;
}

.how-copy .label {
  color: rgba(255,255,255,0.78);
}

.how-copy h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.04;
  margin-bottom: 1.2rem;
}

.how-copy .divider {
  margin: 0 0 1.7rem;
  background: rgba(255,255,255,0.55);
}

.how-intro {
  color: rgba(255,255,255,0.86);
  font-size: 1.03rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.how-copy__note {
  position: relative;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-left: 1.3rem;
  margin: 0;
}

.how-copy__note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  border-radius: 999px;
  background: rgba(161, 133, 23, 0.75);
}

/* Journey area */

.how-journey {
  position: relative;
  max-width: 840px;
  width: 100%;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.how-journey__path {
  display: none; /* Hidden   */
}

/*.how-journey__path {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}*/

.how-journey__path svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.how-journey__curve {
  fill: none;
  stroke: rgb(198, 182, 150);
  stroke-width: 5;
  stroke-linecap: round;
  filter:
    drop-shadow(0 0 8px rgba(10, 49, 76, 0.18))
    drop-shadow(0 0 16px rgba(255,255,255,0.08));
}
.how-journey__orb-svg {
  fill: var(--teal);
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.85))
    drop-shadow(0 0 14px rgba(71, 157, 163, 0.75))
    drop-shadow(0 0 24px rgba(71, 157, 163, 0.42));
}

/* Cards */

.how-card {
  position: relative;
  z-index: 2;
  width: auto;
  min-height: 205px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.56);
  border-radius: 2.2rem;
  padding: 1.45rem 1.35rem 1.5rem;
  box-shadow: 0 22px 55px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.how-card:hover {
  transform: translateY(-5px);
  background: rgba(209, 175, 95, 0.94);
  box-shadow: 0 30px 70px rgba(67, 45, 9, 0.28);
}

.how-card:hover h3 {
  color: var(--deep_earth);
  font-size: 1.02rem;
  line-height: 1.32;
  margin-bottom: 0.6rem;
}

.how-card:hover p:last-child {
  margin-bottom: 0;
  font-size: 0.84rem;
  line-height: 1.56;
  color: var(--warm-white);
}

.how-card::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(71, 157, 163, 0.14);
  pointer-events: none;
}

.how-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  background: rgba(71, 157, 163, 0.12);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.how-card__eyebrow {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--teal);
  margin-bottom: 0.55rem;
  font-weight: 700;
}

.how-card h3 {
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.32;
  margin-bottom: 0.6rem;
}

.how-card p:last-child {
  margin-bottom: 0;
  font-size: 0.84rem;
  line-height: 1.56;
  color: var(--text-mid);
}

/* Compact positions around the curve */

.how-card--1 { animation: howCardFloatA 7s ease-in-out infinite; }
.how-card--3 { animation: howCardFloatB 8.4s ease-in-out infinite; }

/* The right-hand pair sits lower, which is what gave the group its
   scattered feel when the cards were placed by hand. */
.how-card--2 {
  margin-top: 3.5rem;
  animation: howCardFloatB 8s ease-in-out infinite;
}

.how-card--4 {
  margin-top: 3.5rem;
  animation: howCardFloatA 7.4s ease-in-out infinite;
}

/* Animations */


@keyframes howCardFloatA {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes howCardFloatB {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-journey__orb-svg animateMotion {
    display: none;
  }

  .how-card--1,
  .how-card--2,
  .how-card--3,
  .how-card--4 {
    animation: none;
  }

  .how-card {
    transition: none;
  }

  .how-card:hover {
    transform: none;
  }
}
/* Tablet */

@media (max-width: 1100px) {
  .how-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .how-copy {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
  }

  .how-copy .divider {
    margin-left: auto;
    margin-right: auto;
  }

  .how-copy__note {
    max-width: 620px;
    margin: 0 auto;
    padding-left: 0;
  }

  .how-copy__note::before {
    display: none;
  }

  .how-journey {
    justify-self: center;
  }

  .how-section__overlay {
    background:
      radial-gradient(circle at 50% 60%, rgba(71, 157, 163, 0.18), transparent 30rem),
      linear-gradient(
        180deg,
        rgba(9, 28, 42, 0.84) 0%,
        rgba(9, 28, 42, 0.65) 46%,
        rgba(9, 28, 42, 0.80) 100%
      );
  }
}

/* Mobile */

@media (max-width: 760px) {
  .how-section--image {
    padding: 5.5rem 0;
    min-height: auto;
  }

  .how-layout {
    gap: 3rem;
  }

  .how-journey {
    min-height: auto;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding-left: 2.25rem;
  }

  .how-journey__path {
    inset: 0 auto 0 0;
    width: 34px;
  }

  .how-journey__path svg {
    display: none;
  }

  .how-journey__path::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(255,255,255,0.42),
      transparent
    );
  }

  .how-journey__orb {
    left: 8px;
    top: 0;
    offset-path: path("M 240 50 C 390 60, 520 60, 650 100 S 800 150, 650 230 C 560 260, 500 250, 310 310 S 170 570, 770 520");
    animation: howJourneyMove 12s ease-in-out infinite;
  }

  /* One column on a phone, and no stagger to preserve. */
  .how-journey {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .how-card,
  .how-card--1,
  .how-card--2,
  .how-card--3,
  .how-card--4 {
    position: relative;
    width: 100%;
    min-height: auto;
    margin-top: 0;
    animation: none;
  }

  .how-card {
    border-radius: 1.65rem;
    padding: 1.35rem 1.25rem 1.45rem;
  }

  .how-card::before {
    inset: 0.7rem;
    border-radius: 1.25rem;
  }
}

@media (max-width: 480px) {
  .how-copy h2 {
    font-size: 2.1rem;
  }

  .how-intro {
    font-size: 0.95rem;
  }

  .how-card h3 {
    font-size: 1rem;
  }

  .how-card p:last-child {
    font-size: 0.84rem;
  }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  .how-journey__orb,
  .how-card--1,
  .how-card--2,
  .how-card--3,
  .how-card--4 {
    animation: none;
  }

  .how-card {
    transition: none;
  }

  .how-card:hover {
    transform: none;
  }
}
/* __ home page About section */
.Homeabout-stats { background: var(--deep); padding: 4.5rem 0; }
.Homeabout-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.Homeabout-stat { display: flex; flex-direction: column; gap: 0.6rem; }
.Homeabout-stat__num {
  font-family: var(--font-serif); font-weight: 700; line-height: 1;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--deep);
}
.Homeabout-stat__label {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-light);
}
/* ── Is This Work For Me — Recognition Field ─────────────────── */

.fit-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background:
    radial-gradient(circle at center, rgba(163, 135, 71, 0.38), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--deep-stone) 48%, #ffffff 100%);
}

.fit-section::before {
  content: "";
  position: absolute;
  top: 8rem;
  left: 50%;
  width: 48rem;
  height: 48rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 142, 71, 0.055), transparent 70%);
  pointer-events: none;
}

.fit-intro {
  max-width: 760px;
  margin: 1.2rem auto 0;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
}

.fit-field {
  position: relative;
  max-width: 1080px;
  min-height: 760px;
  margin: 4.5rem auto 0;
}

.fit-field__glow {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 430px;
  height: 430px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.72) 42%, rgba(163, 145, 71, 0.08) 70%, transparent 100%);
  box-shadow:
    0 0 80px rgba(71, 157, 163, 0.10),
    inset 0 0 50px rgba(255,255,255,0.68);
  pointer-events: none;
}

.fit-center {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 3;
  width: 310px;
  min-height: 310px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2.4rem;
  background: rgba(204, 177, 127, 0.86);
  border: 1px solid rgba(71, 157, 163, 0.25);
  box-shadow:
    0 24px 70px rgba(16, 36, 56, 0.15),
    inset 0 0 42px rgba(255,255,255,0.70);
  backdrop-filter: blur(12px);
  animation: fitCenterPulse 8s ease-in-out infinite;
}

.fit-center::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(71, 157, 163, 0.16);
  pointer-events: none;
}

.fit-center__eyebrow {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.fit-center h3 {
  color: var(--deep);
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.fit-center p {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.62;
  margin: 0;
}

.fit-marker {
  position: absolute;
  z-index: 2;
  width: 250px;
  min-height: 120px;
  padding: 1.25rem 1.25rem 1.35rem;
  border-radius: 2rem;
  background: rgba(241, 239, 235, 0.76);
  border: 1px solid rgba(20, 44, 68, 0.08);
  box-shadow: 0 18px 48px rgba(16, 36, 56, 0.07);
  backdrop-filter: blur(10px);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease,
    border-color 260ms ease;
}

.fit-marker::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(71, 157, 163, 0.10);
  pointer-events: none;
}

.fit-marker h4 {
  position: relative;
  color: var(--deep);
  font-size: 1rem;
  line-height: 1.32;
  margin-bottom: 0.55rem;
}

.fit-marker p {
  position: relative;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
  opacity: 0.78;
}

.fit-marker:hover {
  transform: translateY(-7px) scale(1.025);
  background: rgba(26, 90, 100, 0.94);
  border-color: rgba(224, 195, 107, 0.624);
  box-shadow: 0 28px 65px rgba(16, 36, 56, 0.11);
}

.fit-marker:hover p {
  opacity: 1;
}

.fit-marker:hover h4 {
  color: var(--gold);
}

.fit-marker:hover p {
  color: var(--stone);
  opacity: 1;
}

/* Marker positions */

.fit-marker--1 {
  top: 0;
  left: 6%;
  animation: fitFloatA 8s ease-in-out infinite;
}

.fit-marker--2 {
  top: 0;
  right: 9%;
  animation: fitFloatB 8.8s ease-in-out infinite;
}

.fit-marker--3 {
  top: 11rem;
  left: 0;
  animation: fitFloatB 9.4s ease-in-out infinite;
}

.fit-marker--4 {
  top: 12rem;
  right: 0;
  animation: fitFloatA 8.6s ease-in-out infinite;
}

.fit-marker--5 {
  bottom: 12rem;
  left: 4%;
  animation: fitFloatA 9.2s ease-in-out infinite;
}

.fit-marker--6 {
  bottom: 13rem;
  right: 4%;
  animation: fitFloatB 8.4s ease-in-out infinite;
}

.fit-marker--7 {
  bottom: 0;
  left: 24%;
  animation: fitFloatB 9s ease-in-out infinite;
}

.fit-marker--8 {
  bottom: 0;
  right: 20%;
  animation: fitFloatA 9.6s ease-in-out infinite;
}



/* Animations */

@keyframes fitCenterPulse {
  0%, 100% {
    box-shadow:
      0 24px 70px rgba(16, 36, 56, 0.08),
      0 0 0 0 rgba(71, 157, 163, 0.08),
      inset 0 0 42px rgba(255,255,255,0.70);
  }

  50% {
    box-shadow:
      0 28px 82px rgba(16, 36, 56, 0.10),
      0 0 0 18px rgba(71, 157, 163, 0.035),
      inset 0 0 52px rgba(255,255,255,0.82);
  }
}

@keyframes fitFloatA {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -9px;
  }
}

@keyframes fitFloatB {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 9px;
  }
}

/* Tablet */

@media (max-width: 980px) {
  .fit-field {
    max-width: 760px;
    min-height: 820px;
  }

  .fit-center {
    width: 280px;
    min-height: 280px;
  }

  .fit-marker {
    width: 230px;
  }

  .fit-marker--1 {
    top: 0;
    left: 0;
  }

  .fit-marker--2 {
    top: 0;
    right: 0;
  }

  .fit-marker--3 {
    top: 12rem;
    left: 0;
  }

  .fit-marker--4 {
    top: 12rem;
    right: 0;
  }

  .fit-marker--5 {
    bottom: 12rem;
    left: 0;
  }

  .fit-marker--6 {
    bottom: 12rem;
    right: 0;
  }

  .fit-marker--7 {
    bottom: 0;
    left: 0;
  }

  .fit-marker--8 {
    bottom: 0;
    right: 0;
  }
}

/* Mobile */

@media (max-width: 720px) {
  .fit-section {
    padding: 5.5rem 0;
  }

  .fit-field {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: auto;
    max-width: 520px;
    margin-top: 3.2rem;
  }

  .fit-field__glow {
    display: none;
  }

  .fit-center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    min-height: auto;
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    order: -1;
  }

  .fit-center::before {
    border-radius: 1.45rem;
  }

  .fit-marker,
  .fit-marker--1,
  .fit-marker--2,
  .fit-marker--3,
  .fit-marker--4,
  .fit-marker--5,
  .fit-marker--6,
  .fit-marker--7,
  .fit-marker--8 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    animation: none;
  }

  .fit-note {
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.4rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 480px) {
  .fit-intro {
    font-size: 0.95rem;
  }

  .fit-center h3 {
    font-size: 1.35rem;
  }

  .fit-marker h4 {
    font-size: 0.98rem;
  }

  .fit-marker p {
    font-size: 0.83rem;
  }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  .fit-center,
  .fit-marker--1,
  .fit-marker--2,
  .fit-marker--3,
  .fit-marker--4,
  .fit-marker--5,
  .fit-marker--6,
  .fit-marker--7,
  .fit-marker--8 {
    animation: none;
  }

  .fit-marker {
    transition: none;
  }

  .fit-marker:hover {
    transform: none;
  }
}

/* ── Booklet / lead magnet inner ────────────────────────────── */
.lead-magnet__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.lead-magnet__content h2 { color: var(--deep); }
.lead-magnet__content p { color: var(--text-mid); margin: 1rem 0 2rem; }
.lead-magnet__form { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.lead-magnet__form input[type="email"] {
  flex: 1; min-width: 240px; padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--border-warm); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.9rem;
  background: var(--white); outline: none; color: var(--text); transition: border-color 0.2s;
}
.lead-magnet__form input:focus { border-color: var(--teal); }
.lead-magnet__visual { position: relative; }
.booklet-stack { position: relative; width: 220px; margin: 0 auto; }
.booklet-stack__item {
  background: var(--deep); border-radius: 8px; padding: 2rem 1.5rem;
  position: relative; box-shadow: var(--shadow-lg);
}
.booklet-stack__item::before {
  content: ''; position: absolute; top: 8px; left: 8px; right: -8px; bottom: -8px;
  background: var(--deep-mid); border-radius: 8px; z-index: -1;
}
.booklet-stack__item::after {
  content: ''; position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px;
  background: var(--teal); border-radius: 8px; z-index: -2;
}
.booklet-stack__label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand-light); margin-bottom: 0.8rem; }
.booklet-stack__title { font-family: var(--font-serif); color: var(--white); font-size: 1rem; line-height: 1.3; margin-bottom: 0.5rem; }
.booklet-stack__author { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.booklet-stack__badge {
  position: absolute; top: -12px; right: -12px;
  background: var(--sand); color: var(--white);
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.35rem 0.7rem; border-radius: 20px;
}

/* ── Testimonial hero ───────────────────────────────────────── */
.testimonial-hero { background: var(--teal-fog); }
.testimonial-hero__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.testimonial-hero blockquote {
  font-family: var(--font-fine); font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-style: italic; color: var(--deep); line-height: 1.75;
  margin-bottom: 2rem; position: relative; padding: 0 2.5rem;
}
.testimonial-hero blockquote::before {
  content: '\201C'; font-size: 5.5rem; color: var(--teal-pale);
  position: absolute; top: -1.5rem; left: -0.3rem;
  font-family: var(--font-serif); line-height: 1;
}
.testimonial-hero__author { font-size: 0.75rem; color: var(--teal); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }

/* ── Resources grid ─────────────────────────────────────────── */
.resources { background: var(--ivory); }
.resources__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.resource-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.resource-card__cover {
  background: linear-gradient(150deg, var(--teal) 0%, var(--deep) 100%);
  padding: 2.5rem; text-align: center;
  min-height: 170px; display: flex; flex-direction: column; justify-content: center;
}
.resource-card__cover-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand-light); margin-bottom: 0.8rem; }
.resource-card__cover-title { font-family: var(--font-serif); color: var(--white); font-size: 1.05rem; line-height: 1.35; }
.resource-card__body { padding: 1.8rem; }
.resource-card__price { font-size: 1.35rem; font-weight: 700; color: var(--deep); margin-bottom: 0.5rem; font-family: var(--font-serif); }
.resource-card__price span { font-size: 0.82rem; font-weight: 400; color: var(--text-light); font-family: var(--font-sans); }
.resource-card__desc { font-size: 0.87rem; color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.65; }

/* ── Sessions page ──────────────────────────────────────────── */
.sessions-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.session-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.8rem;
  position: relative; transition: var(--transition);
}
.session-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.session-card--featured {
  border-color: var(--teal);
  background: linear-gradient(to bottom right, var(--white), var(--teal-pale));
}
.session-card__badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--teal); color: var(--white);
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.3rem 0.65rem; border-radius: 20px;
}
.session-card h3 { margin-bottom: 0.5rem; color: var(--deep); }
.session-card .price { font-size: 1.55rem; font-weight: 700; color: var(--teal); margin: 1rem 0; font-family: var(--font-serif); }
.session-card ul { margin: 1rem 0 1.5rem; }
.session-card ul li { font-size: 0.88rem; color: var(--text-mid); padding: 0.4rem 0; padding-left: 1.2rem; position: relative; }
.session-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--teal); }

/* ── Training page ──────────────────────────────────────────── */
.training-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin: 3rem 0; }
.training-feature {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.2rem;
}
.training-feature__icon { font-size: 1.8rem; margin-bottom: 1rem; }
.training-feature h4 { margin-bottom: 0.5rem; color: var(--deep); }
.training-feature p { font-size: 0.88rem; }

/* ── Resources page: zigzag cover rows (booklets + book) ─────── */
.zigzag { display: flex; flex-direction: column; gap: 5rem; margin: 3rem 0; }

.zigzag-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.zigzag-row__media { order: 1; }
.zigzag-row__media img { width: 100%; height: auto; display: block; border-radius: 8px; }
.zigzag-row__media--bundle { aspect-ratio: 2/3; border-radius: 8px; background: linear-gradient(135deg, var(--gold) 0%, #8a6a1f 100%); }

.zigzag-row__content {
  order: 2; background: var(--deep); border: 1px solid var(--deep);
  border-radius: var(--radius-lg); padding: 2.2rem;
  opacity: 1; transform: translateX(-150px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.zigzag-row__content.in-view { opacity: 1; transform: translateX(0); }

.zigzag-row--reverse .zigzag-row__media { order: 2; }
.zigzag-row--reverse .zigzag-row__content { order: 1; transform: translateX(150px); }
.zigzag-row--reverse .zigzag-row__content.in-view { transform: translateX(0); }

.zigzag-row__desc { font-size: 0.92rem; color: var(--sand-light); margin: 0.9rem 0 1.3rem; line-height: 1.65; }
.zigzag-row__price { font-family: var(--font-serif); font-size: 1.6rem; color: var(--warm-white); margin-bottom: 1.3rem; }
.zigzag-row__price span { display: block; font-family: var(--font-sans); font-size: 0.68rem; color: var(--gold-pale); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }
.zigzag-row__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Testimonials page — floating orbit + unrolling scroll ───── */
.testimonial-orbits {
  position: relative;
  background: var(--navy-light);
  padding: 7rem 0 9rem;
  overflow: hidden;
  isolation: isolate;
  overflow-anchor: none;
}
.testimonial-orbits__overlay {
  position: absolute; top: 0; left: 0; z-index: -2;
  width: 100%; height: 100%;
  /*background: linear-gradient(180deg, rgba(12,58,70,0.7) 0%, rgba(12,58,70,0.6) 45%, rgba(12,58,70,0.85) 100%);*/
}
.testimonial-orbits::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 60%);
}
.testimonial-orbits .section-header h2,
.testimonial-orbits .section-header .label { color: var(--white); }
.testimonial-orbits .section-header p { color: rgba(255,255,255,0.78); }
.testimonial-orbits .divider { background: rgba(255,255,255,0.5); }
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: start;
  justify-items: center;
  margin-top: 5rem;
  overflow-anchor: none;
}
.testimonial-row:first-of-type { margin-top: 5.5rem; }

.testimonial-orbit {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 300px;
  overflow-anchor: none;
}

.testimonial-orbit__circle-wrap {
  animation: orbitFloat 8s ease-in-out infinite;
  will-change: transform;
}
.testimonial-row:nth-of-type(1) .testimonial-orbit:nth-child(1) .testimonial-orbit__circle-wrap { animation-duration: 6.5s; }
.testimonial-row:nth-of-type(1) .testimonial-orbit:nth-child(2) .testimonial-orbit__circle-wrap { animation-duration: 7.8s; animation-delay: -2.4s; }
.testimonial-row:nth-of-type(1) .testimonial-orbit:nth-child(3) .testimonial-orbit__circle-wrap { animation-duration: 7.1s; animation-delay: -4.1s; }
.testimonial-row:nth-of-type(2) .testimonial-orbit:nth-child(1) .testimonial-orbit__circle-wrap { animation-duration: 7.4s; animation-delay: -1.2s; }
.testimonial-row:nth-of-type(2) .testimonial-orbit:nth-child(2) .testimonial-orbit__circle-wrap { animation-duration: 6.8s; animation-delay: -3.6s; }
.testimonial-row:nth-of-type(2) .testimonial-orbit:nth-child(3) .testimonial-orbit__circle-wrap { animation-duration: 8.2s; animation-delay: -0.6s; }
.testimonial-row:nth-of-type(3) .testimonial-orbit:nth-child(1) .testimonial-orbit__circle-wrap { animation-duration: 7s; animation-delay: -5s; }
.testimonial-row:nth-of-type(3) .testimonial-orbit:nth-child(2) .testimonial-orbit__circle-wrap { animation-duration: 7.6s; animation-delay: -2s; }
.testimonial-row:nth-of-type(3) .testimonial-orbit:nth-child(3) .testimonial-orbit__circle-wrap { animation-duration: 6.6s; animation-delay: -4.6s; }

.testimonial-orbit__circle {
  width: 220px; height: 220px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.6rem;
  background: rgba(230, 194, 148, 0.16);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 30px 70px rgba(0,0,0,0.28), inset 0 0 40px rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.testimonial-orbit--md .testimonial-orbit__circle { width: 260px; height: 260px; }
.testimonial-orbit--lg .testimonial-orbit__circle { width: 300px; height: 300px; }

.testimonial-orbit__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
}
.testimonial-orbit__location {
  margin-top: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.testimonial-orbit__rod {
  width: 64px; height: 8px;
  margin-top: 0.6rem;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--sand) 60%, var(--deep_sand));
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.testimonial-orbit__scroll {
  width: 100%;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 900ms cubic-bezier(.4,0,.2,1);
  overflow: hidden;
  overflow-anchor: none;
}
.testimonial-orbit__scroll.in-view { grid-template-rows: 1fr; }

.testimonial-orbit__scroll-inner { overflow: hidden; min-height: 0; }

.testimonial-orbit__scroll-panel {
  margin-top: 0;
  background: var(--warm-white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 24px 50px rgba(0,0,0,0.22);
  padding: 1.8rem 1.7rem 2rem;
}
.testimonial-orbit__scroll-panel blockquote {
  font-family: var(--font-fine); /*font-style: italic;*/
  font-size: 1.1rem; color: var(--text); line-height: 1.7; margin: 0;
}

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-orbit__circle-wrap { animation: none; }
}

@media (max-width: 900px) {
  .testimonial-row { grid-template-columns: 1fr; gap: 4rem; max-width: 280px; margin-left: auto; margin-right: auto; }
  .testimonial-row:first-of-type { margin-top: 4rem; }
  .testimonial-orbit { max-width: 260px; }
  .testimonial-orbit__circle,
  .testimonial-orbit--md .testimonial-orbit__circle,
  .testimonial-orbit--lg .testimonial-orbit__circle { width: 220px; height: 220px; }
}

/* ── Contact page ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info h3 { margin-bottom: 1rem; color: var(--deep); }
.contact-info p { margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; font-size: 0.88rem; color: var(--text-mid); }
.contact-detail__icon { width: 36px; height: 36px; background: var(--teal-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form { background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.8rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.9rem;
  background: var(--teal-fog); color: var(--text);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal); background: var(--white); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── About page ─────────────────────────────────────────────── */
.about-bio { background: var(--teal-fog); }
.about-bio__grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 0; align-items: center;
}
.about-bio__photo {
  position: relative; z-index: 1;
  background: linear-gradient(150deg, var(--teal-fog) 0%, var(--teal-pale) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.8rem; text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-bio__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-bio__content {
  position: relative; z-index: 2;
  margin-left: -5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem 3rem 3.2rem;
}
.about-bio__content p { margin-bottom: 1.2rem; }
.about-bio__content h3 { margin: 2rem 0 0.8rem; color: var(--deep); }

/* The Work and Its Origins — strip */
.origins-section { background: var(--sand-pale); }
.origins-body p { margin-bottom: 1.2rem; }
.origins-body p:last-child { margin-bottom: 0; }

/* ── About — stats band ─────────────────────────────────────── */
.about-stats { background: var(--deep); padding: 4.5rem 0; }
.about-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.about-stat { display: flex; flex-direction: column; gap: 0.6rem; }
.about-stat__num {
  font-family: var(--font-serif); font-weight: 700; line-height: 1;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--warm-white);
}
.about-stat__label {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-light);
}

/* ── About — teaching around the world ─────────────────────── */
.about-world { background: var(--stone); }
.about-world__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-world__photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.about-world__photos img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
}
.about-world__photos img:first-child {
  grid-column: 1 / -1; aspect-ratio: 16 / 9;
}

/* ── About — journey timeline ──────────────────────────────── */
.timeline-section { background: var(--warm-white); }
.timeline { position: relative; max-width: 720px; margin: 3.5rem auto 0; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: var(--border);
}
.timeline__item { position: relative; padding: 0 0 2.6rem 2.8rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ''; position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 4px var(--teal-pale);
}
.timeline__phase {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sand);
}
.timeline__title {
  font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--deep); margin: 0.25rem 0 0.5rem;
}
.timeline__item p { font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* ── About — featured / media band ─────────────────────────── */
.about-featured { background: var(--warm-white); text-align: center; padding: 4.5rem 0; }
.about-featured .label { color: var(--teal); }
.about-featured__name {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--deep);
  margin: 1rem 0 0.5rem;
}
.about-featured__sub { font-size: 0.95rem; color: var(--text-mid); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--deep); color: rgba(255,255,255,0.7); padding: 5rem 0 2.5rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer__brand h3 { font-family: var(--font-serif); color: var(--white); font-size: 1.15rem; margin-bottom: 0.5rem; }
.footer__brand .tagline { font-size: 0.68rem; color: var(--sand-light); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer__brand p { font-size: 0.84rem; line-height: 1.75; }
.footer__col h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand-light); margin-bottom: 1.2rem; font-family: var(--font-sans); }
.footer__col a { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--teal-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer__social { display: flex; gap: 0.8rem; }
.footer__social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--transition); }
/* The glyphs draw in currentColor, so hover recolours them with the ring. */
.footer__social svg, .contact-detail__icon svg { display: block; flex: none; }
.contact-detail__icon svg { color: var(--teal); }
.footer__social a:hover { border-color: var(--teal-light); color: var(--teal-light); }

/* ── Popup ──────────────────────────────────────────────────── */
.popup-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(12,58,70,0.55); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease; backdrop-filter: blur(4px); }
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; max-width: 620px; width: 100%; display: grid; grid-template-columns: 1fr 1.4fr; box-shadow: 0 30px 80px rgba(12,58,70,0.25); transform: translateY(20px); transition: transform 0.35s ease; }
.popup-overlay.active .popup { transform: translateY(0); }
.popup__left { background: linear-gradient(160deg, var(--deep) 0%, var(--teal) 100%); padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; }
.popup__left .label { color: var(--sand-light); margin-bottom: 1.5rem; }
.popup__book { background: rgba(255,255,255,0.07); border: 1px solid rgba(184,144,96,0.3); border-radius: 8px; padding: 0.9rem; margin-bottom: 0.7rem; }
.popup__book img { width: 100%; max-width: 190px; height: auto; display: block; margin: 0 auto; border-radius: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.popup__book-title { font-family: var(--font-serif); color: var(--white); font-size: 1rem; line-height: 1.35; margin-bottom: 0.3rem; }
.popup__book-sub { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-align: center; margin-bottom: 1.4rem; }
.popup__left-foot { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.popup__right { padding: 2.5rem; }
.popup__close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--text-light); line-height: 1; transition: color 0.2s; }
.popup__close:hover { color: var(--text); }
.popup { position: relative; }
.popup__right h3 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--deep); }
.popup__right p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 1.8rem; }
.popup__form { display: flex; flex-direction: column; gap: 0.8rem; }
.popup__form input { padding: 0.82rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-sans); font-size: 0.88rem; outline: none; transition: border-color 0.2s; background: var(--teal-fog); color: var(--text); }
.popup__form input:focus { border-color: var(--teal); background: var(--white); }
.popup__form button { width: 100%; }
.popup__disclaimer { font-size: 0.7rem; color: var(--text-light); text-align: center; margin-top: 0.8rem; }

.chatbot-launch-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--deep);
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
  display: grid;
  place-items: center;
}

.chatbot-modal {
  position: fixed;
  inset: 0;
  z-index: 1150;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 22, 40, 0.65);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.chatbot-modal.active {
  opacity: 1;
  visibility: visible;
}
.chatbot-card {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 36px 90px rgba(11, 22, 34, 0.16);
  overflow: hidden;
}
.chatbot-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  border: none;
  background: transparent;
  color: var(--deep);
  font-size: 1.15rem;
  cursor: pointer;
}
.chatbot-header {
  padding: 2rem 2rem 0 2rem;
  flex-shrink: 0;
}
.chatbot-header h3 {
  margin: 0.5rem 0 0.5rem;
}
.chatbot-header p {
  margin: 0;
  color: var(--text-mid);
  font-size: 0.96rem;
}
.chatbot-body {
  padding: 1.5rem 2rem 2rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}
.chatbot-screen {
  display: grid;
  gap: 1rem;
}
.chatbot-panel {
  display: grid;
  gap: 1rem;
}
.chatbot-panel.hidden {
  display: none;
}
.chatbot-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--deep);
  cursor: pointer;
}
.chatbot-consent-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  cursor: pointer;
}
.chatbot-consent-error {
  margin: 0;
  font-size: 0.85rem;
  color: #b3261e;
}
.chatbot-email-label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--deep);
}
.chatbot-email-label input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--teal-fog);
}
.chatbot-messages {
  display: grid;
  gap: 1rem;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.chatbot-bubble {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  max-width: 100%;
  line-height: 1.55;
}
.chatbot-bubble--user {
  justify-self: end;
  background: var(--blue-ghost);
  color: var(--deep);
}
.chatbot-bubble--assistant {
  justify-self: start;
  background: var(--stone);
  color: var(--deep);
}
.chatbot-bubble p {
  margin: 0 0 0.6rem;
}
.chatbot-bubble p:last-child {
  margin-bottom: 0;
}
.chatbot-bubble ul,
.chatbot-bubble ol {
  margin: 0.4rem 0 0.7rem;
  padding-left: 1.25rem;
}
.chatbot-bubble ul:last-child,
.chatbot-bubble ol:last-child {
  margin-bottom: 0;
}
.chatbot-bubble li {
  margin-bottom: 0.35rem;
}
.chatbot-bubble li:last-child {
  margin-bottom: 0;
}
.chatbot-bubble strong {
  font-weight: 600;
}
.chatbot-form {
  display: grid;
  gap: 0.75rem;
}
.chatbot-form.hidden {
  display: none;
}
.chatbot-actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}
.chatbot-actions .btn {
  width: 100%;
  text-align: center;
}
.chatbot-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--teal-fog);
}
.chatbot-form button {
  width: 100%;
}

/* ── Animations ─────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile ─────────────────────────────────────────────────── */
/* ── Nav collapses to hamburger on tablets & small laptops ──── */
@media (max-width: 1200px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1.25rem;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 14px 30px rgba(12, 58, 70, 0.12);
  }
  .nav.nav--open .nav__links { display: flex; }
  .nav__links a {
    color: var(--text-mid);
    padding: 0.85rem 0.25rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }
  .nav__links a:hover { color: var(--teal); }
  .nav__cta {
    margin-top: 0.9rem;
    text-align: center;
    color: var(--white) !important;
    background: var(--teal) !important;
    border-color: var(--teal) !important;
  }
}

@media (max-width: 960px) {
  .intro__grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro__image { aspect-ratio: 16/9; }
  .process__grid { grid-template-columns: 1fr; }
  .offerings__grid { grid-template-columns: 1fr; gap: 3rem; }
  .what-is__grid { grid-template-columns: 1fr; }
  .resources__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-bio__grid { grid-template-columns: 1fr; }
  .about-bio__photo { aspect-ratio: 4 / 3; }
  .about-bio__content { margin: -2.5rem 1rem 0; padding: 2rem; }
  .about-world__grid { grid-template-columns: 1fr; gap: 3rem; }
  .sessions-grid { grid-template-columns: 1fr; }
  .training-features { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr; }
  .method__steps { grid-template-columns: repeat(2,1fr); }
  .lead-magnet__inner { grid-template-columns: 1fr; }
  .lead-magnet__visual { display: none; }
  .popup { grid-template-columns: 1fr; }
  .popup__left { display: none; }
  .training-cta__actions { flex-direction: column; align-items: center; }
  .image-strip { height: 340px; }
}
@media (max-width: 640px) {
  section { padding: 4.5rem 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .zigzag { gap: 3.5rem; }
  .zigzag-row { grid-template-columns: 1fr; gap: 1.6rem; }
  .zigzag-row__media, .zigzag-row--reverse .zigzag-row__media { order: 1; }
  .zigzag-row__content, .zigzag-row--reverse .zigzag-row__content { order: 2; transform: translateY(20px); }
  .zigzag-row__content.in-view, .zigzag-row--reverse .zigzag-row__content.in-view { transform: translateY(0); }
  .zigzag-row__media--bundle { aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .pull-quote { padding: 5rem 0; }
  .about-stats__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }
}

/* ── Session Bands (sessions.html) ───────────────────────────── */
.session-bands { display: flex; flex-direction: column; gap: 2.5rem; }

.session-band {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.session-band__trigger {
  display: block; width: 100%; border: none; padding: 0; margin: 0;
  cursor: pointer; background: none; text-align: left;
}

.session-band__image {
  position: relative; height: 280px; background-size: cover; background-position: center;
  transition: var(--transition);
}
.session-band__trigger:hover .session-band__image { filter: brightness(1.04); }

.session-band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,58,70,0.78) 0%, rgba(12,58,70,0.25) 45%, rgba(12,58,70,0.05) 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 1.8rem 2.2rem;
}

.session-band__label {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.session-band__icon {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; line-height: 1;
  transition: var(--transition);
}
.session-band.open .session-band__icon { transform: rotate(45deg); background: var(--sand); border-color: var(--sand); }

.session-band__panel { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.session-band__panel-inner { padding: 2.8rem 2.8rem 3rem; }
.session-band__panel-inner > p { margin-bottom: 1rem; }

.step-list { margin: 1.4rem 0 1.6rem; }
.step-list li {
  font-size: 0.92rem; color: var(--text-mid); line-height: 1.6;
  padding: 0.6rem 0; padding-left: 1.3rem; position: relative;
  border-bottom: 1px solid var(--border);
}
.step-list li:last-child { border-bottom: none; }
.step-list li::before { content: '—'; position: absolute; left: 0; color: var(--teal); }
.step-list li strong { color: var(--text); font-family: var(--font-sans); }

/* ── Resources page: course tiers ────────────────────────────── */
.courses-section { position: relative; overflow: hidden; isolation: isolate; }
.courses-section__bg {
  position: absolute; inset: 0; z-index: -3;
  background-image: url("../images/courses.jpg");
  background-size: cover; background-position: center;
}
.courses-section__overlay {
  position: absolute; inset: 0; z-index: -2;
  /* background: linear-gradient(160deg, rgba(12,58,70,0.86) 0%, rgba(20,79,96,0.78) 100%); */
}
.courses-section__content { position: relative; z-index: 1; }
.courses-section .section-header h2, .courses-section .section-header .label { color: var(--white); }
.courses-section .section-header p { color: rgba(255,255,255,1); }
.courses-section .divider { background: rgba(255,255,255,1); }

.feature-list { margin: 1.4rem 0 1.6rem; }
.feature-list li {
  font-size: 0.85rem; color: var(--text-mid); line-height: 1.55;
  padding: 0.38rem 0; padding-left: 1.4rem; position: relative;
}
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.course-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin: 3rem 0; align-items: stretch; }
.course-tier {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.6rem 2.2rem; display: flex; flex-direction: column;
  position: relative; transition: var(--transition);
}
.course-tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.course-tier--featured { border-color: var(--sand); background: linear-gradient(to bottom right, var(--white), var(--sand-pale)); }
.course-tier__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--sand); color: var(--white); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 0.38rem 1rem;
  border-radius: 20px; white-space: nowrap;
}
.course-tier h3 { font-size: 1.25rem; margin: 0.3rem 0 0.3rem; }
.course-tier__sub { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 1.3rem; min-height: 2.4em; }
.course-tier__price { font-family: var(--font-serif); font-size: 2.1rem; color: var(--teal); margin-bottom: 0.2rem; }
.course-tier__price span { display: block; font-family: var(--font-sans); font-size: 0.68rem; color: var(--text-light); margin-top: 0.35rem; text-transform: uppercase; letter-spacing: 0.05em; }
.course-tier .btn { width: 100%; text-align: center; margin-top: auto; }
.course-tier__curriculum { margin-bottom: 1.5rem; font-size: 0.85rem; }
.course-tier__curriculum summary { cursor: pointer; color: var(--teal); font-weight: 600; font-size: 0.82rem; padding: 0.4rem 0; list-style: none; }
.course-tier__curriculum summary::-webkit-details-marker { display: none; }
.course-tier__curriculum summary::before { content: '+ '; }
.course-tier__curriculum[open] summary::before { content: '\2013\0020'; }
.course-tier__curriculum ol { margin: 0.7rem 0 0; padding-left: 1.15rem; color: var(--text-mid); }
.course-tier__curriculum li { padding: 0.32rem 0; line-height: 1.5; }

@media (max-width: 900px) {
  .course-tiers { grid-template-columns: 1fr; }
  .offer-cards--two { grid-template-columns: 1fr; }
}

.session-band__meta {
  display: flex; gap: 2.5rem; margin: 1.6rem 0 1.8rem;
  padding: 1.2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.session-band__meta-item { display: flex; flex-direction: column; gap: 0.3rem; }
.session-band__meta-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
.session-band__meta-value { font-family: var(--font-serif); font-size: 1.25rem; color: var(--teal); }
.session-band__meta-note {
  display: block; font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--gold); margin-top: 0.15rem;
}
.rate-note {
  margin-top: 1.1rem; font-size: 0.86rem; line-height: 1.6;
  color: var(--text-mid); max-width: 46ch;
}

.offer-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; margin: 1.8rem 0; }
.offer-cards--four { grid-template-columns: repeat(4,1fr); }

.offer-card {
  background: var(--teal-fog); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.8rem; position: relative; transition: var(--transition); display: flex; flex-direction: column;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.offer-card--featured { border-color: var(--sand); background: linear-gradient(to bottom right, var(--white), var(--sand-pale)); }
.offer-card__badge {
  position: absolute; top: -10px; right: 1.4rem;
  background: var(--sand); color: var(--white);
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem; border-radius: 20px;
}
.offer-card h4 { font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--deep_earth); }
.offer-card__sub { font-size: 0.78rem; color: var(--text-mid); margin-bottom: 0.9rem; min-height: 2.2em; }
.offer-card__price { font-family: var(--font-serif); font-size: 1.55rem; color: var(--teal); margin-bottom: 1.1rem; }
.offer-card__price span { font-size: 0.7rem; color: var(--text-light); font-family: var(--font-sans); display: block; margin-top: 0.2rem; }
.offer-card .btn { margin-top: auto; width: 100%; text-align: center; padding: 0.75rem 1rem; font-size: 0.8rem; }

@media (max-width: 900px) {
  .offer-cards, .offer-cards--four { grid-template-columns: 1fr 1fr; }
  .session-band__panel-inner { padding: 2rem 1.6rem 2.4rem; }
  .session-band__meta { flex-wrap: wrap; gap: 1.4rem 2.5rem; }
}
@media (max-width: 640px) {
  .offer-cards, .offer-cards--four { grid-template-columns: 1fr; }
  .session-band__image { height: 220px; }
  .session-band__overlay { padding: 1.3rem 1.4rem; }
}

/* ── Booking page (booking.html) ─────────────────────────────── */
.booking-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3.5rem; align-items: start; }

.booking-summary {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.4rem; box-shadow: var(--shadow); position: sticky; top: 110px;
}
.booking-summary__title { font-size: 1.3rem; margin-bottom: 0.2rem; }
.booking-summary__sub { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 1.4rem; }
.booking-summary__price { font-family: var(--font-serif); font-size: 2rem; color: var(--teal); margin-bottom: 1.6rem; }
.booking-summary__row { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: var(--text-mid); }
.booking-summary__row strong { color: var(--text); }

.booking-location { display: flex; gap: 0.8rem; margin: 1.6rem 0; }
.booking-location__opt {
  flex: 1; text-align: center; padding: 0.7rem 0.5rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 0.82rem; cursor: pointer; transition: var(--transition); color: var(--text-mid);
}
.booking-location__opt.active { border-color: var(--teal); background: var(--teal-pale); color: var(--teal); font-weight: 600; }

.calendar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--shadow); }
.calendar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.calendar__head h3 { font-size: 1.15rem; }
.calendar__nav { display: flex; gap: 0.6rem; }
.calendar__nav button {
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--border);
  background: var(--white); cursor: pointer; font-size: 0.9rem; color: var(--teal); transition: var(--transition);
}
.calendar__nav button:hover { background: var(--teal-pale); }
.calendar__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 0.4rem; text-align: center; }
.calendar__dow { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); padding-bottom: 0.6rem; }
.calendar__day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 0.85rem; cursor: pointer; color: var(--text); transition: var(--transition);
}
.calendar__day:hover { background: var(--teal-pale); }
.calendar__day--muted { color: var(--text-light); cursor: default; pointer-events: none; }
.calendar__day--disabled { color: var(--border); cursor: not-allowed; pointer-events: none; }
.calendar__day--today { border: 1.5px solid var(--sand); }
.calendar__day--selected { background: var(--teal); color: var(--white); font-weight: 600; }

.calendar__slots { margin-top: 2rem; padding-top: 1.8rem; border-top: 1px solid var(--border); }
.calendar__slots h4 { font-size: 0.95rem; margin-bottom: 1rem; }
.calendar__slots-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.7rem; }
.calendar__slot {
  padding: 0.65rem 0.5rem; text-align: center; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.82rem; cursor: pointer; color: var(--text-mid); transition: var(--transition);
}
.calendar__slot:hover { border-color: var(--teal); }
.calendar__slot.active { background: var(--teal); border-color: var(--teal); color: var(--white); font-weight: 600; }
.calendar__hint { font-size: 0.78rem; color: var(--text-light); margin-top: 1rem; }

.booking-confirm { margin-top: 1.8rem; }
.booking-note {
  margin-top: 1.4rem; font-size: 0.75rem; color: var(--text-light); line-height: 1.6;
  background: var(--teal-fog); border-radius: var(--radius); padding: 0.9rem 1.1rem;
}

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

/* ── Post offer — the next step at the end of an article ──────── */
.post-offer {
  margin: 3.2rem 0 0;
  padding: 2rem 2.2rem;
  background: var(--teal-fog);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.post-offer .label { margin-bottom: 0.7rem; }
.post-offer h3 {
  font-family: var(--font-serif); font-size: 1.22rem; line-height: 1.32;
  color: var(--navy); margin: 0 0 0.7rem;
}
.post-offer p {
  font-size: 0.93rem; line-height: 1.72; color: var(--text-mid); margin: 0 0 1.4rem;
}
.post-offer__foot {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
}
.post-offer__price {
  font-family: var(--font-serif); font-size: 1.18rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.01em;
}
.post-offer__alt {
  width: 100%; margin: 0.2rem 0 0;
  font-size: 0.84rem; line-height: 1.65; color: var(--text-light);
}
.post-offer__alt a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.post-offer__alt a:hover { color: var(--navy); }
@media (max-width: 600px) {
  .post-offer { padding: 1.6rem 1.4rem; }
}

/* ── Booklet nudge — blog articles only, non-blocking ──────────
   Slides in beside the text once the reader is invested, never
   over it. Dismissible, and it stays dismissed. */
.booklet-nudge {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 900;
  width: min(21rem, calc(100vw - 3rem));
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: 0 18px 45px rgba(12, 58, 70, 0.18);
  padding: 1.3rem 1.5rem 1.4rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}
.booklet-nudge.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.booklet-nudge__close {
  position: absolute; top: 0.55rem; right: 0.7rem;
  background: none; border: 0; cursor: pointer;
  font-size: 1.05rem; line-height: 1; color: var(--text-light);
  padding: 0.3rem; border-radius: 4px;
}
.booklet-nudge__close:hover { color: var(--navy); }
.booklet-nudge__close:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.booklet-nudge .label { margin-bottom: 0.45rem; }
.booklet-nudge h4 {
  font-family: var(--font-serif); font-size: 1.02rem; line-height: 1.3;
  color: var(--navy); margin: 0 0 0.5rem; padding-right: 1rem;
}
.booklet-nudge p {
  font-size: 0.85rem; line-height: 1.6; color: var(--text-mid); margin: 0 0 1rem;
}
.booklet-nudge .btn { font-size: 0.82rem; padding: 0.6rem 1.2rem; }
@media (max-width: 600px) {
  .booklet-nudge { right: 0.75rem; left: 0.75rem; bottom: 0.75rem; width: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .booklet-nudge { transition: none; transform: none; }
}

/* ── Session booking: published slots, not a calendar ─────────── */
.booking-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; padding: 5rem 2.5rem 6rem;
}
@media (max-width: 960px) {
  .booking-layout { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 2.5rem 4rem; }
}
.slot-list { display: flex; flex-direction: column; gap: 1.9rem; }

/* Week tabs — only rendered when there is more than one week to show */
/* The week picker reads as a control, not as more times. It is named, sits
   on a rule that separates it from the times below, and its chips are
   pill-shaped where the time chips are square — so the two are told apart
   by shape before anything is read. */
.week-tabs__legend {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-light); margin: 0 0 0.55rem;
}
.week-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 0 0 1.9rem; padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.week-tab {
  display: grid; gap: 0.1rem; text-align: left; cursor: pointer;
  padding: 0.55rem 1.25rem; font-family: inherit;
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: 100px; color: var(--text-mid);
  transition: var(--transition);
}
.week-tab:hover { border-color: var(--teal-light); color: var(--navy); }
.week-tab--active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.week-tab span:first-child { font-weight: 600; font-size: 0.9rem; }
.week-tab__count { font-size: 0.72rem; opacity: 0.7; }
.week-tab:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* A day, then its times as chips */
.slot-day { display: grid; gap: 0.7rem; }
.slot-day__label {
  font-family: var(--font-serif); font-size: 1.12rem;
  color: var(--navy); margin: 0 0 0.15rem;
  display: flex; align-items: center; gap: 0.9rem;
}
/* A hairline running off to the right: the eye reads it as a heading over
   the row beneath rather than as one more thing in the row. */
.slot-day__label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.slot-day + .slot-day { margin-top: 1.5rem; }
.slot-times { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.slot-time {
  display: grid; gap: 0.1rem; cursor: pointer; text-align: left;
  padding: 0.7rem 1.05rem; font-family: inherit;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition);
  min-width: 6.5rem;
}
.slot-time:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.slot-time--active { background: var(--gold-pale); border-color: var(--gold); }
.slot-time:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.slot-time__t     { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.slot-time__local { font-size: 0.74rem; color: var(--text-light); }
.slot-time__soon  { font-size: 0.68rem; font-weight: 600; color: var(--earth); letter-spacing: 0.03em; }

.slot-empty {
  padding: 1.6rem 1.8rem; background: var(--teal-fog);
  border-left: 3px solid var(--teal); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 0.93rem; color: var(--text-mid);
}
.slot-none { margin-top: 1.6rem; font-size: 0.86rem; color: var(--text-light); }
.slot-none a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.payment-note {
  background: var(--teal-fog); border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 1rem 1.2rem; margin: 1.4rem 0;
  font-size: 0.88rem; line-height: 1.7; color: var(--text-mid);
}
.payment-note strong { color: var(--navy); }
.radio-inline { display: inline-flex; align-items: center; gap: 0.4rem; margin-right: 1.2rem; font-size: 0.9rem; font-weight: 400; }
.form-group .optional { font-weight: 400; color: var(--text-light); font-size: 0.8rem; }
.form-group textarea {
  width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--border);
  border-radius: 6px; font-family: inherit; font-size: 0.92rem;
  color: var(--deep); background: var(--white); resize: vertical; line-height: 1.6;
}
.form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-pale); }
.hidden { display: none !important; }

/* ── Booking codes: prepaid package credits ─────────────────────────
   A quiet panel above the times. Most visitors are paying for a single
   session and should read past it; someone holding a package is looking
   for exactly this, so it names itself and then gets out of the way. */
.code-panel {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.3rem 1.5rem; margin-bottom: 2.4rem;
}
.code-panel__title {
  font-family: var(--font-serif); font-size: 1.02rem;
  color: var(--navy); margin: 0 0 0.3rem;
}
.code-panel__intro {
  font-size: 0.85rem; line-height: 1.65; color: var(--text-mid); margin: 0 0 0.9rem;
}
.code-panel__row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.code-panel__row input {
  flex: 1 1 12rem; min-width: 0; padding: 0.7rem 0.9rem;
  border: 1px solid var(--border); border-radius: 6px;
  font-family: var(--font-mono, ui-monospace, "SFMono-Regular", Menlo, monospace);
  font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--deep); background: var(--white);
}
.code-panel__row input:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-pale);
}
.code-panel__row .btn { flex: 0 0 auto; }
.code-status {
  margin: 0.8rem 0 0; font-size: 0.85rem; line-height: 1.6; color: var(--text-mid);
}
.code-status--ok { color: #2f7355; }
.code-status--ok strong { color: var(--navy); }
.code-status--error { color: #a8402f; }

/* Form validation — say what is missing, where it is missing */
.field--error { border-color: #c0392b !important; background: #fdf7f6; }
.field-error {
  margin: 0.4rem 0 0; font-size: 0.8rem; color: #a8402f; line-height: 1.5;
}

/* ── Large desktops ──────────────────────────────────────────────
   Everything below 1500px was designed against a 1100px container, which
   on a 27-inch display leaves some 700px of empty margin down each side
   and text that never grows, because body size was fixed in pixels while
   only the headings scaled. Raising the root size moves type, spacing and
   every rem-based component together; the container widens alongside it so
   the page fills the screen rather than sitting in a column in the middle.

   The reading column is deliberately held back. Its width is a measure,
   not a proportion of the screen — a line of body text past roughly 80
   characters is harder to read however large the display. It gains a
   little from the larger type and no more. */

@media (min-width: 1500px) {
  html { font-size: 17px; }
  .container { max-width: 1280px; }
  .container--narrow { max-width: 760px; }
}

@media (min-width: 1900px) {
  html { font-size: 18px; }
  .container { max-width: 1420px; }
  .container--narrow { max-width: 800px; }
  section { padding: 8rem 0; }
}

@media (min-width: 2400px) {
  html { font-size: 19px; }
  .container { max-width: 1560px; }
  /* Restated, not inherited: this block comes after the one above, and with
     equal specificity the later .container rule would otherwise widen the
     reading column back to 1560 and undo the point of holding it. */
  .container--narrow { max-width: 840px; }
}
