:root {
  --graphite-900: #14171a;
  --graphite-800: #1c2024;
  --graphite-700: #2b3036;
  --steel-500: #5b646c;
  --steel-400: #8b949e;
  --steel-200: #c9ced2;
  --steel-100: #e7e9ea;
  --off-white: #f3f4f3;
  --taian-red: #c8102e;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--off-white); color: var(--graphite-900); line-height: 1.5; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.hazard { height: 10px; background: repeating-linear-gradient(135deg, #f2b705 0 18px, var(--graphite-900) 18px 36px); }
header { background: var(--graphite-900); border-bottom: 1px solid var(--graphite-700); }
.nav-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brandmark { display: flex; align-items: center; gap: 14px; }
.taian { color: #fff; font-family: var(--font-display); font-size: 22px; letter-spacing: .06em; }
.taian span { color: var(--taian-red); }
.dealer { color: var(--steel-200); font-family: var(--font-mono); font-size: 11px; letter-spacing: .07em; }
.backlink { color: var(--steel-200); font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.backlink:hover { color: #fff; }
.btn { display: inline-flex; align-items: center; background: var(--taian-red); color: #fff; font-family: var(--font-display); font-size: 14px; letter-spacing: .05em; text-transform: uppercase; font-weight: 600; padding: 13px 22px; transition: .2s; }
.btn:hover { background: #970d22; }
section { padding: 72px 0; }
.eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--taian-red); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.eyebrow:before { content: ''; width: 24px; height: 2px; background: var(--taian-red); }
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: .01em; text-transform: uppercase; }
.intro { max-width: 720px; margin-bottom: 42px; }
.intro h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.02; margin-bottom: 16px; }
.intro p { color: var(--steel-500); font-size: 16px; }
.gallery-section { margin-top: 50px; }
.gallery-section:first-of-type { margin-top: 0; }
.gallery-section h2 { font-size: 26px; letter-spacing: .04em; padding-bottom: 12px; margin-bottom: 16px; border-bottom: 2px solid var(--graphite-900); }
.gallery-section h2 span { color: var(--taian-red); }
.gallery-section p { font-size: 14px; color: var(--steel-500); margin: -3px 0 16px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-card { background: #fff; border: 1px solid var(--steel-200); display: block; transition: transform .2s, border-color .2s; }
.photo-card:hover { transform: translateY(-4px); border-color: var(--taian-red); }
.photo-card img { width: 100%; height: 270px; object-fit: cover; display: block; background: var(--steel-100); }
.photo-card .caption { padding: 14px 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--steel-500); }
.photo-card .caption strong { display: block; color: var(--graphite-900); font-family: var(--font-display); font-size: 18px; letter-spacing: .04em; margin-bottom: 3px; }
.gallery-note { margin-top: 36px; padding: 20px 24px; background: #fff; border-left: 4px solid var(--taian-red); font-size: 14px; color: var(--steel-500); }
.gallery-note strong { color: var(--graphite-900); }
footer { background: var(--graphite-900); border-top: 1px solid var(--graphite-700); padding: 28px 0; color: var(--steel-400); font-size: 12px; }
.footer-row { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .photo-card img { height: 190px; }
}

@media (max-width: 540px) {
  .dealer { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .photo-card img { height: 240px; }
  .nav-row { gap: 12px; }
  .backlink { font-size: 10px; }
  .btn { padding: 11px 14px; font-size: 12px; }
}
