/* Signature Staging home — layout + immersion */
@import url("nav-shell.css");

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .room-media img, .reveal, .mark-draw { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

/* —— Lab banner —— */
.site-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--mark);
  color: var(--void);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.45rem 1rem;
}
.site-banner a { color: var(--void); text-decoration: underline; text-underline-offset: 2px; }

/* —— Nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--pad-x);
  background: rgba(14, 17, 20, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-on-void);
  color: var(--paper);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--paper);
}
.site-logo img {
  display: block;
  height: 36px;
  width: auto;
  /* Nav sits on dark chrome — invert the black wordmark */
  filter: brightness(0) invert(1);
}
.site-nav-links {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: center;
  list-style: none;
}
.site-nav-links a {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(235, 230, 223, 0.7);
  transition: color 0.2s var(--ease);
}
.site-nav-links a:hover { color: var(--paper); }
.site-nav-cta {
  background: var(--mark) !important;
  color: var(--void) !important;
  padding: 0.55rem 1rem !important;
  border-radius: var(--radius);
  font-weight: 500 !important;
}
.site-nav-cta:hover { filter: brightness(1.08); }
.site-nav-cta-compact { display: none; }
@media (max-width: 900px) {
  .site-nav-cta-compact { display: inline-flex !important; }
}

/* —— Buttons —— */
.btn-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mark);
  color: var(--void);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-mark:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost {
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(235, 230, 223, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--paper); color: #fff; }
.btn-ghost-dark {
  color: var(--ink);
  border-bottom-color: rgba(18, 21, 26, 0.3);
}
.btn-ghost-dark:hover { color: var(--ink); border-color: var(--ink); }

/* —— Header fades with --nav-veil (0 visible → 1 gone). Driven by home.js —— */
.site-banner {
  opacity: calc(1 - var(--nav-veil, 0));
  transform: translateY(calc(var(--nav-veil, 0) * -8px));
  pointer-events: none;
}
.site-nav {
  opacity: calc(1 - var(--nav-veil, 0));
  transform: translateY(calc(var(--nav-veil, 0) * -6px));
  pointer-events: auto;
  /* Keep sticky layout from earlier .site-nav rule; veil only fades. */
}
body.is-nav-veiled .site-nav,
body.is-nav-veiled .site-banner {
  pointer-events: none;
}

/* —— FRONT DOOR — glass only; Living is the house pin underneath —— */
.door {
  position: relative;
  z-index: 5;
  height: var(--door-scroll, 220vh);
  /* Must stay transparent — opaque bg would paint over Living underneath */
  background: transparent;
  color: var(--paper);
}
.door-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: transparent;
  z-index: 5;
  pointer-events: none;
}
.door-world {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
/* Door leaf only: frost + backdrop blur of real Living — no duplicate image */
.door-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.15%;
  overflow: hidden;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(255, 255, 255, 0.06) 30%,
      transparent 52%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    rgba(235, 230, 223, 0.42);
  backdrop-filter: blur(20px) saturate(1.05);
  -webkit-backdrop-filter: blur(20px) saturate(1.05);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 0 0 1px rgba(196, 163, 90, 0.25),
    inset 0 0 40px rgba(255, 255, 255, 0.08);
}
.door-slide-l {
  left: 0;
  border-right: 2px solid rgba(196, 163, 90, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(196, 163, 90, 0.25),
    inset 0 0 48px rgba(255, 255, 255, 0.12),
    14px 0 40px rgba(0, 0, 0, 0.2);
}
.door-slide-r {
  right: 0;
  border-left: 2px solid rgba(196, 163, 90, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(196, 163, 90, 0.25),
    inset 0 0 48px rgba(255, 255, 255, 0.12),
    -14px 0 40px rgba(0, 0, 0, 0.2);
}
.door-slide::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}
.door-leaf-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(78%, 14rem);
  z-index: 2;
  filter: drop-shadow(0 2px 14px rgba(5, 6, 7, 0.35));
  pointer-events: none;
  text-align: center;
}
.door-leaf-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.door-hint-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  z-index: 6;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.door-hint {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14, 17, 20, 0.55);
  animation: hint-pulse 2.4s ease-in-out infinite;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.5);
}
@keyframes hint-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) {
  .door-hint { animation: none; opacity: 0.7; }
}

