:root {
  color-scheme: dark;
  --ink: #f4f1ec;
  --muted: #9f9892;
  --paper: #090909;
  --panel: #141111;
  --white: #ffffff;
  --line: #2a2424;
  --red: #b51622;
  --red-dark: #650a11;
  --red-soft: #e43b45;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 44px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.brand,
.footer p {
  font-weight: 900;
  letter-spacing: 0;
}

.brand {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-action {
  justify-self: end;
  border: 1px solid rgba(228, 59, 69, 0.75);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 112px clamp(18px, 5vw, 64px) clamp(34px, 7vw, 86px);
  overflow: hidden;
  background: #151515;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(49, 0, 5, 0.38) 54%, rgba(0, 0, 0, 0.76)),
    url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1800&q=85")
      center / cover;
  filter: saturate(0.58) contrast(1.08);
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero .eyebrow,
.lookbook .eyebrow {
  color: var(--red-soft);
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(4.8rem, 16vw, 13.5rem);
  line-height: 0.78;
  letter-spacing: 0;
  font-weight: 950;
}

h2 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: clamp(2.05rem, 5vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.signup button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #0d0b0b;
}

.ticker span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.ticker span:last-child {
  border-right: 0;
}

.section,
.lookbook,
.story,
.join {
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 64px);
}

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

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

.product-card {
  background: #f4f1ec;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  color: #080808;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.product-image {
  position: relative;
  min-height: clamp(300px, 36vw, 490px);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.product-image::before {
  content: "A4TWRLD";
  position: absolute;
  left: 16px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.product-tee {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)),
    url("https://images.unsplash.com/photo-1523398002811-999ca8dec234?auto=format&fit=crop&w=1000&q=85")
      center / cover;
}

.product-hoodie {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.24)),
    url("https://images.unsplash.com/photo-1556821840-3a63f95609a7?auto=format&fit=crop&w=1000&q=85")
      center / cover;
}

.product-cap {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.24)),
    url("https://images.unsplash.com/photo-1588850561407-ed78c282e89b?auto=format&fit=crop&w=1000&q=85")
      center / cover;
}

.product-info {
  display: grid;
  gap: 4px;
  padding: 18px 18px 20px;
}

.product-tag {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-info p {
  margin-bottom: 12px;
  color: #5f5853;
  line-height: 1.45;
}

.product-info span {
  font-weight: 950;
}

.buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.buy-row a {
  border-radius: 999px;
  background: #080808;
  color: var(--white);
  padding: 10px 14px;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lookbook {
  background: #070707;
  color: var(--white);
}

.lookbook-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(230px, 24vw));
  gap: 16px;
}

.look {
  min-height: 260px;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.look.one {
  grid-row: 1 / span 2;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(28, 0, 3, 0.54)),
    url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1200&q=85");
  filter: saturate(0.62) contrast(1.08);
}

.look.two {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(28, 0, 3, 0.5)),
    url("https://images.unsplash.com/photo-1506629905607-d9d297d4262f?auto=format&fit=crop&w=1000&q=85");
  filter: saturate(0.62) contrast(1.08);
}

.look.three {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(28, 0, 3, 0.48)),
    url("https://images.unsplash.com/photo-1556905055-8f358a7a47b2?auto=format&fit=crop&w=1000&q=85");
  filter: saturate(0.62) contrast(1.08);
}

.story {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 560px);
  gap: clamp(28px, 7vw, 94px);
  align-items: start;
  background: #100d0d;
}

.story > p {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.join {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 560px);
  gap: 28px;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(101, 10, 17, 0.9), rgba(7, 7, 7, 0.96)),
    #090909;
  color: var(--white);
}

.signup label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.signup input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0 18px;
  font: inherit;
}

.signup input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.signup button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 64px);
  background: #050505;
  color: var(--white);
}

.footer p {
  margin: 0;
}

.footer div {
  display: flex;
  gap: 18px;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .ticker,
  .product-grid,
  .story,
  .join {
    grid-template-columns: 1fr;
  }

  .ticker span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .look.one {
    grid-row: auto;
  }

  .signup-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .header-action {
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(4.1rem, 23vw, 6.9rem);
  }

  .hero {
    min-height: 88vh;
  }

  .button,
  .signup button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
