/* ============================================================
   "Gallery" theme — editorial, minimal, neutral.
   Type: Space Grotesk (display) / Inter (text)
   (Previous theme preserved as listing-cedar.css)
   ============================================================ */

:root {
  --bg: #f5f4f0;
  --bg-2: #eceae4;
  --ink: #161513;
  --muted: #6f6c64;
  --line: rgba(22, 21, 19, 0.14);
  --line-soft: rgba(22, 21, 19, 0.08);
  --paper: #fdfdfb;
  --dark: #161513;
  --dark-muted: #a3a099;
  --dark-line: rgba(245, 244, 240, 0.16);
  --font-d: "Space Grotesk", sans-serif;
  --font-t: "Inter", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-t);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: clamp(20px, 4vw, 56px); padding-right: clamp(20px, 4vw, 56px); }
.section { padding-top: clamp(72px, 10vw, 150px); padding-bottom: clamp(72px, 10vw, 150px); }
.section-last { padding-bottom: clamp(96px, 12vw, 180px); }

/* ---------- shared type ---------- */
.sec-num {
  display: block;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.sec-title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 64px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.sec-note { font-size: 13px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; padding-bottom: 6px; }
.sec-grid { display: grid; grid-template-columns: minmax(220px, 1fr) 2fr; gap: clamp(32px, 6vw, 110px); align-items: start; }
.sec-side { position: sticky; top: 110px; }
.sec-side-note { margin-top: 18px; font-size: 14px; color: var(--muted); max-width: 240px; }
.lede { font-family: var(--font-d); font-size: clamp(20px, 2.3vw, 28px); font-weight: 400; line-height: 1.45; letter-spacing: -0.01em; margin-bottom: 26px; }
.copy { color: var(--muted); margin-bottom: 18px; max-width: 62ch; }
.fine { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-arr { display: inline-block; transition: transform 0.35s var(--ease); }
.btn:hover .btn-arr { transform: translateX(4px); }
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { background: #2c2a26; border-color: #2c2a26; }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--ink); }
.btn-paper { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 34px; font-size: 15px; }

/* ---------- preview banner ---------- */
.preview-banner {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  font-size: 13px;
  padding: 10px 16px;
}
.preview-banner a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line-soft); padding-top: 12px; padding-bottom: 12px; }
.nav-brand {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-burger { display: none; flex-direction: column; gap: 6px; padding: 8px 2px; }
.nav-burger span { width: 26px; height: 1.5px; background: var(--ink); }

/* full-screen menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 6vw, 64px);
}
.menu[hidden] { display: none; }
.menu-close { position: absolute; top: 22px; right: 24px; font-size: 22px; padding: 10px; }
.menu-links { display: flex; flex-direction: column; }
.menu-link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-d);
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.menu-idx { font-size: 12px; letter-spacing: 0.2em; color: var(--muted); }
.menu-foot { margin-top: 40px; font-size: 13px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(48px, 8vw, 110px); }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(20px, 3vw, 36px);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #3f7a4e; animation: pulse 2.4s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63, 122, 78, 0.35); }
  50% { box-shadow: 0 0 0 7px rgba(63, 122, 78, 0); }
}
.hero-title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(52px, 11vw, 158px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 14ch;
}
.hw { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hw-in { display: inline-block; transform: translateY(115%); animation: rise 1s var(--ease) forwards; }
@keyframes rise { to { transform: translateY(0); } }
.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 48px;
  margin-top: clamp(30px, 4.5vw, 60px);
}
.hero-price {
  font-family: var(--font-d);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hero-tag { max-width: 34ch; color: var(--muted); font-size: 15px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media {
  margin: clamp(40px, 6vw, 88px) auto 0;
  max-width: calc(var(--wrap) + 120px);
  padding: 0 clamp(0px, 2vw, 32px);
  position: relative;
}
.hero-media img {
  width: 100%;
  height: clamp(380px, 72vh, 760px);
  object-fit: cover;
  border-radius: clamp(0px, 1.5vw, 20px);
}
.hero-media-cap {
  position: absolute;
  bottom: 18px;
  left: clamp(18px, 3.5vw, 52px);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 19, 17, 0.5);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
}

/* intro animation (hero-only, on load) */
.intro { opacity: 0; transform: translateY(24px); animation: intro 1s var(--ease) forwards; }
.i1 { animation-delay: 0.05s; }
.i3 { animation-delay: 0.55s; }
.i4 { animation-delay: 0.7s; }
@keyframes intro { to { opacity: 1; transform: translateY(0); } }

/* ---------- marquee ---------- */
.marquee {
  margin-top: clamp(56px, 8vw, 120px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-d);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.mq-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--muted); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- big numbers ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stat { padding: 8px clamp(20px, 3vw, 44px); border-left: 1px solid var(--line); min-width: 0; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-n { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.stat-v {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.stat-u { font-family: var(--font-d); font-size: clamp(14px, 1.4vw, 18px); color: var(--muted); }
.stat-l {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- gallery ---------- */
.tabs { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 34px; }
.tab {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); border-bottom-color: var(--ink); }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.4vw, 20px);
}
.g-item {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border-radius: clamp(6px, 0.8vw, 12px);
  aspect-ratio: 4 / 3;
  text-align: left;
  padding: 0;
}
.g-item:nth-child(6n + 1) { grid-column: span 8; aspect-ratio: 8 / 4.6; }
.g-item:nth-child(6n + 5), .g-item:nth-child(6n + 6) { grid-column: span 6; aspect-ratio: 6 / 3.6; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.g-item:hover img { transform: scale(1.045); }
.g-cap {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 13px;
  color: #fff;
  background: rgba(20, 19, 17, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 9px 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.g-item:hover .g-cap, .g-item:focus-visible .g-cap { opacity: 1; transform: translateY(0); }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16, 15, 13, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
}
.lightbox[hidden] { display: none; }
.lb-stage { max-width: 1200px; width: 100%; }
.lb-stage img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
}
.lb-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  color: var(--dark-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lb-count { font-variant-numeric: tabular-nums; white-space: nowrap; }
.lb-close, .lb-nav {
  position: absolute;
  z-index: 2;
  color: #f5f4f0;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  font-size: 18px;
  transition: background 0.3s, transform 0.3s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(245, 244, 240, 0.1); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }

/* ---------- spec list (fact sheet) ---------- */
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-soft);
}
.spec-row:first-child { border-top: 1px solid var(--line); }
.spec-row dt {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.spec-row dd {
  font-family: var(--font-d);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* ---------- features ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0 clamp(28px, 4vw, 64px);
}
.feat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-soft);
}
.feat-idx {
  font-family: var(--font-d);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.feat-t { font-family: var(--font-d); font-size: 16.5px; letter-spacing: -0.005em; }

/* ---------- video ---------- */
.media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: clamp(6px, 1vw, 16px);
  overflow: hidden;
  background: var(--bg-2);
}
.media-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- dark band (open house) ---------- */
.band-dark { background: var(--dark); color: var(--bg); padding: clamp(64px, 9vw, 130px) 0; }
.band-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: end;
}
.eyebrow-light {
  display: block;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-bottom: 18px;
}
.band-date {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.band-date + .band-date { margin-top: 6px; }
.band-copy { color: var(--dark-muted); margin-bottom: 24px; max-width: 36ch; }
.add-to-cal { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; margin: 10px 0 20px; font-size: 12px; }
.add-to-cal-label { color: var(--dark-muted); }
.add-to-cal a { color: var(--bg); text-decoration: underline; text-underline-offset: 3px; }
.add-to-cal a:hover { color: var(--dark-muted); }

/* ---------- location ---------- */
.map-wrap { position: relative; border-radius: clamp(6px, 1vw, 16px); overflow: hidden; }
.map-embed {
  display: block;
  width: 100%;
  height: clamp(360px, 55vh, 560px);
  border: 0;
  filter: grayscale(1) contrast(1.04);
}
.map-card {
  position: absolute;
  left: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  background: var(--paper);
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 18px 50px rgba(22, 21, 19, 0.14);
}
.map-card-l { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.map-card-a { font-family: var(--font-d); font-size: 19px; letter-spacing: -0.01em; }
.map-card-c { font-size: 14px; color: var(--muted); }

/* ---------- agent ---------- */
#agent.section { padding-top: 0; }
.agent {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: clamp(48px, 7vw, 100px);
}
.agent-photo {
  aspect-ratio: 4 / 5;
  border-radius: clamp(8px, 1vw, 16px);
  overflow: hidden;
  background: var(--bg-2);
  display: grid;
  place-items: center;
}
.agent-photo img { width: 100%; height: 100%; object-fit: cover; }
.agent-initial { font-family: var(--font-d); font-size: 72px; font-weight: 300; color: var(--muted); }
.agent-name {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.agent-meta { margin-top: 10px; color: var(--muted); font-size: 14px; }
.agent-meta .sep { margin: 0 8px; }
.agent-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* ---------- form ---------- */
.form { display: flex; flex-direction: column; gap: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.fl { display: flex; flex-direction: column; gap: 8px; }
.fl > span {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.fl em { font-style: normal; opacity: 0.6; text-transform: none; letter-spacing: 0.04em; }
.field {
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 2px;
  border-radius: 0;
  transition: border-color 0.3s;
  width: 100%;
}
.field::placeholder { color: color-mix(in srgb, var(--muted) 55%, transparent); }
.field:focus { outline: none; border-bottom-color: var(--ink); }
textarea.field { resize: vertical; }
select.field { appearance: none; -webkit-appearance: none; cursor: pointer; }
.form .btn { align-self: flex-start; margin-top: 8px; }

.sent { border: 1px solid var(--line); border-radius: 16px; padding: clamp(28px, 4vw, 48px); }
.sent-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-size: 18px;
  margin-bottom: 18px;
}
.sent-h { font-family: var(--font-d); font-weight: 400; font-size: 24px; letter-spacing: -0.01em; margin-bottom: 8px; }

/* ---------- payment estimator ---------- */
.calc {
  margin-top: clamp(56px, 8vw, 110px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 80px);
  background: var(--paper);
}
.calc-total-line { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.calc-total {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.calc-per { color: var(--muted); font-size: 14px; }
.calc-break { margin-top: 16px; font-size: 13px; color: var(--muted); }
.calc-break strong { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }
.calc-controls { display: flex; flex-direction: column; gap: 22px; }
.slider { display: block; }
.slider-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.slider-head strong { color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: 0; }
input[type="range"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 2px;
  border-radius: 2px;
  background: var(--line);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--ink);
  transition: transform 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--ink);
}
.calc-inputs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px; }

/* ---------- footer ---------- */
.footer { background: var(--dark); color: var(--bg); padding: clamp(56px, 8vw, 110px) 0 36px; overflow: hidden; }
.footer-display {
  font-family: var(--font-d);
  font-weight: 300;
  font-size: clamp(44px, 9.5vw, 150px);
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 244, 240, 0.28);
  margin-bottom: clamp(48px, 7vw, 96px);
  user-select: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  padding-bottom: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--dark-line);
}
.footer-h {
  font-family: var(--font-d);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-bottom: 14px;
}
.footer-t { font-size: 14.5px; line-height: 1.8; color: #d8d6d0; }
.footer-t a { transition: color 0.3s; }
.footer-t a:hover { color: #fff; }
.footer-links a { display: block; }
.disclaimer { font-size: 12px; line-height: 1.7; color: var(--dark-muted); max-width: 900px; margin: 28px 0; }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--dark-muted);
}
.badges { letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; }

/* ---------- sticky mobile cta ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-soft);
}
.sticky-price { font-family: var(--font-d); font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }

/* ---------- reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro, .hw-in { animation: none; opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .sec-grid { grid-template-columns: 1fr; gap: 32px; }
  .sec-side { position: static; }
  .band-grid { grid-template-columns: 1fr; align-items: start; }
  .calc { grid-template-columns: 1fr; }
  .calc-inputs { grid-template-columns: repeat(2, 1fr); }
  .g-item, .g-item:nth-child(6n + 1), .g-item:nth-child(6n + 5), .g-item:nth-child(6n + 6) {
    grid-column: span 6;
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-burger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .agent { grid-template-columns: 1fr; }
  .agent-photo { max-width: 320px; }
  .g-item, .g-item:nth-child(6n + 1), .g-item:nth-child(6n + 5), .g-item:nth-child(6n + 6) { grid-column: span 12; }
  .spec-row dd { text-align: left; }
  .spec-row { grid-template-columns: 1fr; gap: 2px; }
  .sticky-cta { display: flex; }
  .footer { padding-bottom: 96px; }
  .lb-nav { display: none; }
}

/* ===== Price gate / unlock form ===== */
.unlock { margin-top: 20px; max-width: 560px; }
.unlock-copy { font-size: 14px; color: var(--muted, #666); margin-bottom: 10px; }
.unlock-err { font-size: 13px; color: #b3261e; margin-bottom: 10px; }
.unlock-form { display: flex; gap: 10px; flex-wrap: wrap; }
.unlock-form .field { flex: 1 1 160px; }

/* ===== Share bar ===== */
.share-bar { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 28px 0 8px; }
.share-label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted, #666); margin-right: 6px; }
.share-bar a, .share-bar .share-copy { font-size: 13px; color: inherit; text-decoration: underline; text-underline-offset: 3px; background: none; border: 0; cursor: pointer; padding: 0; font-family: inherit; }
