/* ==================================================================
   Select Exotic Cars — Las Vegas
   BRUTALIST REBUILD — Vegas neon + concrete bunker aesthetic
   Fonts: Anton display, IBM Plex Mono body
   Colors: #ff3300 red, #00ff88 electric green, #0a0a0a bg, 1px white borders
   Single file. Same class names as previous build — drop-in replacement.
   ================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=IBM+Plex+Mono:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  /* Core palette */
  --bg: #0a0a0a;
  --bg-card: #1c1c1c;
  --bg-elevated: #141414;
  --bg-input: #0a0a0a;
  --surface: #1c1c1c;

  /* Brand */
  --accent: #ff3300;       /* Vegas neon red */
  --accent-dim: rgba(255, 51, 0, 0.15);
  --accent-rgb: 255, 51, 0;
  --accent-2: #00ff88;     /* electric green — prices, urgency */
  --accent-2-rgb: 0, 255, 136;

  /* Text */
  --text: #f1f1f1;
  --text-muted: #888;
  --text-dim: #555;

  /* Structure — brutalist 1px white borders */
  --border: #ffffff;
  --border-dim: rgba(255, 255, 255, 0.25);
  --border-red: #ff3300;

  /* Radius — sharp, no curves */
  --radius: 0;
  --radius-md: 0;
  --radius-lg: 0;

  /* Shadows — hard 4px offsets, never soft */
  --shadow-hard: 4px 4px 0 #ff3300;
  --shadow-hard-white: 4px 4px 0 #ffffff;
  --shadow-hard-black: 4px 4px 0 #000;
  --shadow-hard-green: 4px 4px 0 #00ff88;

  /* Motion */
  --transition: 0.2s cubic-bezier(0.85, 0, 0.15, 1);
  --transition-slow: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  --transition-snap: 0s;

  /* Typography families */
  --font-display: 'Anton', 'Bebas Neue', Impact, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --max-width: 1320px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Scanline atmosphere — subtle CRT overlay on the whole body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}

/* Film grain noise */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  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'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: var(--text);
}

::selection {
  background: var(--accent);
  color: #000;
}

/* ── Layout wrappers ──────────────────────────────────────────── */
.sec-wrap,
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.accent { color: var(--accent); }
.accent-2 { color: var(--accent-2); }

/* ── Typography — brutalist scale ────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.75rem, 8vw, 6rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text);
}

strong {
  font-weight: 600;
  color: var(--text);
}

/* Section labels — monospace all caps, above each h2 */
.sec-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--accent);
  margin-bottom: 20px;
}

/* ── Scroll progress bar (top of viewport) ───────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  z-index: 10000;
  transition: width 0.05s linear;
}

/* ── Navigation (header) ─────────────────────────────────────── */
.sec-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  /* PERF: backdrop-filter + transition: background on sticky nav was
     causing scroll-tied re-blur every frame. Replaced with near-opaque
     solid background. Visually identical at this contrast level. */
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid var(--border);
  z-index: 500;
}

.sec-nav.nav-scrolled {
  background: #0a0a0a;
  border-bottom: 1px solid var(--accent);
}

.sec-nav-inner {
  width: 100%;
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec-nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sec-nav-logo .logo-thin {
  color: var(--text);
  font-weight: 400;
}

.sec-nav-logo .logo-bold {
  color: var(--accent);
  font-weight: 400;
  border-left: 2px solid var(--accent);
  padding-left: 6px;
}

.sec-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.sec-nav-links > a,
.sec-nav-dropdown-trigger {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  cursor: pointer;
}

.sec-nav-links > a:hover,
.sec-nav-dropdown-trigger:hover,
.sec-nav-links > a.active {
  color: var(--accent);
}

.sec-nav-links > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.sec-nav-links > a:hover::after,
.sec-nav-links > a.active::after {
  width: 100%;
}

.sec-nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.6rem;
  margin-left: 2px;
}

.sec-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hard);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  padding: 8px 0;
}

.sec-nav-dropdown.open .sec-nav-dropdown-menu,
.sec-nav-dropdown:hover .sec-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sec-nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  border-left: 2px solid transparent;
  transition: border var(--transition), background var(--transition), color var(--transition);
}

.sec-nav-dropdown-menu a:hover {
  background: #1c1c1c;
  border-left-color: var(--accent);
  color: var(--accent);
}