body.is-at-door {
  background: #050607;
}
html:has(body.is-at-door) {
  background: #050607;
}
/* Header fade is --nav-veil only (no height collapse — that caused jank). */

/* —— HOUSE —— aligned under front door (margin matches --door-scroll) */
.house {
  height: var(--walk-scroll);
  position: relative;
  margin-top: calc(-1 * var(--door-scroll, 220vh));
  background: #050607;
  z-index: 1;
}
.house-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  cursor: crosshair;
  perspective: 1800px;
  perspective-origin: 50% 48%;
  z-index: 1;
}
.house-stage {
  position: absolute;
  inset: -6%;
  z-index: 0;
  will-change: transform;
  transform-style: preserve-3d;
}
/* Door / exit glass: Living (or last room) must stay a flat full-bleed still.
   perspective + walk transforms make backdrop-filter sample nothing. */
body.is-at-door .house-pin,
body.is-flat-house .house-pin {
  perspective: none;
}
body.is-at-door .house-stage,
body.is-flat-house .house-stage {
  inset: 0;
  transform: none !important;
  transform-style: flat;
  will-change: auto;
}
body.is-at-door .house-frame,
body.is-at-door .house-frame img,
body.is-flat-house .house-frame,
body.is-flat-house .house-frame img {
  transform: none !important;
  filter: none !important;
  will-change: auto;
}
body.is-at-door .house-threshold,
body.is-flat-house .house-threshold {
  opacity: 0 !important;
}
body.is-at-door .house-doorway,
body.is-flat-house .house-doorway {
  opacity: 0 !important;
}
.house-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 48%;
  will-change: transform, opacity, filter, clip-path;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}
.house-frame.is-active {
  opacity: 1;
}
.house-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Match Living data-motion origin so door→walk doesn’t crop-jump */
  object-position: 38% 44%;
  will-change: transform;
}
/* Tiny detail: soft light glint when a room is “settled” in frame */
.house-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      115deg,
      transparent 42%,
      rgba(235, 230, 223, 0.07) 50%,
      transparent 58%
    );
  transform: translate3d(calc((1 - var(--glint, 0)) * -18%), 0, 0);
  transition: opacity 0.45s var(--ease);
  mix-blend-mode: soft-light;
}
.house-frame.is-lit::after {
  opacity: calc(0.35 + var(--glint, 0) * 0.65);
}
/* Per-motion edge tint — barely there, but each room reads different */
.house-frame[data-motion="wide"]::before,
.house-frame[data-motion="nook"]::before,
.house-frame[data-motion="island"]::before,
.house-frame[data-motion="suite"]::before,
.house-frame[data-motion="ensuite"]::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 2;
}
.house-frame.is-lit::before { opacity: 1; }
.house-frame[data-motion="wide"]::before {
  background: radial-gradient(ellipse at 30% 40%, rgba(196, 163, 90, 0.08), transparent 55%);
}
.house-frame[data-motion="nook"]::before {
  background: radial-gradient(ellipse at 70% 35%, rgba(235, 230, 223, 0.06), transparent 50%);
}
.house-frame[data-motion="island"]::before {
  background: radial-gradient(ellipse at 50% 70%, rgba(196, 163, 90, 0.1), transparent 55%);
}
.house-frame[data-motion="suite"]::before {
  background: radial-gradient(ellipse at 40% 30%, rgba(14, 17, 20, 0.12), transparent 60%);
}
.house-frame[data-motion="ensuite"]::before {
  background: radial-gradient(ellipse at 55% 55%, rgba(235, 230, 223, 0.09), transparent 50%);
}
.house-vignette {
  position: absolute;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(5, 6, 7, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.18) 0%, transparent 28%, transparent 68%, rgba(5, 6, 7, 0.52) 100%);
}
.house-threshold {
  position: absolute;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  /* Soft depth veil during shoulder-pass — never a full black flash */
  background: #050607;
  opacity: 0;
  will-change: opacity;
}

/* —— Enfilade doorway: carpentry + hinged leaf ——
   JS drives box geometry + --case; leaf uses --leaf-rot (deg) and hinge side. */
