/* Olga Moreno — Two-path funnel landing
   Warm creator aesthetic. Placeholder-safe. */

:root {
  --bg: #F6F1EA;
  --bg-soft: #EFE7DB;
  --ink: #1A1714;
  --ink-2: #3D3833;
  --ink-3: #6B625A;
  --line: rgba(26, 23, 20, 0.12);
  --line-strong: rgba(26, 23, 20, 0.22);
  --accent: #E8B4B0;                 /* Olga's dusty pink (from OM logo) */
  --accent-deep: #D89691;            /* deeper variant for hovers */
  --accent-ink: #1A1714;
  --realtor: #1A1714;                /* realtor path uses ink (matches O in logo) */
  --client:  #E8B4B0;                /* client path uses pink (matches M in logo) */
  --display: "Instrument Serif", "Times New Roman", serif;
  --ui: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --pad: 80px;
  --radius: 14px;
  --radius-lg: 24px;
}

html[data-dark="1"] {
  --bg: #141210;
  --bg-soft: #1D1916;
  --ink: #F3ECDF;
  --ink-2: #D8CFBE;
  --ink-3: #988E7D;
  --line: rgba(243, 236, 223, 0.14);
  --line-strong: rgba(243, 236, 223, 0.28);
}

html[data-density="airy"]  { --pad: 120px; }
html[data-density="cozy"]  { --pad: 80px; }
html[data-density="dense"] { --pad: 56px; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ── Type scale ───────────────────────────────────────── */

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 52ch;
  text-wrap: pretty;
}

/* ── Layout ──────────────────────────────────────────── */

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: var(--pad) 0; }

/* ── Nav ─────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  border-bottom: 0.5px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
}
html[data-dark="1"] .logo-mark { background: var(--accent); color: #1A1714; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--ink); }

/* ── Buttons ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-deep); color: #1A1714; }
.btn-accent {
  background: var(--accent);
  color: #1A1714;
}
.btn-accent:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: transparent; }
.btn-lg {
  padding: 18px 28px;
  font-size: 16px;
}

.arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Hero V2 (full-bleed photo + choose overlay) ─────── */

.hero-v2 {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: var(--bg);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 2.4s cubic-bezier(0.16, 0.84, 0.24, 1);
}
.hero-photo-grad {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(to bottom,
      color-mix(in oklch, var(--bg) 0%, transparent) 0%,
      color-mix(in oklch, var(--bg) 0%, transparent) 40%,
      color-mix(in oklch, var(--bg) 40%, transparent) 70%,
      var(--bg) 100%);
  transition: opacity 2.4s ease, background 2.4s ease;
}

/* Compressed state — photo stays full-bleed, just subtly darkens on the right */
.hero-v2.has-choice .hero-photo {
  inset: 0;
  width: 100%;
  border-radius: 0;
}
.hero-v2.has-choice .hero-photo img {
  transform: scale(1.15) translateX(-240px);
}
.hero-v2.has-choice .hero-photo-grad {
  opacity: 1;
  background:
    linear-gradient(to right,
      transparent 0%,
      transparent 35%,
      color-mix(in oklch, var(--bg) 40%, transparent) 55%,
      color-mix(in oklch, var(--bg) 85%, transparent) 70%,
      var(--bg) 82%);
}

/* ── Choose overlay (initial state) ──────────────────── */

.hero-choose {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 40px 80px;
  animation: chooseIn 0.5s ease;
}
@keyframes chooseIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-choose-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  width: 100%;
}

.hero-om {
  width: 48px; height: 48px;
  font-size: 20px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-prompt {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  height: 36px;
  max-width: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  transition: max-width 1.1s cubic-bezier(0.2, 0.8, 0.2, 1),
              padding 0.8s ease;
}
.hero-prompt.open {
  max-width: 320px;
  padding: 0 18px;
}
.hero-prompt-text {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.hero-prompt-caret {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--ink);
  margin-left: 2px;
  animation: blink 0.9s steps(1) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

.hero-choose-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 760px;
}

.choose-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 28px 60px 24px 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 0.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 20px 40px -20px rgba(26, 23, 20, 0.25),
              0 0 0 0 var(--accent);
  overflow: hidden;
}
.choose-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    color-mix(in oklch, var(--accent) 30%, transparent),
    transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.choose-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(26, 23, 20, 0.35),
              0 0 0 2px var(--bg);
}
.choose-btn:hover::after { opacity: 1; }
.choose-btn.choose-realtor:hover {
  background: var(--ink);
  color: var(--bg);
}
.choose-btn.choose-realtor:hover::after { opacity: 0; }
.choose-btn.choose-client:hover {
  background: var(--ink);
  color: var(--bg);
}
.choose-btn.choose-client:hover::after { opacity: 0; }

