/* =========================================================================
   LIVING CALM - STYLESHEET
   =========================================================================
   How this file is organised (search for these headings):
     1. Design tokens (colours, fonts, spacing)  <-- most edits happen here
     2. Reset & base
     3. Typography
     4. Layout helpers
     5. Buttons
     6. Header & navigation
     7. Hero + handwritten signature animation
     8. About
     9. Testimonial
    10. Prose sections (Story / Approach)
    11. Coaching + Discovery call band
    12. Pathways
    13. FAQ accordion
    14. How to book
    15. Contact
    16. Footer
    17. Scroll reveal + motion
    18. Accessibility & reduced motion
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   To recolour the whole site, change the values in this section only.
   ------------------------------------------------------------------------- */
:root {
  --sage: #767C5C;
  --deep-sage: #535C48;
  --cream: #F7F4EC;
  --soft-cream: #FCFAF5;
  --gold: #C5A12A;
  --charcoal: #363833;
  --pale-sage: #E8EBE1;
  --taupe: #D9D2C3;

  --color-bg: var(--cream);
  --color-surface: var(--soft-cream);
  --color-surface-alt: var(--pale-sage);
  --color-text: var(--charcoal);
  --color-heading: var(--deep-sage);
  --color-accent: var(--sage);
  --color-accent-strong: var(--deep-sage);
  --color-gold: var(--gold);
  --color-border: var(--taupe);

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Georgia, serif;

  --fs-h1: clamp(2.4rem, 8vw, 4.2rem);
  --fs-h2: clamp(1.9rem, 5.2vw, 2.75rem);
  --fs-h3: clamp(1.35rem, 3.6vw, 1.75rem);
  --fs-lead: clamp(1.1rem, 2.6vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-eyebrow: 0.8rem;

  --space-2xs: 0.4rem;
  --space-xs: 0.75rem;
  --space-sm: 1.25rem;
  --space-md: 2rem;
  --space-lg: 3.25rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;

  --container-w: 1160px;
  --container-medium: 940px;
  --container-narrow: 760px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease-calm: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 220ms;
  --dur-med: 480ms;
  --dur-slow: 900ms;
  --dur-breath: 6.5s;

  --shadow-soft: 0 12px 32px -18px rgba(54, 56, 51, 0.28);
  --shadow-lift: 0 20px 45px -20px rgba(54, 56, 51, 0.35);

  --header-h: 76px;
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;

  -webkit-tap-highlight-color: transparent;
}

ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
input, textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--sage);
  color: var(--cream);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--deep-sage);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top var(--dur-fast) var(--ease-calm);
}
.skip-link:focus {
  top: 1rem;
}

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

/* -------------------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------------------- */
h1, h2, h3, .font-display {
  font-family: var(--font-display);
  color: var(--color-heading);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-h1); font-weight: 500; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}
.eyebrow::before {
  content: "";
  width: 1.6em;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--deep-sage);
}

.prose p + p { margin-top: 1.1em; }
.prose { max-width: 62ch; }

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-style: italic;
  color: var(--deep-sage);
  line-height: 1.45;
  border-left: 3px solid var(--gold);
  padding-left: var(--space-sm);
  margin: var(--space-md) 0;
}

.accent-word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--sage);
}

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

.small-caps-label {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-sage);
}

