/* ============================================
   THE SOVEREIGN WOMAN — Landing Page Styles
   ============================================ */

@font-face {
  font-family: "Very Vogue Display";
  src: url("assets/fonts/veryvogue-display-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Very Vogue Display";
  src: url("assets/fonts/veryvogue-display-italic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Very Vogue Text";
  src: url("assets/fonts/veryvogue-text-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Very Vogue Text";
  src: url("assets/fonts/veryvogue-text-italic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  /* ---- Brand palette ---- */
  --cherry:   #7A0019;  /* CMYK 30 100 91 40 */
  --burgundy: #4D0012;  /* CMYK 43 90 71 66 */
  --plum:     #320F25;  /* CMYK 65 84 56 70 */
  --ivory:    #FAF1E7;  /* CMYK  1  4  8  0 */
  --nude:     #F6E6D6;  /* CMYK  3  9 14  0 */

  /* ---- Semantic aliases (keep existing API) ---- */
  --cream: var(--ivory);
  --cream-soft: var(--nude);
  --cream-divider: #EAD9C5;        /* tuned to sit between ivory & nude */
  --burgundy-deep: var(--plum);
  --wine: var(--cherry);
  --wine-hover: #5C0014;           /* darkened cherry for hover */
  --text-mute-on-cream: #6B4148;
  --text-mute-on-burgundy: #D6BDB0;

  --display: "Very Vogue Display", "Cormorant Garamond", serif;
  --body: "Libre Caslon Text", "Cormorant Garamond", serif;
  --cta: "Questrial", "Helvetica Neue", Arial, sans-serif;

  --max: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-y: clamp(56px, 8vw, 110px);

  --eyebrow-size: 12px;
  --eyebrow-track: 0.22em;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--burgundy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

/* ============== TYPOGRAPHY ============== */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.h1 { font-size: clamp(48px, 8vw, 116px); }
.h2 { font-size: clamp(40px, 6vw, 80px); }
.h3 { font-size: clamp(28px, 3.4vw, 44px); }

/* Section headings — all caps */
h2.display {
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.02;
}
h2.display em,
h2.display .italic-flourish {
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  text-wrap: pretty;
}
.subhead {
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.4;
}
.eyebrow {
  font-family: var(--cta);
  font-size: var(--eyebrow-size);
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  font-weight: 400;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.italic-flourish { font-style: italic; }

/* ============== LAYOUT ============== */
section { padding: var(--section-y) 0; position: relative; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.theme-cream { background: var(--cream); color: var(--burgundy); }
.theme-burgundy { background: var(--burgundy); color: var(--cream); }
.theme-burgundy .eyebrow { color: var(--cream); }
.theme-burgundy .eyebrow::before { background: var(--cream); opacity: 0.6; }
.theme-burgundy .mute { color: var(--text-mute-on-burgundy); }
.theme-cream .mute { color: var(--text-mute-on-cream); }

/* hairline divider */
.rule { width: 100%; height: 1px; background: currentColor; opacity: 0.18; }

/* ============== BUTTONS ============== */
.btn {
  font-family: var(--cta);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 32px;
  background: var(--wine);
  color: var(--cream);
  border: 1px solid var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background .25s ease, transform .25s ease;
  min-height: 56px;
  white-space: nowrap;
}
.btn:hover { background: var(--plum); border-color: var(--plum); color: var(--nude); }
.btn .arrow { font-family: var(--body); font-size: 16px; }
.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.btn-ghost:hover { background: currentColor; color: var(--burgundy); }
.theme-burgundy .btn-ghost:hover { color: var(--burgundy); }

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--burgundy);
  padding: 12px var(--gutter);
  border-bottom-color: rgba(250, 241, 231, 0.18);
}
.nav-logo { height: 44px; width: auto; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: var(--cta);
  font-size: 13.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 1;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 0.7; }
.nav-cta {
  font-family: var(--cta);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 20px;
  background: var(--nude);
  color: var(--plum);
  border: 1px solid var(--nude);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.nav-cta:hover {
  background: var(--plum);
  color: var(--nude);
  border-color: var(--plum);
}
.nav-toggle { display: none; }
.nav-cta .cta-short { display: none; }

/* ============== HERO ============== */
.hero {
  min-height: 86vh;
  min-height: 86svh;
  background: var(--burgundy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: flex-start;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(40, 26, 18, 0.62) 0%,
    rgba(60, 40, 26, 0.55) 35%,
    rgba(34, 22, 14, 0.72) 70%,
    rgba(10, 6, 4, 0.9) 100%);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(110px, 14vh, 150px) var(--gutter) 64px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-logo {
  width: clamp(280px, 38vw, 520px);
  height: auto;
  margin: 0 auto 40px;
}
.hero-eyebrow {
  font-family: var(--cta);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: none;
  color: #FFFFFF;
  opacity: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-eyebrow span { display: inline-block; }
.hero-eyebrow .dash {
  width: 28px; height: 1px;
  background: #FFFFFF; opacity: 0.7;
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 92px);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.02;
  color: var(--ivory);
}
.hero h1 em,
.hero h1 .italic-flourish {
  text-transform: uppercase;
  color: var(--ivory);
}
.hero .lead {
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--cream);
  opacity: 0.92;
  font-size: clamp(16px, 1.35vw, 19px);
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.btn-hero {
  background: var(--cherry);
  color: var(--nude);
  border-color: var(--cherry);
}
.btn-hero:hover {
  background: var(--plum);
  color: var(--nude);
  border-color: var(--plum);
}
.hero-trust {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  font-family: var(--cta);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 0 var(--gutter);
  z-index: 2;
}
.hero-trust .dot { opacity: 0.5; }
.hero-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-family: var(--cta);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-stars { color: #E8C788; letter-spacing: 2px; font-size: 14px; }

/* ============== HERO VIDEO ============== */
.hero-video {
  background: var(--burgundy);
  padding: 0;
}
.hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--burgundy);
  overflow: hidden;
  isolation: isolate;
}
.hero-video-el {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: var(--burgundy);
}
.hero-video-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 2;
  transition: opacity .4s ease;
}
.hero-video-frame.is-playing::after { opacity: 0; }

/* Bottom-right play badge — outlined ring + filled triangle */
.hero-video-play {
  position: absolute;
  right: 32px; bottom: 32px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  background: transparent;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
  transition: transform .25s ease, opacity .35s ease;
}
.hero-video-play:hover { transform: scale(1.05); }
.hero-video-play svg { display: block; }
.hero-video-frame.is-user-playing .hero-video-play { opacity: 0; pointer-events: none; }

/* Custom controls bar */
.hero-video-controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px 22px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.8) 100%);
  color: var(--nude);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
/* Controls only become accessible once the user has clicked the play badge.
   Visible on hover/focus during playback; always visible when paused. */
.hero-video-frame.is-user-playing:hover .hero-video-controls,
.hero-video-frame.is-user-playing:focus-within .hero-video-controls,
.hero-video-frame.is-user-playing.is-paused .hero-video-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.hvc-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--nude);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  padding: 0;
  flex-shrink: 0;
}
.hvc-btn:hover { background: rgba(255, 255, 255, 0.12); }
.hvc-btn svg { display: block; }
.hvc-icon-pause,
.hvc-icon-muted { display: none; }
.hero-video-frame.is-user-playing .hvc-toggle .hvc-icon-play { display: none; }
.hero-video-frame.is-user-playing .hvc-toggle .hvc-icon-pause { display: block; }
.hero-video-frame.is-user-playing.is-paused .hvc-toggle .hvc-icon-play { display: block; }
.hero-video-frame.is-user-playing.is-paused .hvc-toggle .hvc-icon-pause { display: none; }
.hero-video-frame.is-muted .hvc-mute .hvc-icon-sound { display: none; }
.hero-video-frame.is-muted .hvc-mute .hvc-icon-muted { display: block; }

.hvc-time {
  font-family: var(--cta);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--nude);
  opacity: 0.9;
  font-variant-numeric: tabular-nums;
  min-width: 38px;
  text-align: center;
}

