/* ============================================
   SŌMA — shared stylesheet
   Palette from Figma:
   cream   #fff6eb   brown #783c13
   maroon  #592c30   blue  #b9cee0
   pink    #fdc8c4   green #d8e0ba
   ============================================ */

:root {
  --cream: #fff6eb;
  --brown: #783c13;
  --maroon: #592c30;
  --blue: #b9cee0;
  --pink: #fdc8c4;
  --green: #d8e0ba;
  --gray: #c5c5c5;
  --salmon: #e6938d;
  --olive: #5e6924;
  --strip-blue: #c6d9ea;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "Space Mono", "Courier New", monospace;
  --script: "Mrs Saint Delafield", cursive;
  --canvas: 1462;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  font-family: var(--mono);
  color: var(--maroon);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

/* paper texture over everything, like the Figma overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/texture.jpg") repeat center / 900px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 9999;
}

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

a { color: inherit; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--brown); text-transform: uppercase; }

/* ---------- header ---------- */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px 24px;
  padding: 24px 3%;
  position: relative;
  z-index: 5;
}
.site-header .logo img {
  width: 148px;
}
.site-nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 26px;
}
.btn.header-cta {
  justify-self: end;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 10px 18px;
}
.site-nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-nav a:hover,
.site-nav a.active { border-bottom-color: var(--brown); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--maroon);
  color: #fff;
  font-family: var(--mono);
  font-size: clamp(16px, 2.05vw, 30px);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.55em 1.1em;
  transition: opacity 0.2s ease;
}
.btn:hover { opacity: 0.85; }
.btn-outline {
  background: transparent;
  color: var(--maroon);
  border: 1px solid var(--maroon);
}

/* ---------- header cart ---------- */
.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-right .header-cta { justify-self: auto; }
.cart-link {
  position: relative;
  display: flex;
  color: var(--brown);
}
.cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 15px;
  height: 15px;
  padding: 0 3px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 15px;
  text-align: center;
}
.cart-count.is-empty { display: none; }

/* ============================================
   HOME
   ============================================ */

/* ---------- hero ---------- */
.hero {
  position: relative;
  margin: 0 auto;
  aspect-ratio: 1374 / 763;
  /* same 94% width as the header so edges line up; height still fits one viewport */
  width: 94%;
  max-height: calc(100vh - 130px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero.jpg") center / cover no-repeat;
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.18, 1);
}
.hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 2.2s cubic-bezier(0.33, 0, 0.2, 1);
}
.hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* ---------- intro loading sequence (homepage) ----------
   stage 0  html.intro              cream screen + big logo only
   stage 1  html.intro.intro-video  small video window opens behind logo
   stage 2  html.intro.intro-zoom   window expands into the full hero
   done     classes removed         header + content fade in            */
.intro-logo {
  /* fixed to the viewport so it sits dead-centre of the screen during the intro */
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(240px, 28vw, 430px);
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
html.intro { overflow: hidden; }
html.intro .intro-logo { opacity: 1; }
html.intro.intro-zoom .intro-logo { opacity: 0; transition-delay: 0.2s; }
html.intro .hero .hero-bg { clip-path: inset(50% 50% 50% 50%); }
html.intro.intro-video .hero .hero-bg { clip-path: inset(37% 34%); }
html.intro.intro-zoom .hero .hero-bg { clip-path: inset(0 0 0 0); }
html.intro .hero .hero-video { transform: scale(1.15); }
html.intro.intro-zoom .hero .hero-video { transform: scale(1); }

.site-header,
.collage-1, .split, .collage-2, .marquee, .site-footer {
  transition: opacity 0.9s ease;
}
html.intro .site-header,
html.intro .pinned-copy,
html.intro .collage-1, html.intro .split, html.intro .collage-2,
html.intro .marquee, html.intro .site-footer {
  opacity: 0;
}
/* ---------- pinned copy (hero → collage shared text) ---------- */
.hero-scroll { position: relative; }
.pinned-copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(66%, 960px);
  text-align: center;
  z-index: 4;
  color: #fff;
  pointer-events: none;
  transition: opacity 0.9s ease, color 0.7s ease;
}
.pinned-copy .display { color: inherit; }
.pinned-copy .pinned-sub {
  margin: 2.2em auto 0;
  max-width: 684px;
  font-size: clamp(11px, 1.1vw, 16px);
  color: inherit;
}
.pinned-copy.over-cream { color: var(--brown); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(34px, 5.8vw, 85px);
  line-height: 0.97;
  color: #fff;
}
.hero .display { color: #fff; }

/* ---------- home collage #1 ---------- */
.collage-1 {
  position: relative;
  /* tall canvas so the photos are spaced out and drift past one by one */
  aspect-ratio: 1462 / 2360;
}
/* photos ride ABOVE the pinned text (z 5 > 4) but stay translucent so it shows through */
.collage-1 .ph { position: absolute; z-index: 5; }
.collage-1 .ph img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }

.collage-1 .ph-friends { left: 60.8%; top: 3.2%;  width: 21.3%; aspect-ratio: 311 / 467; }
.collage-1 .ph-bikini  { left: 14.6%; top: 18%;   width: 24.2%; aspect-ratio: 354 / 472; }
.collage-1 .ph-journal { left: 60.8%; top: 46.6%; width: 30.5%; aspect-ratio: 446 / 357; }
.collage-1 .ph-flowers { left: 23.3%; top: 67.8%; width: 30.4%; aspect-ratio: 445 / 593; }