.sec-nav-cta {
  background: var(--accent) !important;
  color: #0a0a0a !important;
  padding: 10px 18px !important;
  border: 1px solid var(--accent);
  font-weight: 600;
  letter-spacing: 0.16em !important;
  box-shadow: 3px 3px 0 #000;
  transition: transform var(--transition), box-shadow var(--transition);
}

.sec-nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000 !important;
  color: #0a0a0a !important;
}

.sec-nav-cta::after {
  display: none !important;
}

/* Hamburger (mobile) */
.sec-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--border);
}

.sec-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.sec-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sec-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.sec-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sec-mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0a0a;
  border-top: 1px solid var(--accent);
  padding: 24px 0;
  transform: translateX(-100%);
  transition: transform var(--transition);
  z-index: 499;
  overflow-y: auto;
}

.sec-mobile-menu.open {
  transform: translateX(0);
}

.sec-mobile-menu a {
  display: block;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.sec-mobile-menu a.sec-mobile-sub {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  padding-left: 48px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.sec-mobile-cta {
  background: var(--accent) !important;
  color: #0a0a0a !important;
  margin: 20px 32px 8px !important;
  text-align: center;
  border: 1px solid var(--accent);
  box-shadow: 4px 4px 0 #000;
  padding: 18px !important;
  border-bottom: none !important;
}

.sec-mobile-phone {
  font-family: var(--font-mono) !important;
  font-size: 1rem !important;
  color: var(--accent) !important;
  text-align: center;
  letter-spacing: 0.12em !important;
  border-bottom: none !important;
}

.sec-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition);
  z-index: 498;
}

.sec-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ── Hero — full-bleed video ────────────────────────────────── */
.sec-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.sec-hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sec-hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.75) contrast(1.15) brightness(0.7);
}

.sec-hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.9) 100%),
    radial-gradient(ellipse at center, rgba(255,51,0,0.08) 0%, transparent 60%);
}

/* Inset frame — looks like framed racing footage */
.sec-hero::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 2;
}

/* Top-left telemetry label */
.sec-hero::after {
  content: 'SELECT EXOTIC // LAS VEGAS // EST. 2023';
  position: absolute;
  top: calc(var(--nav-height) + 32px);
  left: 32px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  padding: 6px 10px;
  border: 1px solid var(--accent);
  background: rgba(10, 10, 10, 0.7);
  z-index: 3;
  text-transform: uppercase;
}

.sec-hero-center {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.sec-hero .sec-label {
  animation: fadeUp 0.6s 0.1s both;
}

.sec-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 #000;
  animation: heroReveal 0.8s 0.2s both;
}

.sec-hero-title .thin {
  display: block;
  font-size: 0.4em;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-shadow: 2px 2px 0 #000;
  font-weight: 400;
  margin-bottom: 8px;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

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

.sec-hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(0.875rem, 1.4vw, 1.125rem);
  line-height: 1.6;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto 36px;
  letter-spacing: 0.04em;
  animation: fadeUp 0.6s 0.6s both;
}

.sec-hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.9s both;
}

/* Trust-signal line under the CTAs */
.sec-hero-center > .sec-hero-cta + .sec-hero-trust {
  margin-top: 24px;
}

.sec-hero-trust {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  animation: fadeUp 0.6s 1.1s both;
}

.sec-hero-trust strong { color: var(--accent-2); }

.sec-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  animation: fadeUp 0.6s 1.3s both;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sec-hero-scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn,
.btn-gold,
.btn-primary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  text-decoration: none;
  position: relative;
}

/* Primary red — Vegas neon */
.btn-gold,
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
  box-shadow: 4px 4px 0 #000;
  animation: neonFlicker 5s infinite;
}

@keyframes neonFlicker {
  0%, 92%, 96%, 100% { opacity: 1; }
  93% { opacity: 0.4; }
  94% { opacity: 1; }
  95% { opacity: 0.6; }
}

.btn-gold:hover,
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
  background: var(--accent);
  color: #0a0a0a;
}

/* Secondary — ghost with white border */
.btn-ghost,
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: 4px 4px 0 transparent;
}

.btn-ghost:hover,
.btn-outline:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--accent);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* ── Marquee ticker ──────────────────────────────────────────── */
.sec-marquee {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
  height: 64px;
  display: flex;
  align-items: center;
  position: relative;
}

.sec-marquee::before,
.sec-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.sec-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0a0a0a, transparent);
}

.sec-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #0a0a0a, transparent);
}

.sec-marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.sec-marquee-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}

