/* ============================================================
   JS GLOBAL / JS SHIELD — USFK Premium Vehicles Landing
   Dark, cinematic, military-trust. Palette from the crest.
   ============================================================ */

:root {
  --ink:        #0a1018;   /* base bg, deep navy-black */
  --ink-2:      #0c141f;
  --navy:       #0e1c30;   /* shield navy panel */
  --navy-2:     #112740;
  --navy-line:  #1c3149;
  --gold:       #c8a45a;
  --gold-bright:#e6cd92;
  --gold-deep:  #9c7c3e;
  --paper:      #f1ece1;   /* warm off-white text */
  --muted:      #93a0b1;   /* cool gray */
  --muted-warm: #b6ab97;
  --hair:       rgba(200,164,90,0.22);
  --hair-soft:  rgba(241,236,225,0.10);

  --font-display: "Bodoni Moda", Georgia, serif;
  --font-sans:    "Archivo", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* subtle film grain / vignette layered on the whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(200,164,90,0.07), transparent 55%),
    radial-gradient(100% 60% at 50% 110%, rgba(18,39,64,0.5), transparent 60%);
}

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

.wrap {
  width: min(100%, var(--maxw)); margin-inline: auto;
  padding-inline: max(var(--pad), env(safe-area-inset-left));
  position: relative; z-index: 1;
}

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: baseline;
  gap: 0.8em;
}
.eyebrow .idx { color: var(--gold-bright); }
.eyebrow.center { justify-content: center; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0; line-height: 1.04; }
.display {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  letter-spacing: -0.01em;
  font-weight: 500;
}
.display em { font-style: italic; color: var(--gold-bright); }
.h2 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.01em; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--muted); max-width: 56ch; }

.gold-rule {
  display: flex; align-items: center; gap: 14px;
  color: var(--gold);
}
.gold-rule::before, .gold-rule::after {
  content: ""; height: 1px; flex: 1; background: var(--hair);
}
.star { width: 13px; height: 13px; flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 2px;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #2a1f08; font-weight: 700;
  box-shadow: 0 10px 30px -12px rgba(200,164,90,0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(200,164,90,0.75); }
.btn-ghost {
  background: transparent; color: var(--paper);
  border-color: var(--hair);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translate(3px,-3px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s, border-color .35s, backdrop-filter .35s, padding .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,14,22,0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--hair-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 42px; height: 42px; }
.brand .bname { font-family: var(--font-display); font-size: 19px; letter-spacing: .02em; line-height: 1; }
.brand .btag { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); transition: color .2s; position: relative; padding-block: 6px;
}
.nav-links a:hover { color: var(--paper); }
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0; background:var(--gold); transition: width .25s;
}
.nav-links a:hover::after { width:100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav .btn { padding: 12px 20px; }
.mobile-cta { display: none; }

/* hamburger */
.nav-burger {
  display: none; background: none; border: none; padding: 8px;
  flex-direction: column; gap: 5px; cursor: pointer; z-index: 60;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; background: var(--paper);
  transition: transform .3s, opacity .3s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 60px;
  overflow: hidden;
}
.hero-grid {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  width: 100%;
}
.hero-eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 26px; }
.hero .lead { margin-bottom: 38px; margin-inline: auto; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; justify-content: center; }

.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 780px; width: 100%;
}
.trust-strip .ti {
  background: linear-gradient(160deg, rgba(176,155,98,0.08), rgba(14,28,48,0.5));
  border: 1px solid rgba(176,155,98,0.18); border-radius: 8px;
  padding: 22px 18px 20px; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; transition: border-color .3s, transform .3s;
}
.trust-strip .ti:hover { border-color: rgba(176,155,98,0.4); transform: translateY(-2px); }
.trust-strip .ti .dot {
  color: var(--gold); width: 28px; height: 28px; display: grid; place-items: center;
  border: 1px solid rgba(176,155,98,0.3); border-radius: 50%; flex: none;
}
.trust-strip .ti .dot svg { width: 7px; height: 7px; }
.trust-strip .ti span { font-size: 12.5px; color: var(--muted-warm); line-height: 1.4; }
.trust-strip .ti strong { color: var(--paper); font-weight: 600; display: block; font-size: 13px; letter-spacing: .01em; }