.house-doorway {
  position: absolute;
  z-index: 42;
  opacity: 0;
  pointer-events: none;
  border-radius: 0;
  overflow: visible;
  perspective: 900px;
  perspective-origin: 50% 50%;
  box-shadow:
    0 0 0 1px rgba(5, 6, 7, 0.55),
    0 0 0 var(--case, 10px) #d9d2c6,
    0 0 0 calc(var(--case, 10px) + 1px) rgba(5, 6, 7, 0.45),
    0 26px 70px rgba(0, 0, 0, 0.5);
  will-change: opacity;
  contain: layout style;
}
.house-doorway::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow:
    inset 10px 0 14px -8px rgba(5, 6, 7, 0.72),
    inset -10px 0 14px -8px rgba(5, 6, 7, 0.72),
    inset 0 14px 16px -8px rgba(5, 6, 7, 0.78);
}
.house-doorway::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 6%;
  right: 6%;
  height: 18px;
  margin-top: var(--case, 10px);
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 181, 110, 0.38), transparent 70%);
  filter: blur(6px);
  opacity: 0.6;
}
.house-doorway-lintel {
  position: absolute;
  left: 50%;
  bottom: calc(100% + var(--case, 10px) + 8px);
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(196, 163, 90, 0.85);
  text-shadow: 0 1px 10px rgba(5, 6, 7, 0.8);
}
/* Painted interior door leaf — hinges open to reveal the next staged room */
.house-door-leaf {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform-style: preserve-3d;
  transform-origin: left center;
  transform: rotateY(var(--leaf-rot, 0deg));
  will-change: transform, opacity;
  backface-visibility: hidden;
  /* GPU layer — cuts wheel-step shimmer on the slab + logo */
  translate: 0 0 0.01px;
}
.house-doorway.is-hinge-right .house-door-leaf {
  transform-origin: right center;
}
.house-door-leaf-panel {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.18), transparent 12%, transparent 88%, rgba(5, 6, 7, 0.12)),
    linear-gradient(180deg, #cfc7b8 0%, #b9b0a0 42%, #a89f8f 100%);
  box-shadow:
    inset 0 0 0 1px rgba(235, 230, 223, 0.22),
    inset 0 0 0 7px rgba(90, 78, 58, 0.12),
    inset 0 0 28px rgba(5, 6, 7, 0.18);
}
.house-door-leaf-panel::before {
  content: "";
  position: absolute;
  inset: 11% 14%;
  border: 1px solid rgba(5, 6, 7, 0.16);
  box-shadow: inset 0 0 0 1px rgba(235, 230, 223, 0.12);
}
.house-door-leaf-logo {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 2;
  width: min(62%, 5.5rem);
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 1px 6px rgba(5, 6, 7, 0.28));
  text-align: center;
}
.house-door-leaf-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.92;
}
.house-door-leaf-knob {
  position: absolute;
  top: 48%;
  right: 11%;
  z-index: 3;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e8d5a3, #9a7b3c 70%);
  box-shadow: 0 1px 3px rgba(5, 6, 7, 0.45);
}
.house-doorway.is-hinge-right .house-door-leaf-knob {
  right: auto;
  left: 11%;
}
@media (prefers-reduced-motion: reduce) {
  .house-doorway { display: none; }
}

