/* ==========================================================================
   Inner Change Therapy — main stylesheet
   Palette sampled from the brand photography. See DESIGN.md.
   ========================================================================== */

:root {
  --ivory: #F8F6F1;
  --white: #FFFFFF;
  --sand-50: #F1ECE4;
  --sand-100: #E9E2D7;
  --sand-200: #D9CFC1;
  --taupe-500: #A8886F;
  --taupe-700: #6E5949;
  --blue-100: #DEE6EC;
  --blue-200: #BFCFDD;
  --blue-400: #7B90A3;
  --blue-600: #4A6176;
  --blue-800: #3B4E60;
  --blue-900: #2F3F4E;
  --charcoal: #2B2825;
  --ink-soft: #57524C;
  --ink-muted: #7E7770;

  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, system-ui, sans-serif;

  --measure: 62ch;
  --radius: 2px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --container: 1240px;
  --space-section: clamp(4.5rem, 9vw, 8.5rem);
  --space-section-tight: clamp(3.5rem, 6vw, 5.5rem);
  --ease: cubic-bezier(.2,.6,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}
@media (min-width: 1400px) { body { font-size: 1.125rem; } }
img, svg { display: block; max-width: 100%; }
picture { display: contents; }
img { height: auto; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
a { color: var(--blue-600); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--blue-800); }
strong { font-weight: 600; }
em { font-style: italic; }
hr { border: 0; border-top: 1px solid var(--sand-200); margin: 2.5rem 0; }
button { font: inherit; }
::selection { background: var(--blue-200); color: var(--charcoal); }

:focus-visible { outline: 2px solid var(--blue-800); outline-offset: 3px; border-radius: 2px; }
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--blue-800); color: var(--ivory); padding: .6rem 1rem; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ---------- Typography ---------- */
.serif { font-family: var(--serif); }
.h-display, .h1, .h2, .h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; color: var(--charcoal); text-wrap: balance; }
.h-display { font-size: clamp(2.4rem, 3.9vw, 3.6rem); line-height: 1.08; }
.h1 { font-size: clamp(2.375rem, 4.8vw, 4.1rem); line-height: 1.08; }
.h2 { font-size: clamp(1.95rem, 3.4vw, 3rem); line-height: 1.12; }
.h3 { font-size: clamp(1.375rem, 2vw, 1.7rem); line-height: 1.25; letter-spacing: -0.005em; }
.h1 em, .h2 em, .h-display em, .h3 em { font-style: italic; font-weight: 400; color: var(--blue-800); }
.lede { font-size: clamp(1.15rem, 1.5vw, 1.3rem); line-height: 1.6; color: var(--ink-soft); font-weight: 300; }
.measure { max-width: var(--measure); }
.small { font-size: .9375rem; }
.muted { color: var(--ink-soft); }
.line { display: block; }

.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--taupe-700); margin-bottom: 1.25rem;
}
.eyebrow::before { content: ""; width: 1.75rem; height: 1px; background: var(--taupe-500); flex: none; }
.eyebrow--blue { color: var(--blue-600); }
.eyebrow--blue::before { background: var(--blue-400); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 1.75rem; height: 1px; background: var(--taupe-500); flex: none; }

.prose > * + * { margin-top: 1.25em; }
.prose h2 { font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.1rem); line-height: 1.2; margin-top: 2.6em; letter-spacing: -0.01em; }
.prose .eyebrow + h2, .prose .eyebrow + .h2 { margin-top: 0; }
.prose .eyebrow { margin-bottom: 1.25rem; }
.prose h3 { font-family: var(--serif); font-size: clamp(1.3rem, 1.8vw, 1.55rem); line-height: 1.3; margin-top: 2em; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: .5em; }
.prose blockquote { margin: 2em 0; padding-left: 1.25rem; border-left: 2px solid var(--blue-200); font-family: var(--serif); font-size: 1.3em; line-height: 1.4; color: var(--blue-800); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }
.container--text { max-width: 760px; }
.section { padding-block: var(--space-section); }
.section--tight { padding-block: var(--space-section-tight); }
.section--sand { background: var(--sand-100); }
.section--sand-soft { background: var(--sand-50); }
.section--white { background: var(--white); }
.section--blue { background: var(--blue-100); }
.section--slate { background: var(--blue-800); color: var(--ivory); }
.section--slate .h2, .section--slate .h3 { color: var(--ivory); }
.section--slate .eyebrow { color: var(--blue-200); }
.section--slate .eyebrow::before { background: var(--blue-400); }
.section--slate .lede { color: var(--blue-100); }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .h2 + p, .section-head .h2 + .lede { margin-top: 1.25rem; }

.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(1rem, 3vw, 2.5rem); row-gap: 2rem; }