.hvc-track {
  position: relative;
  flex: 1;
  height: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  outline: none;
}
.hvc-track::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
}
.hvc-buffered {
  position: absolute;
  left: 0; top: 50%;
  height: 3px;
  width: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  pointer-events: none;
}
.hvc-progress {
  position: absolute;
  left: 0; top: 50%;
  height: 3px;
  width: 0;
  transform: translateY(-50%);
  background: var(--nude);
  border-radius: 2px;
  pointer-events: none;
}
.hvc-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--nude);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.hvc-track:hover .hvc-thumb,
.hvc-track:focus-visible .hvc-thumb { opacity: 1; }
.hvc-track:focus-visible::before { background: rgba(255, 255, 255, 0.35); }

@media (max-width: 720px) {
  .hero-video-frame { aspect-ratio: 16 / 9; height: auto; min-height: 0; }
  .hero-video-play { right: 18px; bottom: 18px; width: 52px; height: 52px; }
  .hero-video-play svg { width: 52px; height: 52px; }
  .hero-video-controls { padding: 14px 14px 16px; gap: 10px; }
  .hvc-btn { width: 32px; height: 32px; }
  .hvc-time { font-size: 11px; min-width: 34px; }
}

/* Fullscreen sizing — let the video element fill the screen */
.hero-video-frame:fullscreen { height: 100vh; min-height: 0; }
.hero-video-frame:-webkit-full-screen { height: 100vh; min-height: 0; }

/* ============== FEATURE IMAGE (full-bleed) ============== */
.feature-image {
  padding: 0;
  background: var(--plum);
  overflow: hidden;
}
.feature-image img {
  width: 100%;
  height: clamp(520px, 90vh, 960px);
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
@media (max-width: 720px) {
  .feature-image img { height: clamp(380px, 68vh, 640px); }
}

/* ============== EMPATHY SECTION ============== */
.empathy { text-align: left; }
.empathy .wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
.empathy h2 { margin-top: 12px; }
.empathy-intro { font-size: clamp(19px, 1.7vw, 24px); line-height: 1.55; margin-bottom: 32px; color: var(--plum); }
.pain-list { display: grid; gap: 28px; }
.pain-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: baseline;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--cream-divider);
}
.pain-item:last-child { border-bottom: 0; }
.pain-num {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  opacity: 0.5;
}
.pain-text { font-size: 18px; line-height: 1.6; }
.empathy-close {
  margin-top: 56px;
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.25;
  font-style: italic;
  text-wrap: balance;
  text-align: center;
}

/* ============== SOVEREIGN SPACE (How you operate) ============== */
.space-section { padding-top: clamp(80px, 9vw, 140px); }
.hero-video + .space-section { padding-top: clamp(48px, 6vw, 80px); }
.space-section .wrap { max-width: 1100px; }
.space-head { text-align: center; margin-bottom: 40px; }
.space-head .eyebrow { justify-content: center; margin-bottom: 24px; }
.space-head h2 { margin: 0 auto 28px; }
.space-head h2 em.italic-flourish { color: #E8C788; }
.space-head .lead { max-width: 760px; margin: 0 auto; opacity: 0.88; font-size: clamp(16px, 1.3vw, 18.5px); line-height: 1.55; }
.operate-intro {
  display: block;
  max-width: 880px;
  margin: 0 auto 20px;
  text-align: left;
  font-family: var(--cta);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E8C788;
  opacity: 1;
  font-style: normal;
}
.operate-intro em { font-style: normal; opacity: 1; }
.operate-list { display: grid; gap: 2px; max-width: 880px; margin: 0 auto; }
.operate-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid rgba(250, 241, 231, 0.18);
  align-items: baseline;
}
.operate-item:last-child { border-bottom: 1px solid rgba(250, 241, 231, 0.18); }
.operate-label {
  font-family: var(--cta);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
}
.operate-text {
  font-family: var(--display);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.3;
}
.operate-text em { font-style: italic; opacity: 0.85; }
.space-close {
  margin-top: 64px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
}
.space-cta {
  text-align: center;
  margin-top: 36px;
}