/* Exit — glass sliders; copy rides on the leaves; CTAs sit on each door */
.exit {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
}
.exit.is-live {
  opacity: 1;
}
.exit.is-closed {
  pointer-events: auto;
}
.exit-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  overflow: hidden;
  will-change: transform;
}
.exit-slide-l { left: 0; }
.exit-slide-r { right: 0; }
.exit-glass {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.04) 30%,
      transparent 50%,
      rgba(255, 255, 255, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(14, 17, 24, 0.62) 0%,
      rgba(10, 12, 18, 0.78) 100%
    );
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border: 1px solid rgba(196, 163, 90, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.exit-slide-l .exit-glass {
  border-right: 2px solid rgba(196, 163, 90, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    10px 0 28px rgba(0, 0, 0, 0.35);
}
.exit-slide-r .exit-glass {
  border-left: 2px solid rgba(196, 163, 90, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    -10px 0 28px rgba(0, 0, 0, 0.35);
}
.exit-glass::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  border: 1px solid rgba(196, 163, 90, 0.16);
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.exit.is-sealed .exit-slide-l .exit-glass {
  border-right-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.exit.is-sealed .exit-slide-r .exit-glass {
  border-left-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.exit.is-sealed .exit-glass::before {
  opacity: 0;
}
/* Full layout mirrored on each leaf (2× leaf width = full stage); overflow clips to half */
.exit-face {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8% 5.5rem;
  box-sizing: border-box;
  color: var(--paper);
  pointer-events: none;
}
.exit-slide-l .exit-face {
  left: 0;
}
.exit-slide-r .exit-face {
  right: 0;
  left: auto;
}
/* CTA bolted to its own leaf — moves with that door */
.exit-door-cta {
  position: absolute;
  z-index: 4;
  top: 72%;
  transform: translateY(-50%);
  pointer-events: none;
  white-space: nowrap;
}
.exit-slide-l .exit-door-cta {
  right: clamp(1rem, 6%, 2.5rem);
}
.exit-slide-r .exit-door-cta {
  left: clamp(1rem, 6%, 2.5rem);
}
.exit.is-closed .exit-door-cta {
  pointer-events: auto;
}
/* Perfect single copy once the doors meet */
.exit-seal {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad-x) 5.5rem;
  box-sizing: border-box;
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
}
.exit-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0.35rem 0 0.85rem;
  max-width: 34rem;
  text-shadow: 0 2px 24px rgba(5, 6, 7, 0.85);
}
.exit .exit-door-kicker {
  text-shadow: 0 1px 12px rgba(5, 6, 7, 0.8);
}
.exit .exit-door-lede {
  color: rgba(235, 230, 223, 0.78);
  text-shadow: 0 1px 10px rgba(5, 6, 7, 0.75);
}
.exit-door-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mark);
  margin-bottom: 0.75rem;
}
.exit-door-lede {
  color: rgba(235, 230, 223, 0.78);
  line-height: 1.7;
  margin: 0;
  max-width: 32rem;
}
.house-fact {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 4.25rem;
  z-index: 4;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 350;
  line-height: 1.25;
  color: rgba(235, 230, 223, 0.92);
  text-shadow: 0 2px 24px rgba(5, 6, 7, 0.7);
  max-width: 28rem;
  pointer-events: none;
}
.house-quote {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 4.25rem;
  z-index: 4;
  max-width: min(36rem, 92vw);
  pointer-events: none;
}
.house-quote[hidden] { display: none !important; }
.house-quote-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 300;
  color: var(--mark);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 24px rgba(5, 6, 7, 0.6);
}
.house-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 350;
  font-style: italic;
  line-height: 1.35;
  color: rgba(235, 230, 223, 0.95);
  text-shadow: 0 2px 28px rgba(5, 6, 7, 0.75);
  margin-bottom: 0.65rem;
}
.house-quote-who {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mark);
  text-shadow: 0 1px 12px rgba(5, 6, 7, 0.8);
}
.house-fact[hidden] { display: none !important; }
.house-chrome {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 1.75rem;
  z-index: 4;
  display: flex;
  transition: opacity 0.25s var(--ease);
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: rgba(235, 230, 223, 0.7);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}
.house-room {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--mark);
  min-width: 5rem;
}

.close-band {
  background: var(--void);
  color: var(--paper);
  padding: clamp(2.5rem, 6vh, 4rem) var(--pad-x);
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border-top: 1px solid var(--line-on-void);
}
.close-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}
.seth-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 300;
  color: var(--mark);
  line-height: 1;
}
.seth-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 350;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 0.45rem;
}
.seth-who {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(235, 230, 223, 0.45);
}
.seth-who a { color: var(--mark); text-decoration: none; }
.close-cta p {
  color: rgba(235, 230, 223, 0.55);
  margin-bottom: 1.1rem;
  line-height: 1.55;
  font-size: 0.95rem;
}
.section.tight { padding-top: clamp(2.5rem, 5vh, 3.5rem); padding-bottom: clamp(2.5rem, 5vh, 3.5rem); }
.svc-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.svc-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s;
}
.svc-row:hover { color: var(--mark); }
.svc-row-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
}
.svc-row-meta {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: right;
}
.areas-h { font-size: clamp(1.5rem, 3vw, 2rem) !important; margin-bottom: 1.25rem; }
.port-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.more-quotes {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 800px) {
  .close-band { grid-template-columns: 1fr; }
  .close-quote { grid-template-columns: auto 1fr; }
  .svc-row { flex-direction: column; gap: 0.25rem; }
  .svc-row-meta { text-align: left; }
}