/* ---------- split sections (Meet Sian / My Vision) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* both split sections share the exact same size */
  aspect-ratio: 1462 / 700;
  border-top: 1px solid var(--brown);
  border-bottom: 1px solid var(--brown);
}
/* adjacent sections share a single 1px line instead of stacking two */
.split + .split { border-top: 0; }
.split .split-media { position: relative; overflow: hidden; }
.split .split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split .split-body {
  padding: 6% 13.7%;
  /* keep the whole text block vertically centred in its half */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.split-meet { background: var(--blue); }
.split-meet .split-media { border-left: 1px solid var(--maroon); }
/* keep faces in frame when the photo is cropped */
.split-meet .split-media img { object-position: 50% 12%; }
.split-vision { background: var(--pink); }
.split-vision .split-media { border-right: 1px solid var(--maroon); }
.split-vision .split-media img { object-position: 50% 28%; }

.split h2 {
  font-size: clamp(34px, 5.8vw, 85px);
  line-height: 0.97;
  display: flex;
  align-items: center;
  gap: 0.25em;
  flex-wrap: wrap;
}
.split h2 .inline-photo {
  height: 0.95em;
  width: 1.28em;
  object-fit: cover;
}
.split .split-text {
  margin-top: 2.4em;
  font-size: clamp(12px, 1.1vw, 16px);
  color: var(--maroon);
  text-align: left;
  max-width: 480px;
}
.split .split-text p + p { margin-top: 1.1em; }
.split .btn {
  margin-top: 2.8em;
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 13px 26px;
}

/* ---------- home collage #2 (working with me) ---------- */
.collage-2 {
  position: relative;
  aspect-ratio: 1462 / 941;
}
.collage-2 .ph { position: absolute; }
.collage-2 .ph img, .collage-2 .ph video { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-2 .ph[data-parallax] { will-change: transform; }

.collage-2 .doodle-flower { left: 27.5%; top: 11%;   width: 16.7%; z-index: 2; }
.collage-2 .ph-yoga       { left: 36.5%; top: 20.3%; width: 23.6%; aspect-ratio: 345 / 531; }
.collage-2 .ph-pair       { left: 63.2%; top: 14.9%; width: 12.7%; aspect-ratio: 186 / 279; }
.collage-2 .ph-ceremony   { left: 17.9%; top: 49.6%; width: 15.1%; aspect-ratio: 221 / 331; }
.collage-2 .doodle-spiral { left: 69.6%; top: 61.5%; width: 19.8%; opacity: 0.7; }

.collage-2 .quote {
  position: absolute;
  font-family: var(--serif);
  text-transform: uppercase;
  color: var(--brown);
  font-size: clamp(15px, 2.05vw, 30px);
  line-height: 1.28;
}
.collage-2 .quote-left  { left: 13.4%; top: 34.2%; width: 19.8%; text-align: right; }
.collage-2 .quote-right { left: 63.2%; top: 48.6%; width: 20.1%; }

/* ---------- logo marquee ---------- */
.marquee {
  background: var(--green);
  padding: 42px 0;
  overflow: hidden;
}
.marquee .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee .marquee-group {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}
.marquee .m-logo   { width: 153px; height: 60px; object-fit: contain; max-width: none; flex-shrink: 0; }
.marquee .m-flower { width: 68px;  height: 68px; object-fit: contain; opacity: 0.85; max-width: none; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- why SŌMA ---------- */
.why-soma {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 6.7%;
  overflow: hidden;
}
.why-doodle { position: absolute; pointer-events: none; z-index: 0; }
.why-doodle-1 { width: clamp(90px, 11vw, 170px); top: 6%;  right: 7%;  opacity: 0.5;
  transform: rotate(12deg); }
.why-doodle-2 { width: clamp(120px, 15vw, 240px); bottom: 3%; left: 4%; opacity: 0.4; }
.why-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
/* flipbook photo frame — images swap instantly, like a hand-flicked stack */
.why-media {
  position: relative;
  aspect-ratio: 7 / 10;
  overflow: hidden;
}
.why-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.why-media img.is-on { opacity: 1; }
.why-title {
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1;
  margin-bottom: clamp(20px, 2.6vw, 34px);
}
.why-body { display: flex; flex-direction: column; gap: 20px; }
.why-body p { font-size: clamp(14px, 1.15vw, 17px); line-height: 1.75; }
.why-lead {
  font-family: var(--serif);
  text-transform: none;
  color: var(--brown);
  font-size: clamp(20px, 2.2vw, 30px) !important;
  line-height: 1.4 !important;
}

/* ---------- 6 things ---------- */
.six-things {
  background: var(--pink);
  padding: clamp(64px, 8vw, 110px) 6.7%;
}
.six-head { max-width: 900px; margin: 0 auto clamp(40px, 5vw, 68px); text-align: center; }
.six-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 18px;
}
.six-head h2 {
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.12;
  color: var(--maroon);
}
.six-grid {
  list-style: none;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.4vw, 52px);
}
.six-item {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid rgba(89, 44, 48, 0.35);
}
/* little photo that peeks out over the divider while hovering the text */
.six-peek {
  position: absolute;
  top: -74px;
  left: 96px;
  width: 118px;
  height: 142px;
  object-fit: cover;
  opacity: 0;
  transform: rotate(var(--tilt, -5deg)) translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 12px 28px rgba(89, 44, 48, 0.22);
}
.six-item:nth-child(even) { --tilt: 4deg; }
@media (hover: hover) {
  .six-item:hover .six-peek { opacity: 1; transform: rotate(var(--tilt, -5deg)) translateY(0); }
}
.six-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 46px);
  color: var(--brown);
  line-height: 1;
  margin-bottom: 16px;
}
.six-item p { font-size: clamp(13.5px, 1vw, 15.5px); line-height: 1.7; }

/* ---------- CTA start banner ----------
   "window" effect: the photo is fixed to the viewport and the section
   clips it, so scrolling feels like sliding past a window. */
.cta-start {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  clip-path: inset(0);
}
.cta-start-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  z-index: 0;
}
/* copy block sits on the left half (face stays clear on the right),
   text centred within the block */