.split { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); }
  .split--copy-wide { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
  .split--media-wide { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .split--reverse > .split-media { order: -1; }
  .split--top { align-items: start; }
}
.split-copy .h2 { margin-bottom: 1.5rem; }
.split-copy .btn, .split-copy .btn-group { margin-top: 1.75rem; }

/* ---------- Photography ---------- */
.figure { position: relative; margin: 0; }
.figure img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); background: var(--sand-100); }
.figure--offset { padding: 0 0 1.5rem 1.5rem; }
.figure--offset::before {
  content: ""; position: absolute; inset: 1.5rem 1.5rem 0 0; z-index: 0;
  background: var(--blue-100); border-radius: var(--radius);
}
.figure--offset.is-sand::before { background: var(--sand-100); }
.figure--offset.is-taupe::before { background: var(--taupe-500); opacity: .28; }
.figure--offset.is-right { padding: 0 1.5rem 1.5rem 0; }
.figure--offset.is-right::before { inset: 1.5rem 0 0 1.5rem; }
.figure--offset img { position: relative; z-index: 1; }
.ratio-4x5 { aspect-ratio: 4 / 5; }
.ratio-3x4 { aspect-ratio: 3 / 4; }
.ratio-3x2 { aspect-ratio: 3 / 2; }
.ratio-1x1 { aspect-ratio: 1 / 1; }
.ratio-4x5, .ratio-3x4, .ratio-3x2, .ratio-1x1 { position: relative; overflow: hidden; border-radius: var(--radius); }
.ratio-4x5 img, .ratio-3x4 img, .ratio-3x2 img, .ratio-1x1 img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: .75rem; }
@media (min-width: 900px) {
  .figure--offset { padding: 0 0 2.25rem 2.25rem; }
  .figure--offset::before { inset: 2.25rem 2.25rem 0 0; }
  .figure--offset.is-right { padding: 0 2.25rem 2.25rem 0; }
  .figure--offset.is-right::before { inset: 2.25rem 0 0 2.25rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: var(--radius); border: 1px solid transparent;
  font-family: var(--sans); font-size: .95rem; font-weight: 500; letter-spacing: .02em; line-height: 1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn--primary { background: var(--blue-800); color: var(--ivory); border-color: var(--blue-800); }
.btn--primary:hover { background: var(--blue-900); border-color: var(--blue-900); color: var(--ivory); transform: translateY(-1px); }
.btn--secondary { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--secondary:hover { background: var(--charcoal); color: var(--ivory); transform: translateY(-1px); }
.btn--light { background: var(--ivory); color: var(--blue-800); border-color: var(--ivory); }
.btn--light:hover { background: var(--white); color: var(--blue-900); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ivory); border-color: rgba(248,246,241,.55); }
.btn--ghost:hover { border-color: var(--ivory); background: rgba(248,246,241,.08); color: var(--ivory); }
.btn--text {
  padding: .35rem 0; border: 0; border-bottom: 1px solid var(--blue-400); border-radius: 0;
  color: var(--blue-800); font-weight: 500; white-space: normal;
}
.btn--text:hover { border-bottom-color: var(--blue-800); color: var(--blue-900); transform: none; }
.btn--text::after { content: "→"; font-family: var(--serif); font-size: 1.1em; line-height: 0; transition: transform .25s var(--ease); }
.btn--text:hover::after { transform: translateX(3px); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: center; }
.btn:active { transform: translateY(0); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--sand-200); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 4.75rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--charcoal); }
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-name { font-family: var(--serif); font-size: 1.28rem; letter-spacing: -0.01em; line-height: 1; white-space: nowrap; }
.brand-name small { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--taupe-700); margin-top: .3rem; font-weight: 500; }
.nav { display: flex; align-items: center; gap: 2rem; }
@media (max-width: 899px) { .nav { gap: .5rem; } }
.nav-list { display: none; list-style: none; gap: 1.75rem; }
.nav-link { color: var(--charcoal); text-decoration: none; font-size: .95rem; font-weight: 500; padding: .35rem 0; position: relative; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--blue-800); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-link:hover::after, .nav-link.is-current::after { transform: scaleX(1); }
.nav-link:hover { color: var(--blue-800); }
.nav-cta { display: none; }
.nav-cta-mobile { padding: .7rem .95rem; font-size: .85rem; }
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; background: transparent; border: 0; cursor: pointer; border-radius: var(--radius);
}
.nav-toggle-bar { display: block; height: 1.5px; background: var(--charcoal); transition: transform .3s var(--ease), opacity .3s var(--ease); }
@media (min-width: 900px) {
  .nav-list { display: flex; }
  .nav-cta { display: inline-flex; padding: .8rem 1.25rem; font-size: .9rem; }
  .nav-cta-mobile { display: none; }
  .nav-toggle { display: none; }
}
/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60; background: var(--ivory);
  display: flex; flex-direction: column; padding: 1.25rem var(--gutter) 2rem;
  transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s .3s;
}
body.nav-open .mobile-menu { opacity: 1; transform: none; visibility: visible; pointer-events: auto; transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s; }
body.nav-open { overflow: hidden; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; min-height: 4.75rem; }
.mobile-menu-close { width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer; font-size: 1.6rem; line-height: 1; color: var(--charcoal); border-radius: var(--radius); }
.mobile-menu-list { list-style: none; margin-top: 1.5rem; border-top: 1px solid var(--sand-200); }
.mobile-menu-list li { border-bottom: 1px solid var(--sand-200); }
.mobile-menu-list a { display: block; padding: 1rem 0; font-family: var(--serif); font-size: 1.85rem; color: var(--charcoal); text-decoration: none; }
.mobile-menu-list a.is-current { color: var(--blue-800); }
.mobile-menu-foot { margin-top: auto; padding-top: 2rem; }
.mobile-menu-foot .btn { width: 100%; }
.mobile-menu-foot p { margin-top: 1rem; font-size: .9rem; color: var(--ink-soft); }

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden; background: var(--white); }
.hero-grid { display: grid; gap: 2.5rem; }
.hero-copy { padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(1rem, 3vw, 2rem); }
.hero-copy .eyebrow { margin-bottom: 1.75rem; }
.hero-title { margin-bottom: 1.6rem; }
.hero-title .line { display: block; }
.hero-title .line:nth-child(3) { color: var(--blue-800); }
.hero-lede { max-width: 34rem; margin-bottom: 2rem; }
.hero-lede p + p { margin-top: 1em; }
.hero-trust { margin-top: 2rem; display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--ink-soft); }
.hero-trust::before { content: ""; width: 1.5rem; height: 1px; background: var(--taupe-500); flex: none; }
.hero-media { position: relative; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 30%; border-radius: var(--radius); background: var(--sand-100); }
.hero-media .hero-frame { position: relative; aspect-ratio: 4 / 5; z-index: 1; }
.hero-backdrop { position: absolute; z-index: 0; background: var(--blue-100); border-radius: var(--radius); }
@media (max-width: 899px) {
  .hero-media { margin-inline: calc(-1 * var(--gutter)); }
  .hero-media img { border-radius: 0; }
  .hero-media .hero-frame { aspect-ratio: 4 / 5; max-height: 72vh; }
  .hero-media img { object-position: 50% 22%; }
  .hero-copy .btn-group .btn { flex: 1 1 100%; }
  .hero-backdrop { display: none; }
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 4vw, 4rem); align-items: stretch; }
  .hero-copy { padding-top: clamp(3.5rem, 8vw, 7.5rem); padding-bottom: clamp(3.5rem, 8vw, 7.5rem); display: flex; flex-direction: column; justify-content: center; }
  .hero-media { align-self: stretch; padding-top: 2.5rem; padding-bottom: 0; padding-left: 2.5rem; }
  .hero-media .hero-frame { aspect-ratio: auto; height: 100%; min-height: 560px; margin-right: calc(-1 * var(--gutter)); }
  .hero-media img { object-position: 62% 36%; border-radius: var(--radius) 0 0 0; }
  .hero-backdrop { top: 0; left: 0; right: 0; bottom: 2.5rem; }
}
@media (min-width: 1300px) {
  .hero-media .hero-frame { margin-right: calc((100vw - var(--container)) / -2 - var(--gutter)); }
}

