:root {
  --sand: #d8c09a;
  --sand-soft: #efe4d2;
  --sand-deep: #b89566;
  --ink: #111111;
  --ink-soft: #27211b;
  --muted: #655b52;
  --line: rgba(17, 17, 17, 0.1);
  --line-strong: rgba(17, 17, 17, 0.18);
  --surface: rgba(247, 239, 227, 0.78);
  --white: #fffdf9;
  --shadow: 0 32px 70px rgba(54, 36, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 192, 154, 0.3), transparent 24%),
    linear-gradient(180deg, #f7ecdc 0%, #efe1ca 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.5;
}

.site-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.who,
.product,
.footer {
  border: 1px solid var(--line);
  background: rgba(247, 239, 227, 0.92);
  box-shadow: none;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 2px 18px;
  position: static;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand,
h1,
h2,
h3 {
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 154px;
  height: auto;
}

.nav-toggle {
  display: none;
}

.nav-button {
  display: none;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a,
.eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.nav-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: center;
  min-height: auto;
  padding: 22px 0 0;
}

.hero-copy {
  padding: 0 28px 24px 6px;
}

.eyebrow {
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: 0.9;
  max-width: 11.5ch;
}

.hero-text,
.product-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 34rem;
  margin: 18px 0 0;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: transparent;
}

.hero-product {
  position: absolute;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-product img,
.product-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 36px rgba(31, 20, 10, 0.16));
}

.hero-product-left {
  width: min(36vw, 520px);
  left: 2%;
  bottom: 2%;
  transform: rotate(-8deg);
}

.hero-product-right {
  width: min(40vw, 590px);
  right: -1%;
  bottom: -1%;
  transform: rotate(7deg);
}

.who {
  margin-top: 18px;
  padding: 28px 30px 34px;
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.who h2 {
  font-size: clamp(1.52rem, 3.2vw, 3.2rem);
  line-height: 0.98;
  max-width: 31ch;
  color: transparent;
  background-image: linear-gradient(180deg, #c6a273 0%, #b18a5d 52%, #8b6944 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 248, 235, 0.18),
    0 2px 10px rgba(92, 68, 43, 0.08);
  filter: saturate(0.9) contrast(1.06);
}

.who .eyebrow {
  margin-bottom: 0;
  padding-top: 10px;
}

.who-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.who-shot {
  margin: 0;
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #d8c09a;
}

.who-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(17, 17, 17, 0.42) 100%);
}

.who-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-shot figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.products {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.product {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.product-copy {
  padding: 10px 8px 10px 4px;
}

.product-copy h3 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.94;
  margin-bottom: 18px;
}

.product-notes {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-notes li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.38);
}

.product-status {
  width: 100%;
  margin-top: 56px;
  padding: 22px 18px;
  background: rgba(93, 93, 93, 0.14);
  color: rgba(17, 17, 17, 0.64);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.product-image {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 0;
}

.product-caffeine .product-image {
  background-image:
    linear-gradient(180deg, rgba(247, 239, 227, 0.08), rgba(17, 17, 17, 0.08)),
    url("Steel2.jpg");
}

.product-nicotine .product-image {
  background-image:
    linear-gradient(180deg, rgba(247, 239, 227, 0.06), rgba(17, 17, 17, 0.12)),
    url("Rocks2.jpg");
}

.product-caffeine .product-image img {
  width: min(100%, 640px);
  transform: rotate(6deg);
}

.product-nicotine .product-image img {
  width: min(100%, 640px);
  transform: rotate(-7deg);
}

.footer {
  margin-top: 18px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  background: #111111;
  border-color: #111111;
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 1 auto;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-flag {
  display: block;
  width: 70px;
  height: auto;
}

.footer-button,
.footer-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(216, 192, 154, 0.35);
  background: #191919;
  color: var(--white);
  text-decoration: none;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-button:hover,
.footer-button:focus-visible,
.footer-subscribe:hover,
.footer-subscribe:focus-visible {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--ink);
  transform: translateY(-1px);
}

.footer-newsletter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-input {
  min-width: 240px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 253, 249, 0.08);
  color: var(--white);
  font: inherit;
}

.footer-input::placeholder {
  color: rgba(255, 253, 249, 0.54);
}

.footer-input:focus {
  outline: none;
  border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(216, 192, 154, 0.16);
}

.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;
}

.footer-badge {
  margin: 0;
  max-width: 420px;
  padding: 12px 16px;
  border: 1px solid var(--sand);
  background: var(--sand);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-badge-strong {
  font-weight: 800;
}

.footer-badge-soft {
  font-weight: 500;
}

@media (max-width: 1100px) {
  .hero,
  .product,
  .who {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .product-image {
    min-height: 420px;
  }

  .who-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 1440px);
    padding-top: 10px;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 12px;
    padding: 2px 0 14px;
  }

  .nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .nav-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    justify-self: end;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 10px;
    padding: 8px 0 0;
  }

  .nav-toggle:checked + .nav-button + .nav {
    display: flex;
  }

  .hero {
    gap: 6px;
  }

  .hero-copy {
    padding: 18px 2px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 13vw, 4.8rem);
  }

  .hero-stage {
    min-height: 460px;
    margin-top: -18px;
  }

  .hero-product-left {
    width: 72%;
    left: -10%;
    bottom: 0;
  }

  .hero-product-right {
    width: 82%;
    right: -12%;
    bottom: -1%;
  }

  .who,
  .product,
  .footer {
    padding: 18px;
  }

  .who h2 {
    max-width: none;
  }

  .who .eyebrow {
    padding-top: 0;
  }

  .product-image {
    min-height: 300px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-flag {
    width: 56px;
  }

  .footer-actions,
  .footer-newsletter {
    width: 100%;
  }

  .footer-badge {
    max-width: none;
    text-align: left;
  }

  .footer-actions,
  .footer-newsletter {
    justify-content: flex-start;
  }

  .footer-button,
  .footer-subscribe,
  .footer-input {
    width: 100%;
  }

  .footer-input {
    min-width: 0;
  }
}
