/* =========================================================
   Sacred Journey Hypnotherapy — styles.css
   A luxury private-practice one-page site.
   Palette + type derived from the brand board and the
   "Hypnosis Works" editorial reference:
     Sloop Script Pro — dramatic calligraphic display lines
                        (Pinyon Script is the free stand-in)
     Cinzel           — roman-capital headings
     Montserrat       — body / UI
     Cormorant Garamond — soft serif for quotes & FAQ
   ========================================================= */

/* ---------- Display script: Angeline (self-hosted) ----------
   Client-supplied font in /fonts. Used for all large calligraphic
   display lines. Pinyon Script (Google) is the fallback. */
@font-face {
  font-family: "Angeline";
  src: url("../fonts/Angeline.woff2") format("woff2"),
       url("../fonts/Angeline.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  /* Core neutrals — warm ivory ground of the reference post (#F5F0E8) */
  --cream:        #F5F0E8;   /* dominant page ground */
  --cream-2:      #EFE7DA;   /* warm alt */
  --ivory:        #FBF8F2;   /* lifted surfaces */

  /* Ink + plum */
  --ink:          #2A2430;   /* primary body text — warm near-black */
  --plum:         #3E2E4C;   /* deep aubergine — headings, CTAs, dark fields */
  --plum-deep:    #271D33;   /* darkest field */
  --plum-soft:    #6B5C77;   /* muted plum for secondary text */

  /* Accents */
  --lavender:      #C9A6D0;  /* saturated accent band (announce, statement, newsletter) */
  --lavender-soft: #ECE4F1;  /* light lavender alternating section field */
  --lavender-mist: #B7B0C8;  /* brand "lavender mist" */
  --sage:          #7C8B6F;  /* muted botanical green — legible on cream */
  --sage-brand:    #A3B18A;  /* brand sage — decorative fills only */
  --sage-soft:     #E4E8DB;  /* pale sage field */
  --gold:          #A9863E;  /* antique gold — text + hairlines on light */
  --gold-bright:   #D4AF37;  /* brand gold — shimmer, gradients, dark fields */
  --gold-soft:     #E3CE9F;  /* soft gold on dark fields */

  /* Lines */
  --rule:          rgba(42, 36, 48, 0.16);
  --rule-light:    rgba(42, 36, 48, 0.10);
  --rule-on-dark:  rgba(245, 240, 232, 0.22);

  /* Typography */
  --font-serif:      "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  --font-serif-soft: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-sans:       "Montserrat", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --font-script:     "Angeline", "Snell Roundhand", "Apple Chancery", cursive;
  --font-signature:  "Dancing Script", "Segoe Script", "Bradley Hand", "Brush Script MT", cursive;

  /* Layout */
  --container:   1240px;
  --measure:     64ch;
  --header-h:    5.25rem;
  --gutter:      clamp(1.25rem, 5vw, 3rem);
  --section-y:   clamp(5rem, 12vw, 9rem);
  --radius:      3px;

  /* Motion */
  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0313rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--plum);
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.035em;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

figure, blockquote { margin: 0; }

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

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; }

::selection { background: var(--lavender); color: var(--plum-deep); }

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--plum);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 1rem; }

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

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 8vw, 5.5rem); }

.section--cream   { background: var(--cream); }
.section--cream-2 { background: var(--cream-2); }
.section--ivory   { background: var(--ivory); }
.section--lavender-soft { background: var(--lavender-soft); }
.section--sage-soft     { background: var(--sage-soft); }

.section--plum,
.section--plum-deep {
  background: var(--plum);
  color: rgba(245, 240, 232, 0.86);
}
.section--plum-deep { background: var(--plum-deep); }
.section--plum h1, .section--plum h2, .section--plum h3,
.section--plum-deep h1, .section--plum-deep h2, .section--plum-deep h3 { color: var(--cream); }

