/* ============================================================
   Thunder Auto Hub — Landing Page Styles
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   Palette: dark graphite neutral + warm premium gold accent
   (ties to "Thunder" / lightning; reads premium, not car-wash blue)
   ============================================================ */
:root {
  --bg:        #0d0e11;   /* near-black base            */
  --bg-2:      #121419;   /* raised surface             */
  --surface:   #16181f;   /* cards                      */
  --surface-2: #1c1f28;   /* card hover / insets        */
  --line:      #262a34;   /* hairline borders           */
  --line-2:    #333844;

  --text:      #f4f4f2;   /* primary text               */
  --muted:     #a2a7b3;   /* secondary text             */
  --faint:     #6f7480;   /* tertiary / labels          */

  --gold:      #e8b44a;   /* accent                     */
  --gold-soft: #f0c874;
  --gold-deep: #c79632;
  --gold-glow: rgba(232, 180, 74, 0.18);

  --radius:    16px;
  --radius-sm: 11px;
  --maxw:      1180px;
  --gutter:    clamp(1.15rem, 4vw, 2.5rem);

  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.8);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-150%);
  top: 8px;
  background: var(--gold);
  color: #1a1408;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  z-index: 200;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

/* ============================================================
   SECTION RHYTHM + HEADINGS
   ============================================================ */
section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
.section-head p { color: var(--muted); margin-top: 0.9rem; font-size: 1.05rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1408;
  box-shadow: 0 10px 30px -10px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(232,180,74,0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER (sticky)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 14, 17, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(13, 14, 17, 0.92); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 66px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 30px; width: auto; display: block; }
@media (min-width: 600px) { .brand-logo { height: 34px; } }

.nav-links { display: none; gap: 1.7rem; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold-soft); }
@media (min-width: 820px) { .nav-links { display: inline-flex; } }

.header-cta { display: none; }
@media (min-width: 600px) { .header-cta { display: inline-flex; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(3rem, 9vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 9vw, 6rem);
  overflow: hidden;
}
/* Ambient gold glow + subtle grid — no images, fast load */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 8%, var(--gold-glow), transparent 60%),
    radial-gradient(50% 45% at 8% 90%, rgba(120, 90, 30, 0.12), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 75%);
          mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 75%);
  opacity: 0.35;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.hero-badge strong { color: var(--text); font-weight: 600; }

.hero h1 {
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  max-width: 15ch;
}
.hero h1 .accent { color: var(--gold); }
.hero .sub {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.6vw, 1.28rem);
  max-width: 54ch;
  margin-top: 1.4rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}
.hero-note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-note svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* Two-column hero: copy on the left, Facebook reel on the right */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}
.hero-copy { min-width: 0; }

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
}
/* Phone-style bezel around the portrait (9:16) reel */
.reel-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(160deg, #23262f, #101218);
  border: 1px solid var(--line-2);
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, 0.9),
    0 0 44px -14px var(--gold-glow);
}
.reel-embed {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}
.reel-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Self-hosted <video> tiles (work gallery) */
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

/* Click-to-play facade (poster + play button) */
.reel-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent; /* let the <video> poster / poster-bg show through */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.reel-embed img,
.reel-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Placeholder backdrop shown until a real thumbnail is added */
.reel-poster-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 30% 0%, rgba(232, 180, 74, 0.16), transparent 55%),
    linear-gradient(160deg, var(--surface-2), #000);
}
.reel-poster-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 14px, transparent 14px 28px);
}
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1a1408;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 30px -8px rgba(232, 180, 74, 0.55);
  transition: transform 0.18s ease;
}
.reel-play svg { width: 28px; height: 28px; margin-left: 3px; }
.reel-poster:hover .reel-play,
.reel-poster:focus-visible .reel-play { transform: translate(-50%, -50%) scale(1.08); }
.reel-poster-tag {
  position: relative;
  z-index: 1;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.reel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.reel-link svg { width: 18px; height: 18px; color: #1877f2; }
.reel-link:hover { color: var(--gold-soft); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar { border-block: 1px solid var(--line); background: var(--bg-2); padding-block: 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  padding: 1.6rem 1.2rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.trust-item:nth-child(2n) { border-right: 0; }
@media (min-width: 860px) {
  .trust-item { border-bottom: 0; }
  .trust-item:nth-child(2n) { border-right: 1px solid var(--line); }
  .trust-item:last-child { border-right: 0; }
}
.trust-item .ic { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.trust-item .ic svg { width: 22px; height: 22px; }
.trust-item .big { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; line-height: 1.2; }
.trust-item .small { font-size: 0.85rem; color: var(--muted); margin-top: 0.15rem; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 620px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }
.service-card .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gold-glow);
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.service-card .ic svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.18rem; margin-bottom: 0.45rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; }
.service-card .tag {
  position: absolute; top: 1.3rem; right: 1.3rem;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--faint); border: 1px solid var(--line); border-radius: 999px; padding: 0.2rem 0.55rem;
}

/* ============================================================
   WHY HOME SERVICE
   ============================================================ */
.why { background: var(--bg-2); border-block: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 820px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { padding: 0.4rem 0; }
.why-card .num {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--gold); display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 0.85rem;
}
.why-card .num::before { content: ""; width: 30px; height: 2px; background: var(--gold); display: inline-block; }
.why-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.why-card p { color: var(--muted); }

/* ============================================================
   OUR WORK (click-to-play reel gallery)
   Cards reuse the .reel-embed / .reel-poster facade from the hero.
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 0.9rem;
}
@media (min-width: 760px) { .work-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1.1rem; } }

.work-card { margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.work-card .reel-embed { border: 1px solid var(--line); box-shadow: var(--shadow); }
.work-card .reel-poster-img { transition: transform 0.35s ease; }
.work-card:hover .reel-poster-img { transform: scale(1.05); }
.work-cap {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ============================================================
   FLEET & DEALERSHIP (high visual weight)
   ============================================================ */
.fleet {
  position: relative;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(232,180,74,0.10), transparent 55%),
    var(--surface);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.fleet::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--gold-soft), var(--gold-deep));
}
.fleet-wrap { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 940px) { .fleet-wrap { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); } }
.fleet .eyebrow { color: var(--gold); }
.fleet h2 { font-size: clamp(1.8rem, 4.5vw, 2.7rem); }
.fleet .lead { color: var(--muted); font-size: 1.08rem; margin-top: 1rem; max-width: 52ch; }
.fleet-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
/* Long CTA label must wrap instead of forcing the container wider than the screen */
.fleet-actions .btn { white-space: normal; text-align: center; max-width: 100%; }
@media (max-width: 619px) { .fleet-actions .btn { width: 100%; } }

