/* ============================================================
   I LOVE CADILLACS — Main Stylesheet
   Aesthetic: Light luxury / art deco automotive (ivory + antique gold)
   Fonts: Archivo (display) + Inter (body) — free stand-ins for Cadillac Gothic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --black:       #FAF7EF;   /* page background — warm ivory */
  --dark:        #F1EBDD;   /* footer / recessed surface */
  --dark2:       #FFFFFF;   /* cards, inputs — clean white */
  --dark3:       #ECE4D3;   /* table header / elevated surface */
  --border:      #E4DAC6;   /* light warm border */
  --border2:     #D2C5AC;   /* stronger border */
  --gold:        #9A7A1E;   /* deep antique gold — readable on light */
  --gold-light:  #BE972F;   /* brighter gold for hovers */
  --gold-dim:    #C4AD78;   /* muted gold for hover borders */
  --white:       #1C1813;   /* PRIMARY TEXT — warm near-black */
  --white-dim:   #4D463B;   /* secondary text */
  --white-faint: #8A806E;   /* muted / faint text */
  --ink:         #221B0C;   /* dark text used on gold fills */
  --red:         #C0392B;
  --red-dim:     #8C2A1F;
  --blue:        #2E6DA4;
  --green:       #27774A;
  --amber:       #D4881E;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius:  6px;
  --radius2: 12px;
  --shadow:  0 6px 28px rgba(40,33,16,0.10);
  --glow:    0 0 36px rgba(201,168,76,0.18);

  --nav-h: 64px;
  --max-w: 1280px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.512rem, 3.15vw, 2.646rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; font-weight: 500; }

p { color: var(--white-dim); margin-bottom: 1rem; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
strong { color: var(--white); font-weight: 600; }

.gold { color: var(--gold); }
.dim  { color: var(--white-dim); }
.faint { color: var(--white-faint); }
.mono { font-family: var(--font-mono); font-size: 0.85em; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; position: relative; }
.section-sm { padding: 48px 0; }

/* ── GOLD DIVIDER ── */
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px 0 32px;
}
.divider-center { margin: 16px auto 32px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250,247,239,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--gold); }
.nav-logo-crest {
  width: 32px; height: 32px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--ink); font-weight: 700;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500;
  color: var(--white-dim); letter-spacing: 0.08em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--ink) !important;
  padding: 8px 18px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.82rem;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--ink) !important; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
}
.nav-dropdown-toggle .ti { font-size: 0.95rem; transition: transform .2s; }
.nav-dropdown.open > .nav-dropdown-toggle .ti { transform: rotate(180deg); }
.nav-dropdown-menu {
  list-style: none;
  position: absolute; top: 100%; left: 0;
  min-width: 210px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 1001;
}
.nav-dropdown.open > .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu li { width: 100%; }
.nav-dropdown-menu a {
  display: block; padding: 9px 12px; border-radius: 7px;
  letter-spacing: 0.04em; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--dark3); color: var(--gold); }
@media (hover: hover) {
  .nav-dropdown:hover > .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .nav-dropdown:hover > .nav-dropdown-toggle .ti { transform: rotate(180deg); }
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,168,76,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #FAF7EF 0%, #F3EDDF 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.hero-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}
.hero-text { min-width: 0; }
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.1rem; color: var(--white-dim);
  max-width: 560px; margin-bottom: 40px; line-height: 1.7;
}
.hero-stats {
  display: flex; gap: 36px 32px; margin-bottom: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.75rem; color: var(--white-faint);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── HERO PHOTO ── */
.hero-photo { position: relative; margin: 0; min-width: 0; }
.hero-photo img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 1104 / 683;   /* native 1104x621, height increased 10% */
  object-fit: cover; object-position: center;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-photo figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(28,24,19,0.78); color: #F5F0E8;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.04em;
  cursor: pointer; border: none; transition: all .25s;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold); color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-light); color: var(--ink);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--white-dim);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-ghost { background: none; border: none; color: var(--gold); padding: 0; font-weight: 600; font-size: 0.88rem; cursor: pointer; }