/* ============== PILLARS (Sovereign Arc) ============== */
.arc-head { text-align: center; margin-bottom: 44px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.arc-head h2 { text-wrap: balance; }
.arc-head h2 em.italic-flourish { color: var(--cherry); }
.arc-head .eyebrow { justify-content: center; margin-bottom: 22px; }
.arc-head h2 { margin-bottom: 28px; }
.arc-head .lead { opacity: 0.85; }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 24px;
}
.pillar {
  background: var(--cream-soft);
  padding: 48px 44px 36px;
  border: 1px solid var(--cream-divider);
  border-radius: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pillar-num {
  font-family: var(--cta);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
  position: absolute;
  top: 36px; right: 36px;
}
.pillar-label {
  font-family: var(--cta);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
}
.pillar-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1;
  margin-bottom: 24px;
}
.pillar-blurb { font-size: 16px; line-height: 1.5; margin-bottom: 20px; }
.pillar-more {
  margin-top: auto;
}
.pillar-listhead {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 14px;
}
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 14px;
}
.pillar ul { display: grid; gap: 10px; }
.pillar ul li {
  font-size: 15px; line-height: 1.55;
  padding-left: 28px;
  position: relative;
}
.pillar ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A0019' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M4 12l5 5L20 6'/></svg>");
  opacity: 1;
}
.pillar-more summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cta);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cherry);
  padding: 4px 0;
  user-select: none;
  white-space: nowrap;
  align-self: flex-start;
}
.pillar-more summary::-webkit-details-marker { display: none; }
.pillar-more summary::marker { content: ""; }
.pillar-more .less-label { display: none; }
.pillar-more[open] .more-label { display: none; }
.pillar-more[open] .less-label { display: inline; }
.pillar-more .more-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s ease;
}
.pillar-more[open] .more-icon {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.pillar-more .pillar-listhead { margin-top: 28px; }
.arc-brochure {
  text-align: center;
  margin-top: 56px;
}
.arc-brochure .btn-ghost:hover {
  background: rgba(77, 0, 18, 0.1);
  color: inherit;
}

/* ============== MOMENTS GRID ============== */
.moments-section {
  padding: 0;
  background: var(--plum);
}
.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.moments-cell {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--plum);
}
.moments-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 960px) {
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .moments-cell { aspect-ratio: 1 / 1; }
}

/* ============== INCLUSIONS ============== */
.inclusions-head { text-align: center; max-width: 960px; margin: 0 auto 36px; }
.inclusions-head .eyebrow { justify-content: center; margin-bottom: 22px; }
.inclusions-head h2 { margin-bottom: 24px; }
.inclusions-head .lead { text-wrap: balance; }

.inclusions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250, 241, 231, 0.18);
  border-left: 1px solid rgba(250, 241, 231, 0.18);
  border-radius: 14px;
  overflow: hidden;
}
.inclusion {
  padding: 36px 28px 40px;
  border-right: 1px solid rgba(250, 241, 231, 0.18);
  border-bottom: 1px solid rgba(250, 241, 231, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.inclusion-num {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 32px;
  height: 32px;
  color: var(--nude);
  opacity: 0.85;
  margin-bottom: 6px;
}
.inclusion-num svg { width: 100%; height: 100%; display: block; }
.inclusion-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
}
.inclusion-text { font-size: 14.5px; line-height: 1.6; opacity: 0.9; }

/* ============== GALLERY ============== */
.gallery-head { text-align: center; margin-bottom: 64px; }
.gallery-head .eyebrow { justify-content: center; margin-bottom: 22px; }
.gallery-head h2 { margin-bottom: 16px; }
.gallery-head .sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  opacity: 0.78;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 16px;
}
.gal { overflow: hidden; position: relative; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gal:hover img { transform: scale(1.04); }
.g1 { grid-column: 1 / 7; grid-row: span 3; }
.g2 { grid-column: 7 / 13; grid-row: span 2; }
.g3 { grid-column: 7 / 10; grid-row: span 1; }
.g4 { grid-column: 10 / 13; grid-row: span 1; }
.g5 { grid-column: 1 / 5; grid-row: span 2; }
.g6 { grid-column: 5 / 9; grid-row: span 2; }
.g7 { grid-column: 9 / 13; grid-row: span 2; }

/* ============== STEPS ============== */
.steps-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--burgundy);
  background-image:
    linear-gradient(180deg,
      rgba(50, 15, 37, 0.78) 0%,
      rgba(77, 0, 18, 0.72) 45%,
      rgba(50, 15, 37, 0.92) 100%),
    url("assets/steps-meditation.jpg");
  background-size: cover, cover;
  background-position: center, center 65%;
  background-repeat: no-repeat, no-repeat;
}
.steps-head { text-align: center; margin-bottom: 80px; }
.steps-head .eyebrow { justify-content: center; margin-bottom: 22px; }
.steps-head h2 { margin-bottom: 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px; left: 8%; right: 8%; height: 1px;
  background: rgba(250, 241, 231, 0.2);
}
.step { position: relative; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(250, 241, 231, 0.35);
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.step-text { font-size: 15.5px; line-height: 1.6; opacity: 0.9; }

.usps-section { padding: 0; }
.usps-section .wrap { max-width: none; padding: 0; }
.usps-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
}
.usps-col-left {
  padding: var(--section-y) clamp(40px, 5vw, 80px) var(--section-y) var(--gutter);
  max-width: 780px;
  justify-self: end;
  width: 100%;
}
.usps-col-right {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}
.usps-col-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.usp-head { text-align: left; margin-bottom: 32px; }
.usp-head h2 { text-wrap: balance; }
.usp-head h2 em.italic-flourish { color: var(--cherry); }
.usps {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--cream-divider);
}
.usp {
  border-bottom: 1px solid var(--cream-divider);
}
.usp summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  user-select: none;
}
.usp summary::-webkit-details-marker { display: none; }
.usp summary::marker { content: ""; }
.usp-idx {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  opacity: 0.45;
}
.usp-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.usp-icon {
  width: 34px;
  height: 34px;
  position: relative;
  flex-shrink: 0;
  border: 1.2px solid currentColor;
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity .25s ease, transform .35s ease, background-color .25s ease;
}
.usp-icon::before,
.usp-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .35s ease, opacity .35s ease;
}
.usp-icon::before { left: 25%; right: 25%; top: 50%; height: 1.4px; transform: translateY(-50%); }
.usp-icon::after { top: 25%; bottom: 25%; left: 50%; width: 1.4px; transform: translateX(-50%); }
.usp summary:hover .usp-icon { opacity: 1; background: rgba(77, 0, 18, 0.06); }
.usp[open] .usp-icon { transform: rotate(180deg); }
.usp[open] .usp-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.usps-cta {
  margin-top: 36px;
  text-align: left;
}
.usp-text {
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.88;
  padding: 0 0 22px 0;
  margin: 0 74px 0 0;
  max-width: 560px;
}