.fleet-points { display: grid; gap: 0.9rem; }
.fleet-point {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.3rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.fleet-point .ic {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center; background: var(--gold-glow); color: var(--gold);
}
.fleet-point .ic svg { width: 22px; height: 22px; }
.fleet-point h3 { font-size: 1.08rem; margin-bottom: 0.25rem; }
.fleet-point p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-wrap { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3rem); align-items: center; }
@media (min-width: 860px) { .area-wrap { grid-template-columns: 1fr 1fr; } }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.5rem; }
.area-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface); border: 1px solid var(--line);
  padding: 0.6rem 1rem; border-radius: 999px; font-weight: 500; font-size: 0.95rem;
}
.area-chip svg { width: 15px; height: 15px; color: var(--gold); }
.area-note { color: var(--faint); font-size: 0.9rem; margin-top: 1.5rem; }
/* Live service-area map */
.map-embed {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  border: 1px solid var(--line-2);
  overflow: hidden;
  background: #0b0c0f;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-link {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(13, 14, 17, 0.82);
  border: 1px solid var(--line-2);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.map-link:hover { color: var(--gold-soft); border-color: var(--gold); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { text-align: center; }
.final-card {
  position: relative;
  background:
    radial-gradient(80% 130% at 50% 0%, rgba(232,180,74,0.16), transparent 60%),
    var(--surface);
  border: 1px solid var(--line-2);
  border-radius: clamp(20px, 4vw, 30px);
  padding: clamp(2.5rem, 7vw, 4.5rem) var(--gutter);
  overflow: hidden;
}
.final-card h2 { font-size: clamp(1.9rem, 5vw, 3rem); max-width: 20ch; margin-inline: auto; }
.final-card p { color: var(--muted); margin-top: 1rem; font-size: 1.08rem; max-width: 46ch; margin-inline: auto; }
.final-card .hero-actions { justify-content: center; margin-top: 2.2rem; }

/* ---- Quote form (serves individuals + fleet/dealership partners) ---- */
.quote-form { max-width: 620px; margin: 2.2rem auto 0; text-align: left; }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 620px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-row .field { margin-bottom: 0; }
.field label { font-family: var(--font-display); font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.field label .req { color: var(--gold); }
.field label .opt { color: var(--faint); font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  color-scheme: dark; /* render native popups (option list, autofill) in dark mode */
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a2a7b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
}
.field select option { background-color: #16181f; color: #f4f4f2; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.form-actions .btn { width: 100%; }
.form-note { font-size: 0.82rem; color: var(--faint); text-align: center; margin: 0; max-width: 42ch; }
@media (min-width: 620px) {
  .form-actions .btn { width: auto; min-width: 240px; }
}
.form-status { margin-top: 1.1rem; font-size: 0.95rem; text-align: center; min-height: 1.2em; font-weight: 500; }
.form-status.is-success { color: #79d99a; }
.form-status.is-error { color: #ff9d8c; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: clamp(2.5rem, 6vw, 3.5rem); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 0.9rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin: 0 0 1rem; }
.footer-col a, .footer-col p { color: var(--muted); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col svg { width: 16px; height: 16px; color: var(--faint); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; justify-content: space-between;
  color: var(--faint); font-size: 0.82rem;
}

/* ============================================================
   MOBILE STICKY CTA BAR (thumb reach)
   ============================================================ */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(13, 14, 17, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform 0.3s ease;
}
.mobile-cta.show { transform: translateY(0); }
@media (min-width: 720px) { .mobile-cta { display: none; } }

/* ============================================================
   SCROLL REVEAL (progressive; safe if JS/observer absent)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