.cta-start-copy {
  position: relative;
  z-index: 1;
  width: min(620px, 46%);
  margin-right: auto;
  padding-left: 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.cta-script {
  font-family: "La Belle Aurore", cursive;
  color: var(--blue);
  font-size: clamp(30px, 4.4vw, 62px);
  line-height: 0.9;
}
.cta-script-bot { margin-top: 0.1em; }
.cta-serif {
  font-family: var(--serif);
  text-transform: uppercase;
  color: var(--blue);
  font-size: clamp(46px, 8vw, 118px);
  line-height: 0.92;
  letter-spacing: 0.02em;
}
.cta-start-btn {
  margin-top: clamp(24px, 3vw, 40px);
  background: var(--blue);
  color: var(--maroon);
  font-size: clamp(13px, 1.1vw, 16px);
  letter-spacing: 0.2em;
  padding: 0.85em 2em;
  text-shadow: none;
}

/* ---------- ebook buy row ---------- */
.buy-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.buy-row .btn { font-size: clamp(14px, 1.15vw, 17px); border-width: 1px; cursor: pointer; }
.center-note { margin-top: 18px; text-align: center; }

/* ---------- checkout ---------- */
.checkout-wrap { max-width: 1160px; margin: 0 auto; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.checkout-h {
  font-size: clamp(24px, 2.4vw, 34px);
  padding-bottom: 14px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--brown);
}
.checkout-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.checkout-form .btn { border: 0; cursor: pointer; font-size: clamp(14px, 1.15vw, 17px); }

.bag-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(89, 44, 48, 0.25);
}
.bag-thumb { width: 74px; height: 92px; object-fit: cover; }
.bag-info { flex: 1; }
.bag-name {
  font-family: var(--serif);
  text-transform: uppercase;
  color: var(--brown);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.15;
}
.bag-sub { font-size: 11px; letter-spacing: 0.08em; margin-top: 6px; color: var(--maroon); }
.bag-price { font-family: var(--serif); font-size: clamp(17px, 1.6vw, 22px); color: var(--brown); }

.qty-stepper { display: flex; align-items: center; gap: 4px; margin-top: 14px; }
.qty-btn {
  width: 26px;
  height: 26px;
  background: transparent;
  border: 1px solid var(--maroon);
  color: var(--maroon);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.qty-btn:hover { background: var(--maroon); color: #fff; }
.qty-num { min-width: 30px; text-align: center; font-size: 14px; }
.bag-remove {
  margin-left: 14px;
  background: none;
  border: 0;
  color: var(--maroon);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  opacity: 0.75;
}
.bag-remove:hover { opacity: 1; }

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 20px;
  font-family: var(--serif);
  text-transform: uppercase;
  color: var(--brown);
  font-size: clamp(20px, 2vw, 28px);
}
.bag-empty-btn { font-size: clamp(14px, 1.15vw, 17px); margin-top: 30px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--green);
  padding: clamp(56px, 7vw, 92px) 6.7% clamp(36px, 4vw, 52px);
  position: relative;
}
.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.site-footer .footer-brand img { width: 168px; height: auto; }
.site-footer .footer-tag {
  font-family: var(--serif);
  text-transform: uppercase;
  color: var(--brown);
  font-size: clamp(15px, 1.7vw, 22px);
  letter-spacing: 0.04em;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  padding: 6px 0 4px;
  border-top: 1px solid rgba(120, 60, 19, 0.25);
  border-bottom: 1px solid rgba(120, 60, 19, 0.25);
  width: min(100%, 620px);
  margin-top: 4px;
}
.site-footer nav a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown);
  padding: 8px 0;
}
.site-footer nav a:hover { text-decoration: underline; }
.site-footer .copyright {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--brown);
  text-transform: uppercase;
}

/* ============================================
   COACHING HERO — video + door reveal
   ============================================ */
.coach-hero {
  position: relative;
  width: 100%;
  height: clamp(560px, 100svh, 940px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.coach-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.coach-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
}
.coach-hero-copy {
  position: relative;
  z-index: 2;
  width: min(90%, 1040px);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.45);
}
.coach-hero-copy h1 {
  color: #fff;
  font-size: clamp(40px, 6.4vw, 100px);
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
}
/* the two sliding door panels */
.coach-hero .door {
  position: absolute;
  top: 0;
  width: 50.5%;   /* slight overlap so no seam shows */
  height: 100%;
  z-index: 3;
  overflow: hidden;
  transform: translateZ(0);            /* promote to its own GPU layer up front */
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.coach-hero .door img { width: 100%; height: 100%; object-fit: cover; }
.coach-hero .door-left  { left: 0;  }
.coach-hero .door-right { right: 0; }
.coach-hero .door-left img  { object-position: 40% 42%; }
.coach-hero .door-right img { object-position: 50% 24%; }
.coach-hero.open .door-left  { transform: translateX(-100%); }
.coach-hero.open .door-right { transform: translateX(100%); }
/* returning from another page: doors already apart, no animation, no flash */
html.coach-skip .coach-hero .door { transition: none; }
html.coach-skip .coach-hero .door-left  { transform: translateX(-100%); }
html.coach-skip .coach-hero .door-right { transform: translateX(100%); }

/* ---------- disconnect quote (coaching) ---------- */
.disconnect {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 6vw, 90px) 6.7%;
  text-align: center;
  background: #f5fcd0;
  border-bottom: 1px solid var(--brown);
}
.disconnect-doodle { position: absolute; pointer-events: none; opacity: 0.4; z-index: 0; }
.disconnect-doodle-2 { width: clamp(120px, 15vw, 240px); bottom: 5%; right: 5%; }
.disconnect-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.disconnect-flower {
  width: clamp(74px, 8vw, 128px);
  opacity: 0.55;
  margin-bottom: clamp(6px, 1vw, 16px);
}
.disconnect-title {
  font-family: "La Belle Aurore", cursive;
  text-transform: none;
  color: var(--olive);
  font-size: clamp(42px, 7vw, 104px);
  line-height: 0.82;
  transform: rotate(-2deg);
}
.disconnect-body {
  position: relative;
  max-width: 640px;
  margin: clamp(10px, 1.4vw, 20px) auto 0;
}
.disconnect-mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 90px);
  line-height: 0.5;
  color: var(--pink);
  margin-bottom: 2px;
}
.disconnect-body p {
  font-family: var(--mono);
  text-transform: none;
  color: var(--maroon);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.75;
}
.disconnect-btn {
  margin-top: clamp(34px, 4vw, 56px);
  font-size: clamp(14px, 1.15vw, 17px);
  background: var(--olive);
  color: #fff;
}