.measure { max-width: var(--measure); }
.center  { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Shared type elements ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.section--plum .eyebrow,
.section--plum-deep .eyebrow { color: var(--gold-soft); }

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.h-display {
  font-size: clamp(2.35rem, 5.4vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.h-section {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.18;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: 0.01em;
}
.section--plum .script,
.section--plum-deep .script { color: var(--gold-soft); }

.lead {
  font-family: var(--font-serif-soft);
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.005em;
  color: var(--plum-soft);
}
.section--plum .lead,
.section--plum-deep .lead { color: rgba(245, 240, 232, 0.82); }

.prose p { color: var(--ink); }
.section--plum .prose p,
.section--plum-deep .prose p { color: rgba(245, 240, 232, 0.85); }

/* ---------- Lotus motif ---------- */
/* stroke + stroke-width are inherited into the <use> shadow content */
.lotus {
  width: 1em;
  height: 0.64em;
  flex: none;
  stroke: currentColor;
  stroke-width: 4;      /* user units in the 100x64 viewBox */
}

/* ---------- Ornaments (line — lotus — line) ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  margin: clamp(1.4rem, 3vw, 2.1rem) auto;
  font-size: clamp(2.2rem, 4vw, 3rem);   /* sizes the lotus via em */
}
.ornament .lotus {
  stroke-width: 3.4;
  opacity: 0;
  transform: translateY(6px) scale(0.85);
  transition: opacity 0.7s var(--ease-out) 0.15s, transform 0.7s var(--ease-out) 0.15s;
}
.ornament__line {
  height: 1px;
  width: clamp(48px, 12vw, 116px);
  background: linear-gradient(to var(--dir, right), transparent, currentColor);
  transform: scaleX(0);
  transform-origin: var(--dir, right);
  transition: transform 1s var(--ease-out);
}
.ornament__line:first-child { --dir: left; }
.reveal.is-visible .ornament__line,
.is-visible .ornament__line { transform: scaleX(1); }
.reveal.is-visible .ornament .lotus,
.is-visible .ornament .lotus { opacity: 1; transform: none; }
.ornament--on-lav { color: var(--plum); }
.ornament--on-dark { color: var(--gold-soft); }

/* ---------- Section lotus watermarks ---------- */
.section-lotus {
  position: absolute;
  z-index: 0;
  width: min(42vw, 420px);
  height: auto;
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 0.8;
  opacity: 0.09;
  pointer-events: none;
}
.section-lotus--right  { right: 1%; top: 9%; }
.section-lotus--left   { left: 1%;  bottom: 5%; transform: scaleX(-1); }
.section-lotus--center { left: 50%; top: 6%; transform: translateX(-50%); width: min(56vw, 520px); }
.section--plum .section-lotus,
.section--plum-deep .section-lotus { color: var(--gold-soft); opacity: 0.12; }
.section > .container,
.photo-band > .container { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--plum);
  --btn-fg: var(--cream);
  --btn-bd: var(--plum);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.15rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.4s var(--ease),
              color 0.4s var(--ease),
              transform 0.4s var(--ease),
              border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease),
              letter-spacing 0.4s var(--ease);
}
/* soft gold sheen sweep */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(212, 175, 55, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}
.btn:hover {
  transform: translateY(-2px);
  letter-spacing: 0.24em;
  box-shadow: 0 20px 40px -22px rgba(39, 29, 51, 0.6);
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--plum); --btn-fg: var(--cream); --btn-bd: var(--plum); }
.btn--primary:hover { --btn-bg: var(--plum-deep); --btn-bd: var(--plum-deep); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--plum);
  --btn-bd: rgba(62, 46, 76, 0.35);
}
.btn--ghost:hover { --btn-bg: transparent; --btn-fg: var(--plum-deep); --btn-bd: var(--plum); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--plum);
  --btn-bd: var(--gold);
}
.btn--outline:hover { --btn-bg: var(--plum); --btn-fg: var(--cream); --btn-bd: var(--plum); }

.btn--sm { padding: 0.72rem 1.4rem; font-size: 0.66rem; letter-spacing: 0.18em; }
.btn--sm:hover { letter-spacing: 0.2em; }

.btn--on-dark {
  --btn-bg: var(--cream);
  --btn-fg: var(--plum-deep);
  --btn-bd: var(--cream);
}
.btn--on-dark:hover { --btn-bg: var(--gold-soft); --btn-bd: var(--gold-soft); }

.btn--ghost-dark {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  --btn-bd: rgba(245, 240, 232, 0.4);
}
.btn--ghost-dark:hover { --btn-bg: rgba(245, 240, 232, 0.08); --btn-bd: var(--cream); }

.btn--wide { width: 100%; }

/* lotus glyph inside a button */
.btn--lotus { gap: 0.85rem; }
.btn__lotus {
  width: 1.5em;
  height: 0.96em;
  flex: none;
  stroke: currentColor;
  stroke-width: 5;
  opacity: 0.85;
  transition: transform 0.4s var(--ease);
}
.btn--lotus:hover .btn__lotus { transform: translateY(-1px) scale(1.08); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.15rem;
  align-items: center;
}
.cta-row--center { justify-content: center; }

/* =========================================================
   Announcement bar — slow marquee
   ========================================================= */
.announce {
  background: var(--lavender);
  color: var(--plum-deep);
  overflow: hidden;
  border-bottom: 1px solid rgba(39, 29, 51, 0.08);
  position: relative;
}
.announce__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  padding-block: 0.62rem;
  animation: announce-scroll 44s linear infinite;
}
.announce__track span {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding-inline: 1.15rem;
}
.announce__dot { opacity: 0.5; }
.announce:hover .announce__track { animation-play-state: paused; }
@keyframes announce-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Header / menu bar
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease),
              background-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.site-header[data-scrolled="true"] {
  background: rgba(250, 248, 242, 0.9);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom-color: var(--rule-light);
  box-shadow: 0 12px 40px -28px rgba(39, 29, 51, 0.5);
}

