@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --canvas: #181818;
  --canvas-elevated: #303030;
  --canvas-light: #ffffff;
  --surface-soft-light: #f7f7f7;
  --surface-strong-light: #ebebeb;
  --primary: #da291c;
  --primary-active: #b01e0a;
  --ink: #ffffff;
  --body: #969696;
  --body-on-light: #181818;
  --muted: #666666;
  --hairline: #303030;
  --hairline-on-light: #d2d2d2;
  --on-primary: #ffffff;
  --spacing-xxxs: 4px;
  --spacing-xxs: 8px;
  --spacing-xs: 16px;
  --spacing-sm: 24px;
  --spacing-md: 32px;
  --spacing-lg: 48px;
  --spacing-xl: 64px;
  --spacing-xxl: 96px;
  --spacing-super: 128px;
}

html { font-size: 14px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  background: var(--canvas);
  color: var(--body);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* ── NAV ── */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  z-index: 100;
  display: flex;
  align-items: center;
}

.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.2px;
}

.nav-logo span { color: var(--primary); }

.nav-menu {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.65px;
  transition: color 0.2s;
}

.nav-menu a:hover { color: var(--ink); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--spacing-xxs);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
}

/* ── HERO ── */
.hero-band {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 64px;
}

.hero-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,24,24,0.1) 0%, rgba(24,24,24,0.75) 100%);
}

.hero-content {
  position: absolute;
  bottom: var(--spacing-xxl);
  left: 0; right: 0;
  padding: 0 var(--spacing-sm);
  max-width: 1280px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.hero-h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.6px;
  color: var(--ink);
  max-width: 800px;
  margin-bottom: var(--spacing-sm);
}

.hero-sub {
  font-size: 14px;
  color: var(--body);
  max-width: 560px;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 14px 32px;
  height: 48px;
  line-height: 20px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--primary-active); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 14px 32px;
  height: 48px;
  line-height: 20px;
  border-radius: 0;
  border: 1px solid var(--ink);
  cursor: pointer;
  margin-left: var(--spacing-xs);
}

/* ── SECTIONS ── */
.section-dark {
  background: var(--canvas);
  padding: var(--spacing-xxl) 0;
}

.section-elevated {
  background: var(--canvas-elevated);
  padding: var(--spacing-xxl) 0;
}

.section-light {
  background: var(--canvas-light);
  padding: var(--spacing-xxl) 0;
}

.section-soft {
  background: var(--surface-soft-light);
  padding: var(--spacing-xxl) 0;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.section-label-light {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.section-h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.36px;
  color: var(--ink);
  margin-bottom: var(--spacing-sm);
}

.section-h2-light {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.36px;
  color: var(--body-on-light);
  margin-bottom: var(--spacing-sm);
}

.section-lead {
  font-size: 14px;
  color: var(--body);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

.section-lead-light {
  font-size: 14px;
  color: var(--body-on-light);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  opacity: 0.7;
}

/* ── CARDS GRID ── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
}

.feature-card {
  background: var(--canvas-elevated);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--hairline);
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-card-body {
  padding: var(--spacing-sm);
}

.card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--spacing-xxs);
}

.card-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: var(--spacing-xxs);
}

.card-title-light {
  font-size: 18px;
  font-weight: 500;
  color: var(--body-on-light);
  line-height: 1.3;
  margin-bottom: var(--spacing-xxs);
}

.card-excerpt {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
}

.card-excerpt-light {
  font-size: 13px;
  color: var(--body-on-light);
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
  opacity: 0.7;
}

.card-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.card-link:hover { border-color: var(--primary); }

.feature-card-light {
  background: var(--canvas-light);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--hairline-on-light);
}

.feature-card-light img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-card-light .feature-card-body {
  padding: var(--spacing-sm);
}

/* ── LIVERY BAND ── */
.livery-band {
  background: var(--primary);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.livery-band h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.36px;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

.livery-band p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto var(--spacing-md);
  line-height: 1.6;
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 14px 32px;
  height: 48px;
  line-height: 20px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.6);
}

/* ── CONTACT FORM ── */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
  max-width: 720px;
}

.form-group { display: flex; flex-direction: column; gap: var(--spacing-xxxs); }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--body);
}

.form-group input,
.form-group textarea {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  height: 48px;
  outline: none;
  transition: border-color 0.15s;
}

.form-group textarea { height: auto; min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }

/* ── FOOTER ── */
.footer-dark {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--spacing-xs);
}

.footer-brand-name span { color: var(--primary); }

.footer-brand-desc {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--ink);
  margin-bottom: var(--spacing-xs);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--spacing-xxs); }