/* ---------- work with sian — stacking cards ---------- */
.wws { padding: clamp(60px, 7vw, 100px) 6.7% clamp(80px, 9vw, 140px); }
.wws-title {
  text-align: center;
  font-size: clamp(40px, 7vw, 104px);
  line-height: 1;
  margin-bottom: clamp(30px, 4vw, 60px);
}
.stack {
  max-width: 1180px;
  margin: 0 auto;
  /* room for the sticky pile to build up */
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 60px);
}
.stack-card {
  position: sticky;
  /* each card parks a little lower so the ones beneath peek out */
  top: calc(90px + var(--i) * 26px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--brown);
  overflow: hidden;
  background: var(--cream);
}
.stack-blue  { background: var(--blue); }
.stack-pink  { background: var(--pink); }
.stack-green { background: var(--green); }
.stack-media { position: relative; min-height: 340px; }
.stack-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stack-body { padding: clamp(30px, 3.4vw, 56px); }
.stack-num {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 38px);
  color: var(--brown);
  line-height: 1;
}
.stack-body h3 {
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1.02;
  margin: 6px 0 14px;
}
.stack-lead {
  font-family: var(--serif);
  text-transform: none;
  color: var(--brown);
  font-size: clamp(17px, 1.6vw, 23px);
  line-height: 1.3;
  margin-bottom: 18px;
}
.stack-list { list-style: none; margin: 0 0 18px; }
.stack-list li {
  position: relative;
  padding-left: 26px;
  font-size: clamp(13.5px, 1vw, 15.5px);
  line-height: 1.5;
}
.stack-list li + li { margin-top: 10px; }
.stack-list li::before {
  content: "\2740";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--maroon);
}
.stack-close {
  font-family: var(--serif);
  text-transform: none;
  color: var(--brown);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.35;
  margin-bottom: 24px;
}
.stack-body .btn { font-size: clamp(14px, 1.15vw, 17px); }


/* ---------- client feedback (immersive) ---------- */
.feedback {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 6.7%;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.fb-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/feedback-bg.jpg") center 34% / cover no-repeat;
  filter: grayscale(1) brightness(0.72) contrast(1.05);
}
.fb-shade { display: none; }
.fb-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.fb-heading { color: #fff; font-size: clamp(38px, 6vw, 90px); line-height: 1; margin-bottom: clamp(34px, 4.5vw, 60px); }
.fb-stagewrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 28px);
  max-width: 1080px;
  margin: 0 auto;
}
.fb-stage { position: relative; flex: 1; max-width: 900px; }
.fb-panel { display: none; }
.fb-panel.is-active {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  text-align: left;
  animation: fbFade 0.55s ease;
}
@keyframes fbFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
/* framed portrait, polaroid tilt */
.fb-portrait {
  aspect-ratio: 4 / 5;
  border: 8px solid #fff;
  box-shadow: 0 20px 46px rgba(0,0,0,0.35);
  transform: rotate(-3deg);
  overflow: hidden;
  background: #fff;
}
.fb-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* translucent cream card so the text pops off the photo */
.fb-card {
  background: rgba(255, 246, 235, 0.95);
  padding: clamp(26px, 3vw, 44px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.fb-mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(50px, 5.5vw, 84px);
  line-height: 0.4;
  color: var(--pink);
  margin-bottom: 12px;
}
.fb-scroll { max-height: 300px; overflow-y: auto; padding-right: 10px; }
.fb-scroll p { font-size: clamp(13.5px, 1.05vw, 16px); line-height: 1.75; color: var(--maroon); }
.fb-scroll p + p { margin-top: 1em; }
.fb-scroll::-webkit-scrollbar { width: 5px; }
.fb-scroll::-webkit-scrollbar-thumb { background: rgba(120,60,19,0.35); border-radius: 3px; }
.fb-name {
  display: block;
  margin-top: 20px;
  font-family: var(--serif);
  font-style: normal;
  text-transform: uppercase;
  color: var(--brown);
  font-size: clamp(20px, 2vw, 30px);
}
.fb-arrow {
  flex: 0 0 auto;
  width: clamp(42px, 3.5vw, 54px);
  height: clamp(42px, 3.5vw, 54px);
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.fb-arrow:hover { background: #fff; color: var(--maroon); }
.fb-avatars {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: clamp(32px, 4vw, 52px);
}
.fb-av {
  width: clamp(48px, 4.6vw, 68px);
  height: clamp(48px, 4.6vw, 68px);
  border-radius: 50%;
  padding: 0;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.fb-av img { width: 100%; height: 100%; object-fit: cover; }
.fb-av:hover { opacity: 0.9; }
.fb-av.is-active { opacity: 1; border-color: #fff; transform: scale(1.1); }

/* ---------- becoming her energy ---------- */
.becoming {
  background: var(--blue);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(50px, 6vw, 96px) 6.7%;
}
.becoming-video {
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 60vh, 760px);
}
.becoming-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.becoming-copy h2 {
  color: var(--brown);
  font-size: clamp(34px, 4.8vw, 74px);
  line-height: 1.04;
  margin-bottom: clamp(18px, 2vw, 30px);
}
.becoming-copy p { color: var(--maroon); font-size: clamp(14px, 1.15vw, 17px); line-height: 1.7; }
.becoming-copy p + p { margin-top: 1.1em; }
.becoming-btn { margin-top: clamp(28px, 3vw, 44px); font-size: clamp(14px, 1.15vw, 17px); }
.becoming-tag {
  font-family: var(--serif) !important;
  text-transform: uppercase;
  color: var(--brown) !important;
  font-size: clamp(20px, 2.2vw, 30px) !important;
  line-height: 1.2 !important;
  margin-top: 1.3em !important;
}


/* ---------- "you are the one" handwriting ---------- */
.waiting {
  position: relative;
  background: url("../images/waiting-bg.jpg") center 50% / cover no-repeat;
  padding: clamp(110px, 16vw, 230px) 8%;
  text-align: center;
  overflow: hidden;
}
/* soft dark veil so the script pops off the photo */
.waiting::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(28, 18, 16, 0.42);
}
.waiting-doodle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}
.wd-flower1 { top: 5%;   left: 4%;  width: clamp(70px, 8vw, 130px); transform: rotate(-10deg); }
.wd-spiral1 { bottom: 5%; right: 4%; width: clamp(110px, 13vw, 210px); }
.wd-flower2 { bottom: 7%; left: 6%;  width: clamp(56px, 6vw, 96px); transform: rotate(14deg); }
.waiting-text {
  position: relative;
  z-index: 2;
  font-family: "La Belle Aurore", cursive;
  text-transform: none;
  color: #d98484;
  font-size: clamp(44px, 8vw, 132px);
  max-width: 16ch;
  margin: 0 auto;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
}
.waiting-text .wl {
  display: block;
  line-height: 0.9;
  padding: 0.12em 0 0.22em;
}
.waiting-text .wl + .wl { margin-top: -0.26em; }


/* ---------- retreats hero: vertical door reveal ---------- */
.rhero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.rhero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.rhero-panel {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--cream);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6%;
  transition: transform 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.rhero-top    { top: 0;    justify-content: flex-end;   padding-bottom: clamp(16px, 2.4vh, 36px); }
.rhero-bottom { bottom: 0; justify-content: flex-start; padding-top: clamp(24px, 4vh, 60px); }
.rhero-inner { max-width: 900px; }
.rhero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 16px;
}
.rhero-title {
  font-size: clamp(38px, 6.4vw, 92px);
  line-height: 1.0;
  color: var(--brown);
}
.rhero-body {
  max-width: 640px;
  margin: 0 auto;
  color: var(--brown);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.7;
}
.rhero-btn { margin-top: clamp(22px, 3vh, 38px); font-size: clamp(14px, 1.15vw, 17px); }
/* returning from another page: already open, no animation, no flash */
html.retreat-skip .rhero-panel { transition: none; }
html.retreat-skip .rhero-top    { transform: translateY(-50%); }
html.retreat-skip .rhero-bottom { transform: translateY(44%); }


/* ---------- retreat splits (Next Retreat / Meet Your Host) ---------- */
.retreat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  min-height: 100svh;
  border-top: 1px solid var(--brown);
  border-bottom: 1px solid var(--brown);
}
.retreat-split + .retreat-split { border-top: 0; }          /* shared divider line */
.rhero + .retreat-split { margin-top: clamp(44px, 7vh, 100px); } /* gap from hero */
.rs-green { background: var(--green); }
.rs-pink  { background: var(--pink); }
.rs-media { position: relative; overflow: hidden; }
.rs-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rs-image-left  .rs-media img { object-position: 50% 30%; }
.rs-image-right .rs-media { order: 2; }                     /* image on the right */
.rs-image-right .rs-media img { object-position: 50% 20%; }
.rs-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 5vw, 92px) clamp(30px, 5vw, 82px);
}
.rs-title {
  color: var(--brown);
  font-size: clamp(34px, 4.8vw, 76px);
  line-height: 1.03;
  margin-bottom: clamp(20px, 2.6vw, 38px);
}
.rs-eyebrow {
  font-family: var(--serif);
  text-transform: uppercase;
  color: var(--brown);
  font-size: clamp(15px, 1.5vw, 21px) !important;
  line-height: 1.3;
  margin-bottom: 4px;
}
.rs-body p { color: var(--maroon); font-size: clamp(13.5px, 1.05vw, 16px); line-height: 1.65; }
.rs-body p + p { margin-top: 0.9em; }
.host-journey { list-style: none; margin: 0.6em 0; }
.host-journey li {
  font-family: var(--serif);
  text-transform: uppercase;
  color: var(--brown);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.35;
}
.rs-body .btn { margin-top: clamp(22px, 2.6vw, 40px); align-self: flex-start; font-size: clamp(14px, 1.15vw, 17px); }
@media (max-width: 860px) {
  .retreat-split { grid-template-columns: 1fr; min-height: 0; }
  .rs-image-right .rs-media { order: -1; }
  .rs-media { min-height: 60vh; }
}