.site-header__progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
  background: linear-gradient(to right, var(--gold), var(--gold-bright));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.site-header[data-scrolled="true"] .site-header__progress { opacity: 1; }

/* Over the full-bleed photo hero (before scroll): light nav */
.site-header:not([data-scrolled="true"]) .nav__brand-text { color: var(--cream); }
.site-header:not([data-scrolled="true"]) .nav__brand-text small { color: var(--gold-soft); }
.site-header:not([data-scrolled="true"]) .nav__link { color: rgba(245, 240, 232, 0.92); }
.site-header:not([data-scrolled="true"]) .nav__link:hover { color: var(--cream); }
.site-header:not([data-scrolled="true"]) .btn--outline {
  --btn-fg: var(--cream);
  --btn-bd: rgba(245, 240, 232, 0.6);
}
.site-header:not([data-scrolled="true"]) .btn--outline:hover {
  --btn-bg: var(--cream);
  --btn-fg: var(--plum);
  --btn-bd: var(--cream);
}
.site-header:not([data-scrolled="true"]) .nav__toggle { border-color: rgba(245, 240, 232, 0.5); }
.site-header:not([data-scrolled="true"]) .nav__toggle span,
.site-header:not([data-scrolled="true"]) .nav__toggle span::before,
.site-header:not([data-scrolled="true"]) .nav__toggle span::after { background: var(--cream); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.25rem;
  transition: min-height 0.4s var(--ease);
}
.site-header[data-scrolled="true"] .nav { min-height: 4.4rem; }

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex: none;
}
.nav__brand img {
  width: 46px;
  height: 46px;
  transition: transform 0.5s var(--ease);
}
.nav__brand:hover img { transform: rotate(-6deg) scale(1.05); }
.nav__brand-text {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
  line-height: 1.2;
}
.nav__brand-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--sage);
  margin-top: 3px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.9rem);
}
.nav__link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-block: 0.4rem;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover { color: var(--plum); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { margin-left: 0.4rem; flex: none; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex: none;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1.5px;
  background: var(--plum);
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span { top: 50%; margin-top: -0.75px; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }

body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateX(-50%) rotate(45deg); top: 0; }
body.menu-open .nav__toggle span::after  { transform: translateX(-50%) rotate(-45deg); top: 0; }

/* Mobile menu panel */
.nav__panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--cream);
  padding: 7rem var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.55s var(--ease), visibility 0.55s;
  overflow-y: auto;
}
body.menu-open .nav__panel { transform: translateY(0); visibility: visible; }

.nav__panel a.nav__panel-link {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 5.5vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--plum);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule-light);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav__panel a.nav__panel-link .idx {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.nav__panel .btn { margin-top: 2rem; }
.nav__panel-contact {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--plum-soft);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: min(80vh, 760px);
  display: flex;
  align-items: center;
  padding-block: clamp(3.25rem, 7vw, 5rem) clamp(3rem, 6vw, 4.25rem);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(115% 70% at 50% -5%, rgba(201, 166, 208, 0.26), transparent 62%),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 48%, var(--cream) 100%);
}

/* ---- Full-bleed photograph hero ---- */
.hero--photo {
  margin-top: calc(-1 * var(--header-h));
  min-height: min(87vh, 800px);
  padding-block: calc(var(--header-h) + clamp(1.5rem, 5vw, 3rem)) clamp(3.5rem, 8vw, 5.5rem);
  background: var(--plum-deep);
  color: var(--cream);
}
.hero--photo .hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
  z-index: 0;
}
.hero--photo .hero__bg::before {
  /* top scrim so the transparent nav stays legible */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 42%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 12, 24, 0.58), transparent);
}
.hero--photo .hero__bg::after {
  /* overall legibility scrim */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(72% 56% at 50% 50%, rgba(18, 12, 24, 0.52), transparent 76%),
    linear-gradient(180deg, rgba(28, 18, 38, 0.32) 0%, rgba(28, 18, 38, 0.26) 35%, rgba(22, 14, 30, 0.64) 100%);
}
.hero--photo .hero__particles { z-index: 2; }
.hero--photo .eyebrow { color: var(--gold-soft); }
.hero--photo .hero__script,
.hero--photo .hero__title { color: var(--cream); text-shadow: 0 2px 34px rgba(16, 10, 22, 0.55); }
.hero--photo .hero__intro { color: rgba(245, 240, 232, 0.92); }
.hero--photo .hero__reassure { color: rgba(245, 240, 232, 0.86); }
.hero--photo .hero__reassure li + li::before { background: var(--gold-soft); }
.hero--photo .hero__halo { opacity: 0.4; }
.hero--photo .hero__scroll { color: rgba(245, 240, 232, 0.85); }
.hero--photo .hero__scroll-line { background: linear-gradient(to bottom, var(--gold-soft), transparent); }
.hero--photo .hero__scroll-line::after { background: var(--cream); }