/* -------------------------------------------------------------------------
   4. LAYOUT HELPERS
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

.container-medium {
  width: 100%;
  max-width: var(--container-medium);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

.section {
  position: relative;
  padding-block: var(--space-xl);
}

.section-alt {
  background: var(--pale-sage);
}

.section-head {
  max-width: 42rem;
  margin-bottom: var(--space-lg);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.chapter-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-sm);
  border-radius: 50%;
  background: var(--pale-sage);
  color: var(--deep-sage);
}
.chapter-icon svg { width: 18px; height: 18px; }

@media (min-width: 900px) {
  .section { padding-block: var(--space-2xl); }
}

.divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: var(--space-sm) 0;
}
.divider.center { margin-inline: auto; }

.ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ambient span {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  animation: drift 22s var(--ease-calm) infinite alternate;
}
.ambient span:nth-child(1) {
  width: 320px; height: 320px;
  background: var(--pale-sage);
  top: -80px; left: -100px;
  animation-duration: 26s;
}
.ambient span:nth-child(2) {
  width: 260px; height: 260px;
  background: var(--taupe);
  bottom: -60px; right: -80px;
  opacity: 0.35;
  animation-duration: 30s;
  animation-delay: -6s;
}
.ambient span:nth-child(3) {
  width: 180px; height: 180px;
  background: var(--gold);
  top: 30%; right: 10%;
  opacity: 0.12;
  animation-duration: 20s;
  animation-delay: -3s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(24px, 30px) scale(1.08); }
}

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

/* -------------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.9em;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  transition: transform var(--dur-fast) var(--ease-calm),
              box-shadow var(--dur-fast) var(--ease-calm),
              background-color var(--dur-fast) var(--ease-calm),
              color var(--dur-fast) var(--ease-calm);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--deep-sage);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-outline {
  background: transparent;
  color: var(--deep-sage);
  border-color: var(--deep-sage);
}
.btn-outline:hover {
  background: var(--deep-sage);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-on-dark {
  background: var(--soft-cream);
  color: var(--deep-sage);
}
.btn-on-dark:hover {
  background: var(--gold);
  color: var(--deep-sage);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-ghost {
  font-family: var(--font-display);
  padding-inline: 0.2em;
  font-weight: 700;
  text-underline-offset: 0.3em;
  text-decoration: underline;
  text-decoration-color: var(--taupe);

  transition: text-decoration-color var(--dur-fast) var(--ease-calm);

  color: var(--deep-sage);
  color: color-mix(in srgb, var(--cream) calc(var(--bg-fade, 0) * 100%), var(--deep-sage));
}

.btn-ghost:hover {
  color: var(--sage);
  color: color-mix(in srgb, var(--gold) calc(var(--bg-fade, 0) * 100%), var(--sage));
  text-decoration-color: var(--gold);
}

.btn-block { width: 100%; }

@media (min-width: 640px) {
  .btn-block { width: auto; }
}

/* -------------------------------------------------------------------------
   6. HEADER & NAVIGATION
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;

  z-index: 106;
  height: var(--header-h);
  display: flex;
  align-items: center;

  background: transparent;
  transition: box-shadow var(--dur-med) var(--ease-calm),
              height var(--dur-med) var(--ease-calm),
              background-color var(--dur-med) var(--ease-calm),
              backdrop-filter var(--dur-med) var(--ease-calm);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px -18px rgba(54, 56, 51, 0.4);
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand {
  --lockup-w: 45px;
}
.brand img {
  width: var(--lockup-w);
  height: auto;
  aspect-ratio: 1848 / 1552;
}

.brand .brand-lockup {
  display: block;
}
.brand .brand-name {
  display: block;
  font-size: calc(var(--lockup-w) * 0.3055);
  line-height: 1.12;
  color: var(--deep-sage);
  white-space: nowrap;
}
.brand .brand-rule {
  display: flex;
  width: 100%;
  margin: calc(var(--lockup-w) * 0.055) auto 0;
  max-width: none;
  gap: 4.8px;
}
.brand .brand-rule i {
  width: 3px;
  height: 3px;
}

@media (min-width: 480px) {
  .brand { --lockup-w: 52px; }
}

body.is-home .site-header .brand {
  --dock: 0;
  opacity: var(--dock);
}

.nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-md);

    justify-self: center;
  }
  .nav-desktop a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-sage);
    padding: 0.4rem 0.1rem;
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: -2px;
    height: 2px;
    background: var(--gold);
    transition: right var(--dur-fast) var(--ease-calm);
  }
  .nav-desktop a:hover::after,
  .nav-desktop a.is-active::after {
    right: 0;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-self: end;
}

.header-actions .btn {
  display: none;
}
@media (min-width: 640px) {
  .header-actions .btn {
    display: inline-flex;
    padding: 0.75em 1.4em;
    font-size: 0.9rem;
  }
}

.nav-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  z-index: 110;
  transition: transform var(--dur-fast) var(--ease-calm);

  filter: drop-shadow(0 1px 2px rgba(54, 56, 51, 0.55));
}
.nav-toggle:active { transform: scale(0.94); }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

@media (max-width: 899px) {
  .site-header {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    pointer-events: none;
  }
  .header-actions .btn,
  .brand {
    display: none;
  }
  .nav-toggle {
    pointer-events: auto;
  }
}

.mobile-top-brand {
  display: none;
}
@media (max-width: 899px) {
  body:not(.is-home) .mobile-top-brand {
    display: flex;
    --lockup-w: 62px;
    width: 100%;
    padding: var(--space-sm) 0 0 var(--space-sm);

    background:
      radial-gradient(ellipse 60vw 50vh at 85% 0%, rgba(197, 161, 42, 0.10), transparent 60%),
      radial-gradient(ellipse 70vw 60vh at 10% 10%, rgba(232, 235, 225, 0.9), transparent 55%),
      var(--cream);
  }
  body:not(.is-home) .mobile-top-brand img {
    display: block;
  }
}

.nav-toggle .bar,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  top: 50%;

  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-calm),
              height var(--dur-fast) var(--ease-calm),
              left var(--dur-fast) var(--ease-calm),
              width var(--dur-fast) var(--ease-calm);
}

.nav-toggle::before { left: 4px;  transform: translateY(calc(-50% - 7px)); }
.nav-toggle .bar    { left: 12px; transform: translateY(-50%); }
.nav-toggle::after  { left: 8px;  transform: translateY(calc(-50% + 7px)); }

.nav-toggle[aria-expanded="true"] .bar,
.nav-toggle[aria-expanded="true"]::before,
.nav-toggle[aria-expanded="true"]::after {
  left: 17px;
  width: 22px;
  height: 2.5px;
}
.nav-toggle[aria-expanded="true"] .bar {
  background: transparent;
}
.nav-toggle[aria-expanded="true"]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--soft-cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease-calm),
              transform var(--dur-med) var(--ease-calm),
              visibility 0s linear var(--dur-med);
}
.nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity var(--dur-med) var(--ease-calm),
              transform var(--dur-med) var(--ease-calm),
              visibility 0s linear 0s;
}
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--deep-sage);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-med) var(--ease-calm), transform var(--dur-med) var(--ease-calm), color var(--dur-fast) var(--ease-calm);
}
.nav-mobile a.is-active {
  color: var(--sage);
  position: relative;
}
.nav-mobile a.is-active::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.nav-mobile.is-open a {
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile.is-open li:nth-child(1) a { transition-delay: 0.06s; }
.nav-mobile.is-open li:nth-child(2) a { transition-delay: 0.11s; }
.nav-mobile.is-open li:nth-child(3) a { transition-delay: 0.16s; }
.nav-mobile.is-open li:nth-child(4) a { transition-delay: 0.21s; }

.nav-mobile a.btn {
  margin-top: var(--space-lg);
  color: var(--cream);
  font-size: 1rem;
}
.nav-mobile a.btn:hover {
  color: var(--cream);
}

.nav-mobile-foot {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-md);
  right: var(--space-md);
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}
.nav-mobile-foot a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--taupe);
  color: var(--deep-sage);
  display: grid;
  place-items: center;
  transition: background var(--dur-fast) var(--ease-calm), border-color var(--dur-fast) var(--ease-calm), color var(--dur-fast) var(--ease-calm);
}

.nav-mobile-foot a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--soft-cream);
}
.nav-mobile-foot svg { width: 19px; height: 19px; }

body.nav-lock { overflow: hidden; }

/* -------------------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(197, 161, 42, 0.10), transparent 60%),
    radial-gradient(ellipse 70% 60% at 10% 10%, rgba(232, 235, 225, 0.9), transparent 55%),
    var(--cream);
}

body.is-home .hero {
  min-height: 1070vh;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

body.is-home .hero-pin-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
}

body.is-home .hero-pin-wrap .container {
  width: 100%;
  min-height: 100vh;
  padding-top: var(--header-h);
  padding-bottom: var(--space-xl);
}


body.is-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--deep-sage);
  opacity: var(--bg-fade, 0);
  pointer-events: none;
}

.hero .container {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.brand-name {
  font-family: var(--font-brand);
}

.hero-copy .eyebrow { margin-bottom: var(--space-sm); }

.hero h1 {
  margin-bottom: var(--space-sm);
}
.hero h1 .accent {
  display: block;
  color: var(--sage);
}

.hero .lead {
  max-width: 46ch;
  margin-bottom: var(--space-md);
}

.hero-scene-stack {
  display: grid;
  align-items: center;
}
.hero-scene {
  grid-area: 1 / 1;
}

.hero-lead-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  line-height: 1.45;

  color: var(--deep-sage);
  color: color-mix(in srgb, var(--pale-sage) calc(var(--bg-fade, 0) * 100%), var(--deep-sage));

  opacity: var(--scene1-opacity, 1);
}

.hero-lead-quote-text {
  display: block;
  transform: scale(calc(0.8 + var(--scene1-progress, 0) * 0.2));
}

.hero-scene-family {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--deep-sage);
  color: color-mix(in srgb, var(--pale-sage) calc(var(--bg-fade, 0) * 100%), var(--deep-sage));
  opacity: var(--scene2-opacity, 0);
}
.hero-scene-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.35em;
  color: inherit;
}

.hero-scene-recognise {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--deep-sage);
  color: color-mix(in srgb, var(--cream) calc(var(--bg-fade, 0) * 100%), var(--deep-sage));
  opacity: var(--scene3-opacity, 0);
}

.hero-scene-organiser-1,
.hero-scene-organiser-2 {
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--deep-sage);
  color: color-mix(in srgb, var(--pale-sage) calc(var(--bg-fade, 0) * 100%), var(--deep-sage));
}
.hero-scene-organiser-1 { opacity: var(--scene4-opacity, 0); }
.hero-scene-organiser-2 { opacity: var(--scene5-opacity, 0); }
.hero-scene-organiser-1 .accent-word,
.hero-scene-organiser-2 .accent-word {
  color: var(--gold);
}

.hero-scene-safe {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  text-align: center;
  color: var(--deep-sage);
  color: color-mix(in srgb, var(--pale-sage) calc(var(--bg-fade, 0) * 100%), var(--deep-sage));
  opacity: var(--scene6-opacity, 0);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);

  align-items: center;
}
@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; align-items: center; }
}

.hero-brand {
  --dock: 0;
  position: relative;
  display: inline-block;
  margin-inline: auto;

  opacity: calc(1 - var(--dock));
  transform: translateY(calc(var(--dock) * -70vh)) scale(calc(1 - var(--dock) * 0.4));
}
.hero-logo {
  width: min(220px, 42vw);
  height: auto;

  aspect-ratio: 1848 / 1552;
  margin-inline: auto;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 14px 20px rgba(83, 92, 72, 0.16));
}

.brand-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin: 0.35em auto 0.6em;
  width: 82%;
  max-width: 21rem;
}
.brand-rule span {
  flex: 1 1 auto;
  height: 1px;
  background: var(--gold);
}
.brand-rule i {
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  font-style: normal;
}
.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-sage);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.scroll-cue {
  position: fixed;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--sage);
  color: color-mix(in srgb, var(--cream) calc(var(--bg-down, 0) * 100%), color-mix(in srgb, var(--taupe) calc(var(--bg-fade, 0) * 100%), var(--sage)));
  opacity: calc(0.55 * (1 - var(--bg-down, 0)));
}
body.hero-pin-active .scroll-cue {
  visibility: visible;
}
.scroll-cue .stem {
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--sage), transparent);
  background: linear-gradient(color-mix(in srgb, var(--cream) calc(var(--bg-down, 0) * 100%), color-mix(in srgb, var(--taupe) calc(var(--bg-fade, 0) * 100%), var(--sage))), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
}

.hero-progress {
  position: fixed;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  display: none;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: var(--nav-in, 1);
}
body.hero-nav-active .hero-progress {
  visibility: visible;
}

.hero-progress-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.hero-progress-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.hero-progress-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  background: color-mix(in srgb, var(--taupe) calc(var(--bg-fade, 0) * 100%), var(--sage));
  opacity: 0.3;
  transition: transform var(--dur-fast) var(--ease-calm);
}
.hero-progress-dot[data-scene="1"]::before {
  opacity: calc(0.3 + var(--scene1-opacity, 1) * 0.7);
  transform: scale(calc(1 + var(--scene1-opacity, 1) * 0.75));
}
.hero-progress-dot[data-scene="2"]::before {
  opacity: calc(0.3 + var(--scene2-opacity, 0) * 0.7);
  transform: scale(calc(1 + var(--scene2-opacity, 0) * 0.75));
}
.hero-progress-dot[data-scene="3"]::before {
  opacity: calc(0.3 + var(--scene3-opacity, 0) * 0.7);
  transform: scale(calc(1 + var(--scene3-opacity, 0) * 0.75));
}
.hero-progress-dot[data-scene="4"]::before {
  opacity: calc(0.3 + var(--scene4-opacity, 0) * 0.7);
  transform: scale(calc(1 + var(--scene4-opacity, 0) * 0.75));
}
.hero-progress-dot[data-scene="5"]::before {
  opacity: calc(0.3 + var(--scene5-opacity, 0) * 0.7);
  transform: scale(calc(1 + var(--scene5-opacity, 0) * 0.75));
}
.hero-progress-dot[data-scene="6"]::before {
  opacity: calc(0.3 + var(--scene6-opacity, 0) * 0.7);
  transform: scale(calc(1 + var(--scene6-opacity, 0) * 0.75));
}

.hero-skip {
  position: fixed;
  bottom: calc(var(--space-md) + 30px + 0.4rem);
  right: var(--space-md);
  display: none;
  visibility: hidden;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  color: color-mix(in srgb, var(--cream) calc(var(--bg-down, 0) * 100%), color-mix(in srgb, var(--taupe) calc(var(--bg-fade, 0) * 100%), var(--sage)));
  opacity: calc(0.55 * (1 - var(--bg-down, 0)) * var(--nav-in, 1));
}
body.hero-nav-active .hero-skip {
  visibility: visible;
}
body.hero-outro-active .hero-skip {
  pointer-events: none;
}

@media (min-width: 960px) {
  .hero-progress { display: flex; }
  .hero-skip { display: block; }
}

/* -------------------------------------------------------------------------
   8. ABOUT
   ------------------------------------------------------------------------- */
