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

:root {
  --canvas: #181818;
  --canvas-elevated: #303030;
  --canvas-light: #ffffff;
  --primary: #da291c;
  --primary-active: #b01e0a;
  --ink: #ffffff;
  --body: #969696;
  --body-on-light: #181818;
  --muted: #666666;
  --hairline: #303030;
  --hairline-on-light: #d2d2d2;
  --surface-soft-light: #f7f7f7;
  --surface-strong-light: #ebebeb;
  --font: 'Inter', -apple-system, system-ui, sans-serif;
  --max-w: 1280px;
  --sp-xxs: 8px;
  --sp-xs: 16px;
  --sp-sm: 24px;
  --sp-md: 32px;
  --sp-lg: 48px;
  --sp-xl: 64px;
  --sp-xxl: 96px;
  --sp-super: 128px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html { font-size: 14px; scroll-behavior: smooth; }
body { background: var(--canvas); color: var(--body); font-family: var(--font); font-weight: 400; line-height: 1.5; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; width: 100%; height: auto; }
address { font-style: normal; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-xs); }

.site-header { background: var(--canvas); border-bottom: 1px solid var(--hairline); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { color: var(--ink); font-size: 18px; font-weight: 700; letter-spacing: 0.08px; }
.main-nav ul { display: flex; gap: var(--sp-md); }
.main-nav a { color: var(--body); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.65px; transition: color .2s; }
.main-nav a:hover { color: var(--ink); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); }

.hero-band { position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-band img.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,24,24,0.1) 0%, rgba(24,24,24,0.85) 100%); }
.hero-content { position: relative; z-index: 2; padding: var(--sp-xxl) 0; }
.hero-content h1 { color: var(--ink); font-size: clamp(32px, 6vw, 80px); font-weight: 500; line-height: 1.05; letter-spacing: -1.6px; max-width: 800px; }
.hero-content p { color: var(--body); font-size: 16px; margin-top: var(--sp-sm); max-width: 560px; }
.hero-actions { display: flex; gap: var(--sp-xxs); margin-top: var(--sp-md); flex-wrap: wrap; }

.btn-primary { display: inline-block; background: var(--primary); color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; padding: 14px 32px; height: 48px; line-height: 1; border-radius: 0; border: none; cursor: pointer; transition: background .2s; }
.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: 13px 31px; height: 48px; line-height: 1; border-radius: 0; border: 1px solid var(--ink); cursor: pointer; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--ink); color: var(--canvas); }

.section-dark { background: var(--canvas); padding: var(--sp-xxl) 0; }
.section-light { background: var(--surface-soft-light); padding: var(--sp-xxl) 0; }
.section-elevated { background: var(--canvas-elevated); padding: var(--sp-xxl) 0; }

.section-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.1px; color: var(--primary); margin-bottom: var(--sp-xs); }
.section-title { color: var(--ink); font-size: clamp(26px, 3vw, 36px); font-weight: 500; line-height: 1.2; letter-spacing: -0.36px; margin-bottom: var(--sp-md); }
.section-title.on-light { color: var(--body-on-light); }
.section-desc { color: var(--body); font-size: 14px; max-width: 640px; margin-bottom: var(--sp-lg); }
.section-desc.on-light { color: var(--body-on-light); }

.card-grid { display: grid; gap: var(--sp-md); grid-template-columns: repeat(3, 1fr); }
.card { background: var(--canvas-elevated); border-radius: 0; overflow: hidden; }
.card img { height: 220px; object-fit: cover; }
.card-body { padding: var(--sp-sm); }
.card-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.1px; color: var(--primary); margin-bottom: var(--sp-xxs); }
.card-title { color: var(--ink); font-size: 18px; font-weight: 700; line-height: 1.2; margin-bottom: var(--sp-xxs); }
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--primary); }
.card-excerpt { color: var(--body); font-size: 13px; line-height: 1.5; margin-bottom: var(--sp-sm); }
.card-meta { font-size: 12px; color: var(--muted); }

.card-light { background: var(--canvas-light); border: 1px solid var(--hairline-on-light); }
.card-light .card-title { color: var(--body-on-light); }
.card-light .card-title a { color: var(--body-on-light); }
.card-light .card-excerpt { color: var(--body-on-light); opacity: .75; }

.livery-band { background: var(--primary); padding: var(--sp-xxl) 0; text-align: center; }
.livery-band h2 { color: var(--ink); font-size: clamp(26px, 3vw, 36px); font-weight: 500; letter-spacing: -0.36px; }
.livery-band p { color: rgba(255,255,255,.8); font-size: 14px; margin-top: var(--sp-sm); }