.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.hero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.42;
  will-change: transform;
}
.hero__aurora--1 {
  width: 46vw; height: 46vw; min-width: 360px; min-height: 360px;
  left: -8vw; top: 4%;
  background: radial-gradient(circle at 40% 40%, rgba(201, 166, 208, 0.7), transparent 70%);
  animation: drift-a 26s var(--ease) infinite alternate;
}
.hero__aurora--2 {
  width: 40vw; height: 40vw; min-width: 320px; min-height: 320px;
  right: -6vw; top: 12%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.28), transparent 70%);
  animation: drift-b 32s var(--ease) infinite alternate;
}
.hero__aurora--3 {
  width: 44vw; height: 44vw; min-width: 320px; min-height: 320px;
  left: 30%; bottom: -18%;
  background: radial-gradient(circle at 50% 50%, rgba(163, 177, 138, 0.32), transparent 70%);
  animation: drift-c 30s var(--ease) infinite alternate;
}
@keyframes drift-a { to { transform: translate3d(6vw, 4vh, 0) scale(1.12); } }
@keyframes drift-b { to { transform: translate3d(-5vw, 6vh, 0) scale(1.15); } }
@keyframes drift-c { to { transform: translate3d(4vw, -5vh, 0) scale(1.1); } }

.hero__geometry {
  position: absolute;
  left: 50%; top: 46%;
  width: min(112vw, 940px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  color: var(--gold);
  opacity: 0.08;
  animation: spin 140s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero__lotus {
  position: absolute;
  left: 50%;
  bottom: -6%;
  transform: translateX(-50%);
  width: min(96vw, 900px);
  height: auto;
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 0.5;
  opacity: 0.12;
}

.hero__particles { position: absolute; inset: 0; }
.hero__particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 206, 159, 0.95), rgba(212, 175, 55, 0) 70%);
  opacity: 0;
  animation: twinkle var(--dur, 6s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.6); }
  50%      { opacity: 0.9; transform: translateY(-14px) scale(1); }
}

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

.hero__medallion {
  position: relative;
  width: clamp(112px, 15vw, 156px);
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
  animation: float 7s ease-in-out infinite;
}
.hero__medallion img { width: 100%; height: auto; position: relative; z-index: 1; }
.hero__halo {
  position: absolute;
  inset: -34%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 206, 159, 0.55), transparent 62%);
  animation: breathe 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes breathe { 0%, 100% { opacity: 0.55; transform: scale(0.94); } 50% { opacity: 0.9; transform: scale(1.06); } }

.hero__script {
  font-size: clamp(2.7rem, 8.4vw, 5.4rem);
  line-height: 1.14;
  max-width: 20ch;
  margin: 0 auto clamp(1rem, 2.5vw, 1.6rem);
  padding-block: 0.14em;
}
.hero__script .word {
  display: inline-block;
  margin-inline: 0.12em;
  opacity: 0;
  transform: translateY(0.4em) rotate(1.5deg);
  animation: word-in 1s var(--ease-out) forwards;
}
.hero__script .word:nth-child(1) { animation-delay: 0.15s; }
.hero__script .word:nth-child(2) { animation-delay: 0.28s; }
.hero__script .word:nth-child(3) { animation-delay: 0.41s; }
.hero__script .word:nth-child(4) { animation-delay: 0.54s; }
.hero__script .word:nth-child(5) { animation-delay: 0.67s; }
.hero__script .word:nth-child(6) { animation-delay: 0.80s; }
@keyframes word-in {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero__title {
  font-family: var(--font-serif-soft);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  letter-spacing: 0.01em;
  line-height: 1.28;
  max-width: 20ch;
  margin: 0 auto clamp(1.4rem, 3vw, 1.9rem);
  color: var(--plum);
}
.hero__intro {
  max-width: 52ch;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}
.hero__cta { justify-content: center; }

.hero__reassure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum-soft);
}
.hero__reassure li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__reassure li + li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 1rem;
}
.hero__reassure li:first-child::before { display: none; }

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  margin: clamp(2.25rem, 5vw, 3.25rem) auto 0;
  color: var(--plum-soft);
}
@media (max-width: 620px) {
  .hero__scroll { display: none; }
}
.hero__scroll-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--plum);
  animation: scroll-dot 2.2s var(--ease-out) infinite;
}
@keyframes scroll-dot {
  0%   { transform: translateY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(260%); opacity: 0; }
}

/* =========================================================
   Trust indicators
   ========================================================= */
.trust {
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  padding-block: 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust__item {
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.25rem, 2.5vw, 2.25rem);
  border-left: 1px solid var(--rule-light);
  transition: background-color 0.4s var(--ease);
}
.trust__item:first-child { border-left: 0; }
.trust__item:hover { background: rgba(201, 166, 208, 0.08); }
.trust__item h3 {
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  color: var(--plum);
  margin-bottom: 0.7rem;
}
.trust__item p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--plum-soft);
  margin: 0;
}
.trust__num {
  font-family: var(--font-serif-soft);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
}

/* =========================================================
   Why hypnosis works — 95% ring
   ========================================================= */