/* ---------- the SŌMA pillars ---------- */
.pillars-sec { padding: clamp(70px, 8vw, 130px) 6.7%; text-align: center; }
.pillars-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}
.pillars-heading { font-size: clamp(40px, 6.5vw, 96px); line-height: 1; margin-bottom: clamp(40px, 5vw, 70px); }
.pillars-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 3.6vw, 56px);
  text-align: left;
}
.pillar-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 20px;
}
.pillar-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.pillar:hover .pillar-media img { transform: scale(1.05); }
.pillar-num {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.pillar-title {
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.08;
  color: var(--brown);
  margin-bottom: 10px;
}
.pillar-body { color: var(--maroon); font-size: clamp(13.5px, 1vw, 15.5px); line-height: 1.6; }
@media (max-width: 860px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 560px) {
  .pillars-grid { grid-template-columns: 1fr; }
}


/* ---------- Why SŌMA — blue media panel ---------- */
.why2 {
  background: var(--cream);
  padding: clamp(56px, 7vw, 110px) 0 0 0;   /* blue block runs to the left edge; no bottom → reaches footer */
}
.why2-grid {
  display: grid;
  grid-template-columns: 50vw 1fr;          /* blue = half the screen */
  gap: 0;
  align-items: stretch;
}
/* left column: blue block with a big video + a smaller overlapping photo */
.why2-media {
  position: relative;
  background: var(--blue);
  align-self: stretch;
  min-height: 600px;
}
.why2-main {
  position: absolute;
  inset: clamp(26px, 3vw, 50px);   /* equal padding top/right/bottom/left inside the blue */
  overflow: hidden;
  z-index: 1;
}
.why2-sub {
  position: absolute;
  right: -6%;                      /* sits on the large frame's edge and sticks out */
  bottom: clamp(50px, 8vw, 130px);
  width: 42%;
  aspect-ratio: 5 / 6.6;
  overflow: hidden;
  z-index: 2;
}
.why2-main img, .why2-sub video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* right column: text, kept off the footer */
.why2-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5.5% clamp(56px, 7vw, 110px) clamp(64px, 7vw, 128px);
}
.why2-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}
.why2-title {
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 1;
  color: var(--brown);
  margin-bottom: clamp(22px, 2.6vw, 36px);
}
.why2-text p { color: var(--maroon); font-size: clamp(13.5px, 1.02vw, 15.5px); line-height: 1.7; }
.why2-text p + p { margin-top: 1em; }
.why2-text em { font-family: var(--serif); font-style: italic; color: var(--brown); font-size: 1.12em; }
@media (max-width: 860px) {
  .why2 { padding: clamp(40px, 8vw, 70px) 6.7%; }
  .why2-grid { grid-template-columns: 1fr; gap: 0; }
  .why2-media { order: -1; margin-bottom: 32px; min-height: 0; padding: 20px; }
  .why2-main { position: static; width: 100%; aspect-ratio: 3 / 4; }
  .why2-sub { position: absolute; right: 20px; bottom: 20px; width: 42%; }
  .why2-copy { padding: 0; }
}