.article-hero { position: relative; height: 400px; overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,24,24,0.15) 0%, rgba(24,24,24,0.7) 100%); }
.article-header { position: relative; z-index: 2; padding: var(--sp-xxl) 0 var(--sp-md); }
.article-header h1 { color: var(--ink); font-size: clamp(26px, 4vw, 56px); font-weight: 500; line-height: 1.1; letter-spacing: -1.12px; }
.article-header .article-meta { color: var(--muted); font-size: 12px; margin-top: var(--sp-xs); }

.article-body { background: var(--surface-soft-light); }
.article-content { max-width: 800px; padding: var(--sp-xxl) var(--sp-xs); }
.article-content h2 { font-size: 26px; font-weight: 500; color: var(--body-on-light); margin: var(--sp-lg) 0 var(--sp-sm); letter-spacing: 0.195px; }
.article-content h3 { font-size: 18px; font-weight: 700; color: var(--body-on-light); margin: var(--sp-md) 0 var(--sp-xxs); }
.article-content p { color: var(--body-on-light); font-size: 15px; line-height: 1.7; margin-bottom: var(--sp-sm); }
.article-content ul, .article-content ol { color: var(--body-on-light); font-size: 15px; line-height: 1.7; padding-left: var(--sp-md); margin-bottom: var(--sp-sm); }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content a { color: var(--primary); text-decoration: underline; }
.article-content strong { font-weight: 700; }

.contact-form { background: var(--canvas-elevated); padding: var(--sp-md); max-width: 560px; margin: var(--sp-lg) 0; }
.contact-form h3 { color: var(--ink); font-size: 18px; font-weight: 700; margin-bottom: var(--sp-sm); }
.form-group { margin-bottom: var(--sp-sm); }
.form-group label { display: block; color: var(--body); font-size: 13px; margin-bottom: var(--sp-xxs); text-transform: uppercase; letter-spacing: 0.65px; font-weight: 600; }
.form-group input { width: 100%; background: var(--canvas); color: var(--ink); border: 1px solid var(--hairline); border-radius: 4px; padding: 14px 16px; height: 48px; font-size: 14px; font-family: var(--font); }
.form-group input:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
.form-success { display: none; background: #03904a; color: #fff; padding: var(--sp-sm); font-size: 14px; margin-top: var(--sp-sm); }

.related-articles { padding: var(--sp-xxl) 0; background: var(--canvas); }
.related-articles .section-title { margin-bottom: var(--sp-md); }

.page-content { background: var(--surface-soft-light); padding: var(--sp-xxl) 0; }
.page-content .inner { max-width: 800px; }
.page-content h1 { color: var(--body-on-light); font-size: clamp(26px, 3.5vw, 56px); font-weight: 500; letter-spacing: -1.12px; margin-bottom: var(--sp-lg); }
.page-content h2 { color: var(--body-on-light); font-size: 22px; font-weight: 700; margin: var(--sp-lg) 0 var(--sp-sm); }
.page-content p, .page-content li { color: var(--body-on-light); font-size: 15px; line-height: 1.7; margin-bottom: var(--sp-sm); }
.page-content ul { list-style: disc; padding-left: var(--sp-md); }
.page-content a { color: var(--primary); }

.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; }

.site-footer { background: var(--canvas); border-top: 1px solid var(--hairline); padding: var(--sp-xl) 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--sp-xl); padding-bottom: var(--sp-xl); }
.footer-brand { display: block; color: var(--ink); font-size: 18px; font-weight: 700; margin-bottom: var(--sp-sm); }
.footer-col p { color: var(--body); font-size: 13px; line-height: 1.6; }
.footer-col strong { display: block; color: var(--ink); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.65px; margin-bottom: var(--sp-sm); }
.footer-col ul li { margin-bottom: var(--sp-xxs); }
.footer-col ul a { color: var(--body); font-size: 13px; transition: color .2s; }
.footer-col ul a:hover { color: var(--ink); }
.footer-col address { color: var(--body); font-size: 13px; line-height: 1.8; }
.footer-col address a { color: var(--body); transition: color .2s; }
.footer-col address a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--hairline); padding: var(--sp-sm) 0; display: flex; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-sm); flex-wrap: wrap; }
.footer-bottom span { color: var(--muted); font-size: 12px; }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--canvas-elevated); border-top: 1px solid var(--hairline); padding: var(--sp-sm) var(--sp-xs); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); z-index: 999; flex-wrap: wrap; }
.cookie-banner p { color: var(--body); font-size: 13px; }
.cookie-banner a { color: var(--primary); }
.cookie-actions { display: flex; gap: var(--sp-xxs); flex-shrink: 0; }
.cookie-banner.hidden { display: none; }

@media (max-width: 1024px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--canvas); border-bottom: 1px solid var(--hairline); padding: var(--sp-sm) var(--sp-xs); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: var(--sp-sm); }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-band { min-height: 400px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero-content h1 { font-size: 32px; letter-spacing: -0.6px; }
  .article-header h1 { font-size: 28px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
}