/* Sales blocks after walk */
.seth-band {
  background: var(--void-soft);
  color: var(--paper);
  padding: 2.5rem var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
  border-top: 1px solid var(--line-on-void);
}
.seth-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--mark);
  line-height: 1;
}
.seth-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 350;
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}
.seth-who {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(235, 230, 223, 0.45);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics div {
  background: var(--paper);
  padding: 1.5rem var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.metrics b {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--mark);
}
.metrics span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.services-sub {
  color: rgba(235, 230, 223, 0.5);
  margin-top: 0.65rem;
  max-width: 32rem;
}
.quote-block { padding-top: 0; }
.quote-price {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mark);
  margin-bottom: 1.25rem;
}
.port-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.port-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.port-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.port-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
@media (max-width: 900px) {
  .seth-band { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .port-strip { grid-template-columns: 1fr; }
  .port-strip img { height: 180px; }
}

/* —— Instagram: center phone → fan L/R (replaces More work) —— */
.ig-fan {
  height: var(--ig-scroll, 180vh);
  position: relative;
  background: var(--void);
  color: var(--paper);
}
.ig-fan-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--line-on-void);
  /* Keep sticky usable while lab banner is up */
  top: 28px;
  height: calc(100svh - 28px);
  height: calc(100dvh - 28px);
}
.ig-fan-head {
  text-align: center;
  position: absolute;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 8;
  padding: 0 var(--pad-x);
  pointer-events: none;
}
.ig-fan-head .ig-handle,
.ig-fan-head .ig-fan-links { pointer-events: auto; }
.ig-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mark);
  margin-bottom: 0.45rem;
  text-shadow: 0 1px 12px rgba(14, 17, 20, 0.8);
}
.ig-title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(14, 17, 20, 0.9);
}
.ig-handle {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(235, 230, 223, 0.55);
  padding-bottom: 0.12rem;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.ig-handle:hover {
  color: var(--mark-hot);
  border-color: var(--mark);
}
.ig-fan-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.5rem;
  margin-top: 0.85rem;
  opacity: 1;
  transform: none;
  position: static;
  background: none;
  padding: 0;
}
.ig-text-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235, 230, 223, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 163, 90, 0.55);
  padding-bottom: 2px;
  background: none;
  box-shadow: none;
  text-shadow: 0 1px 10px rgba(14, 17, 20, 0.85);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.ig-text-link:hover {
  color: #fff;
  border-color: var(--mark-hot);
}
.ig-phone-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: min(70svh, calc(100dvh - 9rem));
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  place-items: center;
}
.ig-phone {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 5;
  width: var(--phone-w, min(28vw, 14rem));
  aspect-ratio: 9 / 19.2;
  border-radius: 1.55rem;
  background: linear-gradient(160deg, #2a2f36 0%, #12151a 55%, #0a0c0e 100%);
  box-shadow:
    0 0 0 2px rgba(235, 230, 223, 0.12),
    0 24px 50px rgba(0, 0, 0, 0.55);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(var(--phone-scale, 1));
  transition: none;
}
.ig-phone-notch {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 0.55rem;
  border-radius: 999px;
  background: #0a0c0e;
}
.ig-phone-glass {
  position: absolute;
  inset: 0.85rem 0.45rem 0.7rem;
  border-radius: 0.95rem;
  background: rgba(18, 21, 26, 0.35);
  box-shadow: inset 0 0 0 1px rgba(235, 230, 223, 0.06);
}
.ig-shot {
  position: absolute;
  left: 50%;
  top: 54%;
  width: var(--shot-w, min(24vw, 12.5rem));
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 0.55rem;
  overflow: hidden;
  background: var(--void-soft);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  transform: translate3d(-50%, -50%, 0) scale(0.92);
  z-index: 3;
  will-change: transform, opacity;
}
.ig-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ig-shot-center { z-index: 6; }
.link-mark.on-void {
  color: rgba(235, 230, 223, 0.7);
  border-color: rgba(235, 230, 223, 0.25);
}
.link-mark.on-void:hover {
  color: var(--paper);
  border-color: var(--mark);
}

@media (max-width: 700px) {
  .ig-fan {
    height: var(--ig-scroll-mobile, 260vh);
  }
  .ig-phone-stage {
    min-height: calc(100svh - 9.5rem);
    min-height: calc(100dvh - 9.5rem);
  }
  .ig-fan-head {
    top: max(0.65rem, env(safe-area-inset-top, 0px));
  }
  .ig-title {
    font-size: clamp(1.25rem, 5.5vw, 1.55rem);
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
  }
  .ig-kicker { font-size: 10px; }
  .ig-handle { font-size: 13px; }
  .ig-fan-links {
    gap: 0.65rem 1.1rem;
    margin-top: 0.7rem;
  }
  .ig-text-link { font-size: 11px; }
  .ig-phone { border-radius: 1.25rem; }
  .ig-shot {
    border-radius: 0.4rem;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ig-fan { height: auto; }
  .ig-fan-sticky {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 3rem var(--pad-x);
    top: 0;
  }
  .ig-fan-head {
    position: relative;
    top: auto;
    margin-bottom: 1.25rem;
    pointer-events: auto;
  }
  .ig-phone { display: none; }
  .ig-phone-stage {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    height: auto;
    justify-content: center;
    padding: 0 0 3rem;
  }
  .ig-shot {
    position: relative;
    left: auto;
    top: auto;
    transform: none !important;
    width: calc(33.33% - 0.4rem) !important;
    opacity: 1 !important;
  }
  .ig-fan-links {
    position: static;
    opacity: 1;
    transform: none;
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}
.kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mark);
  margin-bottom: 0.85rem;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.h2 em { font-style: italic; color: var(--mark); }

/* —— Proof punch —— */
.proof {
  background: var(--void);
  color: var(--paper);
  padding: 1.35rem var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0;
  border-top: 1px solid var(--line-on-void);
}
.proof span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  color: rgba(235, 230, 223, 0.85);
}
.proof i {
  font-style: normal;
  color: var(--mark);
  padding: 0 0.15rem;
}

/* —— Sections —— */
.section {
  padding: var(--section-y) var(--pad-x);
}
.section-void { background: var(--void); color: var(--paper); }
.section-paper { background: var(--paper); color: var(--ink); }
.section-soft { background: var(--paper-deep); }

/* Manifesto */
.manifesto {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.manifesto-copy p {
  color: var(--muted);
  margin-top: 1.1rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.75;
}
.manifesto-copy strong { color: var(--ink); font-weight: 500; }
.stat-rail {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2rem;
}
.stat-rail div {
  background: var(--paper);
  padding: 1.1rem 1.25rem;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
}
.stat-rail b {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--mark);
}
.stat-rail span { font-size: 0.85rem; color: var(--muted); line-height: 1.45; }
.manifesto-still {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.manifesto-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.manifesto-still .mark-corner {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  color: var(--mark);
  opacity: 0.9;
}

@media (max-width: 900px) {
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-still { min-height: 280px; }
}

/* Services hierarchy */
.services-lead {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}
.svc-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--void-soft);
  border: 1px solid var(--line-on-void);
  margin-bottom: 1px;
}
.svc-primary-copy { padding: clamp(1.75rem, 4vw, 3rem); }
.svc-primary-copy .num {
  display: none;
}
.svc-secondary .num {
  display: none;
}
.svc-primary-copy h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
}
.svc-primary-copy strong { color: var(--mark-hot); font-weight: 500; }
.svc-primary-copy p {
  color: rgba(235, 230, 223, 0.58);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.svc-primary-media {
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.svc-primary-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-on-void);
}
.svc-secondary article {
  background: var(--void);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.svc-secondary h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0.5rem 0 0.65rem;
}
.svc-secondary p {
  color: rgba(235, 230, 223, 0.55);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.svc-secondary .num {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mark);
}
.link-mark {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mark);
  text-decoration: none;
  border-bottom: 1px solid var(--mark-soft);
  padding-bottom: 2px;
}
.link-mark:hover { border-color: var(--mark); }