/* hero emblem */
.hero-emblem { position: relative; display: grid; place-items: center; margin-bottom: 40px; }
.emblem-disc {
  position: relative; width: min(280px, 60vw); aspect-ratio: 1;
  display: grid; place-items: center;
}
.emblem-disc::before {
  content:""; position:absolute; inset:-6%;
  background: radial-gradient(circle at 50% 42%, rgba(200,164,90,0.22), transparent 62%);
  filter: blur(6px);
}
.emblem-disc::after {
  content:""; position:absolute; inset:0; border-radius:50%;
  border:1px solid var(--hair);
  box-shadow: inset 0 0 60px -20px rgba(200,164,90,0.4);
  animation: spin 60s linear infinite;
}
.emblem-disc img { position: relative; width: 100%; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6)); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .emblem-disc::after { animation: none; } }

.scroll-cue {
  position:absolute; left:50%; bottom: 26px; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px; letter-spacing:.22em; text-transform:uppercase;
  color: var(--muted); display:flex; align-items:center; gap:10px;
}
.scroll-cue .line { width: 46px; height:1px; background: var(--gold); display:inline-block; transform-origin:left; animation: cue 2.4s ease-in-out infinite; }
@keyframes cue { 0%,100%{transform:scaleX(.4);opacity:.5} 50%{transform:scaleX(1);opacity:1} }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { position: relative; }
.sec { padding-block: clamp(72px, 11vw, 140px); }
.sec-head { max-width: 760px; }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head .lead { margin-top: 22px; }

/* ============================================================
   WHY JS
   ============================================================ */
.why { background: linear-gradient(180deg, var(--ink), var(--ink-2)); border-top:1px solid var(--hair-soft); }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 64px; border: 1px solid var(--hair-soft); border-radius: 4px; overflow:hidden;
}
.stat { padding: 30px clamp(18px,2vw,30px); border-right: 1px solid var(--hair-soft); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem,4vw,3.2rem); color: var(--gold-bright); line-height:1; }
.stat .lbl { font-family: var(--font-mono); font-size: 11.5px; letter-spacing:.12em; text-transform:uppercase; color: var(--muted); margin-top: 14px; }

.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hair-soft); margin-top: 64px; border:1px solid var(--hair-soft); }
.pillar {
  background: var(--ink); padding: clamp(28px,3vw,42px);
  transition: background .3s;
}
.pillar:hover { background: rgba(14,28,48,0.5); }
.pillar .pidx { font-family: var(--font-mono); font-size: 12px; color: var(--gold); letter-spacing:.1em; }
.pillar h3 { font-size: 1.6rem; margin: 18px 0 12px; }
.pillar p { color: var(--muted); font-size: 15.5px; margin:0; }

.founder {
  margin-top: 72px;
  display: grid; grid-template-columns: 200px 1fr; gap: clamp(28px,4vw,56px);
  align-items: start;
  padding: clamp(28px,3vw,48px);
  border: 1px solid var(--hair); border-radius: 5px;
  background: linear-gradient(135deg, rgba(14,28,48,0.6), rgba(10,16,24,0.2));
}
.founder-badge {
  aspect-ratio: 1; border-radius: 50%; display:grid; place-items:center;
  border: 1px solid var(--hair); background: radial-gradient(circle at 50% 40%, rgba(200,164,90,0.12), transparent 70%);
}
.founder-badge img { width: 86%; }
.founder .fkr { font-family: var(--font-mono); font-size: 12px; letter-spacing:.18em; text-transform:uppercase; color: var(--gold); }
.founder h3 { font-size: clamp(1.7rem,2.6vw,2.3rem); margin: 12px 0 6px; }
.founder .frole { color: var(--muted-warm); font-size: 15px; margin-bottom: 22px; }
.founder p { color: var(--muted); font-size: 15.5px; }
.founder .sig { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--paper); margin-top: 22px; }

/* ============================================================
   BUYBACK
   ============================================================ */
.buyback { background: var(--ink-2); border-top: 1px solid var(--hair-soft); }
.buyback .eyebrow { display: flex; align-items: center; gap: 8px; }

/* --- 60% hero block --- */
.bb-hero {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px,5vw,64px);
  align-items: center; margin-top: 56px;
}
.bb-hero-left .eyebrow { margin-bottom: 16px; }
.bb-hero-left .h2 { margin-bottom: 20px; }
.bb-hero-left .lead { margin-bottom: 28px; }
.bb-hero-right { display: flex; justify-content: center; }
.bb-big-num {
  text-align: center; padding: 48px 40px;
  border: 1px solid var(--gold-dim); border-radius: 50%;
  width: 260px; height: 260px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(200,164,90,0.1), transparent 70%);
}
.bb-pct {
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 700;
  line-height: 1; color: var(--gold-bright);
}
.bb-pct span { font-size: 3rem; }
.bb-pct-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing:.16em;
  text-transform: uppercase; color: var(--paper); margin-top: 8px;
}
.bb-pct-sub {
  font-size: 13px; color: var(--muted); margin-top: 6px;
}

