:root {
  --black: #0b0b0c;
  --black-2: #141416;
  --red: #c8102e;
  --red-hot: #e31b23;
  --silver: #d8dce3;
  --chrome: #f4f6f8;
  --muted: #9aa3ad;
  --line: #2a2c31;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--black);
  color: var(--chrome);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }

.topbar {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  padding: 8px 12px;
}
.topbar a { text-decoration: underline; }

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11,11,12,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Oswald, sans-serif;
  font-size: 22px;
  letter-spacing: .06em;
}
.brand img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 22px; align-items: center; font-weight: 600; }
.nav-links a:hover { color: var(--red-hot); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 12px 18px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--red-hot); }
.btn.ghost {
  background: transparent;
  border: 1px solid var(--silver);
  color: var(--chrome);
}
.btn.portal {
  background: #f4f6f8;
  color: #111;
}
.btn.portal:hover { background: #fff; color: #111; }
.menu-btn { display: none; background: none; border: 0; color: #fff; font-size: 28px; }

.hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(200,16,46,.28), transparent 60%),
    linear-gradient(180deg, #111214, var(--black));
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.kicker {
  color: var(--red-hot);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}
h1, h2, h3 { font-family: Oswald, sans-serif; line-height: 1.05; text-transform: uppercase; }
h1 { font-size: clamp(40px, 7vw, 76px); margin-bottom: 16px; }
h2 { font-size: clamp(28px, 4vw, 44px); }
.lede { color: var(--silver); font-size: 18px; max-width: 520px; margin-bottom: 28px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.logo-hero {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.checks { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 22px; color: var(--muted); font-size: 14px; }
.checks span::before { content: "▸ "; color: var(--red-hot); font-weight: 800; }

section { padding: 72px 0; }
.section-head { margin-bottom: 28px; }
.section-head p { color: var(--muted); margin-top: 8px; max-width: 620px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.card h3 { font-size: 22px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

.band {
  background: linear-gradient(90deg, #8f0d1f, var(--red) 40%, #8f0d1f);
  padding: 36px 0;
  text-align: center;
}
.band h2 { margin-bottom: 8px; }
.band p { margin-bottom: 16px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.info-list { list-style: none; }
.info-list li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.info-list strong { display: block; color: var(--red-hot); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.map {
  min-height: 360px;
  border: 0;
  border-radius: 12px;
  width: 100%;
  height: 360px;
  filter: grayscale(.15) contrast(1.05);
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #111;
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }
  .menu-btn { display: block; }
  .hero-grid, .cards, .two-col { grid-template-columns: 1fr; }
  .brand span { display: none; }
}