.about .container {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .about .container {
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--space-xl);
    align-items: start;
  }

  .about .section-head {
    grid-column: 1 / -1;
  }
}

.about-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(83, 92, 72, 0.15);
  pointer-events: none;
}
.about-portrait .credential-chip {
  position: absolute;
  left: var(--space-sm);
  bottom: var(--space-sm);
  right: var(--space-sm);
  background: rgba(252, 250, 245, 0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  font-size: 0.85rem;
  color: var(--deep-sage);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.about-portrait .credential-chip span {
  min-width: 0;
}

.about-portrait .credential-chip img {
  flex: none;
  height: 34px;
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.about-body .small-caps-label {
  margin-top: var(--space-lg);
}

.about-body .signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--sage);
  margin-top: var(--space-md);
}

.outcome-list {
  display: grid;
  gap: 0.85rem;
  margin: var(--space-md) 0;
}
.outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}
.outcome-list li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

/* -------------------------------------------------------------------------
   9. TESTIMONIAL
   ------------------------------------------------------------------------- */
.testimonial {
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: -1.2rem;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--deep-sage);
  line-height: 1.6;
  max-width: 68ch;
}
.testimonial blockquote p + p { margin-top: 1em; }
.testimonial figcaption {
  margin-top: var(--space-md);
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.testimonial figcaption::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}

