:root {
  color-scheme: dark;
  --ink: #f4eee6;
  --muted: #b7aca1;
  --black: #050505;
  --panel: #11100f;
  --line: #2a2723;
  --red: #9d1818;
  --red-bright: #d63b2f;
  --steel: #8d98a1;
  --moss: #505c4d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.74);
  border-bottom: 1px solid rgba(244, 238, 230, 0.12);
  backdrop-filter: blur(18px);
}

.brand-lockup,
.nav-links,
.hero-actions,
.signup-row {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--red-bright);
  color: var(--red-bright);
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/reaper-hero.png");
  background-position: center right;
  background-size: cover;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.02);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 39%, rgba(5, 5, 5, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.68), transparent 38%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 116px 0 58px;
  transform: translateX(clamp(-180px, -12vw, 0px));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(58px, 9vw, 126px);
  line-height: 0.88;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.95;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.signup-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--red-bright);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary,
.signup-form button {
  background: var(--red);
  color: var(--ink);
}

.button.ghost {
  background: rgba(5, 5, 5, 0.38);
}

.drop-section,
.uniform-section,
.contact-section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 4vw, 56px);
}

.section-heading,
.uniform-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.66fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

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

.product-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.product-visual {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 24%, rgba(214, 59, 47, 0.2), transparent 30%),
    linear-gradient(135deg, #1b1a18, #050505 58%, #28312a);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 14% 16% 12%;
  background:
    linear-gradient(135deg, rgba(244, 238, 230, 0.08), transparent 35%),
    #070707;
  border: 1px solid rgba(244, 238, 230, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.product-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 38%;
  width: 64px;
  height: 24px;
  translate: -50% -50%;
  border-top: 2px solid rgba(214, 59, 47, 0.78);
  border-bottom: 2px solid rgba(244, 238, 230, 0.2);
}

.product-visual.tee::before {
  clip-path: polygon(12% 20%, 36% 10%, 44% 20%, 56% 20%, 64% 10%, 88% 20%, 78% 42%, 70% 38%, 70% 88%, 30% 88%, 30% 38%, 22% 42%);
}

.product-visual.hoodie::before {
  clip-path: polygon(33% 14%, 67% 14%, 78% 26%, 88% 88%, 62% 88%, 62% 46%, 38% 46%, 38% 88%, 12% 88%, 22% 26%);
}

.product-visual.cap::before {
  inset: 20% 12%;
  clip-path: polygon(18% 56%, 30% 34%, 62% 28%, 78% 42%, 92% 56%, 72% 62%, 38% 64%);
}

.product-copy {
  padding: 22px;
}

.product-copy p,
.uniform-points p {
  color: var(--muted);
  line-height: 1.55;
}

.product-copy span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.uniform-section {
  border-block: 1px solid var(--line);
  background: #0b0b0a;
}

.uniform-points {
  display: grid;
  gap: 18px;
  border-left: 2px solid var(--moss);
  padding-left: 24px;
}

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

.signup-form {
  display: grid;
  gap: 10px;
}

.signup-form label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-row {
  gap: 10px;
}

.signup-row input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: #0c0c0b;
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}

.signup-row input:focus {
  outline: 2px solid var(--red-bright);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 766px) {
  .site-header {
    position: absolute;
    min-height: 62px;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.34));
    border-bottom-color: rgba(244, 238, 230, 0.08);
  }

  .nav-links {
    display: none;
  }

  .brand-lockup {
    gap: 10px;
    max-width: 280px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.08em;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero-media {
    background-position: 62% center;
    opacity: 0.66;
    transform: scale(1.04);
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.42) 0%, rgba(5, 5, 5, 0.7) 48%, rgba(5, 5, 5, 0.96) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.22));
  }

  .hero-inner {
    width: 100%;
    padding: 96px 18px 34px;
    transform: none;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.12em;
  }

  h1 {
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(29px, 9.4vw, 46px);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(32px, 10.5vw, 54px);
    line-height: 0.98;
  }

  h3 {
    font-size: 18px;
  }

  .hero-copy {
    max-width: 31ch;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .button,
  .signup-form button {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
  }

  .drop-section,
  .uniform-section,
  .contact-section {
    padding: 52px 18px;
  }

  .section-heading,
  .uniform-section,
  .contact-section,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .product-grid {
    gap: 14px;
    margin-top: 28px;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(118px, 38%) 1fr;
    min-height: 178px;
  }

  .product-visual {
    min-height: 100%;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .product-visual::before {
    inset: 18% 12% 14%;
  }

  .product-visual::after {
    width: 46px;
  }

  .product-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
  }

  .product-copy p,
  .uniform-points p {
    font-size: 14px;
    line-height: 1.5;
  }

  .uniform-points {
    gap: 12px;
    padding-left: 16px;
  }

  .signup-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .signup-row input {
    min-height: 50px;
    font-size: 16px;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 22px 18px;
    line-height: 1.45;
  }
}

@media (max-width: 390px) {
  .brand-lockup {
    font-size: 10px;
  }

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

  .product-visual {
    min-height: 172px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