.sec-marquee-item {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.sec-marquee-item:nth-child(4n) { color: var(--accent); }
.sec-marquee-item:nth-child(6n) { color: var(--accent-2); }

.sec-marquee-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  flex-shrink: 0;
  transform: rotate(45deg);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sec-marquee:hover .sec-marquee-track {
  animation-play-state: paused;
}

/* ── Fleet section ───────────────────────────────────────────── */
.sec-fleet {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.sec-fleet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0,
    var(--accent) 20px,
    #000 20px,
    #000 40px
  );
}

.sec-fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.sec-fleet-header-text h2 {
  margin-top: 12px;
}

.sec-fleet-viewall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  padding: 14px 22px;
  border: 1px solid var(--border);
  box-shadow: 4px 4px 0 transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}

.sec-fleet-viewall:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--accent);
}

.sec-fleet-carousel,
.sec-fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* Fleet card — brutalist with stat overlay */
.sec-fleet-card,
.fleet-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: transform var(--transition-snap), box-shadow var(--transition-snap), border-color var(--transition-snap);
  position: relative;
  overflow: hidden;
}

.sec-fleet-card:hover,
.fleet-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--accent);
  border-color: var(--accent);
  color: var(--text);
}

.sec-fleet-card-img,
.fleet-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.sec-fleet-card-img img,
.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.1);
  transition: transform 0.5s cubic-bezier(0.85, 0, 0.15, 1);
}

.sec-fleet-card:hover .sec-fleet-card-img img,
.fleet-card:hover .fleet-card-image img {
  transform: scale(1.05);
}

.sec-fleet-card-price,
.fleet-card-price {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-2);
  color: #0a0a0a;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid #000;
  z-index: 3;
  text-transform: uppercase;
}

.fleet-card-brand {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 10, 10, 0.85);
  color: var(--accent);
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  border: 1px solid var(--accent);
  text-transform: uppercase;
  z-index: 3;
}

.sec-fleet-card-info,
.fleet-card-info {
  padding: 20px 22px 24px;
}

.sec-fleet-card-brand {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sec-fleet-card-name,
.fleet-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1;
}

.fleet-card-short {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Stat overlay row on fleet cards (smaller version) */
.sec-fleet-card-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.sec-fleet-card-stat {
  flex: 1;
  padding: 10px 8px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.sec-fleet-card-stat:last-child {
  border-right: none;
}

.sec-fleet-card-stat-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--accent);
  line-height: 1;
}

.sec-fleet-card-stat-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── About section ───────────────────────────────────────────── */
.sec-about {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}

.sec-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.sec-about-media {
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 8px 8px 0 var(--accent);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.sec-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.15) grayscale(0.2);
}

.about-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  text-transform: uppercase;
  background: var(--bg-card);
}

.sec-about-content h2 {
  margin-top: 12px;
  margin-bottom: 24px;
}

.sec-about-content p {
  margin-bottom: 20px;
  line-height: 1.75;
}

.sec-about-pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  text-transform: uppercase;
  line-height: 1.15;
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  background: var(--bg-card);
  color: var(--text);
  margin: 24px 0;
}

.sec-about-cta {
  margin-top: 32px;
}

/* ── Services section ────────────────────────────────────────── */
.sec-services {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.sec-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.sec-services-header h2 {
  margin-top: 12px;
}

.sec-services-list {
  display: grid;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.sec-service-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  align-items: flex-start;
}

.sec-service-item:last-child {
  border-bottom: none;
}

.sec-service-item:hover {
  background: rgba(255, 51, 0, 0.04);
}

.sec-service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 0.9;
  text-shadow: 3px 3px 0 #000;
}

.sec-service-body h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.sec-service-body p {
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Stats band ──────────────────────────────────────────────── */
.sec-stats {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: #0a0a0a;
  position: relative;
}

.sec-stats::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent) 0,
    var(--accent) 12px,
    #000 12px,
    #000 24px
  );
}

.sec-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.sec-stat {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.sec-stat:last-child {
  border-right: none;
}

.sec-stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--accent);
  line-height: 0.9;
  text-shadow: 4px 4px 0 #000;
}

.sec-stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 12px;
}

/* ── Testimonials ────────────────────────────────────────────── */
.sec-testimonials {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  position: relative;
}

.sec-testimonials-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 60px 40px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 10px 10px 0 var(--accent);
}

.sec-testimonials-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 30px;
  text-shadow: 4px 4px 0 #000;
}

.sec-testimonial-slide {
  display: none;
  padding-top: 40px;
}