/* --- cost tiers --- */
.bb-tiers {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 48px;
}
.bb-tier {
  border: 1px solid var(--hair-soft); border-radius: 5px; padding: 32px 28px;
  background: var(--navy); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.bb-period { font-family: var(--font-mono); font-size: 11px; letter-spacing:.16em; text-transform: uppercase; color: var(--muted); }
.bb-cost { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-bright); line-height: 1.1; }
.bb-note { font-size: 13px; color: var(--muted); margin-top: 4px; }

.bb-how {
  margin-top: 56px; padding: 36px; border: 1px solid var(--hair-soft); border-radius: 5px;
  background: var(--navy);
}
.bb-how h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 28px; }
.bb-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.bb-step { display: flex; gap: 14px; }
.bb-si {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gold-dim); display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing:.06em;
}
.bb-step strong { display: block; font-size: 15px; color: var(--paper); margin-bottom: 6px; }
.bb-step span { font-size: 14px; color: var(--muted); line-height: 1.5; }

.bb-fine {
  margin-top: 24px; font-size: 12px; color: var(--muted); font-style: italic;
  text-align: center; max-width: 64ch; margin-inline: auto;
}

/* ============================================================
   INVENTORY
   ============================================================ */
.inv { background: var(--ink-2); border-top:1px solid var(--hair-soft); }

/* --- hero photo --- */
.inv-hero {
  position: relative; margin-top: 56px; border-radius: 5px; overflow: hidden;
  aspect-ratio: 21/9; max-height: 360px;
}
.inv-hero img { width:100%; height:100%; object-fit: cover; }
.inv-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,16,24,0.8));
}
.inv-hero-caption {
  position: absolute; bottom: 16px; left: 20px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; letter-spacing:.1em; text-transform: uppercase;
  color: rgba(241,236,225,0.7);
}
.inv-hero-caption span { color: var(--gold); }

/* --- vehicle list --- */
.inv-list { margin-top: 48px; }
.vrow {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 24px 0; border-bottom: 1px solid var(--hair-soft);
  transition: background .25s; cursor: pointer;
}
.vrow:first-child { border-top: 1px solid var(--hair-soft); }
.vrow:hover { background: rgba(176,155,98,0.04); }

.vrow-idx {
  flex-shrink: 0; width: 36px; padding-top: 4px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing:.1em; color: var(--gold-dim);
}
.vrow-main { flex: 1; min-width: 0; }
.vrow-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.vrow-blurb { margin: 10px 0 0; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

.vname { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.1; }
.vspec { font-family: var(--font-mono); font-size: 11.5px; letter-spacing:.08em; color: var(--gold); margin-top: 5px; text-transform: uppercase; }
.vtags { display: flex; flex-wrap: wrap; gap: 7px; align-self: center; }
.vtag { font-family: var(--font-mono); font-size: 10px; letter-spacing:.08em; text-transform: uppercase; color: var(--muted-warm); border: 1px solid var(--hair-soft); border-radius: 2px; padding: 4px 8px; }

.vinquire {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing:.12em; text-transform: uppercase;
  color: var(--gold-bright); background: none; border: none; padding: 8px 0; white-space: nowrap;
}
.vinquire .arr { transition: transform .25s; }
.vinquire:hover .arr { transform: translateX(4px); }

/* --- showroom CTA banner --- */
.inv-showroom-cta {
  margin-top: 40px; padding: 28px 32px;
  border: 1px solid var(--gold-dim); border-radius: 5px;
  background: linear-gradient(135deg, rgba(176,155,98,0.06), rgba(176,155,98,0.02));
  display: flex; align-items: center; gap: 24px;
}
.showroom-icon { flex-shrink: 0; }
.showroom-copy { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.showroom-copy strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--paper); }
.showroom-copy span { font-size: 14px; color: var(--muted); line-height: 1.55; }
.inv-showroom-cta .btn { flex-shrink: 0; white-space: nowrap; }

.inv-note { margin-top: 24px; font-family: var(--font-mono); font-size: 12px; letter-spacing:.08em; color: var(--muted); text-align: center; }

/* ============================================================
   CONSULTATION
   ============================================================ */