/* ---------- Recognition list ---------- */
.rule-list { list-style: none; border-top: 1px solid var(--sand-200); }
.rule-list li { padding: 1.05rem 0 1.05rem 2.25rem; border-bottom: 1px solid var(--sand-200); position: relative; font-size: 1.05rem; line-height: 1.5; }
.rule-list li::before { content: ""; position: absolute; left: .25rem; top: 1.75rem; width: .8rem; height: 1px; background: var(--taupe-500); }
.pull {
  font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 1.75rem); line-height: 1.35; color: var(--blue-800);
  padding-left: 1.5rem; border-left: 2px solid var(--blue-200); margin-top: 2.5rem; text-wrap: balance;
}
.pull--center { border: 0; padding: 0; text-align: center; margin-inline: auto; max-width: 40ch; }

/* ---------- Numbered grid (philosophy / help) ---------- */
.num-grid { display: grid; gap: 1px; background: var(--sand-200); border: 1px solid var(--sand-200); }
.num-item { background: var(--ivory); padding: clamp(1.5rem, 3vw, 2.5rem); position: relative; transition: background-color .3s var(--ease); }
.section--sand .num-item { background: var(--sand-100); }
.section--white .num-item { background: var(--white); }
.num { font-family: var(--serif); font-size: 1.05rem; color: var(--blue-600); letter-spacing: .02em; margin-bottom: 1.2rem; display: block; }
.num-item h3 { font-family: var(--serif); font-size: clamp(1.3rem, 1.7vw, 1.55rem); line-height: 1.25; margin-bottom: .8rem; letter-spacing: -0.005em; }
.num-item p { color: var(--ink-soft); font-size: 1rem; }
@media (min-width: 640px) { .num-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .num-grid--3 { grid-template-columns: repeat(3, 1fr); } .num-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.help-grid .num-item:hover { background: var(--blue-100); }
.num-item--wide { grid-column: 1 / -1; }
@media (min-width: 1000px) {
  .num-item--wide { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 2rem; align-items: start; }
  .num-item--wide .num { grid-column: 1 / -1; margin-bottom: .5rem; }
  .num-item--wide h3 { margin-bottom: 0; }
}

/* Question pair */
.q-pair { display: grid; gap: 1.5rem; margin: clamp(2.5rem, 5vw, 4rem) auto 0; max-width: 900px; }
.q-card { padding: clamp(1.5rem, 3vw, 2.25rem); border-radius: var(--radius); }
.q-card span { display: block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; margin-bottom: .9rem; }
.q-card p { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.25; }
.q-old { background: transparent; border: 1px solid var(--sand-200); }
.q-old span { color: var(--ink-soft); }
.q-old p { color: var(--ink-soft); }
.q-new { background: var(--blue-800); color: var(--ivory); }
.q-new span { color: var(--blue-200); }
.q-new p { color: var(--ivory); }
@media (min-width: 720px) { .q-pair { grid-template-columns: 1fr 1fr; align-items: stretch; } .q-pair .q-new { transform: translateY(1.25rem); } }
.q-pair-caption { text-align: center; margin-top: 2.75rem; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 2rem; counter-reset: step; }
.step { position: relative; padding-top: 1.5rem; border-top: 1px solid var(--sand-200); }
.step-num { font-family: var(--serif); font-size: clamp(2.4rem, 3.5vw, 3.25rem); line-height: 1; color: var(--blue-400); margin-bottom: 1rem; letter-spacing: -0.02em; }
.step h3 { font-family: var(--serif); font-size: clamp(1.4rem, 1.9vw, 1.75rem); margin-bottom: .35rem; }
.step-meta { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--taupe-700); font-weight: 500; margin-bottom: 1rem; }
.step p { color: var(--ink-soft); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 4rem); } }