.reason__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2.5rem, 7vw, 5.5rem);
  align-items: center;
}
.reason__figure {
  position: relative;
  width: clamp(180px, 26vw, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: none;
}
.reason__ring { width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; }
.reason__ring-track {
  fill: none;
  stroke: rgba(62, 46, 76, 0.14);
  stroke-width: 3;
}
.reason__ring-value {
  fill: none;
  stroke: url(#goldgrad);
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.8s var(--ease-out);
}
.reason__figure.is-visible .reason__ring-value { stroke-dashoffset: 5; }
.reason__ring-num {
  position: absolute;
  font-family: var(--font-serif-soft);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  color: var(--plum);
  letter-spacing: 0.01em;
}
.reason__lead {
  font-family: var(--font-serif-soft);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  line-height: 1.5;
  color: var(--plum);
  margin-bottom: 1.1rem;
}
.reason__note { color: var(--ink); max-width: 54ch; margin: 0; }
.reason .h-section { margin-bottom: 1rem; }

/* =========================================================
   About / philosophy
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}
.about__heading .h-section { margin-bottom: 1.5rem; }
.about__aside {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
.about__aside::before {
  content: "";
  width: 46px; height: 1px;
  background: var(--gold);
}
.about__body p + p { margin-top: 1.15em; }
.about__body { align-self: center; }
.about__media {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  max-width: 17rem;
}
.about__media img { aspect-ratio: 16 / 10; }
@media (max-width: 1080px) {
  .about__media { max-width: 22rem; }
}

/* =========================================================
   Brand values marquee
   ========================================================= */
.valuestrip {
  background: var(--lavender-soft);
  border-block: 1px solid var(--rule-light);
  overflow: hidden;
  padding-block: 1.1rem;
}
.valuestrip__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  white-space: nowrap;
  animation: valuestrip 38s linear infinite;
}
.valuestrip__track span {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
  padding-inline: 1.4rem;
}
.valuestrip__track i {
  color: var(--gold);
  font-style: normal;
  font-size: 0.7rem;
}
.valuestrip:hover .valuestrip__track { animation-play-state: paused; }
@keyframes valuestrip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Lavender statement band — lotus photograph behind a lavender wash */
.statement {
  position: relative;
  isolation: isolate;
  background: var(--lavender);
  text-align: center;
  padding-block: clamp(4.5rem, 11vw, 8rem);
  overflow: hidden;
}
.statement__media { position: absolute; inset: 0; z-index: -1; }
.statement__media img { width: 100%; height: 100%; object-fit: cover; }
.statement::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 95% at 50% 45%, rgba(74, 48, 88, 0.55), rgba(46, 30, 60, 0.78)),
    linear-gradient(180deg, var(--cream), transparent 20%, transparent 80%, var(--cream));
}
.statement .container { position: relative; }
.statement .script {
  color: var(--plum-deep);
  font-size: clamp(3rem, 9vw, 5.8rem);
  line-height: 1.08;
  padding-block: 0.12em;
  text-shadow: 0 1px 24px rgba(245, 240, 232, 0.5);
}
/* longer hook question — white on a darkened photo, sized for legibility */
.statement .script.statement__q {
  color: var(--cream);
  font-size: clamp(2.1rem, 5.1vw, 4rem);
  line-height: 1.22;
  max-width: 24ch;
  margin-inline: auto;
  text-shadow: 0 2px 26px rgba(20, 12, 28, 0.6);
}
.statement .ornament { color: var(--gold-soft); margin: 0 auto 1.25rem; }

/* =========================================================
   Testimonials — editorial columns (screenshot-inspired)
   ========================================================= */
.testimonials__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}
.testimonials__head p {
  font-family: var(--font-serif-soft);
  font-size: 1.15rem;
  margin: 0.5rem 0 0;
  max-width: 40ch;
  color: var(--plum-soft);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4.5vw, 3.5rem) clamp(2rem, 4vw, 3.25rem);
}
.quote {
  display: flex;
  flex-direction: column;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  position: relative;
}
.quote::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 46px; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out) 0.15s;
}
.quote.is-visible::before { transform: scaleX(1); }
.quote cite {
  font-style: normal;
  font-family: var(--font-serif-soft);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  color: var(--plum);
}
.quote__stars {
  display: flex;
  gap: 0.28rem;
  margin: 0.7rem 0 1.1rem;
}
.quote__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex: none;
}
.quote blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif-soft);
  font-size: 1.12rem;
  line-height: 1.62;
  color: var(--ink);
}
.quote__service {
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
/* =========================================================
   Photo band — full-bleed wellness photography
   ========================================================= */
.photo-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(5rem, 13vw, 9rem);
  text-align: center;
  color: var(--cream);
}
.photo-band__media { position: absolute; inset: 0; z-index: -2; }
.photo-band__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 80% at 50% 50%, rgba(39, 29, 51, 0.55), rgba(39, 29, 51, 0.78)),
    linear-gradient(180deg, rgba(62, 46, 76, 0.35), rgba(39, 29, 51, 0.7));
}
.photo-band__inner {
  max-width: min(92vw, 640px);
  margin-inline: auto;
}
.photo-band .ornament { color: var(--gold-soft); margin: 0 auto 0.75rem; }
.photo-band__script {
  color: var(--cream);
  font-size: clamp(1.8rem, 5.6vw, 3.9rem);
  line-height: 1.05;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1.1rem;
  padding-block: 0.1em;
  white-space: nowrap;
}
.photo-band__text {
  font-family: var(--font-serif-soft);
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  line-height: 1.6;
  max-width: 42ch;
  margin: 0 auto 2rem;
  color: rgba(245, 240, 232, 0.9);
}
.photo-band .btn { margin-inline: auto; }