/* -------------------------------------------------------------------------
   10. PROSE SECTIONS (Story / Approach)
   ------------------------------------------------------------------------- */
.prose-section .section-head { margin-bottom: var(--space-md); }
.prose-section .prose { font-size: 1.05rem; }
.prose-section .prose p { color: var(--charcoal); }

.two-col-prose {
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 860px) {
  .two-col-prose {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

/* -------------------------------------------------------------------------
   11. COACHING + DISCOVERY CALL BAND
   ------------------------------------------------------------------------- */

.confidentiality-block {
  margin-top: var(--space-lg);
}
.confidentiality-block h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
  font-size: 1.15rem;
}
.confidentiality-block h3 svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.confidentiality-block .prose { max-width: 80ch; }

.discovery-band {
  position: relative;
  background: var(--deep-sage);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  margin-top: var(--space-2xl);
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) {
  .discovery-band { padding: var(--space-xl) var(--space-xl); }
}
.discovery-band::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,161,42,0.18), transparent 70%);
  top: -180px; right: -140px;
}
.discovery-band .eyebrow { color: var(--gold); justify-content: center; }
.discovery-band .eyebrow::before { background: var(--gold); }
.discovery-band h2 { color: var(--cream); margin: var(--space-xs) 0 var(--space-sm); }
.discovery-band p { color: var(--pale-sage); max-width: 52ch; margin-inline: auto; }
.discovery-band .btn { margin-top: var(--space-md); }

