/* ============================================================
   "Onyx" — dark, cinematic architecture theme.
   Structurally distinct from Gallery (light editorial) and Cedar
   (cream/gold luxury): near-black canvas, oversized Syne display
   type, monospace micro-labels, a horizontal film-strip gallery,
   and a mono-indexed feature list. Photography carries the colour.
   ============================================================ */

:root {
  --bg:        #0b0c0e;
  --bg-2:      #101216;
  --surface:   #16181d;
  --surface-2: #1c1f25;
  --line:      rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text:      #eceae4;   /* warm off-white */
  --muted:     #9a978f;
  --dim:       #6d6a64;
  --accent:    #8fb6c7;   /* dusty steel-blue signal — deliberately NOT gold */
  --accent-dk: #5d8698;
  --radius:    4px;
  --wrap:      1240px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --disp: "Syne", system-ui, sans-serif;
  --sans: "Instrument Sans", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}
.h-disp {
  font-family: var(--disp);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 5vw, 3.6rem);
}
.h-sm { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.copy { color: var(--muted); max-width: 52ch; }

.section { padding: clamp(72px, 11vw, 150px) 0; }
.section-line { border-top: 1px solid var(--line-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn-solid { background: var(--text); color: #111; }
.btn-solid:hover { background: #fff; transform: translateY(-2px); }
.btn-line { border-color: var(--line); color: var(--text); }
.btn-line:hover { border-color: var(--text); background: rgba(255,255,255,0.04); }
.btn-accent { background: var(--accent); color: #0a1216; }
.btn-accent:hover { background: #a9c9d7; transform: translateY(-2px); }
.btn-wide { width: 100%; justify-content: center; }
.btn-sm { padding: 11px 18px; }

/* ---------- Preview banner ---------- */
.preview-banner {
  background: var(--accent); color: #0a1216;
  font-family: var(--mono); font-size: 13px;
  text-align: center; padding: 9px 16px;
}
.preview-banner a { text-decoration: underline; font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 12, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 13px 32px;
  border-bottom-color: var(--line-soft);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  font-family: var(--disp); font-weight: 800; font-size: 15px;
  border-radius: var(--radius);
}
.brand-name {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.desk-nav { display: flex; align-items: center; gap: 30px; }
.desk-nav a {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); transition: color 0.25s;
}
.desk-nav a:hover { color: var(--text); }
.desk-nav .btn { color: #111; }

.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.menu-btn span { width: 24px; height: 1.5px; background: var(--text); }

.drawer {
  position: fixed; inset: 0; z-index: 70;
  background: var(--bg);
  display: flex; flex-direction: column;
  justify-content: center; gap: 6px; padding: 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.drawer.open { transform: none; }
.drawer-close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: 0; color: var(--text);
  font-size: 34px; cursor: pointer; line-height: 1;
}
.drawer-link {
  font-family: var(--disp); font-weight: 600;
  font-size: 1.9rem; padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.drawer-link.btn { border: 1px solid var(--text); margin-top: 20px; font-family: var(--mono); font-size: 13px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(48px, 8vh, 96px);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,12,14,0.55) 0%, rgba(11,12,14,0.15) 32%, rgba(11,12,14,0.75) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11,12,14,0.65) 0%, rgba(11,12,14,0) 55%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-status {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(143,182,199,0.7);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(143,182,199,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(143,182,199,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,182,199,0); }
}
.hero h1 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 6.6rem);
  line-height: 0.96; letter-spacing: -0.03em;
  max-width: 15ch;
}
.hero-tagline {
  color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin-top: 22px; max-width: 46ch;
}
.hero-priceline {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 24px;
  margin-top: 34px;
}
.hero-price {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.hero-address { font-family: var(--mono); font-size: 13px; color: var(--muted); letter-spacing: 0.06em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* Hero stat rail */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--line);
}
.hero-stat {
  padding: 22px 34px 4px 0;
  margin-right: 34px;
  border-right: 1px solid var(--line-soft);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat-v { font-family: var(--disp); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.hero-stat-l {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim);
  margin-top: 4px;
}

/* Price unlock (gated) */
.unlock { margin-top: 30px; max-width: 440px; }
.unlock-copy { font-family: var(--mono); font-size: 12.5px; color: var(--muted); margin-bottom: 12px; letter-spacing: 0.04em; }
.unlock-err { color: #e88; font-family: var(--mono); font-size: 12px; margin-bottom: 8px; }
.unlock-form { display: flex; flex-wrap: wrap; gap: 8px; }
.unlock-form input {
  flex: 1 1 150px; min-width: 0;
  background: rgba(0,0,0,0.35); border: 1px solid var(--line);
  color: var(--text); padding: 13px 14px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 15px;
}
.unlock-form input::placeholder { color: var(--dim); }
.unlock-form input:focus { outline: none; border-color: var(--accent); }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim);
}
.scroll-line { width: 1px; height: 42px; background: linear-gradient(var(--dim), transparent); animation: drop 2.2s infinite; }
@keyframes drop { 0%,100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ---------- Section heads ---------- */
.sec-head { margin-bottom: clamp(38px, 5vw, 66px); }
.sec-head .h-disp { margin-top: 18px; max-width: 20ch; }
.split-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ---------- Snapshot / spec index ---------- */
.spec-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.spec-cell {
  padding: 26px 26px 30px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.spec-cell:hover { background: var(--surface); }
.spec-idx { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.12em; }
.spec-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); margin: 16px 0 8px; }
.spec-value { font-family: var(--disp); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.01em; }

/* ---------- Story: sticky split editorial spread ---------- */
.story { position: relative; }
.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.story-text { position: sticky; top: 120px; }
.story-copy { margin-top: 26px; }
.story-copy p { color: var(--muted); margin-bottom: 18px; }
.story-photos { display: flex; flex-direction: column; gap: 22px; }
.story-photos figure { position: relative; overflow: hidden; border-radius: var(--radius); }
.story-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.story-photos figure:hover img { transform: scale(1.04); }
.story-photos figcaption {
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  background: rgba(11,12,14,0.7); padding: 5px 10px; border-radius: 3px;
  backdrop-filter: blur(6px);
}

/* ---------- Horizontal film-strip gallery (signature) ---------- */
.filmstrip-sec { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.filmstrip-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.filmstrip-hint { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); }
.filmstrip {
  display: flex; gap: 18px;
  overflow-x: auto; overflow-y: hidden;
  padding: 6px 32px 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: thin; scrollbar-color: var(--surface-2) transparent;
}
.filmstrip.dragging { cursor: grabbing; scroll-snap-type: none; }
.filmstrip::-webkit-scrollbar { height: 6px; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
.g-item {
  position: relative; flex: 0 0 auto;
  width: clamp(280px, 46vw, 560px); height: clamp(220px, 52vh, 460px);
  scroll-snap-align: center;
  border: 0; padding: 0; background: none; cursor: pointer;
  border-radius: var(--radius); overflow: hidden;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.g-item:hover img { transform: scale(1.05); }
.g-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,12,14,0.75), transparent 55%); opacity: 0; transition: opacity 0.35s; }
.g-item:hover .g-scrim { opacity: 1; }
.g-meta { position: absolute; left: 16px; bottom: 14px; right: 16px; text-align: left; transform: translateY(6px); opacity: 0; transition: 0.35s var(--ease); }
.g-item:hover .g-meta { transform: none; opacity: 1; }
.g-cat { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.g-label { display: block; font-family: var(--disp); font-weight: 600; font-size: 1.05rem; color: #fff; margin-top: 3px; }
.g-index {
  position: absolute; top: 12px; left: 14px;
  font-family: var(--mono); font-size: 11px; color: var(--text);
  background: rgba(11,12,14,0.55); padding: 3px 8px; border-radius: 3px;
  backdrop-filter: blur(4px);
}

/* ---------- Features: mono-indexed list ---------- */
.feature-list { border-top: 1px solid var(--line); }
.feature-row {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
  align-items: baseline;
  padding: 22px 4px; border-bottom: 1px solid var(--line-soft);
  transition: padding-left 0.35s var(--ease), background 0.35s var(--ease);
}
.feature-row:hover { padding-left: 16px; background: var(--surface); }
.feature-n { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.08em; }
.feature-t { font-family: var(--disp); font-weight: 500; font-size: clamp(1.05rem, 1.7vw, 1.35rem); }

/* ---------- Video ---------- */
.media-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.media-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Open house ---------- */
.oh-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.oh-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.oh-when { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.oh-date { font-family: var(--disp); font-weight: 700; font-size: 1.5rem; margin-top: 8px; }
.add-to-cal { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; margin-top: 12px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; }
.add-to-cal-label { color: var(--dim); text-transform: uppercase; letter-spacing: 0.12em; font-size: 10px; }
.add-to-cal a { color: var(--muted); transition: color 0.25s; }
.add-to-cal a:hover { color: var(--accent); }
.oh-badge { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid var(--line); padding: 6px 11px; border-radius: 20px; color: var(--muted); flex: none; }

/* ---------- Location ---------- */
.map-wrap { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed { width: 100%; height: clamp(340px, 52vh, 560px); border: 0; display: block; filter: grayscale(1) invert(0.92) contrast(0.9); }
.map-card {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(11,12,14,0.86); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; max-width: 300px;
}
.map-card-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.map-card-addr { font-family: var(--disp); font-weight: 600; font-size: 1.15rem; margin-top: 8px; }
.map-card-city { color: var(--muted); font-size: 14px; margin-top: 3px; }

/* ---------- Agent ---------- */
.agent-card { display: grid; grid-template-columns: 180px 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.agent-portrait {
  width: 180px; height: 220px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
  display: grid; place-items: center;
}
.agent-portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2); }
.agent-initial { font-family: var(--disp); font-weight: 800; font-size: 3rem; color: var(--dim); }
.agent-name { margin: 14px 0 6px; }
.agent-brokerage { color: var(--muted); }
.agent-license { font-family: var(--mono); font-size: 12px; color: var(--dim); margin-top: 4px; }
.agent-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- Request + mortgage ---------- */
.request-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 76px); align-items: start; }
.form-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field {
  width: 100%; background: var(--surface); border: 1px solid var(--line);
  color: var(--text); padding: 14px 15px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 15px;
}
.field::placeholder { color: var(--dim); }
.field:focus { outline: none; border-color: var(--accent); background: var(--surface-2); }
select.field { appearance: none; cursor: pointer; }
.fine-print { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--dim); line-height: 1.6; margin-top: 4px; }
.fine-print.dim { opacity: 0.8; }

.sent-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; margin-top: 26px; }
.sent-check { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: #0a1216; margin-bottom: 16px; }

.mortgage-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3vw, 38px); }
.m-total-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin: 22px 0 24px; background: var(--bg); }
.m-total-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); }
.m-total { font-family: var(--disp); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); margin: 6px 0; }
.m-breakdown { font-family: var(--mono); font-size: 11.5px; color: var(--muted); letter-spacing: 0.03em; }
.m-slider { display: block; margin-bottom: 20px; }
.m-slider-head { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 8px; font-family: var(--mono); }
.m-slider-head strong { color: var(--text); }
.m-slider input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; background: var(--line); border-radius: 2px; }
.m-slider input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid var(--bg); }
.m-slider input[type=range]::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid var(--bg); }
.m-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.m-inputs label { display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); }
.field.dark { background: var(--bg); padding: 11px 12px; font-family: var(--sans); font-size: 14px; letter-spacing: normal; text-transform: none; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 90px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 34px; }
.footer-addr { color: var(--muted); font-size: 14px; margin-top: 16px; line-height: 1.7; }
.footer-h { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.footer-agent { font-family: var(--disp); font-weight: 600; font-size: 1.1rem; }
.footer-line { color: var(--muted); font-size: 14px; margin-top: 4px; }
.footer-line.dim { color: var(--dim); font-family: var(--mono); font-size: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color 0.25s; }
.footer-links a:hover { color: var(--text); }
.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badges span { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em; border: 1px solid var(--line); padding: 6px 9px; border-radius: 3px; color: var(--dim); }

.share-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line-soft); }
.share-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); }
.share-bar a, .share-copy { font-family: var(--mono); font-size: 12px; color: var(--muted); background: none; border: 0; cursor: pointer; letter-spacing: 0.06em; transition: color 0.25s; }
.share-bar a:hover, .share-copy:hover { color: var(--accent); }
.disclaimer { color: var(--dim); font-size: 11.5px; line-height: 1.7; margin-top: 40px; max-width: 92ch; }
.copyright { font-family: var(--mono); font-size: 11px; color: var(--dim); letter-spacing: 0.08em; margin-top: 20px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(6,7,8,0.96); backdrop-filter: blur(8px); display: grid; place-items: center; }
.lightbox[hidden] { display: none; }
.lb-stage { max-width: 92vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-stage img { max-width: 92vw; max-height: 78vh; object-fit: contain; border-radius: var(--radius); }
.lb-caption { font-family: var(--mono); font-size: 12px; text-align: center; letter-spacing: 0.06em; }
.lb-cat { color: var(--accent); }
.lb-label { color: var(--muted); display: block; margin-top: 3px; }
.lb-btn { position: absolute; background: rgba(255,255,255,0.06); border: 1px solid var(--line); color: var(--text); width: 48px; height: 48px; border-radius: 50%; font-size: 22px; cursor: pointer; display: grid; place-items: center; transition: background 0.25s; }
.lb-btn:hover { background: rgba(255,255,255,0.14); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- RSVP modal ---------- */
.modal { position: fixed; inset: 0; z-index: 85; background: rgba(6,7,8,0.9); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-card { position: relative; width: 100%; max-width: 460px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.modal-close { position: absolute; top: 16px; right: 18px; background: none; border: 0; color: var(--muted); font-size: 28px; cursor: pointer; }
.modal-card .h-sm { margin: 12px 0 6px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; display: none; gap: 10px; padding: 12px 16px; background: rgba(11,12,14,0.9); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.cta-call { flex: none; width: 50px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-text { position: static; }
  .oh-grid, .request-grid { grid-template-columns: 1fr; }
  .agent-card { grid-template-columns: 120px 1fr; }
  .agent-portrait { width: 120px; height: 150px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .desk-nav { display: none; }
  .menu-btn { display: flex; }
  .hero-stat { padding: 16px 20px 4px 0; margin-right: 20px; }
  .m-inputs, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .sticky-cta { display: flex; }
  .lb-prev { left: 12px; } .lb-next { right: 12px; }
  .filmstrip { padding-left: 20px; padding-right: 20px; }
}
