:root {
  --background: #0b0b0b;
  --surface: #171717;
  --surface-strong: #202020;
  --ink: #f4f1ed;
  --muted: #a6a29c;
  --line: #333;
  --red: #ff1d1d;
  --red-dark: #9f0707;
  --asphalt: #242424;
  --shadow: rgba(0, 0, 0, 0.55);
  --max: 1440px;
  --pad: clamp(20px, 5vw, 64px);
  --display: "Anton", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 29, 29, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px),
    var(--background);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent),
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255, 255, 255, 0.035) 2px 3px);
  mix-blend-mode: screen;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad);
  background: rgba(11, 11, 11, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand-lockup,
.site-footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 42px;
  padding: 0 12px;
  background: var(--red);
  color: #060606;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  transform: skew(-8deg);
  box-shadow: 6px 6px 0 #3a0000;
}

.brand-mark.small {
  min-width: 46px;
  height: 34px;
  font-size: 22px;
}

.brand-name,
.main-nav,
.cart-link,
.menu-toggle,
.eyebrow,
.section-heading a,
.ticker,
.product-label,
.product-price,
.footer-links {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  color: var(--muted);
}

.main-nav a,
.cart-link,
.menu-toggle,
.section-heading a,
.footer-links a {
  transition: color 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.cart-link:hover,
.menu-toggle:hover,
.section-heading a:hover,
.footer-links a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-toggle[aria-expanded="true"] {
  color: var(--red);
  border-color: var(--red);
}

.hero {
  position: relative;
  width: min(100%, var(--max));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(56px, 8vw, 112px) var(--pad);
}

.hero:before {
  content: "SIX DIRTY SIX";
  position: absolute;
  inset: 8% auto auto 50%;
  transform: translateX(-50%);
  width: max-content;
  font-family: var(--display);
  font-size: clamp(64px, 14vw, 190px);
  color: rgba(255, 255, 255, 0.035);
  letter-spacing: 0.02em;
  pointer-events: none;
}

.hero-copy,
.hero-panel,
.section,
.split-section,
.story-band,
.shopify-note,
.site-footer {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 24px;
  font-size: clamp(64px, 12vw, 152px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 7vw, 86px);
  line-height: 0.95;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.hero-lede,
.culture-copy p,
.story-card p,
.shopify-note p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid var(--red);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: skew(-8deg);
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button.primary {
  background: var(--red);
  color: #050505;
  box-shadow: 8px 8px 0 var(--red-dark);
}

.button.secondary {
  color: var(--red);
  background: rgba(255, 29, 29, 0.06);
}

.button:hover {
  background: var(--ink);
  color: #050505;
  box-shadow: 8px 8px 0 var(--red);
}

.hero-panel {
  min-height: min(78vh, 760px);
  display: grid;
  align-content: end;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 29, 29, 0.12), transparent 48%),
    repeating-linear-gradient(-18deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 20px),
    var(--surface);
  border: 2px solid var(--red);
  box-shadow: inset 0 0 40px rgba(255, 29, 29, 0.16), 24px 24px 0 rgba(255, 29, 29, 0.14);
}

.hero-logo {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
  font-family: var(--display);
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-logo span {
  color: var(--red);
  font-size: clamp(90px, 13vw, 170px);
}

.hero-logo strong {
  color: var(--ink);
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 400;
}

.speed-lines {
  width: 100%;
  height: 7px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.hero-panel p {
  max-width: 420px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  gap: 26px;
  overflow: hidden;
  padding: 18px var(--pad);
  border-block: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--muted);
  white-space: nowrap;
}

.ticker span:before {
  content: "/";
  margin-right: 26px;
  color: var(--red);
}

.section,
.split-section,
.story-band,
.shopify-note {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 126px) var(--pad);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.84);
  border: 1px solid var(--line);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 18px 44px var(--shadow);
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--asphalt);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
  transition: filter 180ms ease, transform 260ms ease;
}

.product-card:hover .product-image img {
  filter: grayscale(0) contrast(1.08);
  transform: scale(1.045);
}

.product-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid var(--line);
  color: var(--ink);
}

.product-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.product-title {
  min-height: 2.05em;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-price {
  color: var(--red);
}

.shop-link {
  padding: 9px 12px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-link:hover {
  border-color: var(--red);
  color: var(--red);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 110px);
  border-top: 1px solid var(--line);
}

.culture-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  text-transform: uppercase;
}

.culture-copy li {
  padding: 14px 16px;
  background: var(--surface);
  border-left: 4px solid var(--red);
}

.placeholder-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 126px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.placeholder-section.alt {
  background: rgba(255, 255, 255, 0.018);
}

.placeholder-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 380px;
  gap: 12px;
}

.placeholder-tile,
.event-list article {
  min-height: 100%;
  display: grid;
  place-items: end start;
  padding: 20px;
  color: var(--ink);
  background:
    linear-gradient(150deg, rgba(255, 29, 29, 0.16), transparent 55%),
    repeating-linear-gradient(-18deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 16px),
    var(--surface);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placeholder-tile:nth-child(2) {
  transform: translateY(34px);
}

.placeholder-tile:nth-child(3) {
  transform: translateY(68px);
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list article {
  min-height: 118px;
  place-items: center start;
}

.event-list span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-list strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.support-section {
  align-items: center;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 16px;
}

.story-card,
.drop-card,
.shopify-note {
  background: rgba(23, 23, 23, 0.86);
  border: 1px solid var(--line);
}

.story-card,
.drop-card {
  padding: clamp(28px, 5vw, 54px);
}

.drop-card {
  display: grid;
  align-content: space-between;
  min-height: 360px;
  background:
    linear-gradient(145deg, rgba(255, 29, 29, 0.18), transparent 48%),
    var(--surface-strong);
}

.drop-card span,
.drop-card a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drop-card strong {
  max-width: 420px;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.drop-card a {
  color: var(--red);
}

.shopify-note {
  max-width: calc(var(--max) - (var(--pad) * 2));
  margin-bottom: 64px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px var(--pad);
  background: #070707;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: var(--pad);
    right: var(--pad);
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: rgba(11, 11, 11, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 22px 48px var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .split-section,
  .story-band,
  .placeholder-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 560px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .placeholder-grid {
    min-height: auto;
  }
}

@media (max-width: 660px) {
  .site-header {
    min-height: 68px;
  }

  .brand-name {
    display: none;
  }

  .hero-actions,
  .section-heading,
  .support-actions,
  .site-footer,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    min-height: 440px;
    box-shadow: inset 0 0 34px rgba(255, 29, 29, 0.14);
  }

  .ticker {
    overflow-x: auto;
  }

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

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

  .placeholder-tile,
  .placeholder-tile:nth-child(2),
  .placeholder-tile:nth-child(3) {
    min-height: 150px;
    transform: none;
  }
}
