:root {
  color-scheme: light;
  --ink: #111111;
  --paper: #f7f7f4;
  --muted: #62635f;
  --line: #d8d8d0;
  --acid: #b9ff36;
  --signal: #ff4b4b;
  --steel: #dde3e7;
  --radius: 8px;
  --max-width: 1180px;
}

* {
  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;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgb(186 225 255 / 0.96) 0%, rgb(255 255 255 / 0.94) 100%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(230px, 58vw);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #315d00;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111111;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgb(0 0 0 / 0.82) 0%, rgb(0 0 0 / 0.44) 54%, rgb(0 0 0 / 0.2) 100%),
    url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--acid) 0 42px, var(--ink) 42px 84px, var(--signal) 84px 126px);
}

.hero-content {
  width: min(780px, calc(100% - 36px));
  margin: 0 auto;
  padding: 100px 0 72px;
  color: #ffffff;
}

.hero h1,
.section-heading h2,
.drop h2,
.contact h2 {
  margin: 0;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 8vw, 6.7rem);
}

.hero p {
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.hero .eyebrow {
  color: var(--acid);
}

.hero-actions,
.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: #ffffff;
}

.hero .button-primary {
  background: var(--acid);
  color: var(--ink);
}

.button-ghost {
  color: #ffffff;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: #ffffff;
  color: var(--ink);
}

.section {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 94px) 0;
}

.intro {
  display: grid;
  min-height: 160px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.intro p {
  width: min(880px, 100%);
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 2.45rem);
  font-weight: 850;
  line-height: 1.12;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading h2,
.drop h2,
.contact h2 {
  font-size: clamp(2rem, 5vw, 4.8rem);
}

.section-heading p,
.drop p,
.contact p,
.product-card p {
  color: var(--muted);
}

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

.product-card {
  display: grid;
  min-width: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  background: var(--steel);
}

.product-card img {
  height: 100%;
  object-fit: cover;
}

.product-content {
  display: grid;
  gap: 14px;
  padding: 18px;
}

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

.product-category {
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 2.7em;
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.product-card p {
  min-height: 3em;
  margin: 0;
}

.price {
  font-size: 1.15rem;
  font-weight: 950;
}

.drop {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.drop-steps {
  display: grid;
  gap: 14px;
}

.drop-steps article {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.drop-steps span {
  color: var(--signal);
  font-size: 0.8rem;
  font-weight: 950;
}

.drop-steps h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.drop-steps p {
  margin: 0;
}

.contact {
  justify-content: space-between;
  gap: 28px;
}

.contact > div {
  max-width: 720px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 4vw, 48px);
  background: var(--ink);
  color: #ffffff;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-content {
    padding-top: 80px;
  }
}

@media (max-width: 560px) {
  .nav-links {
    width: 100%;
    justify-content: space-between;
    font-size: 0.8rem;
  }

  .hero-content,
  .section {
    width: min(100% - 28px, var(--max-width));
  }

  .button {
    width: 100%;
  }

  .product-card h3,
  .product-card p {
    min-height: auto;
  }
}