/* ---------- ebook page ---------- */
.ebook-script {
  font-family: "La Belle Aurore", cursive !important;
  color: var(--salmon) !important;
}
.ebook-flip { position: relative; aspect-ratio: 640 / 1000; max-width: clamp(360px, 42vw, 500px); margin: 0 auto; width: 100%; }
.ebook-flip img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.ebook-flip img.is-on { opacity: 1; }
.ebook-price {
  font-family: var(--serif);
  color: var(--brown);
  font-size: clamp(30px, 3.4vw, 46px);
  margin-top: 22px !important;
}
.buy-row-left { justify-content: flex-start; }


/* ---------- contact page ---------- */
.contact-script, .checkout-script { font-family: "La Belle Aurore", cursive !important; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;   /* full width → image reaches the left padding edge */
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}
.contact-media { overflow: hidden; aspect-ratio: 1 / 1; }   /* square crop */
.contact-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.contact-grid .form { margin: 0; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-media { max-height: 60vh; }
}

/* ============================================
   INNER PAGES
   ============================================ */

.page-hero {
  text-align: center;
  padding: 70px 6% 30px;
}
.page-hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--maroon);
}
.page-hero h1 {
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.97;
  margin-top: 18px;
}
.page-hero .lede {
  max-width: 640px;
  margin: 28px auto 0;
  color: var(--brown);
  font-size: clamp(14px, 1.15vw, 17px);
}
.page-script {
  display: block;
  font-family: var(--script);
  font-size: clamp(30px, 3.4vw, 54px);
  color: var(--maroon);
  transform: rotate(-4deg);
  margin-top: 10px;
  text-transform: none;
}

.section { padding: 70px 6.7%; }
.section-tight { padding: 40px 6.7%; }

.band-blue  { background: var(--blue); border-top: 2px solid var(--brown); border-bottom: 2px solid var(--brown); }
.band-pink  { background: var(--pink); border-top: 2px solid var(--brown); border-bottom: 2px solid var(--brown); }
.band-green { background: var(--green); border-top: 2px solid var(--brown); border-bottom: 2px solid var(--brown); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col h2 { font-size: clamp(34px, 4.4vw, 64px); line-height: 1; }
.two-col .col-text { font-size: clamp(14px, 1.15vw, 17px); text-align: justify; }
.two-col .col-text p + p { margin-top: 1.1em; }
.two-col img { width: 100%; height: auto; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.card {
  border: 2px solid var(--brown);
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
}
.card.card-blue  { background: var(--blue); }
.card.card-pink  { background: var(--pink); }
.card.card-green { background: var(--green); }
.card h3 { font-size: clamp(26px, 2.4vw, 36px); line-height: 1.05; }
.card .card-sub {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--maroon);
}
.card p { margin-top: 18px; font-size: clamp(14px, 1.15vw, 17px); }
.card ul { margin: 18px 0 0 18px; font-size: clamp(14px, 1.15vw, 17px); }
.card ul li + li { margin-top: 8px; }
.card .price {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--brown);
  margin-top: 24px;
}
.card .btn { font-size: 14px; margin-top: 26px; align-self: flex-start; }

.center { text-align: center; }
.section h2.center-title {
  font-size: clamp(34px, 4.4vw, 64px);
  text-align: center;
  line-height: 1;
}
.section .center-sub {
  max-width: 620px;
  margin: 22px auto 0;
  text-align: center;
  font-size: clamp(14px, 1.15vw, 17px);
  color: var(--maroon);
}

/* schedule table (retreats) */
.schedule { max-width: 820px; margin: 48px auto 0; }
.schedule .row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 10px 26px;
  align-items: baseline;
  padding: 20px 6px;
  border-bottom: 1px solid var(--maroon);
}
.schedule .row:first-child { border-top: 1px solid var(--maroon); }
.schedule .time { font-size: 13px; letter-spacing: 0.08em; }
.schedule .what { font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); color: var(--brown); text-transform: uppercase; }
.schedule .who { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--maroon); }

/* photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.photo-strip img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; opacity: 0.9; }

/* forms (contact / ebook) */
.form {
  max-width: 620px;
  margin: 40px auto 0;
  display: grid;
  gap: 20px;
}
.form label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  color: var(--brown);
}
.form input, .form select, .form textarea {
  width: 100%;
  border: 2px solid var(--brown);
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 15px;
  color: var(--maroon);
  padding: 13px 14px;
  border-radius: 0;
}
.form textarea { min-height: 150px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--maroon);
  outline-offset: -2px;
}
.form .btn { font-size: 15px; border: 0; cursor: pointer; justify-self: start; }
.form-note { font-size: 12px; color: var(--maroon); }

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 50px auto 0;
  text-align: center;
}
.contact-details h3 { font-size: 26px; }
.contact-details p { margin-top: 10px; font-size: clamp(14px, 1.15vw, 17px); }

/* big CTA banner */
.cta-banner { text-align: center; padding: 90px 6%; }
.cta-banner h2 { font-size: clamp(36px, 5vw, 72px); line-height: 1; }
.cta-banner .btn { margin-top: 36px; font-size: clamp(16px, 1.6vw, 24px); }

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   ABOUT — hero + meet the founder (from Figma)
   ============================================ */

.script-aurore {
  font-family: "La Belle Aurore", cursive;
  color: var(--olive);
  display: block;
  transform: rotate(-2.84deg);
  font-size: clamp(26px, 2.75vw, 40px);
  /* tuck the script right under the headline like the Figma comp */
  margin-top: -0.25em;
}
.about-hero .lede { margin-top: 14px; }