/* ---------- Pricing ---------- */
.price-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .price-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.price-card { background: var(--white); border: 1px solid var(--sand-200); padding: clamp(1.75rem, 3.5vw, 3rem); display: flex; flex-direction: column; border-radius: var(--radius); }
.section--sand .price-card { border-color: transparent; }
.price-card h3 { font-family: var(--serif); font-size: clamp(1.5rem, 2.2vw, 1.95rem); margin-bottom: .5rem; }
.price-card .price-intro { color: var(--ink-soft); margin-bottom: 1.5rem; }
.price { display: flex; align-items: baseline; gap: .6rem; margin: .5rem 0 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--sand-200); }
.price strong { font-family: var(--serif); font-size: clamp(2.2rem, 3.4vw, 2.9rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1; }
.price span { font-size: .95rem; color: var(--ink-soft); }
.price-note { font-size: .875rem; color: var(--ink-soft); margin-top: .25rem; }
.includes { list-style: none; margin-bottom: 2rem; }
.includes li { padding: .55rem 0 .55rem 1.5rem; position: relative; font-size: 1rem; color: var(--ink-soft); }
.includes li::before { content: ""; position: absolute; left: 0; top: 1.15rem; width: .75rem; height: 1px; background: var(--blue-400); }
.price-card .btn { margin-top: auto; align-self: flex-start; }
.price-foot { margin-top: 2rem; font-size: .95rem; color: var(--ink-soft); max-width: 62ch; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--sand-100); overflow: hidden; }
.cta-band-grid { display: grid; }
.cta-band-copy { padding-block: clamp(3.5rem, 8vw, 7rem); }
.cta-band-copy .h2 { margin-bottom: 1.25rem; }
.cta-band-copy .lede { margin-bottom: 2rem; }
.cta-band-media { position: relative; min-height: 420px; margin-inline: calc(-1 * var(--gutter)); }
.cta-band-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
@media (min-width: 900px) {
  .cta-band-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(2rem, 6vw, 6rem); align-items: stretch; }
  .cta-band-media { margin-inline: 0; margin-right: calc(-1 * var(--gutter)); min-height: 620px; }
}
@media (min-width: 1300px) { .cta-band-media { margin-right: calc((100vw - var(--container)) / -2 - var(--gutter)); } }
.cta-band--reverse .cta-band-media { order: -1; }
@media (min-width: 900px) {
  .cta-band--reverse .cta-band-media { margin-right: 0; margin-left: calc(-1 * var(--gutter)); }
}
@media (min-width: 1300px) { .cta-band--reverse .cta-band-media { margin-left: calc((100vw - var(--container)) / -2 - var(--gutter)); } }

/* ---------- Inner page hero ---------- */
.page-hero { background: var(--white); padding-block: clamp(3rem, 7vw, 6.5rem) clamp(2.5rem, 6vw, 5rem); }
.page-hero .h1 { margin-bottom: 1.25rem; }
.page-hero .lede { max-width: 38rem; }
.page-hero--split .split { align-items: end; }
.page-hero--split .figure { margin-top: 1rem; }
@media (min-width: 900px) { .page-hero--split .figure { margin-top: 0; } }

/* ---------- FAQ ---------- */
.faq-group + .faq-group { margin-top: clamp(2.5rem, 5vw, 4rem); }
.faq-group h2 { font-family: var(--serif); font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--sand-200); }
.faq details { border-bottom: 1px solid var(--sand-200); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.15rem 0; font-family: var(--serif); font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.3; color: var(--charcoal);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-size: 1.5rem; color: var(--blue-400); flex: none; transition: transform .3s var(--ease); width: 1.5rem; text-align: center; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--blue-800); }
.faq .faq-body { padding: 0 0 1.5rem; color: var(--ink-soft); max-width: 66ch; }
.faq .faq-body p + p { margin-top: .9em; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .92rem; font-weight: 500; }
.field .hint { font-size: .85rem; color: var(--ink-soft); font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--charcoal); background: var(--white);
  border: 1px solid var(--sand-200); border-radius: var(--radius); padding: .85rem 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 3px var(--blue-100); }