/* ============== OUTCOMES ============== */
.outcomes .wrap { max-width: 1180px; }
.outcomes-close-wrap { grid-column: 1 / -1; }
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.outcomes-col-left h2 { text-align: left; margin-bottom: 28px; text-wrap: balance; font-size: clamp(38px, 5.2vw, 72px); line-height: 1; }
.outcomes-col-left h2 em.italic-flourish { color: #E8C788; }
.outcomes-open {
  text-align: left;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  margin-bottom: 0;
  max-width: 460px;
  color: var(--nude);
}
.outcomes-list { display: grid; gap: 2px; margin-bottom: 36px; }
.outcomes-item {
  padding: 26px 0;
  border-top: 1px solid rgba(250, 241, 231, 0.18);
  font-family: var(--display);
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.3;
  font-style: normal;
}
.outcomes-item .oi-lead { font-style: normal; }
.outcomes-item .oi-sep { font-style: normal; opacity: 0.7; }
.outcomes-item .oi-detail {
  font-family: var(--body);
  font-size: 0.7em;
  font-style: normal;
  letter-spacing: 0.01em;
  opacity: 0.92;
}
.outcomes-list .outcomes-item:last-child { border-bottom: 1px solid rgba(250, 241, 231, 0.18); }
.outcomes-close {
  text-align: center;
  max-width: 980px;
  margin: 32px auto 0;
  font-family: var(--cta);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  letter-spacing: 0.01em;
  font-style: normal;
  opacity: 0.92;
}

@media (max-width: 860px) {
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }
  .outcomes-open { max-width: none; }
  .outcomes-list { margin-bottom: 24px; }
  .outcomes-close { text-align: center; margin: 24px auto 0; }
}

/* ============== TESTIMONIALS ============== */
.testimonials-section .wrap { max-width: var(--max); }
.t-stars {
  color: #D4A340;
  letter-spacing: 10px;
  font-size: 30px;
  line-height: 1;
  margin-top: 22px;
  display: inline-block;
}
.t-head { text-align: center; margin-bottom: 32px; }
.t-head .eyebrow { justify-content: center; margin-bottom: 22px; }
.t-head h2 { margin-bottom: 14px; }
.t-head .sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  opacity: 0.78;
}

/* Full-bleed testimonials carousel */
.t-carousel-wrap {
  position: relative;
  width: 100%;
}
.t-carousel-fb {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px clamp(20px, 4vw, 72px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  scroll-behavior: smooth;
  align-items: stretch;
}
.t-carousel-fb.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.t-carousel-fb::-webkit-scrollbar { display: none; }
.t-carousel-fb .testimonial {
  flex: 0 0 calc((100vw - 2.2 * 18px - 2 * clamp(20px, 4vw, 72px)) / 3.2);
  user-select: none;
}
.t-carousel-fb.is-dragging .testimonial { pointer-events: none; }
.testimonial {
  background: var(--cream-soft);
  border: 1px solid var(--cream-divider);
  padding: 24px 24px 18px;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  min-height: 420px;
}

.t-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cherry);
  color: var(--cream);
  border: 0;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, opacity .3s ease, visibility .3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
}
.t-carousel-wrap:hover .t-carousel-btn,
.t-carousel-wrap:focus-within .t-carousel-btn,
.t-carousel-btn:focus-visible {
  opacity: 1;
  visibility: visible;
}
.t-carousel-btn:hover { background: var(--plum); }
.t-prev { left: clamp(16px, 3vw, 40px); }
.t-next { right: clamp(16px, 3vw, 40px); }
.t-carousel-btn svg { display: block; }