@media (max-width: 800px) {
  .svc-primary, .svc-secondary { grid-template-columns: 1fr; }
}

/* Quote drop */
.quote-drop {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.quote-drop p.sub {
  color: rgba(235, 230, 223, 0.55);
  margin: 1rem 0 1.75rem;
  max-width: 28rem;
  line-height: 1.7;
}
.quote-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.quote-steps li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  font-size: 0.95rem;
  color: rgba(235, 230, 223, 0.65);
}
.quote-steps b {
  font-family: var(--font-display);
  color: var(--mark);
  font-weight: 400;
  min-width: 1.25rem;
}
.quote-aside {
  border: 1px solid var(--line-on-void);
  padding: 2rem 1.75rem;
  text-align: center;
}
.quote-aside .mark-icon {
  width: 48px;
  height: 48px;
  color: var(--mark);
  margin: 0 auto 1rem;
}
.quote-aside h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 350;
  margin-bottom: 0.5rem;
}
.quote-aside p {
  font-size: 0.85rem;
  color: rgba(235, 230, 223, 0.45);
  margin-bottom: 1rem;
}
.quote-aside .price {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mark);
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .quote-drop { grid-template-columns: 1fr; }
}

/* Realtors */
.realtors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.realtors-grid ul {
  list-style: none;
  margin: 1.5rem 0 1.75rem;
}
.realtors-grid li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.realtors-grid li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  background: var(--mark);
  border-radius: 50%;
}
.realtors-grid li strong { color: var(--ink); font-weight: 500; }
.realtors-media {
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.realtors-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 800px) {
  .realtors-grid { grid-template-columns: 1fr; }
}