.field textarea { min-height: 150px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .875rem; color: var(--ink-soft); }
.form-status { display: none; padding: 1rem 1.25rem; border-radius: var(--radius); background: var(--blue-100); color: var(--blue-800); }
.form-status.is-visible { display: block; }
.form-status.is-error { background: var(--sand-100); color: var(--taupe-700); }
.contact-options { display: grid; gap: 2.5rem; }
.contact-option { padding-top: 1.5rem; border-top: 1px solid var(--sand-200); }
.contact-option h2 { font-family: var(--serif); font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin-bottom: .75rem; }
.contact-option > p { color: var(--ink-soft); }
.booking-slot { margin-top: 1.5rem; border: 1px dashed var(--sand-200); padding: 1.5rem; border-radius: var(--radius); background: var(--white); }
.booking-slot .btn { margin-top: 1rem; }
.what-next { list-style: none; display: grid; gap: 1rem; margin-top: 1.5rem; }
.what-next li { display: grid; grid-template-columns: 2.25rem 1fr; gap: .75rem; align-items: baseline; color: var(--ink-soft); }
.what-next li span { font-family: var(--serif); color: var(--blue-600); font-size: 1.15rem; }
.contact-side { display: grid; gap: 2rem; }
.contact-details { padding-top: 1.5rem; border-top: 1px solid var(--sand-200); font-size: .95rem; color: var(--ink-soft); }
.contact-details dt { font-weight: 500; color: var(--charcoal); margin-top: 1rem; }
.contact-details dd { margin: .15rem 0 0; }

/* ---------- Notices & placeholders ---------- */
.notice { font-size: .9rem; color: var(--ink-soft); border-left: 2px solid var(--sand-200); padding-left: 1rem; max-width: 62ch; }
.placeholder {
  display: inline-block; background: #FFF4D6; color: #6B4E00; border: 1px dashed #D9B75A;
  padding: .15em .5em; border-radius: 2px; font-size: .9em;
}
.placeholder--block { display: block; padding: 1rem 1.25rem; margin: 1.5rem 0; }

/* ---------- Credential block ---------- */
.credential { border: 1px solid var(--sand-200); padding: clamp(1.5rem, 3vw, 2.25rem); border-radius: var(--radius); background: var(--white); }
.credential .name { font-family: var(--serif); font-size: 1.5rem; margin-bottom: .25rem; }
.credential ul { list-style: none; margin-top: 1rem; }
.credential li { padding: .5rem 0; border-top: 1px solid var(--sand-200); color: var(--ink-soft); font-size: .98rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-800); color: var(--blue-100); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.5rem; font-size: .95rem; }
.site-footer a { color: var(--ivory); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: .2em; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 3rem; } }
.footer-brand .brand-name { color: var(--ivory); font-size: 1.4rem; }
.footer-brand .brand-name small { color: var(--blue-200); }
.footer-brand p { margin-top: 1.25rem; max-width: 34ch; color: var(--blue-100); }
.footer-heading { font-family: var(--sans); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-200); margin-bottom: 1rem; font-weight: 500; }
.footer-links { list-style: none; display: grid; gap: .55rem; }
.footer-meta { color: var(--blue-100); }
.footer-meta p + p { margin-top: .75rem; }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.5rem; border-top: 1px solid rgba(248,246,241,.16); display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; font-size: .85rem; color: var(--blue-200); }
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-disclaimer { margin-top: 1.5rem; font-size: .85rem; color: var(--blue-200); max-width: 80ch; }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.stack > * + * { margin-top: 1.25rem; }
.two-col { columns: 2; column-gap: 3rem; }
@media (max-width: 720px) { .two-col { columns: 1; } }

