:root {
  --bg: #0d0d0d;
  --panel: #171717;
  --panel-2: #202020;
  --ink: #f7f1e8;
  --muted: #b7ada1;
  --line: rgba(247, 241, 232, 0.16);
  --accent: #d94f32;
  --accent-2: #e7d8bd;
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0));
}

.brand {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 36px);
  color: rgba(247, 241, 232, 0.84);
  font-size: 0.93rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-link span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--bg);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 64px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0.48) 45%, rgba(13, 13, 13, 0.18) 100%),
    linear-gradient(0deg, rgba(13, 13, 13, 0.96) 0%, rgba(13, 13, 13, 0.08) 42%);
}

.hero-content {
  position: relative;
  width: min(660px, 100%);
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 11vw, 9.8rem);
  line-height: 0.86;
  max-width: 7ch;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 560px;
  color: rgba(247, 241, 232, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

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

.button,
.product-row button,
.signup-form button {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.button:hover,
.product-row button:hover,
.signup-form button:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--bg);
  background: var(--ink);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(247, 241, 232, 0.08);
}

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

.ticker span {
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

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

.section {
  padding: 86px clamp(18px, 5vw, 72px);
}

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

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px var(--shadow);
}

.product-visual {
  position: relative;
  aspect-ratio: 1 / 1.08;
  background: radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.16), transparent 34%), var(--panel-2);
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.product-visual::before {
  top: 16%;
  width: 43%;
  height: 61%;
  border-radius: 18% 18% 10% 10%;
  background: var(--garment);
  box-shadow: inset 0 -28px 0 rgba(0, 0, 0, 0.14);
}

.product-visual::after {
  top: 27%;
  width: 18%;
  height: 3px;
  border-radius: 999px;
  background: rgba(247, 241, 232, 0.5);
}

.hoodie {
  --garment: #101010;
}

.cargo {
  --garment: #2a2a27;
}

.tee {
  --garment: #b74a35;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
  text-transform: uppercase;
}

.product-info p {
  min-height: 48px;
  color: var(--muted);
  line-height: 1.5;
}

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

.product-row span {
  font-size: 1.15rem;
  font-weight: 900;
}

.product-row button,
.signup-form button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--bg);
  background: var(--accent-2);
}

.lookbook,
.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  padding: 76px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.lookbook {
  background: linear-gradient(135deg, #141414, #231915);
}

.lookbook p,
.newsletter p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.newsletter {
  background: #0f0f0f;
}

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

.signup-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 16px;
  color: var(--ink);
  outline: 0;
  background: rgba(247, 241, 232, 0.08);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 118px;
  }

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

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

  .section-heading {
    display: block;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.08rem;
  }

  .cart-link {
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 4.8rem);
  }

  .hero-actions,
  .signup-form,
  .site-footer {
    flex-direction: column;
  }

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

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

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