.about-hero-media {
  position: relative;
  aspect-ratio: 1464 / 905;
  overflow: hidden;
  margin-top: 24px;
}
.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keep faces/heads in frame — show the upper part of the photo */
  object-position: 50% 18%;
}
.logo-strip {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(44px, 4.8vw, 70px);
  background: var(--strip-blue);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.strip-top { top: 0; }
.strip-bottom { bottom: 0; }
.logo-strip .strip-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.logo-strip .strip-group {
  display: flex;
  align-items: center;
  gap: clamp(36px, 3.8vw, 56px);
  padding-right: clamp(36px, 3.8vw, 56px);
}
.logo-strip img {
  width: clamp(92px, 9.5vw, 139px);
  height: clamp(28px, 2.9vw, 42px);
  object-fit: contain;
  /* global img{max-width:100%} makes imgs contribute 0 width to the
     track's max-content sizing, collapsing it — must undo it here */
  max-width: none;
  flex-shrink: 0;
}

.founder {
  padding: clamp(60px, 7vw, 104px) 6.7% clamp(50px, 6vw, 84px);
  overflow: hidden;
}
.founder-title {
  text-align: center;
  color: var(--salmon);
  font-size: clamp(44px, 10.2vw, 150px);
  line-height: 1;
  position: relative;
  z-index: 0;
  /* pull the grid up so the photo covers the title's lower half */
  margin-bottom: -0.32em;
}
.founder-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.founder-photo {
  position: relative;
  aspect-ratio: 476 / 620;
  z-index: 1;
}
.founder-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-script {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%) rotate(-2.84deg);
  z-index: 2;
  font-family: "La Belle Aurore", cursive;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 50px);
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}
.founder-col p { font-size: clamp(13px, 1vw, 15px); }
.founder-col p + p { margin-top: 1.4em; }
.founder-left {
  text-align: right;
  padding-top: clamp(30px, 7.5vw, 116px);
}
.founder-left .founder-mini {
  display: block;
  margin: 30px 0 0 auto;
  width: 70%;
}
.founder-right { padding-top: clamp(20px, 4.6vw, 72px); }
.founder-right .founder-mini {
  display: block;
  margin: 0 0 26px;
  width: 65%;
}
.founder-cta { text-align: center; margin-top: clamp(36px, 5vw, 64px); }
.founder-cta .btn { font-size: clamp(14px, 1.15vw, 17px); }

/* ---------- the study → scroll-reveal quote ---------- */
.study {
  --study-pad: clamp(28px, 3.2vw, 48px);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  /* one value everywhere so the photo sits the same distance from top/right as the section's left edge */
  padding: var(--study-pad);
}
.study .two-col {
  align-items: center;
  width: 100%;
  /* photo column gets the larger share */
  grid-template-columns: 1fr 1.25fr;
}
.study img {
  height: calc(100vh - 2 * var(--study-pad));
  height: calc(100svh - 2 * var(--study-pad));
  width: 100%;
  object-fit: cover;
}
.study-copy { padding-left: clamp(8px, 2.5vw, 40px); }
.study-title {
  font-family: var(--serif);
  text-transform: uppercase;
  color: var(--brown);
  font-size: clamp(22px, 2.5vw, 38px);
  line-height: 1.25;
  text-align: left;
}
.study-copy p + p { margin-top: 1.2em; }
.study-copy p:not(.study-title) { font-size: clamp(14px, 1.15vw, 17px); margin-top: 1.6em; }
.study-btn { margin-top: clamp(24px, 2.5vw, 40px); font-size: clamp(14px, 1.15vw, 17px); }