/* Print */
@media print { .site-header, .mobile-menu, .site-footer, .btn { display: none !important; } body { background: #fff; } }

/* ==========================================================================
   Motion layer — parallax, reveals, hero intro, drifting background, transitions
   Every effect is disabled under prefers-reduced-motion (see bottom of file).
   ========================================================================== */
:root { --expo: cubic-bezier(.16, 1, .3, 1); }

/* Page enters with a soft rise (no cross-document view transitions: they stall some tooling) */
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }
main { animation: page-in .5s ease both; }

/* Header hides on scroll down, returns on scroll up */
.site-header { transition: border-color .3s var(--ease), background-color .3s var(--ease), transform .45s var(--expo); }
.site-header.is-hidden { transform: translateY(-100%); }

/* ---------- Parallax (driven by --p, set by main.js: -1 above viewport … 1 below) ---------- */
[data-parallax] { --p: 0; }
.figure[data-parallax] .ratio-4x5 img, .figure[data-parallax] .ratio-3x4 img, .figure[data-parallax] .ratio-1x1 img {
  translate: 0 calc(var(--p) * 7%); scale: 1.16; transition: scale 1.4s var(--expo);
}
.figure[data-parallax]:hover .ratio-4x5 img, .figure[data-parallax]:hover .ratio-3x4 img { scale: 1.2; }
.figure--offset[data-parallax]::before { translate: 0 calc(var(--p) * -3.5%); }
.hero-media[data-parallax] img { translate: 0 calc(var(--p) * 8%); scale: 1.14; }
.hero-media[data-parallax] .hero-backdrop { translate: 0 calc(var(--p) * -5%); }
.cta-band-media[data-parallax] img { translate: 0 calc(var(--p) * 10%); scale: 1.22; }

/* ---------- Full-width parallax photo band ---------- */
.band { position: relative; overflow: hidden; height: clamp(440px, 72vh, 780px); display: flex; align-items: flex-end; background: var(--blue-800); isolation: isolate; }
.band-media { position: absolute; inset: 0; z-index: 0; }
.band-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; translate: 0 calc(var(--p) * 16%); scale: 1.34; }
.band-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(43,40,37,0) 35%, rgba(43,40,37,.62) 100%), linear-gradient(90deg, rgba(43,40,37,.45) 0%, rgba(43,40,37,0) 60%); }
.band-copy { position: relative; z-index: 2; padding-bottom: clamp(3rem, 7vw, 6rem); padding-top: 4rem; color: var(--ivory); }
.band-copy .eyebrow { color: var(--blue-200); }
.band-copy .eyebrow::before { background: var(--blue-200); }
.band-quote { font-family: var(--serif); font-size: clamp(1.9rem, 4.2vw, 3.6rem); line-height: 1.12; letter-spacing: -0.015em; max-width: 18ch; text-wrap: balance; margin: 0; }
.band-note { margin-top: 1.25rem; max-width: 40ch; color: rgba(248,246,241,.82); font-size: 1.05rem; }
@media (max-width: 899px) { .band { height: clamp(420px, 78vh, 640px); } .band-media img { object-position: 50% 22%; } }

/* ---------- Drifting rings (brand motif) in the background of selected sections ---------- */
.has-rings { position: relative; overflow: hidden; isolation: isolate; }
.has-rings > .container { position: relative; z-index: 1; }
.rings { position: absolute; inset: 0; z-index: 0; pointer-events: none; translate: 0 calc(var(--p) * 12%); }
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(59,78,96,.16); }
.ring-1 { width: 46vw; height: 46vw; right: -12vw; top: -8vw; animation: drift-a 34s ease-in-out infinite alternate; }
.ring-2 { width: 22vw; height: 22vw; right: 4vw; top: 18vw; border-color: rgba(168,136,111,.28); animation: drift-b 26s ease-in-out infinite alternate; }
.ring-3 { width: 12vw; height: 12vw; left: 6vw; bottom: 8vw; background: radial-gradient(circle, rgba(191,207,221,.55), rgba(191,207,221,0) 70%); border: 0; animation: drift-b 30s ease-in-out infinite alternate-reverse; }
.rings--light .ring { border-color: rgba(248,246,241,.22); }
.rings--light .ring-2 { border-color: rgba(191,207,221,.45); }
@keyframes drift-a { from { rotate: 0deg; translate: 0 0; } to { rotate: 25deg; translate: -2vw 6vw; } }
@keyframes drift-b { from { translate: 0 0; } to { translate: 5vw -4vw; } }

/* Hero: drifting powder-blue glow behind the copy */
.hero::before { content: ""; position: absolute; z-index: 0; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; left: -18vw; top: -22vw;
  background: radial-gradient(circle, rgba(222,230,236,.9) 0%, rgba(222,230,236,0) 62%); animation: glow 18s ease-in-out infinite alternate; pointer-events: none; }
.hero > .container { position: relative; z-index: 1; }
@keyframes glow { from { translate: 0 0; } to { translate: 12vw 10vw; } }

