/* VCM Motors Luxury Cars · Prototype stylesheet */
:root {
  --ink: #14171C;
  --ink-soft: #2A2F37;
  --paper: #F7F5F0;
  --white: #FFFFFF;
  --gold: #C3A25F;
  --gold-deep: #97783A;
  --gold-soft: #F1E8D6;
  --text: #23272E;
  --text-2: #5D6470;
  --line: #E6E1D6;
  --green: #2D7A5E;
  --green-bg: #EEFAF4;
  --amber: #C47A1A;
  --amber-bg: #FFF6E8;
  --red: #B83B3B;
  --red-bg: #FDF0F0;
  --shadow-1: 0 1px 3px rgba(20,23,28,.07), 0 1px 2px rgba(20,23,28,.05);
  --shadow-2: 0 6px 18px rgba(20,23,28,.10), 0 2px 5px rgba(20,23,28,.06);
  --shadow-3: 0 14px 40px rgba(20,23,28,.16), 0 4px 10px rgba(20,23,28,.08);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 22px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink); font-weight: 800; padding: 12px 22px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-deep);
}
.h-dark .eyebrow { color: var(--gold); }
h1, h2, h3, .logo b, .price-big, .hero-stats b { font-family: 'Jost', 'Manrope', system-ui, sans-serif; }
h1, h2, h3 { font-weight: 700; letter-spacing: -.01em; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(34px, 5.4vw, 62px); }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
.sub { color: var(--text-2); font-size: 17px; max-width: 58ch; }