.sec-testimonial-slide.active {
  display: block;
  animation: fadeUp 0.5s both;
}

.sec-testimonial-stars {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.sec-testimonial-text {
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
}

.sec-testimonial-author {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.sec-testimonial-context {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 6px;
}

.sec-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.sec-testimonial-dot {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}

.sec-testimonial-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}

/* ── CTA banner ──────────────────────────────────────────────── */
.sec-cta-banner {
  padding: 100px 0;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.sec-cta-banner::before,
.sec-cta-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0,
    var(--accent) 12px,
    #000 12px,
    #000 24px
  );
}

.sec-cta-banner::before { top: 0; }
.sec-cta-banner::after { bottom: 0; }

.sec-cta-banner h2 {
  max-width: 880px;
  margin: 0 auto 20px;
}

.sec-cta-banner p {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── Footer ──────────────────────────────────────────────────── */
.sec-footer {
  background: #0a0a0a;
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  position: relative;
}

.sec-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0,
    var(--accent) 20px,
    #000 20px,
    #000 40px
  );
}

.sec-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.sec-footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--accent);
}

.sec-footer-col a,
.sec-footer-col p {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.sec-footer-col a:hover {
  color: var(--accent);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.footer-brand .f-thin { color: var(--text); }
.footer-brand .f-bold {
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 6px;
}

.footer-desc {
  margin-bottom: 20px !important;
  line-height: 1.6;
}

.sec-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.sec-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  color: var(--text);
  margin-bottom: 0 !important;
  transition: background var(--transition), color var(--transition);
}

.sec-footer-social a:hover {
  background: var(--accent);
  color: #0a0a0a;
}

.sec-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.sec-footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sec-footer-legal {
  display: flex;
  gap: 24px;
}

.sec-footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sec-footer-legal a:hover {
  color: var(--accent);
}

/* ── Fade-in on scroll (IntersectionObserver targets) ────────── */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.85, 0, 0.15, 1),
              transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Car detail page ─────────────────────────────────────────── */
.car-hero {
  padding: calc(var(--nav-height) + 60px) 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.car-breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-muted);
}

.car-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.car-breadcrumb a:hover { color: var(--accent); }
.car-breadcrumb .separator { color: var(--text-dim); }

.car-hero-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.car-gallery {
  position: relative;
}

.car-gallery-main {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 8px 8px 0 var(--accent);
}

.car-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.1);
}

/* The Gran Turismo stat overlays — absolutely positioned on hero image */
.car-gallery-main .gt-stat {
  position: absolute;
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 0.9;
  text-shadow: 3px 3px 0 #000;
  z-index: 3;
  pointer-events: none;
  text-transform: uppercase;
}

.car-gallery-main .gt-stat-hp {
  top: 20px;
  left: 20px;
}

.car-gallery-main .gt-stat-060 {
  top: 20px;
  right: 20px;
  text-align: right;
}

.car-gallery-main .gt-stat-topspeed {
  bottom: 20px;
  right: 20px;
  text-align: right;
}

.gt-stat-value {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  display: block;
}

.gt-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-top: 6px;
  display: block;
  text-shadow: none;
}

.car-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.car-gallery-thumb {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition-snap), box-shadow var(--transition-snap);
}

.car-gallery-thumb.active,
.car-gallery-thumb:hover {
  border-color: var(--accent);
  box-shadow: 3px 3px 0 var(--accent);
}

.car-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-hero-info h1.car-name {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  text-shadow: 3px 3px 0 #000;
}

.car-tagline {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  line-height: 1.6;
}

.car-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-2);
  margin-bottom: 28px;
  text-shadow: 3px 3px 0 #000;
}

.car-booking-cta {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.car-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
}

.car-spec {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.car-spec:nth-child(2n) { border-right: none; }
.car-spec:nth-last-child(-n+2) { border-bottom: none; }

.car-spec-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.car-spec-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  text-transform: uppercase;
  line-height: 1;
}

.car-details-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.car-description h2 {
  margin-bottom: 24px;
}

.car-description p {
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}

.car-features {
  border: 1px solid var(--border);
  padding: 32px;
  background: var(--bg-card);
  box-shadow: 6px 6px 0 var(--accent);
}

.car-features h3 {
  margin-bottom: 20px;
  color: var(--accent);
}

.car-features ul {
  list-style: none;
}

