
:root {
  --red: #e10613;
  --red-dark: #a80810;
  --ink: #1d1f22;
  --muted: #666d75;
  --line: #e5e7eb;
  --soft: #f5f6f7;
  --panel: #ffffff;
  --charcoal: #2e3033;
  --max: 1180px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  background: rgba(246,246,246,.96);
  border-bottom: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}
.brand-mark {
  width: 42px;
  height: 24px;
  display: inline-block;
  background: linear-gradient(135deg, transparent 35%, var(--red) 36% 54%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, transparent 45%, #8a8f94 47% 56%, transparent 58%);
  transform: skew(-12deg);
}
.brand strong {
  display: block;
  color: #8b8f94;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .01em;
}
.brand small {
  display: block;
  color: var(--red);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: #44484d;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 24px 0;
  border-bottom: 3px solid transparent;
}
.nav-link.active, .nav-link:hover { color: var(--red); border-color: var(--red); }
.top-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: white;
  background: var(--red);
  border: 1px solid var(--red);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.button.secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  color: white;
  background: linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.32)), var(--hero);
  background-size: cover;
  background-position: center;
}
.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 18px;
  background: var(--red);
  transform: skew(-18deg);
}
h1 {
  max-width: 920px;
  margin: 18px 0 18px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .98;
  letter-spacing: 0;
}
.hero p {
  max-width: 760px;
  color: rgba(255,255,255,.88);
  font-size: 20px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.mobile-title { display: none; }
.button.ghost { background: transparent; border-color: rgba(255,255,255,.7); color: white; }
.ticker {
  background: var(--red);
  color: white;
}
.ticker-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 800;
}
.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}
.section.compact { padding: 42px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}
h3 { font-size: 24px; line-height: 1.18; margin: 0 0 12px; }
.lead { color: var(--muted); font-size: 18px; max-width: 720px; }
.grid { display: grid; gap: 20px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  text-decoration: none;
  min-width: 0;
}
.card-media {
  aspect-ratio: 16 / 10;
  background: #ddd var(--img) center / cover;
}
.card-body { padding: 24px; }
.card-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 10px;
}
.card p { color: var(--muted); margin: 0; }
.metric-band {
  background: var(--charcoal);
  color: white;
}
.metrics {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.metric {
  padding: 36px 24px;
  background: rgba(255,255,255,.04);
}
.metric strong { display: block; font-size: 36px; color: white; }
.metric span { color: rgba(255,255,255,.72); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}
.panel {
  border: 1px solid var(--line);
  background: white;
  padding: 34px;
}
.content-lines p {
  margin: 0 0 14px;
  color: #33383e;
}
.route-box {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 24px;
}
.route-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.route-options a {
  display: block;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
}
.archive-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.archive-item {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  background: white;
}
.archive-item span { display: block; color: var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.page-hero {
  color: white;
  background: linear-gradient(90deg, rgba(0,0,0,.66), rgba(0,0,0,.22)), var(--hero);
  background-size: cover;
  background-position: center;
}
.page-hero .section { padding: 110px 0 84px; }
.page-hero h1 { font-size: clamp(40px, 5vw, 70px); }
.breadcrumb { color: rgba(255,255,255,.72); text-transform: uppercase; font-weight: 800; letter-spacing: .12em; font-size: 12px; }
.source-note {
  padding: 14px 18px;
  border-left: 4px solid var(--red);
  background: var(--soft);
  color: var(--muted);
  margin-bottom: 28px;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 46px 28px;
  color: rgba(255,255,255,.82);
  background: #2c2d2f;
}
.site-footer a { color: white; margin-left: 18px; }
.cookie-note {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(420px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  font-size: 13px;
}
.cookie-note span { color: var(--muted); }
.cookie-note button {
  grid-row: 1 / span 2;
  grid-column: 2;
  border: 0;
  background: var(--red);
  color: white;
  font-weight: 900;
  padding: 10px 12px;
}
@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
    gap: 10px;
  }
  nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 16px;
  }
  .nav-link { padding: 8px 0 10px; white-space: nowrap; }
  .top-cta { display: none; }
  .hero {
    min-height: 300px;
    align-items: end;
    background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.5)), var(--hero);
    background-position: center;
  }
  .hero-inner {
    width: 100%;
    padding: 112px 24px 28px;
    text-align: center;
  }
  .hero .eyebrow, .hero p, .hero-actions { display: none; }
  .desktop-title { display: none; }
  .mobile-title { display: inline; }
  .ticker-inner {
    min-height: 78px;
    align-items: center;
    text-align: center;
    font-size: 15px;
  }
  .ticker-inner span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .ticker .button { display: none; }
  .ticker-inner, .section-head, .site-footer { flex-direction: column; align-items: flex-start; }
  .grid.three, .grid.two, .metrics, .split, .archive-list, .route-options {
    grid-template-columns: 1fr;
  }
  h1 { font-size: clamp(30px, 9vw, 34px); line-height: 1.05; overflow-wrap: anywhere; }
  .hero p { font-size: 17px; }
  .brand strong { font-size: 26px; }
}