.cta-sec { background: linear-gradient(180deg, var(--ink-2), var(--ink)); border-top:1px solid var(--hair-soft); }
.cta-grid { display:grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px,4vw,64px); margin-top: 56px; align-items:start; }

.form-card { border:1px solid var(--hair-soft); border-radius:5px; background: var(--navy); padding: clamp(26px,3vw,40px); }
.field { margin-bottom: 20px; }
.field label { display:block; font-family: var(--font-mono); font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color: var(--muted); margin-bottom: 9px; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width:100%; background: rgba(8,14,22,0.6); border:1px solid var(--hair-soft); border-radius:3px;
  color: var(--paper); font-family: var(--font-sans); font-size: 15px; padding: 13px 15px;
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--gold); background: rgba(8,14,22,0.85); }
.field select { appearance:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a45a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 15px center; }
.field.error input, .field.error select, .field.error textarea { border-color: #c8645a; }
.field .err-msg { color:#e08a80; font-size: 12px; margin-top:6px; font-family: var(--font-mono); letter-spacing:.04em; }
.row-2 { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn { width:100%; margin-top: 8px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 18px; line-height:1.5; }
.form-note b { color: var(--gold-bright); font-weight:600; }

/* success */
.form-success { text-align:center; padding: 30px 10px; }
.form-success .ck { width:64px; height:64px; margin:0 auto 22px; border-radius:50%; border:1px solid var(--gold); display:grid; place-items:center; color:var(--gold-bright); }
.form-success h3 { font-size: 1.8rem; margin-bottom: 12px; }
.form-success p { color: var(--muted); max-width: 40ch; margin: 0 auto; }

/* contact card */
.contact-card { display:flex; flex-direction:column; gap: 4px; }
.contact-card .ci {
  display:flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--hair-soft);
}
.contact-card .ci:last-child { border-bottom:none; }
.ci .ic { width: 38px; height:38px; flex:none; border-radius:50%; border:1px solid var(--hair); display:grid; place-items:center; color: var(--gold); }
.ci .ck { font-family: var(--font-mono); font-size: 10.5px; letter-spacing:.16em; text-transform:uppercase; color: var(--muted); }
.ci .cv { font-size: 16px; color: var(--paper); margin-top: 3px; }
.ci .cv small { display:block; color: var(--muted); font-size: 13px; margin-top:3px; }
.book-call {
  margin-top: 26px; padding: 24px; border:1px solid var(--hair); border-radius:5px;
  background: linear-gradient(135deg, rgba(200,164,90,0.1), transparent);
}
.book-call .bk { font-family: var(--font-mono); font-size: 11px; letter-spacing:.16em; text-transform:uppercase; color: var(--gold); }
.book-call .bn { font-family: var(--font-display); font-size: 1.7rem; margin: 8px 0 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top:1px solid var(--hair-soft); padding-block: 60px 40px; background: var(--ink); }
.foot-top { display:flex; justify-content:space-between; gap: 40px; flex-wrap:wrap; align-items:flex-start; }
.foot-brand { display:flex; gap:16px; align-items:flex-start; max-width: 420px; }
.foot-brand img { width: 56px; }
.foot-brand .fb-name { font-family: var(--font-display); font-size: 1.3rem; }
.foot-brand .fb-sub { font-family: var(--font-mono); font-size: 10px; letter-spacing:.2em; text-transform:uppercase; color: var(--gold); margin-top:4px; }
.foot-brand p { font-size: 13px; color: var(--muted); margin-top: 14px; }
.foot-cols { display:flex; gap: clamp(40px,6vw,90px); }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing:.16em; text-transform:uppercase; color: var(--muted); margin:0 0 16px; font-weight:400; }
.foot-col a { display:block; font-size: 14.5px; color: var(--paper); margin-bottom: 11px; transition: color .2s; }
.foot-col a:hover { color: var(--gold-bright); }
.foot-bottom { margin-top: 50px; padding-top: 26px; border-top:1px solid var(--hair-soft); display:flex; justify-content:space-between; gap: 20px; flex-wrap:wrap; }
.foot-bottom p { font-size: 12px; color: var(--muted); margin:0; max-width: 70ch; }
.foot-disclaimer { font-style: italic; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; } }

/* ============================================================
   RESPONSIVE — TABLET (max 980px)
   ============================================================ */