/* =========================================================
   Is this for you? — editorial list
   ========================================================= */
.foryou__head {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: clamp(2.75rem, 6vw, 4.5rem);
}
.foryou__intro { margin-bottom: 0; max-width: 52ch; }
.foryou__media { align-self: stretch; }
.foryou__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 900px) {
  .foryou__head { grid-template-columns: 1fr; gap: 2rem; }
  .foryou__media { max-width: 30rem; }
  .foryou__media img { aspect-ratio: 16 / 10; }
}
.signs { border-top: 1px solid var(--rule); }
.sign {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: clamp(1.25rem, 4vw, 3.5rem);
  padding-block: clamp(2rem, 4.5vw, 3.25rem);
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: padding-left 0.4s var(--ease);
}
.sign:hover { padding-left: 0.6rem; }
.sign__num {
  font-family: var(--font-serif-soft);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
}
.sign__body h3 {
  font-family: var(--font-serif-soft);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  letter-spacing: 0.005em;
  color: var(--plum);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.sign__body p { margin: 0; color: var(--ink); max-width: 60ch; }

/* =========================================================
   Services
   ========================================================= */
.services__intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}
.service {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(1.75rem, 5vw, 4.5rem);
  padding: clamp(2rem, 5vw, 3.75rem);
  border-radius: var(--radius);
  align-items: start;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.service + .service { margin-top: clamp(1.5rem, 3vw, 2.25rem); }
.service--featured {
  background: var(--lavender-soft);
  border: 1px solid rgba(169, 134, 62, 0.4);
  position: relative;
}
.service--featured::before {
  content: "Primary Session";
  position: absolute;
  top: 0; left: clamp(2rem, 5vw, 3.75rem);
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--cream);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}
.service--standard {
  background: var(--ivory);
  border: 1px solid var(--rule-light);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -40px rgba(39, 29, 51, 0.5);
  border-color: rgba(169, 134, 62, 0.6);
}
.service__price {
  font-family: var(--font-serif-soft);
  font-weight: 600;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  color: var(--plum);
  line-height: 1;
}
.service__meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--rule-light);
}
.service__body h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.55rem;
}
.service__tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.service__body .prose { margin-bottom: 1.75rem; }
.service__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-bottom: 1.75rem;
}
.service__features li {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--plum-soft);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.service__features li::before {
  content: "";
  width: 6px; height: 6px;
  transform: rotate(45deg);
  background: var(--sage);
  flex: none;
}

/* =========================================================
   Media frames — reveal wipe + zoom
   ========================================================= */
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease-out);
}
.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: scale(1.09);
  transition: transform 1.5s var(--ease-out);
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245, 240, 232, 0.5);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s var(--ease) 0.5s;
}
.reveal.is-visible .media-frame,
.is-visible.media-frame { clip-path: inset(0 0 0 0); }
.reveal.is-visible .media-frame img,
.is-visible.media-frame img { transform: scale(1); }
.reveal.is-visible .media-frame::after { opacity: 1; }

/* =========================================================
   The Experience
   ========================================================= */
.experience__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.experience__media { position: sticky; top: 6.5rem; }
.experience__head { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); max-width: 46ch; }
.exp-block + .exp-block { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--rule); }
.exp-block h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.exp-block h3 .exp-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.6rem;
}

/* =========================================================
   Worldwide & Virtual
   ========================================================= */
.virtual__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.virtual__media { position: sticky; top: 6.5rem; }
.virtual__media .media-frame img { aspect-ratio: 5 / 4; object-position: center 40%; }
.virtual__intro { margin-bottom: 2.5rem; max-width: 48ch; }
.benefits { border-top: 1px solid var(--rule); }
.benefit {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 13rem 1fr;
  gap: 1rem 2rem;
  align-items: baseline;
}
.benefit h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--plum);
}
.benefit p { margin: 0; font-size: 0.9rem; color: var(--plum-soft); }

/* =========================================================
   Meet Enjolique
   ========================================================= */
