/* ═══════════════════════════════════════════════════════════════
   WANDERLUST SITE — HOME ("Handled.")
   Unified-site homepage. Shell (HUD with dual CTA, footer, booking
   sheet) is shared markup across pages; each page ships its own CSS.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --paper: #f7f4ec;
  --wash: #f1ede1;
  --ink: #172320;
  --ink-soft: rgba(23, 35, 32, 0.64);
  --line: #ddd7c8;
  --gold: #a5874b;
  --gold-deep: #82682f;
  --gold-soft: #c9ab6e;
  --note: #fbf1c9;
  --note-ink: #4c4023;
  --alert: #b8472e;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Hanken Grotesk", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 90;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.serif {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 430;
  letter-spacing: -0.012em;
  line-height: 1.08;
}
em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--gold-soft); }

/* ── SHELL: HUD ──────────────────────────────────────────── */
.hud {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: linear-gradient(to bottom, rgba(247, 244, 236, 0.92), rgba(247, 244, 236, 0));
}
.brand { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; line-height: 1.15; }
.brand .serif { font-size: 21px; font-weight: 500; }
.brand-sub { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); }
.hud-nav { display: flex; gap: 26px; margin-left: auto; }
.hud-nav a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.3s; }
.hud-nav a:hover, .hud-nav a.active { color: var(--ink); }
.hud-actions { display: flex; align-items: center; gap: 20px; }
.hud-shoot {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
.hud-shoot:hover { color: var(--gold-deep); }
.hud-cta {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--paper);
  background: var(--ink);
  padding: 11px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.3s, background 0.3s;
}
.hud-cta:hover { transform: translateY(-2px); background: #223730; }
.hud-book-m {
  display: none;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--paper);
  background: var(--ink);
  border: none;
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
}

/* booking chooser sheet (mobile + fallback) */
.book-sheet { position: fixed; inset: 0; z-index: 120; display: flex; align-items: flex-end; justify-content: center; }
.book-sheet[hidden] { display: none; }
.sheet-backdrop { position: absolute; inset: 0; background: rgba(15, 22, 18, 0.55); }
.sheet-card {
  position: relative;
  width: min(500px, 100%);
  background: var(--paper);
  border-radius: 22px 22px 0 0;
  padding: 30px 24px 26px;
  display: grid;
  gap: 12px;
  text-align: center;
  box-shadow: 0 -20px 60px -20px rgba(15, 22, 18, 0.4);
}
.sheet-title { font-size: 26px; margin-bottom: 8px; }
.sheet-close {
  background: none;
  border: none;
  font-family: inherit;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 14px;
  padding: 10px;
  cursor: pointer;
}