/* ---------- Hero intro (on load) ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes unveil { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes kenburns { from { scale: 1.1; } to { scale: 1; } }
@keyframes slide-in { from { opacity: 0; translate: 6% 0; } to { opacity: 1; translate: 0 0; } }
.hero-copy > * { animation: rise 1s var(--expo) both; }
.hero-copy > :nth-child(1) { animation-delay: .15s; }
.hero-copy > :nth-child(2) { animation-delay: .3s; }
.hero-copy > :nth-child(3) { animation-delay: .5s; }
.hero-copy > :nth-child(4) { animation-delay: .65s; }
.hero-copy > :nth-child(5) { animation-delay: .8s; }
.hero-frame { animation: unveil 1.3s .25s cubic-bezier(.7, 0, .2, 1) both, kenburns 7s .25s var(--expo) both; clip-path: inset(0 0 100% 0); }
.hero-backdrop { animation: slide-in 1.2s .6s var(--expo) both; }
.page-hero .container > *, .page-hero .split-copy > * { animation: rise 1s var(--expo) both; }
.page-hero .container > :nth-child(2), .page-hero .split-copy > :nth-child(2) { animation-delay: .15s; }
.page-hero .container > :nth-child(3), .page-hero .split-copy > :nth-child(3) { animation-delay: .3s; }
.page-hero .figure { animation: unveil 1.3s .3s cubic-bezier(.7, 0, .2, 1) both; clip-path: inset(0 0 100% 0); }

/* ---------- Scroll reveals: stronger, staggered ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--expo), transform 1.1s var(--expo); }
.reveal.is-visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--expo), transform 1s var(--expo); }
.stagger.is-visible > * { opacity: 1; transform: none; }
.stagger.is-visible > :nth-child(1) { transition-delay: .05s; }
.stagger.is-visible > :nth-child(2) { transition-delay: .15s; }
.stagger.is-visible > :nth-child(3) { transition-delay: .25s; }
.stagger.is-visible > :nth-child(4) { transition-delay: .35s; }
.stagger.is-visible > :nth-child(5) { transition-delay: .45s; }
.stagger.is-visible > :nth-child(6) { transition-delay: .55s; }
.stagger.is-visible > :nth-child(7) { transition-delay: .65s; }
.stagger.is-visible > :nth-child(8) { transition-delay: .75s; }
.stagger.is-visible > :nth-child(n+9) { transition-delay: .85s; }
/* Photo unveil on scroll */
.figure.reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.3s cubic-bezier(.7, 0, .2, 1); }
.figure.reveal-img.is-visible { clip-path: inset(0 0 0 0); }
/* Step rules draw themselves */
.step { border-top: 0; }
.step::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--sand-200); transform: scaleX(0); transform-origin: left; transition: transform 1.4s var(--expo); }
.stagger.is-visible .step::before { transform: scaleX(1); }
.stagger.is-visible > :nth-child(2).step::before { transition-delay: .15s; }
.stagger.is-visible > :nth-child(3).step::before { transition-delay: .3s; }
/* Cards lift */
.price-card, .num-item { transition: background-color .4s var(--ease), transform .6s var(--expo), box-shadow .6s var(--expo); }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -34px rgba(43,40,37,.35); }
/* Buttons: sweep fill */
.btn--primary, .btn--secondary { position: relative; overflow: hidden; isolation: isolate; }
.btn--primary::before, .btn--secondary::before { content: ""; position: absolute; inset: 0; z-index: -1; translate: -101% 0; transition: translate .5s var(--expo); }
.btn--primary::before { background: var(--blue-900); }
.btn--secondary::before { background: var(--charcoal); }
.btn--primary:hover::before, .btn--secondary:hover::before { translate: 0 0; }
.btn--primary:hover { background: var(--blue-800); }
.btn--secondary:hover { background: transparent; }

/* ---------- Reduced motion: everything static ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .hero-frame, .hero-backdrop, .page-hero .container > *, .page-hero .split-copy > *, .page-hero .figure, .ring, .hero::before { animation: none !important; clip-path: none !important; }
  .figure.reveal-img { clip-path: none; }
  .stagger > * { opacity: 1; transform: none; transition: none; }
  [data-parallax] img, .figure--offset[data-parallax]::before, .hero-media[data-parallax] .hero-backdrop, .rings, .ring { translate: 0 0 !important; scale: 1 !important; }
  .step::before { transform: none; }
  .site-header.is-hidden { transform: none; }
  main { animation: none; }
}
.no-js .stagger > *, .no-js .figure.reveal-img { opacity: 1; transform: none; clip-path: none; }

/* ==========================================================================
   Motion layer 2 — curtain, word reveals, badge, marquee, mouse parallax,
   magnetic buttons, sticky media, directional staggers, stronger parallax
   ========================================================================== */

/* Brand curtain on first load (once per browser session) */
.loader { position: fixed; inset: 0; z-index: 200; background: var(--ivory); display: grid; place-items: center; animation: curtain .8s .6s cubic-bezier(.7, 0, .2, 1) forwards; }
.loader.is-off, .no-js .loader { display: none; }
.loader svg { width: 56px; height: 56px; animation: loader-pop .7s var(--expo) both; }
.loader-line { position: absolute; left: 50%; bottom: 18vh; width: 120px; height: 1px; background: var(--sand-200); translate: -50% 0; overflow: hidden; }
.loader-line::after { content: ""; position: absolute; inset: 0; background: var(--blue-800); translate: -100% 0; animation: loader-fill .9s .1s var(--expo) forwards; }
@keyframes curtain { to { translate: 0 -100%; } }
@keyframes loader-pop { from { opacity: 0; scale: .8; } to { opacity: 1; scale: 1; } }
@keyframes loader-fill { to { translate: 0 0; } }

/* Headline words rise in from a mask */
.words .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 0 .04em .12em 0; margin: 0 -.04em -.12em 0; }
.words .wi { display: inline-block; transform: translateY(112%); transition: transform 1s var(--expo); will-change: transform; }
.words.is-visible .wi { transform: none; }
.hero-copy > .words { animation: none; }
.page-hero .words { animation: none; }

/* Brand mark breathes */
.brand-mark circle:last-child { transform-box: fill-box; transform-origin: center; animation: breathe 4.5s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.35); } }

