:root {
  --bg: #070707;
  --bg-2: #101010;
  --panel: #141414;
  --ink: #f3f1ea;
  --muted: #9a958a;
  --line: #2a2a2a;
  --red: #c4121a;
  --red-hot: #e31b24;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Barlow", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 7, 7, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.16em;
  font-size: 1.35rem;
}

.wordmark span {
  color: var(--red);
}

.nav a.nav-link {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 22px;
}

.nav a.nav-link:hover {
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
}

/* HERO */
.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(196, 18, 26, 0.18), transparent 46%),
    linear-gradient(180deg, #0c0c0c 0%, #070707 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
}

.kicker {
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(4.4rem, 16vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: 0.04em;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.tag {
  max-width: 420px;
  color: var(--muted);
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn-solid {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.btn-solid:hover {
  background: var(--red-hot);
}

.btn-ghost:hover {
  background: #fff;
  color: #000;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 18px;
}

/* SECTIONS */
section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.sec-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.lede {
  max-width: 560px;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px;
  min-height: 180px;
}

.card h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.placeholder {
  border: 1px dashed #3a3a3a;
  background:
    repeating-linear-gradient(
      -45deg,
      #121212,
      #121212 8px,
      #161616 8px,
      #161616 16px
    );
  min-height: 280px;
  display: grid;
  place-items: center;
  color: #6b675f;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-top: 28px;
}

.shop-note {
  margin-top: 18px;
  color: var(--muted);
}

.links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  max-width: 420px;
}

.links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line);
  padding: 14px 16px;
  background: var(--bg-2);
}

.links a:hover {
  border-color: #fff;
}

.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .nav-links .hide-sm {
    display: none;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  section,
  .hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.hero-grid {
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 20px;
}

.hero-pic {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-pic {
    justify-self: center;
    max-width: 320px;
  }
}