/* Areas */
.areas-wrap { text-align: center; max-width: 52rem; margin: 0 auto; }
.areas-wrap .h2 { margin-bottom: 0.5rem; }
.areas-wrap .sub {
  color: var(--muted);
  margin-bottom: 2rem;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.area-tags a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background 0.2s, border-color 0.2s;
}
.area-tags a:hover {
  border-color: var(--mark);
  background: var(--mark-soft);
}

/* Testimonial stage */
.stage {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}
.stage .big-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 300;
  color: var(--mark);
  line-height: 1;
  margin-bottom: 1rem;
}
.stage blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 350;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
.stage cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(235, 230, 223, 0.5);
}
.stage cite a { color: var(--mark); text-decoration: none; }
.stage-more {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}
.stage-more article {
  border-top: 1px solid var(--line-on-void);
  padding-top: 1.25rem;
}
.stage-more p {
  font-size: 0.95rem;
  color: rgba(235, 230, 223, 0.6);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.stage-more .who {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(235, 230, 223, 0.4);
}
.google-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mark);
  text-decoration: none;
}

@media (max-width: 700px) {
  .stage-more { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--void);
  color: var(--paper);
  padding: 3.5rem var(--pad-x) 2rem;
  border-top: 1px solid var(--line-on-void);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}
.footer-tag {
  font-size: 0.9rem;
  color: rgba(235, 230, 223, 0.5);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-socials { display: flex; gap: 0.65rem; }
.footer-socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-on-void);
  font-size: 11px;
  text-decoration: none;
  color: rgba(235, 230, 223, 0.7);
}
.footer-socials a:hover { border-color: var(--mark); color: var(--mark); }
.footer-col p {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mark);
  margin-bottom: 0.85rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(235, 230, 223, 0.55);
  text-decoration: none;
  margin-bottom: 0.45rem;
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-on-void);
  font-size: 0.8rem;
  color: rgba(235, 230, 223, 0.35);
}
.footer-bottom a {
  color: rgba(235, 230, 223, 0.45);
  text-decoration: none;
  margin-left: 1rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Mobile shell — home immersion */
@media (max-width: 900px) {
  .door-hint {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 0 1rem;
  }
  .door-leaf-logo img {
    height: 28px;
  }
  .house-doorway-lintel {
    font-size: 10px;
  }
  .exit-door-cta {
    top: auto;
    bottom: 18%;
    transform: none;
    white-space: normal;
  }
  .exit-slide-l .exit-door-cta,
  .exit-slide-r .exit-door-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .exit-slide-l .exit-door-cta {
    bottom: 28%;
  }
  .exit-slide-r .exit-door-cta {
    bottom: 14%;
  }
  .exit-title {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }
  .exit-seal,
  .exit-face {
    padding-bottom: 7rem;
  }
  .btn-mark {
    padding: 0.9rem 1.25rem;
    min-height: 44px;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
  .seth-band {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1rem;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