.footer-links a {
  font-size: 13px;
  color: var(--body);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: var(--spacing-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.footer-legal-links { display: flex; gap: var(--spacing-sm); list-style: none; }

.footer-legal-links a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.15s;
}

.footer-legal-links a:hover { color: var(--ink); }

/* ── BADGE PILL ── */
.badge-pill {
  display: inline-block;
  background: var(--canvas-elevated);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  border-radius: 9999px;
  padding: 4px 12px;
}

/* ── ARTICLE PAGE ── */
.article-header {
  padding: var(--spacing-super) 0 var(--spacing-xxl);
  background: var(--canvas);
}

.article-meta {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.article-h1 {
  font-size: 56px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -1.12px;
  max-width: 800px;
  margin-bottom: var(--spacing-sm);
}

.article-intro {
  font-size: 16px;
  color: var(--body);
  max-width: 680px;
  line-height: 1.6;
}

.article-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--spacing-xxl) var(--spacing-sm);
}

.article-body h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.195px;
  line-height: 1.3;
  margin: var(--spacing-xl) 0 var(--spacing-sm);
}

.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: var(--spacing-md) 0 var(--spacing-xs);
}

.article-body p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.article-body ul, .article-body ol {
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.article-body li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: var(--spacing-xxs);
}

.article-body a {
  color: var(--primary);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.article-body a:hover { border-color: var(--primary); }

.article-body figure {
  margin: var(--spacing-xl) 0;
}

.article-body figure img {
  width: 100%;
  border-radius: 0;
}

.article-body figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: var(--spacing-xxs);
  line-height: 1.4;
}

.article-updated {
  font-size: 12px;
  color: var(--muted);
  margin-top: var(--spacing-xs);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: var(--spacing-super) 0 var(--spacing-xxl);
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}

.page-hero h1 {
  font-size: 56px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -1.12px;
  margin-bottom: var(--spacing-sm);
}

.page-hero p {
  font-size: 14px;
  color: var(--body);
  max-width: 560px;
  line-height: 1.6;
}

/* ── SPEC STRIP ── */
.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin: var(--spacing-xxl) 0;
}

.spec-cell {
  padding: var(--spacing-md) var(--spacing-sm);
  border-right: 1px solid var(--hairline);
  text-align: center;
}

.spec-cell:last-child { border-right: none; }

.spec-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -1.6px;
}

.spec-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--muted);
  margin-top: var(--spacing-xxs);
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--canvas-elevated);
  border-top: 1px solid var(--hairline);
  padding: var(--spacing-sm) var(--spacing-sm);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.cookie-text {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
  flex: 1;
}

.cookie-text a { color: var(--primary); }

.cookie-actions { display: flex; gap: var(--spacing-xs); flex-shrink: 0; }

.btn-cookie-accept {
  background: var(--primary);
  color: var(--on-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

.btn-cookie-reject {
  background: transparent;
  color: var(--body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  padding: 10px 20px;
  border: 1px solid var(--hairline);
  border-radius: 0;
  cursor: pointer;
}

/* ── ABOUT PAGE ── */
.prose-dark { max-width: 760px; }

.prose-dark h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin: var(--spacing-xl) 0 var(--spacing-sm);
}

.prose-dark p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.prose-dark ul {
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.prose-dark li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: var(--spacing-xxs);
}

.prose-dark a { color: var(--primary); }

/* ── CONTACT INFO ── */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.contact-card {
  background: var(--canvas-elevated);
  border: 1px solid var(--hairline);
  padding: var(--spacing-sm);
}

.contact-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--spacing-xxs);
}

.contact-card-value {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: var(--spacing-sm);
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--body); }
.breadcrumb span { color: var(--body); }

/* ── HAIRLINE DIVIDER ── */
.hairline { border: none; border-top: 1px solid var(--hairline); margin: var(--spacing-xl) 0; }
.hairline-light { border: none; border-top: 1px solid var(--hairline-on-light); margin: var(--spacing-xl) 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 56px; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--spacing-md); }
  .spec-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-info { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--canvas); border-bottom: 1px solid var(--hairline); padding: var(--spacing-sm); gap: var(--spacing-xs); }
  .nav-menu.open { display: flex; }
  .nav-hamburger { display: flex; }
  .hero-h1 { font-size: 36px; letter-spacing: -0.5px; }
  .section-h2, .section-h2-light { font-size: 28px; }
  .article-h1, .page-hero h1 { font-size: 36px; letter-spacing: -0.5px; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .spec-strip { grid-template-columns: repeat(2, 1fr); }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero-band { height: 80vh; }
  .hero-content { bottom: var(--spacing-lg); }
  .spec-strip { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--spacing-xs); text-align: center; }
}