.discovery-full {
  background: var(--deep-sage);
  color: var(--cream);
  text-align: center;
}
.discovery-full .eyebrow { color: var(--gold); justify-content: center; }
.discovery-full .eyebrow::before { background: var(--gold); }
.discovery-full h2 { color: var(--cream); margin: var(--space-xs) 0 var(--space-sm); }
.discovery-full p { color: var(--pale-sage); max-width: 52ch; margin-inline: auto; }
.discovery-full .btn { margin-top: var(--space-md); }

#intro {
  padding-block: 0;
}

/* -------------------------------------------------------------------------
   12. PATHWAYS
   ------------------------------------------------------------------------- */
.companion-note {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: var(--soft-cream);
  border: 1px solid var(--taupe);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
}
.companion-note .icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pale-sage);
  display: grid;
  place-items: center;
  color: var(--deep-sage);
}
.companion-note .icon svg { width: 22px; height: 22px; }

.pathways-grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 860px) {
  .pathways-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
}

.pathway-card {
  position: relative;
  background: var(--soft-cream);
  border: 1px solid var(--taupe);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease-calm), box-shadow var(--dur-med) var(--ease-calm);
}
.pathway-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.pathway-card.is-featured {
  border-color: var(--sage);
  background: linear-gradient(180deg, var(--soft-cream), var(--pale-sage) 220%);
}
.pathway-card .badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--deep-sage);
  padding: 0.35em 0.8em;
  border-radius: var(--radius-pill);
}
.pathway-card .pathway-name {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.pathway-card h3 { margin-bottom: var(--space-xs); }
.pathway-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: var(--space-xs) 0 var(--space-sm);
}
.pathway-card .price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--deep-sage);
}
.pathway-card .price-meta {
  font-size: var(--fs-small);
  color: var(--sage);
}
.pathway-card .desc {
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}
.pathway-card .includes {
  display: grid;
  gap: 0.6rem;
  margin: var(--space-sm) 0 var(--space-lg);
}
.pathway-card .includes li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.pathway-card .includes svg {
  flex: none;
  width: 16px; height: 16px;
  margin-top: 0.25rem;
  color: var(--gold);
}
.pathway-card .btn { margin-top: auto; }