@media (max-width: 1024px) and (min-width: 721px) {
  .t-carousel-fb .testimonial {
    flex: 0 0 calc((100vw - 1.2 * 18px - 2 * clamp(20px, 4vw, 72px)) / 2.2);
  }
}
@media (max-width: 720px) {
  .t-carousel-fb { padding: 8px 18px; gap: 14px; }
  .t-carousel-fb .testimonial { flex: 0 0 calc(100vw - 56px); padding: 24px 22px 20px; min-height: 380px; }
  .t-carousel-btn { width: 40px; height: 40px; }
  .t-prev { left: 8px; }
  .t-next { right: 8px; }
}
.testimonial .mark {
  font-family: var(--display);
  font-size: 52px;
  line-height: 0.6;
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0.4;
}

/* Card layout: cite -> stars -> body -> read more */
.testimonial .testimonial-cite {
  margin-top: 0;
  margin-bottom: 8px;
  padding-top: 0;
  font-family: var(--cta);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  order: 1;
}
.testimonial .t-stars-card {
  color: #D4A340;
  letter-spacing: 4px;
  font-size: 16px;
  line-height: 1;
  margin: 0 0 18px;
  display: block;
  order: 2;
}
.testimonial .t-body {
  order: 3;
  position: relative;
  flex: 1 1 auto;
  overflow: visible;
  -webkit-mask-image: none;
          mask-image: none;
}
.testimonial .t-body p { font-size: 14px; line-height: 1.6; margin-bottom: 10px; }
.testimonial .t-body p + p { margin-top: 0; }
.testimonial .t-more { margin-top: 12px; }
.testimonial .t-more summary { list-style: none; }
.testimonial .t-more summary::-webkit-details-marker { display: none; }
.testimonial .t-more-content { margin-top: 14px; }
.testimonial .t-readmore {
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  display: inline-block;
  margin-top: 0;
  align-self: flex-start;
  cursor: pointer;
  font-family: var(--cta);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cherry);
  padding-bottom: 2px;
  user-select: none;
}
.testimonial .t-less-label { display: none; }
.testimonial .t-more[open] .t-readmore .t-more-label { display: none; }
.testimonial .t-more[open] .t-readmore .t-less-label { display: inline; }

/* ============== INVESTMENT ============== */
.investment-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--burgundy);
  background-image:
    linear-gradient(180deg,
      rgba(50, 15, 37, 0.78) 0%,
      rgba(77, 0, 18, 0.72) 45%,
      rgba(50, 15, 37, 0.9) 100%),
    url("assets/investment-bg.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.investment-section .invest-card {
  background: rgba(50, 15, 37, 0.45);
  border-color: rgba(250, 241, 231, 0.3);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
}
.invest-head { text-align: center; margin-bottom: 32px; }
.invest-head .eyebrow { justify-content: center; margin-bottom: 22px; }
.invest-head h2 { margin-bottom: 14px; max-width: 880px; margin-left:auto; margin-right:auto; }
.invest-head .date {
  font-family: var(--cta);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 18px;
}
.invest-body {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.92;
}
.invest-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 56px;
}
.invest-card {
  background: rgba(250, 241, 231, 0.06);
  border: 1px solid rgba(250, 241, 231, 0.22);
  border-radius: 14px;
  padding: 44px 40px;
  text-align: center;
}
.invest-card .tag {
  font-family: var(--cta);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
}
.invest-card .name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.invest-card .price {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  font-style: italic;
  margin-bottom: 8px;
}
.invest-card .price-note {
  font-family: var(--cta);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.invest-close {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 32px;
}

/* ============== FAQ ============== */
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-head .eyebrow { justify-content: center; margin-bottom: 22px; }
.faq-head h2 em.italic-flourish { color: var(--cherry); display: block; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cream-divider);
}
.faq-item:first-child { border-top: 1px solid var(--cream-divider); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 50px 28px 0;
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  color: var(--burgundy);
}
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--burgundy);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--burgundy);
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after { width: 1px; height: 10px; transition: transform .3s ease; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mute-on-cream);
}
.faq-a-inner { padding: 0 40px 28px 0; }
.faq-item.open .faq-a { max-height: 600px; }