/* ── CARDS ── */
.card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 28px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
  box-shadow: var(--shadow), var(--glow);
}
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.card h4 { margin-bottom: 8px; }
.card p  { font-size: 0.9rem; margin-bottom: 0; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

/* ── BADGE / TAG ── */
.badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.badge-gold  { background: rgba(201,168,76,0.18); color: var(--gold); border: 1px solid rgba(201,168,76,0.4); }
.badge-red   { background: rgba(192,57,43,0.12);  color: #A4392B;    border: 1px solid rgba(192,57,43,0.35); }
.badge-green { background: rgba(39,119,74,0.12);  color: #1C6B41;    border: 1px solid rgba(39,119,74,0.35); }
.badge-blue  { background: rgba(46,109,164,0.12); color: #235C8F;    border: 1px solid rgba(46,109,164,0.35); }
.badge-amber { background: rgba(212,136,30,0.14); color: #93600C;    border: 1px solid rgba(212,136,30,0.4); }

/* ── MODEL SELECTOR ── */
.model-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.model-tab {
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid var(--border2);
  background: transparent; color: var(--white-dim);
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: all .2s;
  font-family: var(--font-body);
}
.model-tab:hover, .model-tab.active {
  background: var(--gold); color: var(--ink);
  border-color: var(--gold);
}

/* ── ISSUE PANEL ── */
.issue-panel {
  display: none;
  animation: fadeIn .3s ease;
}
.issue-panel.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── GUIDE CARD ── */
.guide-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: all .3s;
}
.guide-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); box-shadow: var(--glow); }
.guide-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.guide-card-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.guide-card-title { font-size: 1rem; font-weight: 500; }
.guide-card-body { padding: 20px 24px; }
.guide-card-body p { font-size: 0.88rem; color: var(--white-dim); margin-bottom: 14px; }
.guide-card-body ul { list-style: none; padding: 0; }
.guide-card-body ul li {
  font-size: 0.85rem; color: var(--white-dim);
  padding: 5px 0; display: flex; align-items: baseline; gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.guide-card-body ul li:last-child { border-bottom: none; }
.guide-card-body ul li::before {
  content: '›'; color: var(--gold); flex-shrink: 0; font-size: 1rem;
}

/* ── ACCORDION ── */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  width: 100%; background: none; border: none;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--white); transition: color .2s;
}
.accordion-trigger:hover { color: var(--gold); }
.accordion-trigger::after {
  content: '+'; font-size: 1.4rem; color: var(--gold);
  transition: transform .3s; flex-shrink: 0;
}
.accordion-trigger.open::after { transform: rotate(45deg); }
.accordion-content {
  display: none; padding-bottom: 20px;
}
.accordion-content.open { display: block; }
.accordion-content p { font-size: 0.9rem; }
.accordion-content ul { padding-left: 20px; }
.accordion-content li { font-size: 0.9rem; color: var(--white-dim); padding: 3px 0; }

/* ── ALERT BOXES ── */
.alert {
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  margin: 16px 0;
  display: flex; gap: 12px; align-items: flex-start;
}
.alert-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.alert-red   { background: rgba(192,57,43,0.10);  border-left: 3px solid var(--red);   color: #9F3325; }
.alert-gold  { background: rgba(201,168,76,0.16);  border-left: 3px solid var(--gold);  color: #7A6010; }
.alert-green { background: rgba(39,119,74,0.12);   border-left: 3px solid var(--green); color: #1C6B41; }
.alert-blue  { background: rgba(46,109,164,0.12);  border-left: 3px solid var(--blue);  color: #235C8F; }

/* ── SECTION HEADER ── */
.sec-header { margin-bottom: 48px; }
.sec-header .eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.sec-header .eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}

/* ── TABLE ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius2); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
th {
  background: var(--dark3); color: var(--gold);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--border);
}
td {
  padding: 13px 18px; font-size: 0.88rem; color: var(--white-dim);
  border-bottom: 1px solid var(--border);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(201,168,76,0.03); }
.severity-high { color: #B0392B; font-weight: 600; }
.severity-med  { color: #93600C; font-weight: 600; }
.severity-low  { color: #1C6B41; font-weight: 600; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--white); margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.88rem; color: var(--white-faint); line-height: 1.7; margin-bottom: 20px; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--white-faint); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--white-faint);
}

/* ── FB BANNER ── */
.fb-banner {
  background: linear-gradient(135deg, #1A2540 0%, #0F1624 100%);
  border: 1px solid #2A3A5C;
  border-radius: var(--radius2);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 48px;
}
.fb-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: #1877F2; display: flex; align-items: center;
  justify-content: center; font-size: 26px; color: white;
  flex-shrink: 0;
}
.fb-banner h4 { color: white; margin-bottom: 4px; }
.fb-banner p  { color: #8A9BB8; font-size: 0.88rem; margin: 0; }
.fb-banner .btn { flex-shrink: 0; background: #1877F2; color: white; }
.fb-banner .btn:hover { background: #1464CF; color: white; transform: translateY(-2px); }

/* ── SEARCH BAR ── */
.search-wrap {
  position: relative; max-width: 560px;
}
.search-input {
  width: 100%; padding: 14px 20px 14px 48px;
  background: var(--dark2); border: 1px solid var(--border2);
  border-radius: 100px; color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color .2s;
}
.search-input::placeholder { color: var(--white-faint); }
.search-input:focus { border-color: var(--gold); }
.search-icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--white-faint); font-size: 18px;
  pointer-events: none;
}

/* ── HERO CAR ILLUSTRATION ── */
.hero-car {
  position: absolute; right: -60px; bottom: 0;
  width: 55%; max-width: 700px; opacity: 0.15;
  pointer-events: none;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.05), transparent);
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.8rem; color: var(--white-faint);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* ── SIDEBAR LAYOUT ── */
.layout-sidebar {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 40px; align-items: start;
}
.sidebar {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius2); overflow: hidden;
}
.sidebar-title {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
}
.sidebar-links { list-style: none; }
.sidebar-links li a {
  display: block; padding: 12px 20px;
  color: var(--white-dim); font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.sidebar-links li a:hover, .sidebar-links li a.active {
  color: var(--gold); background: rgba(201,168,76,0.06);
  padding-left: 26px;
}
.sidebar-links li:last-child a { border-bottom: none; }

/* ── STAT ROW ── */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius2);
  overflow: hidden; margin: 40px 0;
}
.stat-cell {
  background: var(--dark2);
  padding: 28px 24px; text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-lbl {
  font-size: 0.78rem; color: var(--white-faint);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { max-width: 560px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .nav {
    background: var(--black);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--black);
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(40,33,16,0.18);
    padding: 40px 24px;
    gap: 24px; z-index: 1100;
    overflow-y: auto;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .nav-dropdown { width: 100%; text-align: center; }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent;
    padding: 14px 0 0; gap: 14px; min-width: 0;
    display: none; align-items: center;
  }
  .nav-dropdown.open > .nav-dropdown-menu { display: flex; }
  .nav-links.open .nav-dropdown-menu a { font-size: 1rem; color: var(--white-dim); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .fb-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; }
  .model-tabs { gap: 6px; }
  .model-tab { padding: 6px 14px; font-size: 0.78rem; }
}