/* -------------------------------------------------------------------------
   13. FAQ ACCORDION
   ------------------------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: var(--space-sm);
}
.faq-item {
  background: var(--soft-cream);
  border: 1px solid var(--taupe);
  border-radius: var(--radius-md);
  padding-inline: var(--space-md);
  transition: border-color var(--dur-fast) var(--ease-calm);
}
.faq-item.is-open {
  border-color: var(--sage);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--deep-sage);
}
.faq-q .plus {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  position: relative;
  transition: transform var(--dur-fast) var(--ease-calm), background var(--dur-fast) var(--ease-calm);
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--sage);
  transition: transform var(--dur-fast) var(--ease-calm), opacity var(--dur-fast) var(--ease-calm);
}
.faq-q .plus::before { left: 8px; right: 8px; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { top: 8px; bottom: 8px; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq-item.is-open .faq-q .plus { background: var(--sage); }
.faq-item.is-open .faq-q .plus::before,
.faq-item.is-open .faq-q .plus::after { background: var(--soft-cream); }
.faq-item.is-open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease-calm);
}
.faq-item.is-open .faq-a-wrap {
  max-height: 400px;
}
.faq-a-inner { overflow: hidden; }
.faq-a {
  padding: 0 0 var(--space-sm);
  color: var(--charcoal);
  max-width: 64ch;
}

/* -------------------------------------------------------------------------
   14. HOW TO BOOK
   ------------------------------------------------------------------------- */