/* Buttons: always solid */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--r-md); border: 0;
  font-weight: 700; font-size: 15px; transition: background .15s, transform .1s;
  min-height: 44px;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: linear-gradient(to bottom right, #CDAB63, #A8853F); color: #fff; box-shadow: 0 4px 12px rgba(151,120,58,.35); }
.btn-gold:hover { background: linear-gradient(to bottom right, #B99450, #8E6E30); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #262B33; }
.btn-white { background: #fff; color: var(--ink); box-shadow: var(--shadow-1); }
.btn-white:hover { background: var(--paper); }
.btn-wa { background: #1FA855; color: #fff; }
.btn-wa:hover { background: #179147; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Nav ─ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .25s, box-shadow .25s;
  padding: 14px 0;
}
.nav.solid { background: rgba(20,23,28,.96); backdrop-filter: blur(10px); box-shadow: 0 2px 14px rgba(0,0,0,.25); padding: 10px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { display: flex; flex-direction: column; line-height: 1.05; }
.logo b { color: #fff; font-size: 21px; letter-spacing: .06em; font-weight: 800; }
.logo span { color: var(--gold); font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase; font-weight: 700; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: rgba(255,255,255,.88); font-weight: 600; font-size: 15px; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.nav-admin {
  color: var(--gold); border: 1px solid rgba(195,162,95,.55); border-radius: 100px;
  padding: 6px 14px; font-size: 13.5px; font-weight: 700;
}
.nav-links a.nav-admin:hover { background: rgba(195,162,95,.15); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; gap: 4px; background: rgba(255,255,255,.10); border-radius: 8px; padding: 3px; }
.lang-switch button {
  display: flex; align-items: center; gap: 6px; border: 0; background: transparent;
  color: rgba(255,255,255,.75); font-weight: 700; font-size: 13px; padding: 6px 10px; border-radius: 6px;
}
.lang-switch button[aria-pressed="true"] { background: #fff; color: var(--ink); }
.lang-switch img { width: 20px; height: 15px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.15); }
.nav-call { background: var(--gold); color: var(--ink) !important; padding: 9px 18px; border-radius: 8px; font-weight: 800 !important; font-size: 14px !important; white-space: nowrap; }
.nav-call:hover { background: #D4B473; color: var(--ink) !important; }
.burger { display: none; background: rgba(255,255,255,.12); border: 0; border-radius: 8px; width: 44px; height: 44px; color: #fff; font-size: 20px; }
@media (max-width: 1220px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 14px; }
  .nav-links a.nav-admin { padding: 5px 11px; font-size: 12.5px; }
  .nav-call { padding: 8px 13px; font-size: 13px !important; }
}

/* Modern selects (hero search, filters, sort) */
.searchbox select, .filterbar select, .select-ui {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2397783A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 15px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 12px 42px 12px 14px; min-height: 48px;
  font-family: inherit; font-size: 15px; font-weight: 700; color: var(--ink);
  cursor: pointer; transition: border-color .15s, box-shadow .15s, background-color .15s;
  width: 100%;
}
.searchbox select:hover, .filterbar select:hover, .select-ui:hover {
  border-color: var(--gold); background-color: #FFFDF8;
}
.searchbox select:focus-visible, .filterbar select:focus-visible, .select-ui:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold-deep);
}

/* ── Hero ─
   .fold groups the overlay-nav hero + stats band to EXACTLY one viewport.
   The nav is fixed (overlays the hero), so the hero itself starts at y=0 and
   clears the nav via .hero-inner top padding. Rule: overlay nav = fold does
   the math, never a hardcoded calc against an estimated band height. */
.fold { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; }
.fold .hero { flex: 1 1 auto; }
.fold .stats-band { flex: 0 0 auto; }
.hero {
  position: relative; min-height: 560px;
  display: flex; align-items: center;
  background: var(--ink); color: #fff; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-video.on { opacity: .92; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .92; }
.hero-fade { position: absolute; inset: 0; background: linear-gradient(97deg, rgba(12,14,17,.78) 16%, rgba(12,14,17,.30) 48%, rgba(12,14,17,.05) 72%); }
.hero-inner { position: relative; padding: 130px 0 70px; width: 100%; }
.hero h1 { color: #fff; max-width: 15ch; margin: 14px 0 18px; }
.hero .sub { color: rgba(255,255,255,.82); margin-bottom: 34px; }

.searchbox {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-3);
  padding: 18px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px;
  max-width: 860px;
}
.searchbox label { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); margin-bottom: 6px; }
.searchbox .btn { align-self: end; min-height: 48px; }

.stats-band { background: #0E1114; border-top: 1px solid rgba(255,255,255,.07); padding: 0; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stats div {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 24px 12px 22px; border-left: 1px solid rgba(255,255,255,.08);
}
.hero-stats div:first-child { border-left: 0; }
.hero-stats b { font-size: clamp(19px, 1.7vw, 25px); color: var(--gold); font-weight: 800; letter-spacing: -.01em; line-height: 1.15; }
.hero-stats span { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.62); margin-top: 5px; }
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats div:nth-child(3) { border-left: 0; }
  .hero-stats div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.08); }
}

/* ── Sections ─ */
section { padding: 84px 0; }
.section-head { margin-bottom: 38px; }
.section-head h2 { margin: 10px 0 8px; }
.section-head.split { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }

/* Categories */
.cats { background: var(--paper); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 14px; }
.cat-tile {
  position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3;
  background: var(--ink); box-shadow: var(--shadow-1); transition: transform .15s, box-shadow .15s;
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .68; transition: opacity .15s; }
.cat-tile:hover img { opacity: .82; }
.cat-tile .cat-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(10,12,15,.88)); color: #fff;
}
.cat-label b { display: block; font-size: 16.5px; }
.cat-label span { font-size: 12.5px; color: rgba(255,255,255,.75); }

/* Car cards */
.car-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.car-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-1); transition: transform .15s, box-shadow .2s; display: flex; flex-direction: column;
}
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.car-media { position: relative; aspect-ratio: 4/3; background: var(--paper); overflow: hidden; }
.car-media img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute; top: 12px; left: 12px; font-size: 11.5px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; color: #fff;
}
.badge.reserved { background: var(--amber); }
.badge.sold { background: var(--red); }
.badge.transit { background: #3A7D9E; }
.car-body { padding: 17px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.car-title { font-size: 17.5px; font-weight: 800; color: var(--ink); line-height: 1.25; }
.car-title small { display: block; font-weight: 600; color: var(--text-2); font-size: 13px; margin-top: 2px; }
.car-price { font-size: 21px; font-weight: 800; color: var(--gold-deep); }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.chip {
  font-size: 12px; font-weight: 700; color: var(--ink-soft);
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 4px 10px;
}

/* Full-width teaser inside the cars grid */
.grid-cta {
  grid-column: 1 / -1; position: relative; overflow: hidden;
  border-radius: var(--r-lg); box-shadow: var(--shadow-2);
  background: #14171C url('brand/cta-db9-web.jpg') center 62% / cover no-repeat;
  color: #fff; padding: 44px 46px;
  display: flex; align-items: center; justify-content: space-between; gap: 26px;
}
.grid-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(14,17,20,.72) 30%, rgba(14,17,20,.30)); }
.grid-cta-txt { position: relative; }
.grid-cta h3 { color: #fff; font-size: clamp(20px, 2.2vw, 27px); margin-bottom: 6px; }
.grid-cta p { color: rgba(255,255,255,.85); font-size: 15px; max-width: 52ch; }
.grid-cta .btn { position: relative; flex: 0 0 auto; }
@media (max-width: 720px) {
  .grid-cta { flex-direction: column; text-align: center; padding: 34px 22px; }
}

/* USP */
.usps { background: var(--ink); color: #fff; }
.usps h2 { color: #fff; }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; margin-top: 36px; }
.usp { border-top: 2px solid var(--gold); padding-top: 18px; }
.usp b { display: block; font-size: 17px; margin-bottom: 6px; }
.usp p { color: rgba(255,255,255,.72); font-size: 14.5px; }

/* About / visit */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.about-info { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0; }
.about-info b { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); margin-bottom: 4px; }
.about-info p { font-weight: 700; color: var(--ink); font-size: 15px; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); aspect-ratio: 4/3.2; background: var(--paper); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-load {
  width: 100%; height: 100%; border: 1px dashed var(--line); border-radius: var(--r-lg);
  background: var(--paper); display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--ink); font-family: inherit;
}
.map-load .map-pin { font-size: 34px; }
.map-load b { font-size: 16px; }
.map-load small { color: var(--text-2); font-size: 12.5px; }
.map-load:hover { background: var(--gold-soft); border-color: var(--gold); }

/* CTA band */
.cta-band {
  position: relative; color: #fff; text-align: center;
  background: #14171C url('brand/cta-db9-web.jpg') center 65% / cover no-repeat;
  padding: 110px 0;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(14,17,20,.42), rgba(14,17,20,.30));
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 10px; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.cta-band .sub { margin: 0 auto 30px; color: rgba(255,255,255,.88); text-shadow: 0 1px 12px rgba(0,0,0,.5); }

/* Footer */
footer { background: #0E1114; color: rgba(255,255,255,.72); padding: 60px 0 34px; font-size: 14.5px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
footer h4 { color: #fff; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
footer a { display: block; padding: 3px 0; }
footer a:hover { color: var(--gold); }
.foot-base { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }

/* ── Cars listing page ─ */
.page-head { background: var(--ink); color: #fff; padding: 130px 0 46px; }
.page-head h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.page-head .sub { color: rgba(255,255,255,.78); margin-top: 10px; }
.filterbar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-1);
  padding: 16px; display: grid; grid-template-columns: repeat(6, 1fr) auto; gap: 10px; margin: -32px 0 30px;
  position: relative;
}
.filterbar label { display: block; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--text-2); margin-bottom: 5px; }
.filterbar select { font-size: 14px; }
.filter-reset { align-self: end; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 10px 16px; font-weight: 700; font-size: 13.5px; color: var(--text-2); min-height: 48px; transition: background .15s, color .15s, border-color .15s; }
.filter-reset:hover { background: var(--gold-soft); color: var(--gold-deep); }
.results-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.results-row b { color: var(--ink); }
.empty-note { background: var(--paper); border: 1px dashed var(--line); border-radius: var(--r-md); padding: 44px 20px; text-align: center; color: var(--text-2); font-weight: 600; }

/* ── Car detail ─ */
.detail-wrap { padding: 118px 0 80px; }
.back-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--text-2); font-size: 14px; margin-bottom: 18px; }
.back-link:hover { color: var(--gold-deep); }
.detail-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 40px; align-items: start; }
.gallery-main { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--paper); box-shadow: var(--shadow-2); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gal-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px;
  border-radius: 50%; border: 0; background: rgba(14,17,20,.62); color: #fff; font-size: 18px; font-weight: 700;
}
.gal-nav:hover { background: rgba(14,17,20,.85); }
.gal-prev { left: 12px; } .gal-next { right: 12px; }
.gal-count { position: absolute; bottom: 12px; right: 14px; background: rgba(14,17,20,.68); color: #fff; font-size: 12.5px; font-weight: 700; padding: 4px 11px; border-radius: 100px; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 10px; }
.thumbs img { border-radius: var(--r-sm); aspect-ratio: 4/3; object-fit: cover; cursor: pointer; opacity: .72; border: 2px solid transparent; }
.thumbs img.on { opacity: 1; border-color: var(--gold); }
.thumbs img:hover { opacity: 1; }

.buy-box { position: sticky; top: 92px; }
.detail-title { font-size: clamp(24px, 2.6vw, 32px); }
.detail-variant { color: var(--text-2); font-weight: 600; margin: 5px 0 16px; }
.price-line { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.price-big { font-size: 36px; font-weight: 800; color: var(--gold-deep); letter-spacing: -.01em; }
.neg-note { font-size: 13px; font-weight: 700; color: var(--text-2); }
.warranty-line { display: inline-flex; align-items: center; gap: 8px; background: var(--green-bg); color: var(--green); font-weight: 700; font-size: 13.5px; border-radius: 100px; padding: 6px 14px; margin-bottom: 20px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; margin-bottom: 22px; }
.spec-cell { background: #fff; padding: 11px 14px; }
.spec-cell b { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); font-weight: 800; }
.spec-cell span { font-weight: 700; color: var(--ink); font-size: 14.5px; }
.contact-btns { display: grid; gap: 10px; margin-bottom: 26px; }

.extras-box h3, .desc-box h3, .similar h3 { font-size: 20px; margin-bottom: 14px; }
.extras-list { display: flex; flex-wrap: wrap; gap: 8px; }
.extras-list .chip { background: var(--gold-soft); border-color: #E4D5B4; color: var(--gold-deep); }
.desc-box { margin-top: 34px; }
.desc-text { white-space: pre-line; color: var(--text); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px; font-size: 15.5px; }
.similar { margin-top: 54px; }

/* Enquiry form */
.enquiry { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-1); padding: 22px; margin-top: 26px; }
.enquiry h3 { font-size: 19px; margin-bottom: 14px; }
.enquiry label { display: block; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); margin: 12px 0 5px; }
.enquiry input, .enquiry textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 11px 12px;
  font-family: inherit; font-size: 15px; min-height: 44px; background: #fff; color: var(--ink);
}
.enquiry input:focus-visible, .enquiry textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold-deep); }
.enquiry textarea { min-height: 96px; resize: vertical; }
.enquiry .btn { width: 100%; margin-top: 16px; }
.privacy-note { font-size: 12.5px; color: var(--text-2); margin-top: 10px; text-align: center; }
.form-success { background: var(--green-bg); border: 1px solid #BFE8D4; border-radius: var(--r-md); padding: 26px 20px; text-align: center; }
.form-success b { display: block; color: var(--green); font-size: 18px; margin-bottom: 6px; }
.form-error { color: var(--red); background: var(--red-bg); border-radius: var(--r-sm); font-size: 13.5px; font-weight: 600; padding: 9px 12px; margin-top: 12px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── Responsive ─ */
@media (max-width: 960px) {
  .detail-grid, .about-grid { grid-template-columns: 1fr; }
  .filterbar { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .buy-box { position: static; }
}
@media (max-width: 720px) {
  .nav-links { display: none; position: fixed; top: 64px; left: 12px; right: 12px; background: rgba(20,23,28,.98); border-radius: var(--r-md); padding: 18px; flex-direction: column; gap: 4px; box-shadow: var(--shadow-3); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 10px; border-radius: 8px; }
  .nav-links a:hover { background: rgba(255,255,255,.07); }
  .burger { display: block; }
  .nav-call { display: none; }
  .searchbox { grid-template-columns: 1fr; }
  .filterbar { grid-template-columns: 1fr 1fr; margin-top: 18px; }
  .hero-inner { padding-top: 110px; }
  section { padding: 60px 0; }
  .thumbs { grid-template-columns: repeat(5, 1fr); }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
}
