@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;
  --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 { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  background: var(--canvas);
  color: var(--body-color);
}

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-md);
}

/* ── TOP NAV ── */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
}

.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.nav-brand 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-color);
  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;
  background: none;
  border: none;
  padding: var(--spacing-xxs);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ── HERO BAND ── */
.hero-band {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--spacing-xxl);
}

.hero-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,24,24,0.2) 0%, rgba(24,24,24,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.hero-content h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.6px;
  color: var(--ink);
  margin-bottom: var(--spacing-sm);
}

.hero-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--body-color);
  max-width: 560px;
  margin-bottom: var(--spacing-md);
}

.hero-actions { display: flex; gap: var(--spacing-xs); flex-wrap: wrap; }

/* ── BUTTONS ── */
.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: 1;
  border-radius: 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--primary-active); color: var(--on-primary); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 14px 32px;
  height: 48px;
  border-radius: 0;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-outline:hover { background: rgba(255,255,255,0.05); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--body-on-light);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 14px 32px;
  height: 48px;
  border-radius: 0;
  border: 1px solid var(--body-on-light);
  cursor: pointer;
}

/* ── SECTIONS ── */
.section-dark {
  padding: var(--spacing-xxl) 0;
  background: var(--canvas);
}

.section-light {
  padding: var(--spacing-xxl) 0;
  background: var(--surface-soft-light);
}

.section-elevated {
  padding: var(--spacing-xxl) 0;
  background: var(--canvas-elevated);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.36px;
  color: var(--ink);
  margin-bottom: var(--spacing-xs);
}

.section-title-light {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.36px;
  color: var(--body-on-light);
  margin-bottom: var(--spacing-xs);
}

.section-subtitle {
  font-size: 14px;
  color: var(--body-color);
  max-width: 560px;
  margin-bottom: var(--spacing-lg);
  line-height: 1.5;
}

.section-subtitle-light {
  font-size: 14px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: var(--spacing-lg);
  line-height: 1.5;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.feature-card {
  background: var(--canvas-elevated);
  border-radius: 0;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-card-body {
  padding: var(--spacing-sm);
}

.feature-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--primary);
  margin-bottom: var(--spacing-xxs);
}

.feature-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: var(--spacing-xxs);
}

.feature-card-text {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
}

.feature-card-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  color: var(--primary);
}

/* Light card variant */
.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); }
.feature-card-light .feature-card-title { color: var(--body-on-light); }
.feature-card-light .feature-card-text { color: #555; }

/* ── LIVERY BAND ── */
.livery-band {
  padding: var(--spacing-xxl) 0;
  background: var(--primary);
  text-align: center;
}

.livery-band h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.36px;
  margin-bottom: var(--spacing-xs);
}

.livery-band p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto var(--spacing-md);
}

/* ── CONTACT FORM ── */
.contact-section {
  padding: var(--spacing-xxl) 0;
  background: var(--canvas);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.36px;
  margin-bottom: var(--spacing-sm);
}

.contact-info p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.5;
  margin-bottom: var(--spacing-xs);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-md);
}

.contact-detail-item {
  font-size: 13px;
  color: var(--body-color);
}

.contact-detail-item strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxxs);
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--body-color);
}

.form-input {
  background: var(--canvas);
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 14px 16px;
  height: 48px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: var(--primary); }

/* ── BADGE PILL ── */
.badge {
  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-hero {
  padding-top: 64px;
  position: relative;
}

.article-hero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.article-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(180deg, transparent, var(--canvas));
}

.article-body {
  padding: var(--spacing-xxl) 0;
  background: var(--canvas);
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.article-date {
  font-size: 12px;
  color: var(--muted);
}

.article-h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.12px;
  color: var(--ink);
  margin-bottom: var(--spacing-sm);
}

.article-lead {
  font-size: 18px;
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  border-left: 3px solid var(--primary);
  padding-left: var(--spacing-sm);
}

.article-content h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.195px;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.article-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
}

.article-content p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.article-content ul, .article-content ol {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-md);
}

.article-content li {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: var(--spacing-xxs);
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
}

.article-img-block {
  margin: var(--spacing-lg) 0;
}

.article-img-block img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.article-img-caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: var(--spacing-xxs);
}

.article-divider {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: var(--spacing-lg) 0;
}

/* ── RELATED ARTICLES ── */
.related-section {
  padding: var(--spacing-xxl) 0;
  background: var(--canvas-elevated);
}

/* ── PAGE HEADER (about/privacy/terms) ── */
.page-header {
  padding-top: calc(64px + var(--spacing-xxl));
  padding-bottom: var(--spacing-xxl);
  background: var(--canvas-elevated);
}

.page-header h1 {
  font-size: 56px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -1.12px;
  margin-bottom: var(--spacing-xs);
}

.page-header p {
  font-size: 16px;
  color: var(--body-color);
  max-width: 560px;
}

.page-body {
  padding: var(--spacing-xxl) 0;
  background: var(--canvas);
}

.page-content h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.195px;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.page-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
}

.page-content p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.page-content ul {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-md);
}

.page-content li {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: var(--spacing-xxs);
}

/* ── FOOTER ── */
.footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.footer-brand-name {
  font-size: 18px;
  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-color);
  line-height: 1.6;
  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-sm);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxs);
}

.footer-links a {
  font-size: 13px;
  color: var(--body-color);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-legal a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--body-color); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--canvas-elevated);
  border-top: 1px solid var(--hairline);
  padding: var(--spacing-sm) var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 13px;
  color: var(--body-color);
  flex: 1;
  min-width: 280px;
}

.cookie-text a { color: var(--primary); text-decoration: underline; }

.cookie-actions { display: flex; gap: var(--spacing-xs); }

.cookie-accept {
  background: var(--primary);
  color: var(--on-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 10px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

.cookie-reject {
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 10px 24px;
  border: 1px solid var(--hairline);
  border-radius: 0;
  cursor: pointer;
}

/* ── DISCLAIMER ── */
.disclaimer-bar {
  background: var(--canvas-elevated);
  border-bottom: 1px solid var(--hairline);
  padding: var(--spacing-xxs) 0;
  text-align: center;
}

.disclaimer-bar p {
  font-size: 12px;
  color: var(--muted);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: var(--spacing-sm) 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-xxs);
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  font-size: 12px;
  color: var(--muted);
}

.breadcrumb-list a { color: var(--body-color); }
.breadcrumb-list a:hover { color: var(--ink); }

/* ── UTILITY ── */
.mt-lg { margin-top: var(--spacing-lg); }
.text-center { text-align: center; }
.divider { border: none; border-top: 1px solid var(--hairline); }
.divider-light { border: none; border-top: 1px solid var(--hairline-on-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 56px; letter-spacing: -1.12px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--hairline);
    gap: var(--spacing-sm);
  }
  .nav-hamburger { display: flex; }
  .hero-content h1 { font-size: 32px; letter-spacing: -0.64px; }
  .section-title, .section-title-light { font-size: 26px; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .article-h1 { font-size: 32px; }
  .page-header h1 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-band { min-height: 100svh; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