/* ============== FOUNDER ============== */
.founder {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.2fr;
  align-items: stretch;
  padding: 0;
}
.founder-img-side {
  position: relative;
  background: rgba(250, 241, 231, 0.06);
  min-height: 560px;
}
.founder-img-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-text-side {
  padding: var(--section-y) var(--gutter) var(--section-y) clamp(40px, 5vw, 80px);
  max-width: 760px;
  align-self: center;
}
.founder-text-side .eyebrow { margin-bottom: 22px; }
.founder-eyebrow { font-size: 10.5px; letter-spacing: 0.26em; }
.founder-text-side h2 { margin-bottom: 32px; text-wrap: balance; }
.founder-text-side h2 em.italic-flourish { color: #E8C788; }
.founder-text-side p {
  font-size: 17.5px;
  line-height: 1.7;
  margin-bottom: 18px;
  opacity: 0.95;
}
.founder-text-side p:first-of-type {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.3;
  opacity: 1;
  margin-bottom: 28px;
}

/* ============== FINAL CTA + FORM ============== */
.final-cta {
  text-align: center;
  background: var(--cream);
}
.final-cta .wrap { max-width: 720px; }
.final-cta .eyebrow { justify-content: center; margin-bottom: 26px; }
.final-cta h2 { font-size: clamp(40px, 5.5vw, 76px); margin-bottom: 28px; }
.final-cta .lead { margin: 0 auto 40px; max-width: 540px; opacity: 0.92; }
.final-trust {
  margin-top: 40px;
  font-family: var(--cta);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.final-trust .dot { opacity: 0.5; }

/* ============== FOOTER ============== */
.footer {
  background: var(--burgundy-deep);
  color: var(--cream);
  padding: 64px 0 36px;
}
.footer .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.footer-logo { width: 180px; margin: 0 auto 8px; opacity: 0.95; }
.footer-tag {
  font-family: var(--cta);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.65;
}
.footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  font-family: var(--cta);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer-links a { opacity: 0.75; }
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(250, 241, 231, 0.12);
  margin-top: 48px;
  padding-top: 28px;
  text-align: center;
  font-family: var(--cta);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ============== CAROUSEL (mobile) ============== */
.carousel-wrap { position: relative; }
.carousel-controls {
  display: none;
  position: absolute;
  top: -56px; right: 0;
  gap: 10px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 18px;
  background: transparent;
  color: inherit;
  transition: background .2s, color .2s;
}
.carousel-btn:hover { background: currentColor; color: var(--burgundy); }
.theme-cream .carousel-btn:hover { color: var(--cream); }
.carousel-btn:disabled { opacity: 0.35; cursor: default; }
.carousel-btn:disabled:hover { background: transparent; color: inherit; }

/* ============== APPLICATION FORM ============== */
.apply-section {
  background: var(--plum);
  color: var(--cream);
  padding: var(--section-y) 0;
}
.apply-section .wrap { max-width: 820px; }
.apply-head { text-align: center; margin-bottom: 28px; }
.apply-head .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
  color: var(--cream);
  white-space: nowrap;
}
.apply-head .eyebrow::before { display: none; }
.apply-head h2 { margin-bottom: 18px; font-size: clamp(32px, 6vw, 80px); line-height: 1.05; max-width: min(1200px, 95vw); margin-left: auto; margin-right: auto; }
.apply-head h2 em.italic-flourish { color: #E8C788; }
.apply-head p { opacity: 0.88; max-width: 520px; margin: 0 auto; }
.apply-form { display: grid; gap: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  font-family: var(--cta);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.78;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.field label .req { color: var(--nude); opacity: 1; font-weight: 600; }
.field input,
.field select,
.field textarea {
  font-family: var(--cta);
  font-size: 15px;
  letter-spacing: 0.02em;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(250, 241, 231, 0.14);
  border-radius: 10px;
  color: var(--cream);
  padding: 16px 18px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(250, 241, 231, 0.04);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--cream); opacity: 0.35; font-family: var(--cta); }
.field select:invalid { color: rgba(250, 241, 231, 0.4); }
.field select option { color: var(--cream); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(250, 241, 231, 0.45);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 1px 0 rgba(250, 241, 231, 0.08), 0 0 0 3px rgba(250, 241, 231, 0.06);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cream) 50%), linear-gradient(135deg, var(--cream) 50%, transparent 50%); background-position: calc(100% - 22px) 24px, calc(100% - 16px) 24px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field select option { background: var(--plum); color: var(--cream); }
.field textarea { resize: vertical; min-height: 120px; padding-top: 16px; }
.form-submit { margin-top: -10px; text-align: left; }
.apply-form .btn-apply {
  background: var(--nude);
  color: var(--plum);
  border-color: var(--nude);
}
.apply-form .btn-apply:hover {
  background: var(--cherry);
  color: var(--nude);
  border-color: var(--cherry);
}
.btn-invite {
  background: var(--nude);
  color: var(--plum);
  border-color: var(--nude);
}
.btn-invite:hover {
  background: var(--cherry);
  color: var(--nude);
  border-color: var(--cherry);
}
.form-note {
  font-family: var(--cta);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
  text-align: center;
  margin-top: 18px;
}
.form-success {
  text-align: center;
  padding: 60px 20px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.3;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: inline-flex; padding: 10px 16px; font-size: 11px; }
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }
  .nav-toggle { display: none !important; }

  .empathy .wrap { grid-template-columns: 1fr; gap: 32px; }
  .founder { grid-template-columns: 1fr; }
  .founder-img-side { min-height: 0; aspect-ratio: 4/4.5; }
  .founder-text-side { padding: clamp(40px, 8vw, 80px) var(--gutter); align-self: start; max-width: none; }
  .pillars { grid-template-columns: 1fr; }
  .inclusions { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .steps::before { display: none; }
  .invest-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 120px;
  }
  .g1 { grid-column: 1 / 7; grid-row: span 2; }
  .g2 { grid-column: 1 / 4; grid-row: span 2; }
  .g3 { grid-column: 4 / 7; grid-row: span 1; }
  .g4 { grid-column: 4 / 7; grid-row: span 1; }
  .g5 { grid-column: 1 / 4; grid-row: span 2; }
  .g6 { grid-column: 4 / 7; grid-row: span 2; }
  .g7 { display: none; }

  .footer .wrap { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root {
    --section-y: 64px;
    --gutter: 22px;
  }
  body { font-size: 16px; }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-inner { padding: 110px 22px 64px; }
  .hero-logo { width: 70vw; max-width: 320px; margin-bottom: 28px; }
  .hero h1 { font-size: 40px; margin-bottom: 22px; }
  .hero .lead { font-size: 17px; margin-bottom: 32px; }
  .hero-cta-row { gap: 12px; margin-bottom: 36px; }
  .hero-cta-row .btn { width: 100%; }
  .hero-cta-row { flex-direction: column; width: 100%; max-width: 360px; margin-left: auto; margin-right: auto; margin-bottom: 36px; }
  .hero-trust { font-size: 10px; letter-spacing: 0.2em; gap: 8px; flex-direction: column; }
  .hero-trust .dot { display: none; }
  .hero-reviews { margin-bottom: 24px; font-size: 10px; }

  .btn { padding: 16px 24px; font-size: 12px; width: 100%; }
  .form-submit .btn { width: 100%; }

  .empathy-intro { font-size: 18px; margin-bottom: 36px; }
  .pain-item { grid-template-columns: 1fr; gap: 8px; padding-bottom: 22px; }
  .pain-num { font-size: 18px; }
  .pain-text { font-size: 17px; }
  .empathy-close { margin-top: 36px; font-size: 22px; }

  .operate-item { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .operate-label { font-size: 10px; }
  .operate-text { font-size: 20px; }
  .space-close { margin-top: 44px; font-size: 26px; }

  /* Pillars carousel */
  .pillars-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 22px;
    padding: 0 22px 8px;
    margin: 0 -22px;
    scrollbar-width: none;
  }
  .pillars-carousel::-webkit-scrollbar { display: none; }
  .pillars-carousel .pillar {
    flex: 0 0 83%;
    scroll-snap-align: start;
    padding: 36px 28px 32px;
  }
  .pillars { display: none; }
  .carousel-controls { display: flex; position: static; justify-content: flex-end; margin-top: 24px; }
  .arc-brochure { margin-top: 40px; }
  .arc-brochure .btn { width: 100%; }

  /* Inclusions carousel */
  .inclusions { display: none; }
  .inclusions-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 22px;
    padding: 0 22px 8px;
    margin: 0 -22px;
    scrollbar-width: none;
  }
  .inclusions-carousel::-webkit-scrollbar { display: none; }
  .inclusions-carousel .inclusion {
    flex: 0 0 80%;
    scroll-snap-align: start;
    border: 1px solid rgba(250, 241, 231, 0.18);
    padding: 28px 24px 32px;
  }

  /* Testimonials mobile sizing handled in dedicated .t-carousel-fb rules above */

  /* Investment carousel */
  .invest-cards { display: none; }
  .invest-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 22px;
    padding: 0 22px 8px;
    margin: 0 -22px;
    scrollbar-width: none;
  }
  .invest-carousel::-webkit-scrollbar { display: none; }
  .invest-carousel .invest-card {
    flex: 0 0 83%;
    scroll-snap-align: start;
    padding: 32px 26px;
  }

  .inclusions-head .lead { display: none; }

  .steps { grid-template-columns: 1fr; gap: 36px; }
  .step-num { width: 56px; height: 56px; font-size: 24px; margin-bottom: 18px; }
  .step-title { font-size: 24px; }

  .usps-grid { grid-template-columns: 1fr; }
  .usps-col-left { padding: clamp(56px, 8vw, 110px) var(--gutter); max-width: none; justify-self: stretch; }
  .usps-col-right { order: -1; min-height: 0; aspect-ratio: 16/10; }
  .usps-col-right img { position: relative; }
  .usp summary { grid-template-columns: 44px 1fr auto; gap: 14px; padding: 18px 0; }
  .usp-idx { font-size: 18px; }
  .usp-title { font-size: 18px; }
  .usp-icon { width: 30px; height: 30px; }
  .usp-text { padding: 0 0 18px 0; margin-right: 58px; font-size: 15px; }

  .outcomes-open { font-size: 22px; margin-bottom: 32px; }
  .outcomes-item { padding: 22px 0; font-size: 20px; }
  .outcomes-close { font-size: 16px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
    gap: 10px;
  }
  .g1, .g2, .g3, .g4, .g5, .g6 { grid-column: auto; grid-row: span 1; }
  .g1 { grid-column: 1 / -1; grid-row: span 2; }

  .invest-card .price { font-size: 44px; }
  .invest-card .name { font-size: 28px; }

  .faq-q { font-size: 19px; padding: 22px 40px 22px 0; }
  .faq-a-inner { padding-right: 0; font-size: 15.5px; }

  .founder-text-side p:first-of-type { font-size: 22px; }

  .final-cta h2 { font-size: 40px; }
  .final-trust { font-size: 10px; flex-direction: column; gap: 6px; }
  .final-trust .dot { display: none; }

  .footer-links { flex-wrap: wrap; gap: 18px; }

  .apply-section { padding: 64px 0; }
}