@media (max-width: 980px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .emblem-disc { width: 220px; }
  .cta-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right:none; }
  .stat:nth-child(1),.stat:nth-child(2){ border-bottom:1px solid var(--hair-soft); }
  .pillars { grid-template-columns: 1fr; }
  .bb-hero { grid-template-columns: 1fr; text-align: center; }
  .bb-hero-left .btn { width: 100%; max-width: 320px; margin-inline: auto; }
  .bb-big-num { width: 220px; height: 220px; margin: 0 auto; }
  .bb-pct { font-size: 4.5rem; }
  .bb-steps { grid-template-columns: 1fr; gap: 20px; }
  .inv-showroom-cta { flex-direction: column; text-align: center; gap: 18px; }
  .vrow-head { flex-direction: column; gap: 10px; }
  .founder { grid-template-columns: 1fr; }
  .founder-badge { width: 140px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  body { font-size: 16px; }

  /* --- NAV: hamburger + full-screen menu --- */
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
    position: fixed; inset: 0; z-index: 55;
    background: rgba(10,16,24,0.97); backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a {
    font-size: 16px; letter-spacing: .18em; padding: 20px 0;
    color: var(--paper); opacity: 0; transform: translateY(12px);
    transition: opacity .3s, transform .3s, color .2s;
  }
  .nav-links.open a {
    opacity: 1; transform: none;
  }
  .nav-links.open a:nth-child(1) { transition-delay: .08s; }
  .nav-links.open a:nth-child(2) { transition-delay: .14s; }
  .nav-links.open a:nth-child(3) { transition-delay: .20s; }
  .nav-links.open .mobile-cta { transition-delay: .28s; }
  .nav-links a::after { display: none; }
  .mobile-cta { display: inline-flex !important; margin-top: 16px; }

  /* --- HERO --- */
  .hero { padding-top: 100px; padding-bottom: 40px; min-height: auto; }
  .emblem-disc { width: min(180px, 50vw); }
  .hero-emblem { margin-bottom: 28px; }
  .hero .lead { margin-bottom: 28px; }
  .hero-cta { flex-direction: column; align-items: center; margin-bottom: 32px; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-strip .ti { padding: 16px 14px; }
  .scroll-cue { display:none; }

  /* --- SECTIONS --- */
  .sec { padding-block: clamp(48px, 10vw, 72px); }
  .sec-head .h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* --- STATS --- */
  .stats { grid-template-columns: repeat(2,1fr); margin-top: 40px; }

  /* --- PILLARS --- */
  .pillars { margin-top: 40px; }
  .pillar h3 { font-size: 1.3rem; }

  /* --- FOUNDER --- */
  .founder { grid-template-columns: 1fr; text-align: center; margin-top: 48px; padding: 24px; }
  .founder-badge { width: 100px; margin: 0 auto; }
  .founder .sig { font-size: 1.2rem; }

  /* --- BUYBACK --- */
  .bb-hero { grid-template-columns: 1fr; text-align: center; margin-top: 36px; gap: 28px; }
  .bb-big-num { width: 190px; height: 190px; padding: 32px 24px; }
  .bb-pct { font-size: 3.8rem; }
  .bb-pct span { font-size: 2.2rem; }
  .bb-tiers { grid-template-columns: 1fr; margin-top: 32px; }
  .bb-tier { padding: 24px 20px; }
  .bb-how { padding: 24px 20px; margin-top: 36px; }
  .bb-steps { grid-template-columns: 1fr; gap: 18px; }

  /* --- INVENTORY --- */
  .inv-hero { aspect-ratio: 16/9; margin-top: 36px; }
  .vrow { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 0; }
  .vrow-idx { width: auto; }
  .vrow-head { flex-direction: column; gap: 10px; }
  .vname { font-size: 1.15rem; }
  .vinquire { padding: 10px 0; min-height: 44px; }
  .inv-showroom-cta { flex-direction: column; text-align: center; padding: 24px 20px; gap: 16px; }
  .inv-showroom-cta .btn { width: 100%; }

  /* --- CONSULTATION --- */
  .cta-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .row-2 { grid-template-columns: 1fr; }
  .field input, .field select, .field textarea { font-size: 16px; padding: 14px 14px; }
  .book-call .bn { font-size: 1.3rem; }

  /* --- FOOTER --- */
  .foot-top { flex-direction: column; }
  .foot-cols { flex-direction: column; gap: 28px; }
  .foot-bottom { flex-direction: column; text-align: center; }

  /* --- TOUCH TARGETS (min 44px) --- */
  .btn { padding: 16px 24px; min-height: 48px; }
  .nav .btn { padding: 14px 20px; }
  .vinquire { padding: 10px 0; min-height: 44px; }
}