.car-features li {
  padding: 10px 0 10px 24px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.car-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.car-features li:last-child { border-bottom: none; }

.car-related {
  margin-top: 40px;
}

.car-internal-links {
  padding: 48px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.car-internal-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.car-internal-links li a {
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.car-internal-links li a:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 3px 3px 0 var(--accent);
  transform: translate(-2px, -2px);
}

/* ── Generic section styles ──────────────────────────────────── */
.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.section-dark { background: var(--bg-elevated); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #000;
}

.section-cta-full {
  text-align: center;
  background: var(--bg);
  padding: 100px 0;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

.section-cta-full h2 {
  max-width: 880px;
  margin: 0 auto 20px;
}

.section-cta-full p {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--text-muted);
}

/* ── Fleet page / filter bar ─────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 12px 20px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
  box-shadow: 3px 3px 0 #000;
}

/* ── FAQ accordion ───────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  margin-bottom: 12px;
  background: var(--bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-align: left;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── Contact form ────────────────────────────────────────────── */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: 8px 8px 0 var(--accent);
}

.contact-form h2 {
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-mono);
  /* 16px (1rem) minimum — anything smaller triggers iOS Safari auto-zoom
     on focus. Combined with maximum-scale=1.0 meta, that locked users
     into the zoomed state and made the form unusable on iPhone. */
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 3px 3px 0 var(--accent);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  text-align: center;
  padding: 40px;
}

.form-success h3 {
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── Blog ────────────────────────────────────────────────────── */
.blog-post-content {
  padding: calc(var(--nav-height) + 60px) 0 80px;
}

.blog-post-content .sec-wrap {
  max-width: 820px;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }

.blog-post-content h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  margin-bottom: 32px;
  text-shadow: 3px 3px 0 #000;
}

.blog-post-body {
  font-family: var(--font-mono);
  line-height: 1.8;
  color: var(--text);
}

.blog-post-body h1 {
  display: none; /* second h1 from duplicate markup */
}

.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 48px 0 20px;
  color: var(--accent);
  text-transform: uppercase;
}

.blog-post-body h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin: 32px 0 14px;
  color: var(--text);
  text-transform: uppercase;
}

.blog-post-body p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.75;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 20px 24px;
  list-style: disc;
}

.blog-post-body ol { list-style: decimal; }

.blog-post-body li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
}

.blog-post-body a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.blog-post-body a:hover {
  background: var(--accent);
  color: #0a0a0a;
}

.blog-post-body strong {
  color: var(--text);
  font-weight: 600;
}

.blog-post-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-card);
  font-style: normal;
  color: var(--text);
}

/* Blog index grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition-snap), box-shadow var(--transition-snap), border-color var(--transition-snap);
}

.blog-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--accent);
  border-color: var(--accent);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px 24px 28px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.1;
}

.blog-card-excerpt {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Misc legacy styles (routes, features, testimonials grid) ── */
.routes-grid,
.features-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.route-card,
.feature-card,
.testimonial-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform var(--transition-snap), box-shadow var(--transition-snap), border-color var(--transition-snap);
}

.route-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0 var(--accent);
  border-color: var(--accent);
}

.route-card h3,
.feature-card h3 {
  margin-bottom: 12px;
  color: var(--accent);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 3px;
}

.testimonial-text {
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.9375rem;
}

.testimonial-author {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--accent);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Glass panel fallback (legacy) */
.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

/* Stats strip (legacy subpages) */
.stats-strip {
  padding: 60px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  text-shadow: 3px 3px 0 #000;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 8px;
}

/* Generic subpage hero */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6), var(--bg));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 16px;
  text-shadow: 4px 4px 0 #000;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  letter-spacing: 0.03em;
  line-height: 1.65;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Sticky mobile CTA bar (phone + text) ────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 450;
  border-top: 1px solid var(--border);
}

.mobile-sticky-cta a {
  flex: 1;
  padding: 16px 8px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-sticky-cta .sticky-call {
  background: var(--accent);
  color: #0a0a0a;
  border-right: 1px solid #000;
}

.mobile-sticky-cta .sticky-text {
  background: var(--accent-2);
  color: #0a0a0a;
}

/* ── Brand Hub Pages (page-hero, content-narrow, animations) ── */

.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 60px;
  text-align: center;
  border-bottom: 4px solid var(--accent);
  background:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 10px,
      rgba(255, 51, 0, 0.03) 10px,
      rgba(255, 51, 0, 0.03) 12px
    ),
    var(--bg-elevated);
  position: relative;
}

.page-hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  text-shadow: 4px 4px 0 #000;
  margin-bottom: 16px;
}