/* ── buttons ─────────────────────────────────────────────── */
.btn-ink, .btn-quiet, .btn-gold, .btn-ghost {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.35s, color 0.35s, border-color 0.35s;
}
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { transform: translateY(-3px); background: #223730; }
.btn-quiet { border: 1px solid var(--line); color: var(--ink); background: rgba(255, 255, 255, 0.5); }
.btn-quiet:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-3px); }
.btn-gold { background: var(--gold-soft); color: #14100a; }
.btn-gold:hover { transform: translateY(-3px); background: #dbc088; }
.btn-ghost { border: 1px solid rgba(240, 234, 217, 0.35); color: #f0ead9; }
.btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); transform: translateY(-3px); }

/* ── 1 · HERO: the weight → the feed ────────────────────── */
.scene { position: relative; }
.hero { height: 320vh; }
.hero-stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1100px 540px at 82% -12%, rgba(165, 135, 75, 0.13), transparent 62%),
    radial-gradient(950px 500px at -10% 32%, rgba(140, 167, 155, 0.12), transparent 60%),
    var(--paper);
}
.hero-grid {
  position: relative;
  z-index: 4;
  width: min(1360px, 100%);
  margin: 0 auto;
  padding: 90px clamp(20px, 4vw, 56px) 40px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.guilt { font-size: clamp(15px, 1.5vw, 19px); color: var(--ink-soft); margin-bottom: 16px; }
.guilt em { color: var(--alert); font-family: "Fraunces", serif; }
.display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
  font-size: clamp(62px, 9.5vw, 158px);
}
.display .dot { color: var(--gold); }
.display .char { display: inline-block; will-change: transform; }
.display .word { display: inline-block; overflow: hidden; padding-bottom: 0.22em; margin-bottom: -0.22em; }
.hero-sub { margin: 24px 0 0; max-width: 46ch; font-size: clamp(16px, 1.45vw, 19px); color: var(--ink-soft); }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-watch {
  margin-top: 40px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-watch em { color: var(--gold-deep); font-style: italic; text-transform: none; letter-spacing: 0.12em; }

.clutter { position: absolute; inset: 0; z-index: 6; pointer-events: none; }
.note {
  position: absolute;
  width: clamp(160px, 14vw, 215px);
  padding: 16px 16px 20px;
  background: linear-gradient(180deg, #fdf6d8, var(--note));
  color: var(--note-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 14px 30px -12px rgba(60, 50, 20, 0.35);
  will-change: transform, opacity;
}
.note::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 52px;
  height: 18px;
  background: rgba(200, 190, 160, 0.5);
}
.note-check {
  display: inline-block;
  width: 13px; height: 13px;
  border: 1.6px solid rgba(76, 64, 35, 0.55);
  border-radius: 3px;
  margin-right: 9px;
  vertical-align: -1px;
}
.note.hot {
  background: linear-gradient(180deg, #ffe9e0, #ffdfd2);
  color: #7c2c18;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.note-age {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alert);
}
.n1 { top: 15%; left: 4%; transform: rotate(-5deg); }
.n2 { bottom: 12%; left: 8%; transform: rotate(3deg); }
.n3 { top: 12%; right: 30%; transform: rotate(4deg); }
.n4 { bottom: 18%; left: 38%; transform: rotate(-3deg); }
.chip {
  position: absolute;
  padding: 11px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: 0 10px 24px -12px rgba(23, 35, 32, 0.25);
  will-change: transform, opacity;
}
.chip.bad { color: var(--alert); border-color: rgba(184, 71, 46, 0.35); }
.c1 { top: 21%; left: 33%; transform: rotate(-2deg); }
.c2 { bottom: 7%; right: 5%; transform: rotate(2deg); }

.hero-phone { position: relative; z-index: 5; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: min(330px, 24vw);
  background: #fff;
  border: 1px solid #e7e1d2;
  border-radius: 42px;
  padding: 14px 14px 20px;
  box-shadow:
    0 60px 110px -40px rgba(23, 35, 32, 0.45),
    0 0 0 8px rgba(23, 35, 32, 0.05);
  transform: rotate(3.5deg);
  will-change: transform;
}
.phone-topbar { display: flex; align-items: center; justify-content: space-between; padding: 2px 10px 10px; }
.ph-time { font-size: 12px; font-weight: 700; }
.ph-island { width: 74px; height: 20px; background: #10100e; border-radius: 999px; }
.ph-batt { width: 20px; height: 10px; border: 1.4px solid rgba(0, 0, 0, 0.5); border-radius: 3px; }
.ig-head { display: flex; align-items: center; gap: 10px; padding: 6px 6px 12px; }
.ig-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-style: italic;
}
.ig-avatar.small { width: 30px; height: 30px; font-size: 17px; }
.ig-id { display: flex; flex-direction: column; line-height: 1.25; }
.ig-id strong { font-size: 14px; }
.ig-status { font-size: 11px; font-weight: 600; }
.ig-status.bad { color: var(--alert); }
.ig-status.good { color: var(--gold-deep); }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; border-radius: 14px; overflow: hidden; }
.cell { position: relative; aspect-ratio: 1; background: #f2efe6; overflow: hidden; }
.cell-empty { position: absolute; inset: 0; border: 1.5px dashed #ddd6c4; border-radius: 2px; margin: 7px; }
.cell-empty::after {
  content: "＋";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfc7b0;
  font-size: 18px;
}
.cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.9);
  will-change: transform, opacity;
}
.cell img.was { opacity: 1; transform: none; filter: grayscale(0.9) contrast(0.8) brightness(1.06); }
.ig-toast {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%) translateY(8px);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  background: var(--ink);
  color: #f0ead9;
  font-size: 12.5px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -14px rgba(23, 35, 32, 0.55);
  opacity: 0;
  will-change: transform, opacity;
}
.ig-toast strong { color: var(--gold-soft); }
.ig-spin {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 0 rgba(201, 171, 110, 0.6);
  animation: igpulse 1.6s ease-out infinite;
}
@keyframes igpulse { 0% { box-shadow: 0 0 0 0 rgba(201, 171, 110, 0.6); } 100% { box-shadow: 0 0 0 12px rgba(201, 171, 110, 0); } }

/* ── 2 · THE TRUTH ──────────────────────────────────────── */
.truth { padding: clamp(120px, 20vh, 220px) clamp(20px, 4vw, 56px); }
.truth-inner { width: min(1050px, 100%); margin: 0 auto; display: grid; gap: clamp(26px, 4.5vh, 46px); }
.t-line { font-size: clamp(28px, 4.2vw, 58px); line-height: 1.14; }
.t-line .w { display: inline-block; }
.t-line.gold em { color: var(--gold); }

/* ── 3 · THE HANDOFF ────────────────────────────────────── */
.handoff { height: 380vh; background: var(--wash); }
.handoff-stage {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(30px, 6vh, 64px);
  padding: 90px clamp(20px, 5vw, 80px) 40px;
}
.ho-head { text-align: center; }
.ho-head h2 { font-size: clamp(30px, 4vw, 58px); }
.pipeline { position: relative; width: min(1360px, 100%); margin: 82px auto 0; }
.pipe-line { position: absolute; top: 7px; left: 2%; right: 2%; height: 2px; background: var(--line); }
.pipe-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.stations { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(12px, 2vw, 28px); }
.station { padding-top: 34px; position: relative; opacity: 0.3; will-change: opacity; }
.station .st-dot {
  position: absolute;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.station.on { opacity: 1; }
.station.on .st-dot { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 5px rgba(165, 135, 75, 0.18); }
.station h3 { font-size: clamp(19px, 1.9vw, 27px); margin-bottom: 8px; }
.station p { font-size: 14px; color: var(--ink-soft); max-width: 24ch; }
.task-card {
  position: absolute;
  top: -74px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px -16px rgba(23, 35, 32, 0.3);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  will-change: transform;
  white-space: nowrap;
}
.tc-strike { position: relative; color: var(--ink); }
.tc-strike::after {
  content: "";
  position: absolute;
  left: 0; top: 52%;
  height: 2px;
  width: 100%;
  background: var(--alert);
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.task-card.done .tc-strike::after { transform: scaleX(1); transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.task-card.done .tc-strike { color: var(--ink-soft); }
.tc-done { color: var(--gold-deep); opacity: 0; transform: translateY(4px); transition: opacity 0.4s, transform 0.4s; }
.task-card.done .tc-done { opacity: 1; transform: translateY(0); }
.thread-line { text-align: center; font-size: clamp(15px, 1.5vw, 19px); color: var(--ink-soft); max-width: 62ch; margin: 0 auto; }

/* ── 4 · THE DESK ───────────────────────────────────────── */
.desk { height: 330vh; }
.desk-stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(26px, 5vh, 52px);
  padding: 100px clamp(20px, 5vw, 80px) 50px;
}
.desk-head { text-align: center; }
.desk-head h2 { font-size: clamp(28px, 3.8vw, 56px); }
.desk-wrap { position: relative; width: min(1280px, 100%); margin: 0 auto; }
.composer {
  width: min(880px, calc(100% - 330px));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 34px 80px -36px rgba(23, 35, 32, 0.38);
  will-change: transform, opacity;
}
.comp-media { position: relative; min-height: 340px; }
.comp-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.comp-medialabel {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(15, 22, 18, 0.78);
  color: #f0ead9;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}
.comp-side { padding: clamp(24px, 3vw, 44px); display: flex; flex-direction: column; gap: 16px; }
.comp-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.comp-writer { color: var(--ink-soft); letter-spacing: 0.08em; text-transform: none; font-weight: 600; }
.comp-text {
  min-height: 132px;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  background: #fdfcf8;
}
.caret {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--gold-deep);
  vertical-align: -0.18em;
  margin-left: 2px;
  animation: blink 0.9s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.comp-tags { font-size: 14px; font-weight: 600; color: var(--gold-deep); }
.comp-sched {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 14px;
  font-weight: 700;
}
.sched-tick { color: var(--gold-deep); opacity: 0; transform: translateY(4px); will-change: opacity, transform; }
.posted-card {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(300px, 26vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 90px -34px rgba(23, 35, 32, 0.5);
  opacity: 0;
  transform: rotate(3deg);
  will-change: transform, opacity;
}
.pc-head { display: flex; align-items: center; gap: 9px; padding: 12px 14px; font-size: 13.5px; }
.pc-loc { margin-left: auto; font-size: 11.5px; color: var(--ink-soft); }
.pc-img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.pc-actions { display: flex; gap: 14px; padding: 11px 14px 4px; font-size: 17px; }
.pc-likes { padding: 0 14px; font-size: 13px; }
.pc-cap { padding: 4px 14px 10px; font-size: 12.5px; color: var(--ink-soft); }
.pc-cap strong { color: var(--ink); }
.pc-note {
  padding: 11px 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  background: #fbf9f2;
}

/* ── 5 · A MONTH, WITHOUT YOU ───────────────────────────── */
.month { height: 340vh; background: var(--wash); }
.month-stage { height: 100vh; overflow: hidden; display: flex; align-items: center; padding: 90px clamp(20px, 5vw, 80px) 40px; }
.month-grid {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
}
.month-you h2 { font-size: clamp(30px, 3.6vw, 52px); margin-bottom: 26px; }
.you-list { list-style: none; display: grid; gap: 14px; }
.you-list li {
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
}
.you-list li::before { content: "— "; color: var(--gold); }
.month-tally { margin-top: 34px; font-size: clamp(24px, 2.6vw, 38px); opacity: 0; transform: translateY(14px); will-change: transform, opacity; }
.toasts { display: grid; gap: 14px; }
.toast {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 34px -18px rgba(23, 35, 32, 0.25);
  font-size: 14.5px;
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  will-change: transform, opacity;
}
.toast strong { font-weight: 700; }
.toast-dot {
  flex: 0 0 auto;
  width: 10px; height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(165, 135, 75, 0.16);
}
.toast-thumb {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.toast-meta { display: block; margin-top: 3px; color: var(--ink-soft); font-size: 13px; }

/* ── 6 · THE STANDARD ───────────────────────────────────── */
.standard { background: var(--white); }
.std-bleed { position: relative; height: min(92vh, 820px); overflow: hidden; }
.std-bleed img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.14); will-change: transform; }
.std-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(28px, 5vh, 60px) clamp(20px, 4vw, 56px);
  background: linear-gradient(to top, rgba(15, 22, 18, 0.82), transparent);
  color: #f0ead9;
}
.std-line { font-size: clamp(26px, 3.6vw, 52px); max-width: 22ch; }
.std-line em { color: var(--gold-soft); }
.std-sub { margin-top: 10px; color: rgba(240, 234, 217, 0.75); max-width: 56ch; }
.std-proof { padding: clamp(70px, 10vh, 110px) clamp(20px, 4vw, 56px); width: min(1360px, 100%); margin: 0 auto; }
.proof-head h2 { font-size: clamp(28px, 3.4vw, 46px); margin-bottom: 10px; }
.proof-sub { color: var(--ink-soft); max-width: 60ch; }
.proof-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 38px 0 26px; }
.proof-row figure { margin: 0; }
.proof-row img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px; display: block; }
.proof-row figcaption { margin-top: 9px; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.quiet-link { color: var(--gold-deep); font-weight: 700; text-decoration: none; }
.quiet-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ── 7 · TEAM ───────────────────────────────────────────── */
.team { padding: clamp(100px, 15vh, 170px) clamp(20px, 4vw, 56px); }
.team-inner {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.team-copy h2 { font-size: clamp(32px, 4.2vw, 60px); margin-bottom: 20px; }
.team-copy > p { color: var(--ink-soft); max-width: 52ch; }
.rhythm { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 34px; }
.r-step {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.r-step strong { font-size: 21px; }
.r-step span { font-size: 13.5px; color: var(--ink-soft); }
.team-faces { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; align-items: start; }
.team-faces figure { margin: 0; }
.team-faces img { width: 100%; border-radius: 8px; display: block; object-fit: cover; }
.team-faces figure:first-child img { aspect-ratio: 4 / 5; }
.team-faces figure:last-child img { aspect-ratio: 1 / 1; }
.team-faces figcaption { margin-top: 10px; font-size: 13px; }
.team-faces figcaption strong { display: block; }
.team-faces figcaption span { color: var(--ink-soft); font-size: 12px; }

/* ── 8 · PLANS ──────────────────────────────────────────── */
.plans { padding: clamp(90px, 13vh, 150px) clamp(20px, 4vw, 56px); background: var(--wash); }
.plans-inner { width: min(1360px, 100%); margin: 0 auto; }
.plans-inner h2 { font-size: clamp(30px, 4vw, 56px); margin-bottom: clamp(36px, 5vh, 56px); }
.plan-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.plan {
  position: relative;
  padding: 34px 30px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.plan.featured { border-color: var(--gold); box-shadow: 0 26px 60px -30px rgba(130, 104, 47, 0.4); }
.plan-tag {
  position: absolute;
  top: -12px;
  left: 26px;
  padding: 5px 13px;
  background: var(--gold);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}
.plan h3 { font-size: 27px; }
.price { font-size: 34px; color: var(--gold-deep); }
.price span { font-size: 16px; color: var(--ink-soft); }
.plan p:not(.price) { font-size: 15px; color: var(--ink-soft); flex: 1; }
.agent-door { margin-top: 30px; color: var(--ink-soft); font-size: 15px; }
.agent-door a { color: var(--gold-deep); font-weight: 700; text-decoration: none; }
.agent-door a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ── 9 · CLOSE ──────────────────────────────────────────── */
.close {
  background:
    radial-gradient(900px 480px at 85% 0%, rgba(201, 171, 110, 0.16), transparent 60%),
    #14201b;
  color: #f0ead9;
  padding: clamp(110px, 18vh, 200px) clamp(20px, 4vw, 56px);
}
.close-inner { width: min(1100px, 100%); margin: 0 auto; text-align: center; }
.close-title { font-size: clamp(34px, 5.4vw, 84px); line-height: 1.08; }
.close-title em { color: var(--gold-soft); }
.close-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.close-note { margin-top: 30px; font-size: 13px; color: rgba(240, 234, 217, 0.55); letter-spacing: 0.06em; }

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  background: #0f1a15;
  color: rgba(240, 234, 217, 0.6);
  font-size: 12.5px;
}
.footer-bar nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bar a { color: rgba(240, 234, 217, 0.75); text-decoration: none; }
.footer-bar a:hover { color: var(--gold-soft); }

/* ── embedded booking modal ──────────────────────────────── */
html.bm-lock { overflow: hidden; }
.book-modal { position: fixed; inset: 0; z-index: 130; display: flex; align-items: center; justify-content: center; padding: 22px; }
.book-modal[hidden] { display: none; }
.bm-scrim { position: absolute; inset: 0; background: rgba(15, 22, 18, 0.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.bm-card {
  position: relative;
  width: min(1080px, 100%);
  height: min(860px, 92vh);
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 60px 140px -40px rgba(10, 16, 13, 0.75);
  animation: bmin 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes bmin { from { transform: translateY(26px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.bm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px 13px 24px;
  border-bottom: 1px solid var(--line);
}
.bm-title { display: flex; flex-direction: column; line-height: 1.2; }
.bm-title .serif { font-size: 19px; font-weight: 500; }
.bm-sub { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.bm-tools { display: flex; align-items: center; gap: 18px; }
.bm-newtab { font-size: 12.5px; font-weight: 700; color: var(--ink-soft); text-decoration: none; white-space: nowrap; }
.bm-newtab:hover { color: var(--gold-deep); }
.bm-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.bm-close:hover { border-color: var(--gold); color: var(--gold-deep); transform: rotate(90deg); }
.bm-body { position: relative; flex: 1; background: #fff; }
.bm-body iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.bm-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #fff;
  color: var(--ink-soft);
  font-weight: 600;
  transition: opacity 0.4s;
}
.bm-loading.off { opacity: 0; pointer-events: none; }
.bm-spin {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--gold);
  animation: bmspin 0.9s linear infinite;
}
@keyframes bmspin { to { transform: rotate(360deg); } }
@media (max-width: 700px) {
  .book-modal { padding: 0; }
  .bm-card { height: 100dvh; border-radius: 0; }
  .bm-newtab { display: none; }
}

/* ── motion-off fallback ────────────────────────────────── */
body.no-motion .bm-card { animation: none; }
body.no-motion .hero, body.no-motion .handoff, body.no-motion .desk, body.no-motion .month { height: auto; }
body.no-motion .hero-stage, body.no-motion .handoff-stage, body.no-motion .desk-stage, body.no-motion .month-stage { height: auto; overflow: visible; }
body.no-motion .clutter { display: none; }
body.no-motion .cell img { opacity: 1; transform: none; }
body.no-motion .cell img.was { display: none; }
body.no-motion .cell-empty { display: none; }
body.no-motion .ig-toast { opacity: 1; transform: translateX(-50%); }
body.no-motion .station { opacity: 1; }
body.no-motion .station .st-dot { background: var(--gold); border-color: var(--gold); }
body.no-motion .task-card { display: none; }
body.no-motion .sched-tick { opacity: 1; transform: none; }
body.no-motion .posted-card { position: static; top: auto; opacity: 1; transform: none; margin: 30px auto 0; }
body.no-motion .you-list li, body.no-motion .toast, body.no-motion .month-tally { opacity: 1; transform: none; }
body.no-motion .std-bleed img { transform: none; }
body.no-motion .hero-watch { display: none; }
body.no-motion .hero-stage { padding: 40px 0; }

/* ── responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .stations { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .station p { display: none; }
  .n4, .c1 { display: none; }
}
@media (max-width: 900px) {
  .hud-nav, .hud-actions { display: none; }
  .hud-book-m { display: inline-block; }
  .hero { height: auto; }
  .hero-stage { height: auto; overflow: visible; padding: 110px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-phone { order: 2; }
  .phone { width: min(330px, 78vw); transform: rotate(0deg); }
  .clutter .note { width: 148px; font-size: 12.5px; }
  .n1 { top: 6%; left: 3%; }
  .n3 { top: 9%; right: 3%; }
  .n2, .n4, .c1, .c2 { display: none; }
  .cell img { opacity: 1; transform: none; }
  .cell img.was { display: none; }
  .cell-empty { display: none; }
  .ig-status.bad { color: var(--gold-deep); }
  .ig-toast { display: none; }
  .handoff { height: auto; }
  .handoff-stage { height: auto; padding: 80px 20px 60px; }
  .stations { grid-template-columns: 1fr; gap: 22px; }
  .station { opacity: 1; padding-top: 0; padding-left: 34px; }
  .station .st-dot { top: 5px; }
  .station p { display: block; max-width: none; }
  .pipe-line { display: none; }
  .task-card { display: none; }
  .pipeline { margin-top: 20px; }
  .desk { height: auto; }
  .desk-stage { height: auto; padding: 80px 20px 60px; }
  .composer { grid-template-columns: 1fr; width: 100%; }
  .comp-media { min-height: 260px; }
  .posted-card { position: static; top: auto; opacity: 1; transform: none; width: min(340px, 100%); margin: 26px auto 0; }
  .month { height: auto; }
  .month-stage { height: auto; padding: 40px 20px 80px; }
  .month-grid { grid-template-columns: 1fr; gap: 44px; }
  .team-inner { grid-template-columns: 1fr; }
  .plan-row { grid-template-columns: 1fr; }
  .proof-row { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  body::after, .caret, .ig-spin { animation: none !important; }
}
