/* ═══════════════════════════════════════════════════════════════
   VELOCE CLASSICA — Design System
   Palette: Sahara Dusk on Deep Charcoal
   Fonts: Cormorant Garamond (display) + Outfit (body)
═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --gold:        #E6C07B;
  --gold-light:  #F2D9A2;
  --gold-dark:   #C9956B;
  --brown:       #5B3A29;
  --cream:       #F9F3EB;
  --cream-dim:   #EDE4D6;

  --bg:          #0E0C0A;
  --bg-2:        #161310;
  --bg-3:        #1E1A15;
  --bg-card:     #1A1510;

  --text:        #F0E8DC;
  --text-muted:  #9A8A76;
  --text-dim:    #6B5C4E;

  --border:      rgba(230, 192, 123, 0.15);
  --border-hover:rgba(230, 192, 123, 0.4);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Reveal Animation ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--brown);
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 192, 123, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-hover);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(230, 192, 123, 0.06);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ── Section Shared ────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(14, 12, 10, 0.92);
  backdrop-filter: blur(16px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.nav__logo-icon {
  color: var(--gold);
  font-size: 0.9rem;
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-hover);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__cta:hover {
  background: rgba(230, 192, 123, 0.08);
  border-color: var(--gold);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.hero__bg-img.loaded { transform: scale(1); }

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 12, 10, 0.88) 0%,
    rgba(14, 12, 10, 0.55) 55%,
    rgba(14, 12, 10, 0.3) 100%
  );
  z-index: 1;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 60px;
  max-width: 760px;
  padding-top: 80px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  transition-delay: 0.1s;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
  transition-delay: 0.2s;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 44px;
  transition-delay: 0.3s;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  transition-delay: 0.4s;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__scroll-line {
  width: 48px;
  height: 1px;
  background: var(--gold-dark);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* Hero stats */
.hero__stats {
  position: absolute;
  bottom: 48px;
  right: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(14, 12, 10, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 32px;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ═══════════════════════════════════════════════════════════════
   INTRO STRIP
═══════════════════════════════════════════════════════════════ */
.intro-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 60px;
  text-align: center;
}
.intro-strip__text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 16px;
}
.intro-strip__author {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED CARS
═══════════════════════════════════════════════════════════════ */
.featured {
  padding: 120px 60px;
  background: var(--bg-2);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Large card spans 7 cols */
.car-card--large { grid-column: span 7; }

/* Regular cards span 5 cols */
.car-card:not(.car-card--large) { grid-column: span 5; }

/* Row 2: 3 cards of 4 cols each */
.cars-grid .car-card:nth-child(3),
.cars-grid .car-card:nth-child(4),
.cars-grid .car-card:nth-child(5) {
  grid-column: span 4;
}

.car-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.car-card__img-wrap {
  position: relative;
  overflow: hidden;
}
.car-card--large .car-card__img-wrap { height: 380px; }
.car-card:not(.car-card--large) .car-card__img-wrap { height: 240px; }

.car-card__img-wrap img {
  transition: transform 0.7s ease;
}
.car-card:hover .car-card__img-wrap img {
  transform: scale(1.06);
}

.car-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  background: rgba(14, 12, 10, 0.75);
  color: var(--text-muted);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.car-card__badge--available {
  color: #7EC8A0;
  border-color: rgba(126, 200, 160, 0.3);
}

.car-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.car-card__year {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.car-card__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 12px;
}

.car-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.car-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.car-card__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition), color var(--transition);
}
.car-card__link:hover { gap: 14px; color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════════ */
.gallery {
  padding: 120px 60px;
  background: var(--bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid var(--border);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item img {
  transition: transform 0.7s ease;
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}
.lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox__caption {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 1rem;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: var(--gold);
  font-size: 1.8rem;
  padding: 12px;
  transition: color var(--transition);
  background: rgba(14,12,10,0.6);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { color: var(--gold-light); }
.lightbox__close { top: 24px; right: 24px; font-size: 1.2rem; }
.lightbox__prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }

/* ═══════════════════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════════════════ */
.timeline {
  padding: 120px 60px;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline__track {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline__track::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}

.timeline__item {
  position: relative;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}
.timeline__item:last-child { margin-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -52px;
  top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-3);
  box-shadow: 0 0 0 4px rgba(230, 192, 123, 0.2);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.2;
  padding-top: 2px;
}

.timeline__content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}
.timeline__content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════════════ */
.marquee-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.marquee { overflow: hidden; }
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  padding-right: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact {
  padding: 120px 60px;
  background: var(--bg-2);
}
.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}
.contact__title em { font-style: italic; color: var(--gold); }

.contact__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact__details { display: flex; flex-direction: column; gap: 16px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact__detail-icon { color: var(--gold); font-size: 0.6rem; }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(230, 192, 123, 0.08);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: -8px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success__icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 60px 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin-left: 8px;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 240px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .cars-grid { grid-template-columns: 1fr 1fr; }
  .car-card--large { grid-column: span 2; }
  .car-card:not(.car-card--large) { grid-column: span 1; }
  .cars-grid .car-card:nth-child(3),
  .cars-grid .car-card:nth-child(4),
  .cars-grid .car-card:nth-child(5) { grid-column: span 1; }

  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .nav { padding: 20px 32px; }
  .nav.scrolled { padding: 14px 32px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { padding: 0 32px; padding-top: 80px; }
  .hero__scroll-hint { left: 32px; }
  .hero__stats {
    right: 32px;
    bottom: 32px;
    gap: 20px;
    padding: 14px 20px;
  }
  .hero__stat-num { font-size: 1.5rem; }

  .intro-strip { padding: 60px 32px; }
  .featured { padding: 80px 32px; }
  .gallery { padding: 80px 32px; }
  .timeline { padding: 80px 32px; }
  .contact { padding: 80px 32px; }
  .footer { padding: 60px 32px 32px; }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 640px) {
  .hero__title { font-size: 3rem; }
  .hero__stats { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .cars-grid { grid-template-columns: 1fr; }
  .car-card--large { grid-column: span 1; }
  .car-card--large .car-card__img-wrap { height: 260px; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item { height: 220px; }

  .timeline__track { padding-left: 40px; }
  .timeline__item { grid-template-columns: 60px 1fr; gap: 16px; }

  .footer__links { grid-template-columns: 1fr 1fr; }
}