.founder__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 7vw, 5.5rem);
  align-items: start;
}
.founder__media .media-frame--portrait img { aspect-ratio: 4 / 5; }
.founder__name {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.founder__role {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.75rem;
}
.founder__intro {
  font-family: var(--font-serif-soft);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--plum);
}
.founder__body p + p { margin-top: 1.1em; }
.founder__sig {
  margin-top: 1.5rem;
  font-family: var(--font-signature);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--plum);
  line-height: 1;
}

/* =========================================================
   How it works
   ========================================================= */
.steps {
  display: grid;
  gap: 0;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
  border-top: 1px solid var(--rule);
  position: relative;
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step__num {
  font-family: var(--font-serif-soft);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold);
  line-height: 1;
}
.step__body h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  letter-spacing: 0.03em;
  color: var(--plum);
  margin-bottom: 0.6rem;
}
.step__body p { margin: 0; max-width: 62ch; color: var(--ink); }

/* =========================================================
   Booking
   ========================================================= */
.booking__head { text-align: center; max-width: 52ch; margin: 0 auto clamp(3rem, 6vw, 4.5rem); }
.booking__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
.book-card {
  background: var(--ivory);
  border: 1px solid var(--rule-light);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.book-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -40px rgba(39, 29, 51, 0.5); }