.steps-list {
  display: grid;
  gap: var(--space-md);
  counter-reset: step;
  margin: var(--space-lg) 0;
}
@media (min-width: 860px) {
  .steps-list { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
}
.step {
  position: relative;
  padding-top: var(--space-lg);
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--pale-sage);
  -webkit-text-stroke: 1px var(--sage);
  position: absolute;
  top: -0.6rem;
  left: 0;
}
.step h3 { margin-bottom: 0.4rem; font-size: 1.15rem; }
.step p { color: var(--charcoal); font-size: 0.98rem; }
@media (min-width: 860px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0.9rem;
    left: calc(100% + var(--space-sm) / 2);
    width: calc(var(--space-lg) - var(--space-sm));
    height: 1px;
    background: var(--taupe);
    display: none;
  }
}

/* -------------------------------------------------------------------------
   15. CONTACT
   ------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-xl);
  }
}

.contact-info-card {
  background: var(--deep-sage);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
}
.contact-info-card h3 { color: var(--cream); font-size: 1.25rem; margin-bottom: var(--space-sm); }
.contact-info-card p { color: var(--pale-sage); }

.contact-detail {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: var(--space-md);
}
.contact-detail .icon {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(247, 244, 236, 0.12);
  display: grid;
  place-items: center;
  transition: background var(--dur-fast) var(--ease-calm);
}

.contact-detail a.icon:hover { background: var(--gold); color: var(--soft-cream); }
.contact-detail .icon svg { width: 17px; height: 17px; }
.contact-detail a:hover { color: var(--gold); }
.contact-detail .label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
  display: block;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-lg);
}
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 236, 0.35);
  display: grid;
  place-items: center;
  transition: background var(--dur-fast) var(--ease-calm), border-color var(--dur-fast) var(--ease-calm);
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.social-row svg { width: 18px; height: 18px; }

.contact-form-card {
  background: var(--soft-cream);
  border: 1px solid var(--taupe);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
}
@media (min-width: 600px) {
  .contact-form-card { padding: var(--space-xl); }
}

.form-row {
  position: relative;
  margin-bottom: var(--space-md);
}
.form-row.two-up {
  display: grid;
  gap: var(--space-md);
}
@media (min-width: 560px) {
  .form-row.two-up { grid-template-columns: 1fr 1fr; }
}

.field {
  position: relative;
}
.field label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 1rem;
  color: var(--sage);
  pointer-events: none;
  transition: transform var(--dur-fast) var(--ease-calm), font-size var(--dur-fast) var(--ease-calm), color var(--dur-fast) var(--ease-calm);
  background: var(--soft-cream);
  padding: 0 0.3rem;
}
.field input,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--taupe);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: transparent;
  transition: border-color var(--dur-fast) var(--ease-calm);
}

.field textarea { min-height: 130px; resize: none; overflow: hidden; }
.field input:focus,
.field textarea:focus {
  border-color: var(--sage);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.55rem) translateX(-0.2rem);
  font-size: 0.78rem;
  color: var(--deep-sage);
  font-weight: 700;
}

.field-note {
  font-size: 0.8rem;
  color: var(--sage);
  margin-top: 0.4rem;
}

.turnstile-wrap {
  margin: var(--space-sm) 0 var(--space-md);
  display: flex;
  align-items: center;
}

.form-status {
  margin-top: var(--space-sm);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
  gap: 0.6rem;
  align-items: center;
}
.form-status.is-visible { display: flex; animation: rise-in var(--dur-med) var(--ease-calm); }
.form-status.success { background: var(--pale-sage); color: var(--deep-sage); }
.form-status.error { background: #f3dede; color: #7a2f2f; }

.btn.htmx-request {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn.htmx-request::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(247,244,236,0.4);
  border-top-color: currentColor;
  color: var(--soft-cream);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* -------------------------------------------------------------------------
   16. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--pale-sage);
  padding-block: var(--space-xl) var(--space-lg);
  position: relative;
}

.footer-top {
  display: grid;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  --lockup-w: 160px;
}
.footer-brand .brand-rule {
  width: calc(var(--lockup-w) * 1.3555);
  max-width: none;
  margin: calc(var(--lockup-w) * 0.075) auto calc(var(--lockup-w) * 0.05);
  gap: calc(var(--lockup-w) * 0.0363);
}
.footer-brand .brand-rule i {
  width: calc(var(--lockup-w) * 0.0227);
  height: calc(var(--lockup-w) * 0.0227);
}
.footer-brand-logo {
  width: var(--lockup-w);
  height: auto;
  aspect-ratio: 1848 / 1552;
  margin-inline: auto;
  filter: drop-shadow(0 10px 16px rgba(83, 92, 72, 0.14));
}
.footer-brand-name {
  font-family: var(--font-brand);
  font-size: calc(var(--lockup-w) * 0.2555);
  line-height: 1.12;
  color: var(--deep-sage);
  margin-top: calc(var(--lockup-w) * 0.0909);
}
.footer-brand-tagline {
  font-family: var(--font-body);
  font-size: calc(var(--lockup-w) * 0.0691);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.3em;
}

.footer-brand-desc {
  margin-top: var(--space-sm);
  color: var(--deep-sage);
  font-size: 0.92rem;
  max-width: 30ch;
  margin-inline: auto;
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--taupe);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
  font-size: 0.82rem;
  color: var(--sage);
}
@media (min-width: 860px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }
  .footer-disclaimer { text-align: center; }
}

.footer-cert {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
@media (min-width: 860px) {
  .footer-cert { justify-self: end; }
}
.footer-cert-logo {
  flex: none;
  height: 36px;
  width: auto;
}

/* -------------------------------------------------------------------------
   17. SCROLL REVEAL + MOTION
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-slow) var(--ease-calm), transform var(--dur-slow) var(--ease-calm);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity var(--dur-slow) var(--ease-calm), transform var(--dur-slow) var(--ease-calm);
}
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-loaded .hero-track > *:not(.hero-brand) {
  animation: rise-in var(--dur-slow) var(--ease-calm) both;
}
.page-loaded .hero-track > *:not(.hero-brand):nth-child(1) { animation-delay: 0.05s; }
.page-loaded .hero-track > *:not(.hero-brand):nth-child(2) { animation-delay: 0.15s; }
.page-loaded .hero-track > *:not(.hero-brand):nth-child(3) { animation-delay: 0.25s; }
.page-loaded .hero-track > *:not(.hero-brand):nth-child(4) { animation-delay: 0.35s; }
.page-loaded .hero-track > *:nth-child(5) { animation-delay: 0.45s; }

/* -------------------------------------------------------------------------
   18. ACCESSIBILITY & REDUCED MOTION
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-scale { opacity: 1; transform: none; }

  .hero-lead-quote-text { transform: none; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