/* Rotating text badge */
.badge { position: absolute; z-index: 3; width: 138px; height: 138px; pointer-events: none; display: none; }
.badge::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: rgba(248,246,241,.86); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 20px 40px -24px rgba(43,40,37,.35); }
.badge svg { position: relative; width: 100%; height: 100%; animation: spin 28s linear infinite; }
.badge-text { font-family: var(--sans); font-size: 10.4px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; fill: var(--blue-800); }
.badge-dot { fill: var(--blue-400); }
@keyframes spin { to { rotate: 360deg; } }
@media (min-width: 900px) {
  .badge { display: block; }
  .hero-media .badge { left: calc(2.5rem - 69px); bottom: 4rem; }
  .cta-band-media .badge { left: -69px; top: 3.5rem; }
  .cta-band--reverse .cta-band-media .badge { left: auto; right: -69px; }
}

/* Scroll cue under the hero copy */
.scroll-cue { display: none; align-items: center; gap: .9rem; margin-top: 2.5rem; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.scroll-cue span { position: relative; width: 56px; height: 1px; background: var(--sand-200); overflow: hidden; }
.scroll-cue span::after { content: ""; position: absolute; inset: 0; background: var(--blue-800); translate: -100% 0; animation: cue 2.2s cubic-bezier(.7, 0, .2, 1) infinite; }
@keyframes cue { 0% { translate: -100% 0; } 55% { translate: 0 0; } 100% { translate: 100% 0; } }
@media (min-width: 900px) { .scroll-cue { display: inline-flex; } }

/* Marquee of the areas Svitlana works with */
.marquee { overflow: hidden; border-top: 1px solid var(--sand-200); border-bottom: 1px solid var(--sand-200); background: var(--white); padding: 1.15rem 0; }
.marquee-track { display: flex; align-items: center; gap: 3.25rem; width: max-content; white-space: nowrap; animation: marquee 80s linear infinite; font-family: var(--serif); font-size: clamp(1.2rem, 1.7vw, 1.55rem); color: var(--ink-soft); }
.marquee-track i { font-style: normal; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-400); flex: none; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { translate: -50% 0; } }

/* Mouse parallax in the hero (desktop, fine pointer) */
.hero { --mx: 0; --my: 0; }
@media (hover: hover) and (pointer: fine) and (min-width: 900px) {
  .hero-frame { translate: calc(var(--mx) * 10px) calc(var(--my) * 8px); transition: translate .6s var(--expo); }
  .hero-media[data-parallax] .hero-backdrop { translate: calc(var(--mx) * -16px) calc(var(--p) * -5% + var(--my) * -12px); transition: translate .6s var(--expo); }
  .hero::before { translate: calc(var(--mx) * 30px) calc(var(--my) * 24px); }
  .hero-copy { translate: calc(var(--mx) * -4px) calc(var(--my) * -3px); transition: translate .8s var(--expo); }
}

/* Magnetic primary buttons (set by main.js via --bx/--by) */
.btn--primary { translate: calc(var(--bx, 0) * 1px) calc(var(--by, 0) * 1px); transition: translate .35s var(--expo), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }

/* Sticky photos beside long copy */
@media (min-width: 900px) { .split--top > .split-media { align-self: start; position: sticky; top: 6.5rem; } }

/* Directional staggers */
.stagger--alt > :nth-child(odd) { transform: translate(-40px, 20px); }
.stagger--alt > :nth-child(even) { transform: translate(40px, 20px); }
.stagger--alt.is-visible > * { transform: none; }

/* Stronger parallax + drift */
.figure[data-parallax] .ratio-4x5 img, .figure[data-parallax] .ratio-3x4 img, .figure[data-parallax] .ratio-1x1 img { translate: 0 calc(var(--p) * 10%); scale: 1.2; }
.figure[data-parallax]:hover .ratio-4x5 img, .figure[data-parallax]:hover .ratio-3x4 img { scale: 1.25; }
.figure--offset[data-parallax]::before { translate: calc(var(--p) * 2.5%) calc(var(--p) * -7%); }
.hero-media[data-parallax] img { translate: 0 calc(var(--p) * 11%); scale: 1.16; }
.cta-band-media[data-parallax] img { translate: 0 calc(var(--p) * 14%); scale: 1.28; }
.band-media img { translate: 0 calc(var(--p) * 22%); scale: 1.42; }
.figure.reveal-img { scale: 1.06; transition: clip-path 1.3s cubic-bezier(.7, 0, .2, 1), scale 1.6s var(--expo); }
.figure.reveal-img.is-visible { scale: 1; }

/* Glow drifting in beige sections */
.section--sand.has-rings::after { content: ""; position: absolute; z-index: 0; width: 52vw; height: 52vw; left: -16vw; bottom: -24vw; pointer-events: none;
  background: radial-gradient(circle, rgba(191,207,221,.6) 0%, rgba(191,207,221,0) 64%); animation: glow 22s ease-in-out infinite alternate-reverse; }

@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
  .words .wi { transform: none; transition: none; }
  .brand-mark circle:last-child, .badge svg, .scroll-cue span::after, .marquee-track, .section--sand.has-rings::after { animation: none !important; }
  .hero-frame, .hero-copy, .btn--primary { translate: 0 0 !important; }
  .stagger--alt > * { transform: none; }
  .figure.reveal-img { scale: 1; }
  .split--top > .split-media { position: static; }
}
