@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;
  --hairline: #303030;
  --hairline-on-light: #d2d2d2;
  --ink: #ffffff;
  --body-color: #969696;
  --body-on-light: #181818;
  --muted: #666666;
  --font: 'Inter', -apple-system, system-ui, sans-serif;
}

html { font-size: 14px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--body-color);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
address { font-style: normal; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.36px;
}

.site-logo span { color: var(--primary); }

.site-nav {
  display: flex;
  gap: 32px;
}

.site-nav a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  color: var(--body-color);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.hero-band {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-band img {
  position: absolute;
  inset: 0;
  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.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0 64px;
  width: 100%;
}

.hero-content .container { max-width: 900px; }

.badge-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  background: var(--canvas-elevated);
  color: var(--ink);
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -1.12px;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 760px;
}

.hero-content p {
  font-size: 16px;
  color: var(--body-color);
  max-width: 600px;
  line-height: 1.6;
}

.section-band {
  padding: 96px 0;
}

.section-band--light {
  background: var(--canvas-light);
  color: var(--body-on-light);
}

.section-band--elevated {
  background: var(--canvas-elevated);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-head {
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.36px;
  line-height: 1.2;
  margin-bottom: 48px;
}

.section-band--light .section-head { color: var(--body-on-light); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--canvas-elevated);
  border: 1px solid var(--hairline);
}

.card--light {
  background: var(--canvas-light);
  border: 1px solid var(--hairline-on-light);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: 12px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
}

.card--light .card-title { color: var(--body-on-light); }

.card-text {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.5;
  margin-bottom: 20px;
}

.card--light .card-text { color: #555; }

.card-link {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
}

.articles-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  border: 1px solid var(--hairline-on-light);
  background: var(--canvas-light);
}

.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-card-body { padding: 20px; }

.article-date {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.article-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--body-on-light);
  line-height: 1.3;
  margin-bottom: 10px;
}

.article-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-read-more {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
}

.livery-band {
  background: var(--primary);
  padding: 96px 0;
  text-align: center;
}

.livery-band h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.36px;
  margin-bottom: 16px;
}

.livery-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 96px 0;
  background: var(--surface-soft-light);
}

.contact-section .section-head { color: var(--body-on-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 26px;
  font-weight: 500;
  color: var(--body-on-light);
  margin-bottom: 24px;
  letter-spacing: 0.195px;
}

.contact-info p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-info a { color: var(--primary); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-form input {
  background: var(--canvas-light);
  border: 1px solid var(--hairline-on-light);
  border-radius: 4px;
  padding: 14px 16px;
  height: 48px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--body-on-light);
  width: 100%;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 14px 32px;
  height: 48px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  width: 100%;
}

.btn-primary:active { background: var(--primary-active); }

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--canvas-elevated);
  border-top: 1px solid var(--hairline);
  padding: 20px 24px;
  z-index: 999;
}

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.5;
}

.cookie-inner p a { color: var(--primary); }

.cookie-buttons { display: flex; gap: 12px; }

.btn-cookie-accept {
  background: var(--primary);
  color: var(--ink);
  border: none;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  cursor: pointer;
  font-family: var(--font);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  cursor: pointer;
  font-family: var(--font);
}

.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.footer-logo span { color: var(--primary); }

.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.footer-col ul li a:hover { color: var(--ink); }

.footer-col address p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-col address a { color: var(--primary); }

.footer-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

.article-page { padding: 64px 0 96px; }

.article-page .container { max-width: 800px; }

.article-header { margin-bottom: 48px; }

.article-header h1 {
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.article-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.article-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 48px;
}

.article-content h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.195px;
  line-height: 1.3;
  margin: 40px 0 16px;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 12px;
}

.article-content p {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: 16px;
}

.article-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.article-content ul li {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: 8px;
}

.article-content a { color: var(--primary); }

.article-content strong { color: var(--ink); }

.article-updated {
  font-size: 12px;
  color: var(--muted);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 8px; }

.page-content {
  padding: 64px 0 96px;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.36px;
  margin-bottom: 32px;
}

.page-content h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 12px;
}

.page-content p, .page-content li {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: 12px;
}

.page-content ul { list-style: disc; padding-left: 24px; }

.page-updated {
  font-size: 12px;
  color: var(--muted);
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--canvas); padding: 16px 24px; border-bottom: 1px solid var(--hairline); gap: 16px; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .site-header { position: relative; }
  .cards-grid { grid-template-columns: 1fr; }
  .articles-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-head { font-size: 28px; }
  .hero-content h1 { font-size: 32px; }
  .livery-band h2 { font-size: 26px; }
}

@media (max-width: 640px) {
  .section-band { padding: 64px 0; }
  .hero-band { min-height: 420px; }
}