.page-subtitle {
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.content-narrow {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.content-narrow h2 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.content-narrow h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
}

.content-narrow p {
  margin-bottom: 20px;
}

.content-narrow ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.content-narrow ul li {
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
}

/* Stagger animation */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Section hover lift for brand pages */
.section:has(.content-narrow) {
  border-left: 0px solid var(--accent);
  transition: border-left-width 0.3s;
}

.section:has(.content-narrow):hover {
  border-left-width: 4px;
}

/* Fleet grid glow in dark sections */
.section-dark:has(.fleet-grid) {
  box-shadow: inset 0 0 80px rgba(255, 51, 0, 0.03);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .sec-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sec-about-media {
    aspect-ratio: 16 / 9; /* prevent excessively tall image in single column */
    max-height: 480px;
  }

  .sec-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sec-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .sec-stat:nth-child(2) { border-right: none; }
  .sec-stat:nth-child(1),
  .sec-stat:nth-child(2) { border-bottom: 1px solid var(--border); }

  .car-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .car-details-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .sec-wrap,
  .container {
    padding: 0 20px;
  }

  .sec-nav-links {
    display: none;
  }

  .sec-hamburger {
    display: flex;
  }

  .sec-hero {
    min-height: 90vh;
  }

  .sec-hero::after {
    display: none; /* hides telemetry label on mobile — overlaps hero text */
  }

  .sec-hero-title {
    font-size: clamp(2.5rem, 14vw, 5rem);
  }

  .sec-fleet,
  .sec-about,
  .sec-services,
  .sec-testimonials,
  .sec-cta-banner {
    padding: 80px 0;
  }

  .sec-fleet-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sec-services-list {
    border: 1px solid var(--border);
  }

  .sec-service-item {
    grid-template-columns: 60px 1fr;
    padding: 24px 20px;
    gap: 16px;
  }

  .sec-service-num {
    font-size: 2.25rem;
  }

  .sec-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sec-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .car-gallery-main .gt-stat-value {
    font-size: 2rem;
  }

  .car-gallery-main .gt-stat {
    background: rgba(10, 10, 10, 0.6);
    padding: 6px 10px;
    border: 1px solid var(--accent);
  }

  .car-specs-grid {
    grid-template-columns: 1fr;
  }

  .car-spec {
    border-right: none;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .sec-testimonials-inner {
    padding: 48px 24px;
  }

  .sec-testimonials-quote-mark {
    font-size: 5rem;
    top: -10px;
    left: 16px;
  }

  main {
    padding-bottom: 64px; /* leave room for sticky CTA bar */
  }

  .sec-marquee {
    height: 52px;
  }

  .sec-marquee-item {
    font-size: 1.5rem;
  }

  /* Brand hub mobile */
  .page-hero {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 40px;
  }

  .content-narrow {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .sec-hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .sec-hero-cta .btn,
  .sec-hero-cta .btn-gold,
  .sec-hero-cta .btn-ghost {
    width: 100%;
  }

  .sec-hero-tagline {
    font-size: 0.8125rem; /* tighten long tagline on small screens */
  }

  .sec-hero::before {
    inset: 10px; /* reduce inset frame on small screens */
  }

  .sec-stats-row {
    grid-template-columns: 1fr;
  }

  .sec-stat {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .sec-stat:last-child { border-bottom: none; }

  .sec-fleet-carousel,
  .sec-fleet-grid {
    grid-template-columns: 1fr; /* prevent minmax(340px) overflow on small phones */
  }

  .sec-testimonials-inner {
    padding: 40px 16px;
    box-shadow: 6px 6px 0 var(--accent); /* reduce shadow so it doesn't clip */
  }

  .sec-testimonials-quote-mark {
    font-size: 4rem;
    top: -8px;
    left: 10px;
  }

  .sec-service-item {
    grid-template-columns: 44px 1fr; /* narrower number column on small phones */
    gap: 12px;
    padding: 20px 16px;
  }

  .sec-service-num {
    font-size: 1.75rem;
  }

  .btn,
  .btn-gold,
  .btn-primary,
  .btn-ghost,
  .btn-outline {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }

  /* Brand hub mobile small */
  .page-subtitle {
    font-size: 0.9375rem;
  }
}

/* ── Accessibility reduced-motion ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  body::before,
  body::after,
  .sec-nav,
  .sec-mobile-menu,
  .scroll-progress,
  .mobile-sticky-cta {
    display: none !important;
  }
  body { background: white; color: black; }
}