/* Hide carousel on desktop */
@media (min-width: 721px) {
  .pillars-carousel, .inclusions-carousel, .invest-carousel { display: none; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--burgundy-deep);
  z-index: 60;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform .35s ease;
}
.mobile-menu.open { display: flex; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--display);
  font-size: 36px;
  color: var(--cream);
  font-style: italic;
}
.mobile-menu .btn { margin-top: 20px; width: auto; padding: 18px 36px; }
.mobile-menu .close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 24px;
  font-family: var(--display);
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============== QUESTRIAL — synthetic medium ==============
   Questrial only ships in 400. Bump every CTA-family use to a
   slightly heavier optical weight via font-weight 500 + a faint
   text-stroke so it reads as medium across browsers. */
.eyebrow,
.btn,
.nav-links a,
.nav-cta,
.hero-eyebrow,
.hero-trust,
.hero-reviews,
.operate-label,
.pillar-label,
.testimonial-cite,
.invest-head .date,
.invest-card .tag,
.invest-card .price-note,
.final-trust,
.footer-tag,
.footer-links,
.footer-bottom,
.field label,
.form-note {
  font-weight: 500;
  -webkit-text-stroke: 0.32px currentColor;
  text-stroke: 0.32px currentColor;
}



/* =========================================================
   LOVABLE IMPORT — mobile optimisations & 1.2-card carousels
   ========================================================= */