/* ---------- SŌMA anchors (4 pillars) ---------- */
.anchors {
  position: relative;
  padding: clamp(70px, 8vw, 120px) 6.7%;
  overflow: hidden;
}
.anchors-doodle { position: absolute; pointer-events: none; opacity: 0.4; z-index: 0; }
.anchors-doodle-1 { width: clamp(90px, 10vw, 150px); top: 3%; right: 6%; transform: rotate(14deg); }
.anchors-doodle-2 { width: clamp(120px, 14vw, 220px); bottom: 2%; left: 4%; }
/* hand-drawn curvy connector weaving between the four photos */
.anchors-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.anchors-line-path {
  stroke: var(--salmon);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 9;
  opacity: 0.75;
}
.anchors-title {
  text-align: center;
  color: var(--brown);
  font-size: clamp(40px, 7vw, 100px);
  line-height: 1;
  margin-bottom: clamp(48px, 6vw, 90px);
}
.anchor-row {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 5.5vw, 88px);
  align-items: center;
}
.anchor-row + .anchor-row { margin-top: clamp(56px, 7vw, 110px); }
.anchor-row.reverse .anchor-photo { order: -1; }
.anchor-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 40px);
  color: var(--salmon);
  line-height: 1;
}
.anchor-sub {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-top: 8px;
}
.anchor-name {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.05;
  margin: 12px 0 20px;
}
.anchor-copy p:not(.anchor-sub) { font-size: clamp(14px, 1.15vw, 17px); }
.anchor-copy p:not(.anchor-sub) + p { margin-top: 1.2em; }
/* tilted polaroid-style photo, mirrored on alternating rows */
.anchor-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  transform: rotate(2.2deg);
  box-shadow: 0 16px 38px rgba(89, 44, 48, 0.16);
}
.anchor-row.reverse .anchor-photo { transform: rotate(-2.2deg); }
.anchor-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- safe travels banner (window effect, like home CTA) ---------- */
.safe-travels {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: inset(0);
  text-align: center;
}
.safe-travels-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
  z-index: 0;
}
.safe-travels-copy {
  position: relative;
  z-index: 1;
  width: min(88%, 1000px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 3.5vw, 48px);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.safe-travels-copy h2 {
  color: #fff;
  font-size: clamp(34px, 5.5vw, 82px);
  line-height: 1.05;
}
.safe-travels-btn {
  font-size: clamp(14px, 1.15vw, 17px);
  text-shadow: none;
  background: var(--pink);
  color: var(--maroon);
}

/* ---------- inquire today ---------- */
.inquire {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inquire-grid {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.inquire .inquire-list { text-align: left; }
.inquire .form { margin: 0; }
.inquire-title {
  text-align: left;
  font-size: clamp(40px, 4.8vw, 70px);
  line-height: 1;
  margin-bottom: clamp(20px, 2.4vw, 34px);
}
.inquire .inquire-lead {
  /* same script as the hero's "breath move and restore" */
  font-family: "La Belle Aurore", cursive;
  text-transform: none;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.1;
  display: inline-block;
  margin-bottom: 16px;
}
.inquire ul { list-style: none; }
.inquire li {
  font-size: clamp(14px, 1.15vw, 17px);
  padding: 7px 0;
  border-bottom: 1px solid rgba(89, 44, 48, 0.18);
}
.inquire li:last-child { border-bottom: 0; }
.form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form .phone-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.5fr) 1fr;
  gap: 12px;
}

/* ---------- nothing changes ---------- */
.nothing {
  position: relative;
  min-height: clamp(480px, 78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px) 6.7%;
}
.nothing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(26px, 3vw, 42px);
  max-width: 860px;
}
.nothing-title {
  font-size: clamp(34px, 5vw, 74px);
  line-height: 1.05;
  text-wrap: balance;
}
.nothing-btn { font-size: clamp(14px, 1.15vw, 17px); }
/* photos flicker in and out at the edges — b&w, translucent, never over the copy */
.nothing-photos img {
  position: absolute;
  width: clamp(120px, 13vw, 200px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 1;
  pointer-events: none;
}
.nothing-photos img.show { opacity: 0.55; }
.nothing-photos img:nth-child(1) { top: 9%;  left: 6%; }
.nothing-photos img:nth-child(2) { top: 12%; right: 7%; }
.nothing-photos img:nth-child(3) { bottom: 16%; left: 3.5%; }
.nothing-photos img:nth-child(4) { bottom: 9%;  right: 9%; }
.nothing-photos img:nth-child(5) { top: 38%; left: 2.5%; }
.nothing-photos img:nth-child(6) { top: 42%; right: 3%; }
.nothing-photos img:nth-child(7) { top: 14%; left: 33%; }
.nothing-photos img:nth-child(8) { bottom: 14%; right: 33%; }

@media (max-width: 860px) {
  /* about page */
  .safe-travels { min-height: 78vh; }
  .stack-card { grid-template-columns: 1fr; position: static; }
  .stack-media { min-height: 300px; }
  .stack-media img { object-position: 50% 20%; }   /* keep faces in frame on mobile */
  /* study: stack (its .study .two-col had higher specificity than the base mobile rule) */
  .study { min-height: 0; padding: clamp(28px, 7vw, 48px) 6.7%; display: block; }
  .study .two-col { grid-template-columns: 1fr; gap: 26px; }
  .study img { height: auto; max-height: 56vh; }
  .study-copy { padding-left: 0; }
  /* founder doodles were 65-70% of a full-width column → shrink them */
  .founder-left .founder-mini, .founder-right .founder-mini { display: none; }
  /* coaching door hero: no animation on mobile (handled by coach-skip in head) */
  /* retreats hero: static stacked layout, no door effect on mobile */
  .rhero { height: auto !important; min-height: 0; display: flex; flex-direction: column; }
  .rhero-video { position: static; order: 2; width: 100%; height: 42vh; transform: none !important; }
  .rhero::after { display: none; }
  .rhero-panel { position: static; height: auto; transform: none !important; transition: none; padding: clamp(30px, 7vw, 48px) 6.7%; }
  .rhero-top { order: 1; padding-bottom: clamp(18px, 5vw, 30px); }
  .rhero-bottom { order: 3; padding-top: clamp(18px, 5vw, 30px); }
  .disconnect { min-height: 88vh; }
  .fb-panel.is-active { grid-template-columns: 1fr; gap: 22px; }
  .fb-portrait { max-width: 280px; margin: 0 auto; transform: rotate(-2deg); }
  .fb-arrow { display: none; }
  .becoming { grid-template-columns: 1fr; }
  .becoming-video { max-width: 380px; min-height: 0; aspect-ratio: 3 / 4; margin: 0 auto; }
  .inquire-grid { grid-template-columns: 1fr; gap: 36px; }
  .form .field-row { grid-template-columns: 1fr; }
  .nothing-photos img { width: 100px; }
  .anchor-row { grid-template-columns: 1fr; gap: 26px; }
  .anchor-row.reverse .anchor-photo { order: 0; }
  .anchor-photo { max-width: 420px; transform: rotate(1.5deg); }
  .founder-grid { grid-template-columns: 1fr; gap: 34px; margin-top: 10px; }
  .founder-photo { order: -1; max-width: 420px; margin: 26px auto 0; width: 100%; }
  .founder-left { text-align: left; padding-top: 0; }
  .founder-left .founder-mini { margin: 26px auto 0 0; }
  .founder-right { padding-top: 0; }
  .site-header { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-header .logo { order: -1; }
  .site-nav { justify-content: center; }
  .header-right { justify-self: center; }
  .split { grid-template-columns: 1fr; aspect-ratio: auto; }
  .split-vision .split-body { order: -1; }   /* text before image so sections alternate */
  .split .split-body { padding: 52px 8% 60px; }
  .split .split-text { max-width: none; }
  .split .split-media { aspect-ratio: 4 / 3; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }

  /* collages become stacked flows on small screens */
  .collage-1, .collage-2 { aspect-ratio: auto; padding: 40px 7% 10px; }
  /* pinned text becomes a normal block between hero and photos */
  .pinned-copy {
    position: static;
    transform: none;
    width: auto;
    color: var(--brown);
    padding: 44px 7% 10px;
  }
  .collage-1 .ph, .collage-2 .ph, .collage-2 .quote { position: static; width: 100%; margin: 0 0 22px; }
  .collage-2 .quote { text-align: center; }
  .collage-2 .quote-left { text-align: center; }
  .collage-1 .ph img { height: auto; }
  .collage-1 .ph-journal, .collage-1 .ph-friends { width: 100%; }
  .collage-2 .doodle-flower, .collage-2 .doodle-spiral { display: none; }
  .collage-2 .ph-pair, .collage-2 .ph-ceremony { width: 100%; }
  .collage-2 .ph { aspect-ratio: auto; }
  .collage-2 .ph img, .collage-2 .ph video { max-height: 60vh; object-fit: cover; }
  .schedule .row { grid-template-columns: 1fr; gap: 4px; }
  .hero { aspect-ratio: auto; min-height: 70vh; margin: 0 4%; }
  .hero .hero-content { margin: 80px 0; }

  /* new home sections */
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-media { aspect-ratio: 4 / 5; }
  .six-grid { grid-template-columns: 1fr; gap: 30px; }
  .six-peek { display: none; }
  .checkout-grid { grid-template-columns: 1fr; gap: 44px; }
  .checkout-summary-col { order: -1; }
  .cta-start-bg { object-position: 62% 40%; }
  .cta-start-copy { width: 100%; margin: 0; padding: 0 8%; }
}