.book-card--primary {
  border-color: rgba(169, 134, 62, 0.45);
  background: var(--lavender-soft);
}
.book-card h3 { font-size: clamp(1.3rem, 2.8vw, 1.7rem); letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.book-card .book-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.book-card .book-price {
  font-family: var(--font-serif-soft);
  font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--plum);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.book-card .book-duration { font-size: 0.85rem; color: var(--plum-soft); margin-bottom: 2rem; }
.book-card .btn { margin-top: auto; }
.booking__discovery {
  text-align: center;
  margin-top: clamp(2.25rem, 4vw, 3rem);
  font-size: 0.95rem;
  color: var(--plum-soft);
}
.booking__discovery a {
  border-bottom: 1px solid var(--gold);
  color: var(--plum);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.booking__discovery a:hover { color: var(--gold); }

/* =========================================================
   FAQ
   ========================================================= */
.faq__head { max-width: 46ch; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.faq__list {
  border-top: 1px solid var(--rule);
  max-width: 900px;
}
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: clamp(1.35rem, 3vw, 1.9rem) 0;
  font-family: var(--font-serif-soft);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.35;
  color: var(--plum);
  transition: color 0.25s var(--ease);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary:hover { color: var(--gold); }
.faq__item > summary .faq__q { flex: 1; }
.faq__item > summary .faq__icon {
  flex: none;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 0.35em;
}
.faq__item > summary .faq__icon::before,
.faq__item > summary .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq__item > summary .faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__item > summary .faq__icon::after  { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq__item[open] > summary .faq__icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq__item[open] > summary { color: var(--plum); }
.faq__answer {
  padding: 0 0 clamp(1.5rem, 3vw, 2rem) calc(20px + 1.25rem);
  max-width: 68ch;
}
.faq__answer p { margin: 0; color: var(--ink); }
.faq__answer p + p { margin-top: 1em; }
.faq__item[open] .faq__answer { animation: faqReveal 0.5s var(--ease); }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.faq__note {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  font-size: 0.9rem;
  color: var(--plum-soft);
  max-width: 60ch;
}
.faq__note a { color: var(--plum); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.faq__note a:hover { color: var(--gold); }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta { text-align: center; overflow: hidden; position: relative; }
.final-cta__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; opacity: 0.5; }
.final-cta__bg .hero__aurora { mix-blend-mode: screen; filter: blur(70px); }
.final-cta > .container { position: relative; z-index: 1; }
.final-cta__title {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: 0.01em;
  line-height: 1.15;
  max-width: 18ch;
  margin: 0 auto 2rem;
  padding-block: 0.1em;
  text-shadow: 0 2px 30px rgba(16, 10, 22, 0.4);
}
.section--plum-deep .final-cta__title,
.section--plum-deep .script.final-cta__title { color: var(--cream); }
.final-cta__body { max-width: 52ch; margin: 0 auto 2.75rem; }
.final-cta .cta-row { justify-content: center; }

/* =========================================================
   Newsletter
   ========================================================= */
.newsletter { background: var(--lavender); }
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.newsletter h2 { color: var(--plum-deep); }
.newsletter > .container > .newsletter__inner > div p { color: var(--plum); margin-top: 0.75rem; max-width: 40ch; }
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.newsletter__field {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.newsletter__field input[type="email"] {
  flex: 1 1 16rem;
  min-width: 0;
  padding: 1.05rem 1.25rem;
  border: 1px solid rgba(39, 29, 51, 0.3);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
}
.newsletter__field input[type="email"]::placeholder { color: var(--plum-soft); }
.newsletter__field input[type="email"]:focus-visible { outline-offset: 1px; border-color: var(--plum); }
.newsletter__fineprint {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--plum);
  opacity: 0.8;
  margin: 0;
}
.newsletter__status {
  font-size: 0.85rem;
  color: var(--plum-deep);
  min-height: 1.2em;
  font-weight: 500;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--plum-deep);
  color: rgba(245, 240, 232, 0.72);
  padding-block: clamp(3.5rem, 8vw, 5.5rem) 2.5rem;
  font-size: 0.9rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-on-dark);
}
.footer__brand img { width: 58px; height: 58px; margin-bottom: 1.1rem; }
.footer__brand h2 {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.footer__brand .footer__tag {
  font-family: var(--font-serif-soft);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.footer__brand p { max-width: 34ch; font-size: 0.86rem; line-height: 1.7; }
.footer__col h3 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.footer__col li { margin-bottom: 0.65rem; }
.footer__col a { transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--cream); }

/* Connect column — icon + link rows */
.footer__connect li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer__icon {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--gold-soft);
}
.footer__connect li:hover .footer__icon { color: var(--cream); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.55);
}
.footer__bottom p { margin: 0; max-width: 60ch; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
/* promote only while animating in, then drop the layer */
.reveal:not(.is-visible) { will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-reveal="scale"] { transform: translateY(20px) scale(0.94); }
.reveal[data-reveal="scale"].is-visible { transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1040px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: block; }
}

@media (max-width: 1080px) {
  .about__grid { grid-template-columns: 1fr; }
  .founder__grid { grid-template-columns: 0.95fr 1.05fr; }
  .service { grid-template-columns: 1fr; }
  .service__meta { display: inline-block; }
  .quotes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(1),
  .trust__item:nth-child(2) { border-bottom: 1px solid var(--rule-light); }
  .trust__item:nth-child(odd) { border-left: 0; }
  .trust__item:nth-child(even) { border-left: 1px solid var(--rule-light); }

  .reason__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 2.5rem; }
  .reason__note { margin-inline: auto; }
  .reason .eyebrow { justify-content: center; }

  .experience__grid { grid-template-columns: 1fr; }
  .experience__media { order: -1; position: static; top: auto; }
  .media-frame img { aspect-ratio: 16 / 10; }
  .founder__media .media-frame--portrait img { aspect-ratio: 4 / 5; }
  .virtual__media .media-frame img { aspect-ratio: 5 / 4; }
  .virtual__grid { grid-template-columns: 1fr; }
  .virtual__media { max-width: 26rem; position: static; top: auto; }
  .founder__grid { grid-template-columns: 1fr; }
  .founder__media { max-width: 26rem; }
  .booking__grid { grid-template-columns: 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .quotes { grid-template-columns: 1fr; gap: 2.5rem; }
  .quote { max-width: 42ch; }
}

@media (max-width: 620px) {
  :root { --measure: 100%; }
  .hero { min-height: auto; }
  .hero--photo { min-height: 78vh; }
  .section-lotus { display: none; }
  .about__media { max-width: 100%; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__item { border-left: 0 !important; border-bottom: 1px solid var(--rule-light); }
  .trust__item:last-child { border-bottom: 0; }
  .sign { grid-template-columns: 1fr; gap: 0.5rem; }
  .sign:hover { padding-left: 0; }
  .sign__num { font-size: 1.6rem; }
  .benefit { grid-template-columns: 1fr; gap: 0.35rem; }
  .step { grid-template-columns: 3rem 1fr; gap: 1rem; }
  .faq__answer { padding-left: 0; }
  .faq__item > summary { gap: 0.9rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .hero__reassure { flex-direction: column; gap: 0.5rem; }
  .hero__reassure li + li::before { display: none; }
  .announce__track span { font-size: 0.6rem; letter-spacing: 0.18em; }
}

/* =========================================================
   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;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
  .hero__aurora, .hero__geometry, .hero__particles, .hero__halo,
  .hero__medallion, .hero__scroll-line::after { animation: none !important; }
  .announce__track, .valuestrip__track { animation: none !important; }
  .hero__script .word { opacity: 1; transform: none; }
  .media-frame { clip-path: none; }
  .media-frame img { transform: none; }
  .reason__ring-value { stroke-dashoffset: 5; transition: none; }
  .ornament__line { transform: scaleX(1); }
  .ornament .lotus { opacity: 1; transform: none; }
  .photo-band__media img { transform: none; }
}

/* Print — keep it legible */
@media print {
  .site-header, .announce, .nav__panel, .hero__bg, .valuestrip,
  .newsletter, .final-cta, .hero__scroll, .section-lotus,
  .statement__media, .photo-band__media { display: none; }
  body { background: #fff; color: #000; }
  .media-frame { clip-path: none; }
  .media-frame img { transform: none; }
  .photo-band, .photo-band__script, .photo-band__text { color: #000; }
  .hero--photo {
    margin-top: 0;
    min-height: 0;
    background: #fff;
    color: #000;
    padding-block: 2rem;
  }
  .hero--photo .eyebrow,
  .hero--photo .hero__script,
  .hero--photo .hero__title,
  .hero--photo .hero__intro,
  .hero--photo .hero__reassure { color: #000; text-shadow: none; }
}