.choose-btn-label {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.choose-btn-sub {
  font-size: 13px;
  color: inherit;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.choose-btn svg {
  position: absolute;
  bottom: 24px;
  right: 24px;
  opacity: 0.5;
  z-index: 1;
}
.choose-btn:hover svg { opacity: 1; transform: translateX(3px); }

/* ── Chosen panel (form + copy) ──────────────────────── */

.chosen-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  z-index: 2;
  padding: max(88px, calc(env(safe-area-inset-top) + 64px)) 64px 64px 56px;
  background: transparent;
  display: flex;
  align-items: flex-start;
  overflow-y: auto;
  animation: chosenSlideIn 2.4s cubic-bezier(0.16, 0.84, 0.24, 1) both;
  animation-delay: 0s;
}
@keyframes chosenSlideIn {
  0% {
    transform: translateX(110%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.chosen-inner {
  max-width: 560px;
  width: 100%;
  animation: chosenContentFade 1.6s ease-out both;
  animation-delay: 0s;
  opacity: 0;
}
@keyframes chosenContentFade {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.chosen-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: transparent;
  border: 0.5px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.15s ease;
}
.chosen-back:hover { background: var(--ink); color: var(--bg); border-color: transparent; }

.chosen-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.chosen-copy .eyebrow {
  margin-bottom: 18px;
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 4px;
  letter-spacing: 0.1em;
}
.chosen-h1 {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0 0 24px;
  text-wrap: balance;
  color: var(--ink);
}
.chosen-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 48ch;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.chosen-stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 0.5px solid var(--line);
}
.chosen-stat-num {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.chosen-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-top: 6px;
}

.chosen-form .form-card {
  padding: 28px;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 0.5px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 30px 60px -20px rgba(26, 23, 20, 0.2);
}
.reviews-widget {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 8px;
}

.nav-reset {
  background: transparent;
  border: 0.5px solid var(--line-strong);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s ease;
}
.nav-reset:hover { background: var(--ink); color: var(--bg); border-color: transparent; }

@media (max-width: 900px) {
  .hero.hero-v2.has-choice {
    display: block;
    min-height: auto;
    padding: 0;
    overflow: visible;
  }

  .hero-v2.has-choice .hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(58svh, 480px);
    min-height: 340px;
    border-radius: 0;
  }

  .hero-v2.has-choice .hero-photo img {
    transform: none;
    object-position: center 22%;
  }

  .hero-v2.has-choice .hero-photo-grad {
    background:
      linear-gradient(to bottom,
        color-mix(in oklch, var(--bg) 0%, transparent) 0%,
        color-mix(in oklch, var(--bg) 0%, transparent) 50%,
        var(--bg) 100%);
  }

  .chosen-panel {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: auto;
    padding: 32px 20px 56px;
    display: block;
    overflow: visible;
    animation: none;
  }

  .chosen-inner {
    max-width: 100%;
    opacity: 1;
    animation: none;
  }

  .chosen-back {
    margin-bottom: 24px;
  }

  .chosen-grid {
    gap: 32px;
  }

  .chosen-h1 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .chosen-lede {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .chosen-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .chosen-stat-num {
    font-size: clamp(34px, 11vw, 44px);
  }

  .chosen-form {
    scroll-margin-top: 18px;
  }

  .chosen-form .form-card {
    padding: 22px;
    margin-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-choose-btns { grid-template-columns: 1fr; }
}

/* ── Hero ────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 48px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}
.hero-bg-dot {
  position: absolute;
  width: 1200px; height: 1200px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    color-mix(in oklch, var(--accent) 30%, transparent) 0%,
    transparent 60%);
  filter: blur(40px);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-side.left { text-align: right; align-items: flex-end; }
.hero-side.right { text-align: left; align-items: flex-start; }

.hero-side-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero-side-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 11ch;
}
.hero-side-sub {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 28ch;
  text-wrap: pretty;
}

.hero-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.olga-portrait {
  position: relative;
  width: 360px;
  height: 440px;
  overflow: hidden;
  border-radius: 200px 200px 20px 20px;
  background: var(--bg-soft);
  border: 0.5px solid var(--line);
  box-shadow: 0 30px 60px -20px rgba(26, 23, 20, 0.28);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.olga-portrait::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in oklch, var(--accent) 55%, transparent) 0%,
    transparent 70%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}
.olga-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 85%;
}
.olga-portrait .ph-caption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  padding: 4px 8px;
  border-radius: 4px;
}
.hero-quiz {
  position: relative;
  background: var(--bg);
  border: 0.5px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 18px;
  width: 360px;
  box-shadow: 0 20px 40px -20px rgba(26, 23, 20, 0.2);
  z-index: 3;
}
.hero-quiz-q {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 4px 0 14px;
  color: var(--ink);
}
.hero-quiz-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hero-quiz-opt {
  padding: 14px 12px;
  background: var(--bg-soft);
  border: 0.5px solid transparent;
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease;
  color: var(--ink);
}
.hero-quiz-opt:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}
.hero-quiz-opt.pink:hover {
  background: var(--accent);
  color: var(--ink);
}
.hero-quiz-opt-label {
  font-size: 11px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: inherit;
  opacity: 0.7;
  margin-bottom: 4px;
}
.hero-quiz-opt-title {
  font-size: 15px;
  font-weight: 500;
}

/* Door-reveal state */
.hero[data-reveal="realtor"] .hero-side.right { opacity: 0.25; transform: translateX(40px); filter: blur(2px); }
.hero[data-reveal="client"] .hero-side.left { opacity: 0.25; transform: translateX(-40px); filter: blur(2px); }
.hero[data-reveal="realtor"] .hero-side.left,
.hero[data-reveal="client"] .hero-side.right {
  transform: scale(1.02);
}
.hero-side { transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }

/* Hover door reveal */
.hero-quiz-opt.hover-realtor ~ .hero-side { /* cant use siblings that way */ }

/* side decoration — faint arrow pointing to center */
.side-arrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Sticky switcher ────────────────────────────────── */

.switcher {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  padding: 4px;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 10px 30px -10px rgba(26, 23, 20, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.switcher.visible { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.switcher-thumb {
  position: absolute;
  top: 4px; bottom: 4px;
  border-radius: 999px;
  background: var(--ink);
  transition: left 0.25s cubic-bezier(0.3, 0.7, 0.4, 1), width 0.25s;
}
.switcher button {
  position: relative;
  z-index: 1;
  padding: 8px 18px;
  background: transparent;
  border: 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  transition: color 0.2s;
}
.switcher button.active { color: var(--bg); }

/* ── Path sections (split columns) ──────────────────── */

.path-anchor {
  position: relative;
  padding-top: 40px;
}

.path {
  position: relative;
  border-top: 0.5px solid var(--line);
}
.path-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 40px 40px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: end;
}
.path-header .eyebrow span.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.path-realtor .eyebrow span.dot { background: var(--realtor); }
.path-client .eyebrow span.dot { background: var(--client); }

.path-title {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* ── Stats band ──────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  margin: 40px 0;
}
.stat {
  padding: 32px 28px;
  border-right: 0.5px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat-num .suffix {
  font-size: 0.55em;
  color: var(--ink-3);
  vertical-align: text-top;
  letter-spacing: 0;
  margin-left: 2px;
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-top: 10px;
}

/* ── Mastermind sections ────────────────────────────── */

.m-block {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  padding: 60px 40px;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 0.5px solid var(--line);
}
.m-block.reverse { grid-template-columns: 7fr 5fr; }
.m-block h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  font-weight: 400;
}
.m-block p { color: var(--ink-2); font-size: 16px; line-height: 1.6; margin: 0 0 14px; text-wrap: pretty; }

/* Pillars grid */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 0.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.pillar-idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
}
.pillar-title {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.pillar-desc { font-size: 14px; color: var(--ink-2); margin-top: auto; }

/* ── Video tiles ─────────────────────────────────────── */

.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  border: 0.5px solid var(--line);
}
.video .ph-caption {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}
.video-meta {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  z-index: 2;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
}
.video-title {
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.video-views {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}
.video-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 45%);
  z-index: 1;
}

/* ── Form ────────────────────────────────────────────── */

.form-card {
  background: var(--bg);
  border: 0.5px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 60px -30px rgba(26, 23, 20, 0.2);
}
.form-card h3 {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  margin: 0 0 8px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.form-card .sub {
  color: var(--ink-3);
  font-size: 14px;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row.single { grid-template-columns: 1fr; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 0.5px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg);
}
.field .err {
  font-size: 12px;
  color: oklch(58% 0.18 25);
  margin-top: 4px;
  font-family: var(--mono);
}
.field input[aria-invalid="true"] { border-color: oklch(58% 0.18 25); }

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
  transition: all 0.15s ease;
}
.form-submit:hover:not(:disabled) { background: var(--accent); color: #fff; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-error {
  color: oklch(58% 0.18 25);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
  margin-top: 10px;
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 20px 0;
}
.form-success h3 {
  font-family: var(--display);
  font-size: 36px;
  margin: 0 0 8px;
  font-weight: 400;
}

/* ── Client path big CTA card ───────────────────────── */

.client-cta {
  margin: 40px auto 0;
  max-width: 1200px;
  padding: 0 40px;
}
.client-cta-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
  min-height: 440px;
}
.client-cta-card .cta-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.client-cta-card .cta-sub {
  font-size: 18px;
  color: color-mix(in oklch, var(--bg) 75%, transparent);
  max-width: 40ch;
  text-wrap: pretty;
  margin-bottom: 28px;
}
.client-cta-card .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 30px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  transition: transform 0.2s ease;
}
.client-cta-card .cta-link:hover { transform: translateY(-2px); }
.client-cta-card .cta-domain {
  font-family: var(--mono);
  font-size: 12px;
  color: color-mix(in oklch, var(--bg) 55%, transparent);
  margin-top: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.client-cta-card .cta-house {
  aspect-ratio: 4/5;
  background: color-mix(in oklch, var(--bg) 20%, transparent);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.client-cta-card .cta-house .ph-caption {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: color-mix(in oklch, var(--bg) 65%, transparent);
  background: rgba(0,0,0,0.35);
  padding: 4px 8px;
  border-radius: 4px;
}

/* ── Client listings strip ──────────────────────────── */

.listings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 40px;
  max-width: 1280px;
  margin: 40px auto 0;
}
.listing {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
  border: 0.5px solid var(--line);
}
.listing .ph-caption {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  padding: 4px 8px;
  border-radius: 4px;
}
.listing .badge {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 11px;
  background: var(--bg);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

/* ── Testimonials ───────────────────────────────────── */

.testimonials-wrap {
  padding: 80px 40px;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 0.5px solid var(--line);
}
.testimonials-head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.testimonials-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 12px 0 0;
  text-wrap: balance;
}
.testimonials-head .rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.testimonials-head .rating .stars { color: #F5B800; font-size: 16px; letter-spacing: 2px; }

.testimonials-grid {
  columns: 3;
  column-gap: 16px;
}
@media (max-width: 900px) { .testimonials-grid { columns: 1; } }
@media (max-width: 1200px) and (min-width: 901px) { .testimonials-grid { columns: 2; } }

.testimonial {
  break-inside: avoid;
  margin-bottom: 16px;
  padding: 24px;
  background: var(--bg);
  border: 0.5px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.2s ease;
}
.testimonial:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.testimonial.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.testimonial.featured .t-stars { color: var(--accent); }
.testimonial.featured .t-name { color: var(--bg); }
.testimonial.featured .t-meta { color: color-mix(in oklch, var(--bg) 60%, transparent); }

.t-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  flex-shrink: 0;
}
.testimonial.featured .t-avatar { background: color-mix(in oklch, var(--bg) 18%, transparent); color: var(--bg); }
.t-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.t-meta { font-size: 11px; font-family: var(--mono); color: var(--ink-3); letter-spacing: 0.05em; }
.t-stars { font-size: 13px; color: #F5B800; letter-spacing: 1px; }
.t-body { font-size: 14px; line-height: 1.55; color: inherit; text-wrap: pretty; }
.testimonial.featured .t-body { color: var(--bg); }

.t-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 4px;
  align-self: flex-start;
}

/* ── About strip ─────────────────────────────────────── */

.about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  padding: 80px 40px;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 0.5px solid var(--line);
  align-items: center;
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 0.5px solid var(--line);
  position: relative;
}
.about-photo .ph-caption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  background: color-mix(in oklch, var(--bg) 80%, transparent);
  padding: 4px 8px;
  border-radius: 4px;
}
.about h2 {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 20px;
  text-wrap: balance;
}
.about p { color: var(--ink-2); font-size: 17px; line-height: 1.55; margin: 0 0 14px; max-width: 52ch; }

/* ── Footer ──────────────────────────────────────────── */

.footer {
  border-top: 0.5px solid var(--line);
  padding: 60px 40px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer a { display: block; color: var(--ink-2); margin-bottom: 8px; font-size: 14px; }
.footer a:hover { color: var(--ink); }
.footer-bot {
  display: flex;
  justify-content: space-between;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 0.5px solid var(--line);
}

/* ── Placeholder treatment ──────────────────────────── */

.ph {
  background-image:
    repeating-linear-gradient(
      135deg,
      color-mix(in oklch, var(--ink) 5%, transparent) 0,
      color-mix(in oklch, var(--ink) 5%, transparent) 8px,
      transparent 8px,
      transparent 16px
    );
}

/* ── Utility ─────────────────────────────────────────── */

.spacer-sm { height: 24px; }
.spacer-md { height: 60px; }
.spacer-lg { height: 120px; }

.muted { color: var(--ink-3); }
.accent-ink { color: var(--accent); }

/* Reveal entrance */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-up.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-side { align-items: center !important; text-align: center !important; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .pillars, .videos, .listings { grid-template-columns: 1fr; }
  .m-block, .m-block.reverse, .about, .client-cta-card { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .path-header { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .switcher { top: 72px; }

  .chosen-form .form-row {
    grid-template-columns: 1fr;
  }
}
