/* =============================================
   VAG PERFORMANCE — PREMIUM AUTOMOTIVE SITE
   Dark luxury German automotive aesthetic
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --black: #060608;
  --dark: #0e0e10;
  --dark2: #151518;
  --dark3: #1c1c20;
  --graphite: #252528;
  --graphite2: #2e2e33;
  --mid: #444450;
  --muted: #6b6b7a;
  --light-muted: #9494a5;
  --white: #ffffff;
  --off-white: #f0f0f4;
  --red: #c0392b;
  --red-bright: #e74c3c;
  --red-glow: rgba(192, 57, 43, 0.4);
  --red-glow-sm: rgba(192, 57, 43, 0.15);
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --nav-h: 76px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

::selection { background: var(--red); color: #fff; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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