@media (max-width: 720px) {
  :root { --gutter: 18px; --section-y: 56px; }
  body { font-size: 15.5px; }

  /* Tighter hero */
  .hero-inner { padding: 96px 18px 56px; }
  .hero h1 { font-size: 52px; line-height: 1.05; margin-bottom: 18px; }
  .hero .lead { font-size: 16px; margin-bottom: 26px; }
  .hero-eyebrow { font-size: 12px; gap: 10px; margin-bottom: 14px; }
  .hero-eyebrow .dash { width: 18px; }
  .hero-trust { bottom: 18px; font-size: 9.5px; gap: 4px; }

  /* Section heads compact */
  h2.display { font-size: clamp(40px, 10vw, 56px); }
  .lead { font-size: 16px; line-height: 1.55; }
  .eyebrow { font-size: 11px; }

  /* CTAs full width */
  .btn, .btn-hero, .btn-invite, .btn-ghost, .btn-apply,
  .hero-cta-row .btn, .space-cta .btn, .usps-cta .btn,
  .arc-brochure .btn, .form-submit .btn {
    width: 100% !important;
    max-width: 100%;
    padding: 16px 20px;
    font-size: 12px;
  }
  .hero-cta-row { width: 100%; max-width: none; }
  .space-cta, .usps-cta, .arc-brochure { width: 100%; }

  /* 1.2 cards visible — pillars / inclusions / invest */
  .pillars-carousel,
  .inclusions-carousel,
  .invest-carousel {
    display: flex !important;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 18px;
    padding: 4px 18px 12px;
    margin: 0 -18px;
    scrollbar-width: none;
  }
  .pillars-carousel .pillar,
  .inclusions-carousel .inclusion,
  .invest-carousel .invest-card {
    flex: 0 0 78%;          /* 1.2 cards visible (≈78% + peek of next) */
    scroll-snap-align: start;
  }
  .pillars, .inclusions, .invest-cards { display: none !important; }

  /* Show arrows on mobile too */
  .carousel-controls {
    display: flex !important;
    position: static;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
  }
  .carousel-btn {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
  }

  /* Inclusions: tighter padding inside cards */
  .inclusions-carousel .inclusion { padding: 24px 22px 26px; }
  .pillars-carousel .pillar { padding: 30px 24px 28px; }
  .invest-carousel .invest-card { padding: 28px 22px; }

  /* Empathy / operate spacing */
  .empathy-intro { font-size: 17px; margin-bottom: 28px; }
  .pain-item { padding-bottom: 18px; }
  .empathy-close, .space-close { font-size: 22px; margin-top: 32px; }

  /* Steps */
  .steps { gap: 28px; }
  .step-num { width: 48px; height: 48px; font-size: 20px; margin-bottom: 14px; }
  .step-title { font-size: 22px; }
  .step-text { font-size: 15px; }

  /* Outcomes */
  .outcomes-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .outcomes-open { font-size: 19px; margin-bottom: 24px; }
  .outcomes-item { font-size: 17px; padding: 18px 0; }
  .outcomes-close { font-size: 15px; margin-top: 24px; }

  /* Founder */
  .founder { grid-template-columns: 1fr !important; }
  .founder-img-side { aspect-ratio: 4/5; min-height: 0; }
  .founder-text-side { padding: 40px 22px; }
  .founder-text-side p:first-of-type { font-size: 19px; }
  .founder-text-side p { font-size: 15.5px; }

  /* FAQ */
  .faq-q { font-size: 16.5px; padding: 18px 36px 18px 0; }
  .faq-a-inner { font-size: 15px; padding-bottom: 20px; }

  /* Apply form */
  .apply-section { padding: 56px 0; }
  .apply-form { gap: 16px; }
  .field input, .field select, .field textarea { font-size: 16px; }

  /* Moments grid – tighter */
  .moments-grid { grid-template-columns: 1fr 1fr; gap: 6px; }

  /* Hero video shorter */
  .hero-video-frame { aspect-ratio: 16 / 9; height: auto; min-height: 0; }

  /* Nav compact */
  .nav { padding: 14px 18px; }
  .nav.scrolled { padding: 10px 18px; }
  .nav-logo { height: 36px; }
  .nav-cta { display: inline-flex; padding: 10px 16px; font-size: 11px; }
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }

  /* Footer stack */
  .footer .wrap { grid-template-columns: 1fr !important; gap: 24px; text-align: center; }
  .footer .wrap > div { text-align: center !important; }
  .footer-links { justify-content: center; }
}

/* Slightly smaller tablet sizing */
@media (max-width: 480px) {
  .hero h1 { font-size: 56px; }
  h2.display { font-size: 40px; }
  .pillars-carousel .pillar,
  .inclusions-carousel .inclusion,
  .invest-carousel .invest-card { flex: 0 0 82%; }
}

/* =========== AFTER GALLERY (4x2, no gutter, no hover) =========== */
.after-gallery { padding: 0; margin: 0; }
.after-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
}
.after-cell { margin: 0; padding: 0; overflow: hidden; aspect-ratio: 1 / 1; }
.after-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: none;
  transform: none;
}
.after-cell:hover img { transform: none; filter: none; }
@media (max-width: 768px) {
  .after-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); }
}

/* =========== BROCHURE MODAL =========== */
.brochure-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.brochure-modal.is-open { display: flex; }
.brochure-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 12, 0.72);
  backdrop-filter: blur(4px);
}
.brochure-modal-card {
  position: relative;
  background: var(--cherry);
  color: var(--cream);
  width: 100%;
  max-width: 520px;
  padding: 44px 40px 36px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.brochure-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
}
.brochure-modal-close:hover { opacity: 1; }
.brochure-form .field { margin-bottom: 18px; }
.brochure-form .req { color: var(--nude, #c9a87a); margin-left: 4px; }
.brochure-form .form-submit { margin-top: 28px; }
.brochure-form .brochure-submit { display: flex; width: 100%; justify-content: center; background: var(--nude); color: var(--cherry); border-color: var(--nude); }
.brochure-form .brochure-submit:hover { background: var(--plum); color: var(--nude); border-color: var(--plum); }
.brochure-form .form-note { margin-top: 14px; font-size: 12px; opacity: 0.65; text-align: center; }
@media (max-width: 480px) {
  .brochure-modal-card { padding: 36px 24px 28px; }
}
