/* ============================================================
   FORGE — Supplement storefront rebuild (placeholder template)
   Faithful structural reconstruction. All brand-sensitive
   assets are clearly-labeled editable placeholders.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,600&display=swap');

:root {
  --bg:        #ededeb;
  --bg-card:   #f4f4f2;
  --ink:       #18181a;
  --ink-soft:  #6c6c6e;
  --line:      #d9d9d6;
  --accent:    #f3331c;        /* bold red-orange */
  --accent-ink:#ffffff;
  --dark:      #0e0e0f;
  --green-1:   #0c2c10;
  --green-2:   #1f5b1d;
  --maxw:      1480px;
  --pad:       48px;
  --radius:    14px;
  --font-disp: 'Anton', sans-serif;
  --font-ui:   'Archivo', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background-color: #ededeb; min-height: 100%; color-scheme: light; }

body {
  font-family: var(--font-ui);
  background-color: #ededeb;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  min-height: 100dvh;
  overscroll-behavior: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Display headings ---------- */
.display {
  font-family: var(--font-disp);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

/* ---------- Image placeholder system ---------- */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #dededb;
  background-image: repeating-linear-gradient(45deg,
      rgba(0,0,0,.035) 0 12px, rgba(0,0,0,.06) 12px 24px);
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,.42);
}
.ph--dark {
  background-color: #16161a;
  background-image: repeating-linear-gradient(45deg,
      rgba(255,255,255,.04) 0 12px, rgba(255,255,255,.07) 12px 24px);
}
.ph--dark::after { color: rgba(255,255,255,.45); }
.ph--green {
  background-color: #143915;
  background-image: repeating-linear-gradient(45deg,
      rgba(255,255,255,.05) 0 12px, rgba(255,255,255,.09) 12px 24px);
}
.ph--green::after { color: rgba(255,255,255,.5); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.announce__track { position: relative; height: 1.2em; overflow: hidden; min-width: 0; }
.announce__msg {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  display: none;
}
.announce__msg.is-active { display: block; }
.announce__arrow {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  color: var(--ink);
  opacity: .8;
}
.announce__arrow:hover { opacity: 1; }
.announce__arrow svg { width: 14px; height: 14px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: calc(56px + env(safe-area-inset-top, 0px));
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.header--scrolled {
  background: var(--bg);
  border-bottom-color: var(--line);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
}
.nav__left { display: flex; align-items: center; gap: 34px; align-self: stretch; }
.nav__link {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  color: #fff;
  transition: color 0.3s ease;
}
.header--scrolled .nav__link { color: var(--ink); }
.nav__link svg { width: 12px; height: 12px; opacity: .65; }
.nav__link:hover { color: var(--accent); }

.brand {
  justify-self: center;
  line-height: 0;
  display: flex;
  align-items: center;
}
.brand__wordmark {
  height: 63px;
  width: auto;
  display: block;
}
.brand__icon {
  height: 65px;
  width: auto;
  display: none;
}
.header--scrolled .brand__wordmark { display: none; }
.header--scrolled .brand__icon { display: block; }
.light-chrome .brand__wordmark { display: none; }
.light-chrome .brand__icon { display: block; }

.nav__right { display: flex; align-items: center; gap: 22px; justify-self: end; }
.icon-btn {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  position: relative;
  color: #fff;
  transition: color 0.3s ease;
}
.header--scrolled .icon-btn { color: var(--ink); }
.icon-btn:hover { color: var(--accent); }
.nav__account { display: none; }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 9px;
  display: grid; place-items: center;
  padding: 0 4px;
}
.nav__burger { display: none; color: #fff; }
.header--scrolled .nav__burger { color: var(--ink); }
.light-chrome .nav__burger { color: var(--ink); }

/* ---------- Mega menu ---------- */
.nav__item { position: static; height: 100%; display: flex; align-items: center; }
.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  box-shadow: 0 26px 44px rgba(0,0,0,.10);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  transition-delay: .15s;            /* grace period so the menu doesn't vanish mid-move */
  z-index: 45;
}
/* invisible bridge under the trigger so the pointer never crosses a dead gap */
.megamenu::before {
  content: '';
  position: absolute;
  top: -24px; left: 0; right: 0;
  height: 24px;
}
.nav__item.has-mega:hover .megamenu,
.nav__item.has-mega:focus-within .megamenu,
.nav__item.has-mega.is-mega-open .megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}
.megamenu__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  padding: 42px var(--pad) 50px;
}
.megamenu__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.megacol { display: flex; flex-direction: column; gap: 13px; }
.megacol__title {
  font-family: var(--font-disp);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: var(--ink);
}
.megacol__title:hover { color: var(--accent); }
.megacol__link { font-size: 15px; color: var(--ink-soft); }
.megacol__link:hover { color: var(--accent); }
.megacol__all { font-weight: 700; color: var(--ink); margin-top: 2px; }
.megamenu__promos {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  gap: 16px;
}
.megapromo {
  position: relative;
  height: 290px;
  border-radius: 4px;
  overflow: hidden;
}
.megapromo .ph { position: absolute; inset: 0; }
.megapromo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.30);
  z-index: 1;
  transition: background .25s;
}
.megapromo:hover::after { background: rgba(0,0,0,.44); }
.megapromo__label {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

/* Header turns solid while a mega menu is open, even over the hero */
.header:has(.nav__item.has-mega:hover),
.header:has(.nav__item.has-mega:focus-within),
.header:has(.nav__item.has-mega.is-mega-open) {
  background: var(--bg);
  border-bottom-color: var(--line);
}
.header:has(.nav__item.has-mega:hover) .nav__link,
.header:has(.nav__item.has-mega:hover) .icon-btn,
.header:has(.nav__item.has-mega:focus-within) .nav__link,
.header:has(.nav__item.has-mega:focus-within) .icon-btn,
.header:has(.nav__item.has-mega.is-mega-open) .nav__link,
.header:has(.nav__item.has-mega.is-mega-open) .icon-btn { color: var(--ink); }
.header:has(.nav__item.has-mega:hover) .brand__wordmark,
.header:has(.nav__item.has-mega:focus-within) .brand__wordmark,
.header:has(.nav__item.has-mega.is-mega-open) .brand__wordmark { display: none; }
.header:has(.nav__item.has-mega:hover) .brand__icon,
.header:has(.nav__item.has-mega:focus-within) .brand__icon,
.header:has(.nav__item.has-mega.is-mega-open) .brand__icon { display: block; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero {
  position: relative;
  height: 660px;
  overflow: hidden;
  background: var(--dark);
  margin-top: -84px;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.4) 100%);
  z-index: 1;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__slide:first-child .hero__image {
  transform: translateY(5%) scale(1.05);
  transform-origin: center;
}
.hero__content {
  position: absolute;
  bottom: 22%;
  z-index: 2;
  width: 100%;
  padding: 0 var(--pad);
  max-width: var(--maxw);
  left: 50%; transform: translateX(-50%);
}
.hero__eyebrow {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__title {
  color: #fff;
  font-size: clamp(40px, 4.2vw, 60px);
  margin-bottom: 28px;
  max-width: 13ch;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 34px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }

.hero__dots {
  position: absolute;
  right: var(--pad); bottom: 70px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .2s, width .2s;
}
.dot.is-active { background: #fff; width: 26px; border-radius: 5px; }

/* ---------- Hero progress cursor (follows mouse over hero) ---------- */
.hero,
.hero__slide,
.hero__image,
.hero__content { cursor: none; }
.hero__content a,
.hero__content button { cursor: pointer; }
.hero__next {
  position: absolute;
  left: 0; top: 0;
  z-index: 6;
  width: 76px; height: 76px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;            /* clicks pass through to the hero */
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  transition: opacity .2s ease;
  will-change: transform;
}
.hero__next.is-visible { opacity: 1; }
.hero__next.is-over-control { opacity: 0; }
.hero__ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}
.hero__ring-track {
  fill: none;
  stroke: rgba(255,255,255,.28);
  stroke-width: 2;
}
.hero__ring-fill {
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 188.5px;        /* 2π·30 */
  stroke-dashoffset: 188.5px;
}
.hero__ring-fill.is-running {
  animation: heroRingSweep 6s linear forwards;
}
@keyframes heroRingSweep {
  from { stroke-dashoffset: 188.5px; }
  to   { stroke-dashoffset: 0; }
}
.hero__next-arrow { width: 26px; height: 26px; position: relative; }
@media (prefers-reduced-motion: reduce) {
  .hero__ring-fill.is-running { animation: none; }
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-block: 72px 64px;
}
.trust__item { text-align: center; max-width: 420px; margin: 0 auto; }
.trust__icon {
  width: 40px; height: 40px;
  margin: 0 auto 22px;
  color: var(--ink);
}
.trust__icon svg { width: 100%; height: 100%; }
.trust__title {
  font-family: var(--font-disp);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.trust__desc { color: var(--ink-soft); font-size: 16px; line-height: 1.55; }

.trust__dots { display: none; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section { padding-block: 40px; }
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 38px;
}
.section__title { font-size: clamp(38px, 5vw, 64px); }

/* ============================================================
   BEST SELLERS CAROUSEL
   ============================================================ */
.bs-rail {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.bs-rail::-webkit-scrollbar { display: none; }
.product {
  flex: 0 0 31%;
  min-width: 300px;
  scroll-snap-align: start;
  padding-right: 32px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.product .product__media { transition: opacity .25s; }
a.product:hover .product__media { opacity: .88; }
a.product:hover .product__name { text-decoration: underline; text-underline-offset: 3px; }
.product__media {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  background: var(--bg-card);
  overflow: hidden;
}
.product__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product.is-soldout .product-img { opacity: .55; }
.product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 1.1s cubic-bezier(.2, .8, .2, 1);
}
a.product:hover .product-img { transform: scale(1.045); }
.product__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.product__name { font-size: 19px; font-weight: 700; }
.product__rating { font-size: 15px; color: var(--ink-soft); }
.product__price { font-size: 17px; color: var(--ink-soft); margin-top: 4px; }

.bs-controls {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}
.bs-progress {
  flex: 1;
  height: 2px;
  background: var(--line);
  position: relative;
}
.bs-progress__bar {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: var(--ink);
  width: 33%;
  transition: left .3s ease, width .3s ease;
}
.round-btns { display: flex; gap: 14px; }
.round-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
}
.round-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.round-btn:disabled { opacity: .3; cursor: default; }
.round-btn svg { width: 18px; height: 18px; }

/* ============================================================
   DARK FEATURE BLOCK (pouches / focus line)
   ============================================================ */
.feature {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #050505;
  margin-bottom: clamp(18px, 2vw, 30px);
}
.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.56) 43%, rgba(0,0,0,.08) 100%);
}
.feature__copy {
  position: relative;
  width: min(48%, 640px);
  padding: 80px var(--pad);
  z-index: 2;
}
.feature__eyebrow {
  font-size: 15px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 22px;
}
.feature__title {
  font-size: clamp(44px, 5.5vw, 78px);
  margin-bottom: 26px;
}
.feature__desc { font-size: 18px; line-height: 1.55; max-width: 46ch; margin-bottom: 20px; }
.feature__avail { font-weight: 700; font-size: 18px; margin-bottom: 36px; }
.feature__media {
  position: absolute;
  inset: 0;
}
.feature__media .ph { background: transparent; }
.feature__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 64px 0 12px;
  user-select: none;
}
.marquee__track {
  display: inline-flex;
  gap: 80px;
  animation: scroll-x 22s linear infinite;
}
.marquee__item {
  font-family: var(--font-disp);
  font-size: clamp(60px, 9vw, 128px);
  text-transform: uppercase;
  color: #b9b9b6;
  letter-spacing: 0.01em;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================================================
   CREATOR / AMBASSADOR BENTO GRID
   ============================================================ */
.creators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 40px;
}
.creator {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}
.creator .ph { position: absolute; inset: 0; }
.creator::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.75) 100%);
  z-index: 1;
}
.creator__name {
  position: absolute;
  left: 26px; bottom: 24px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-disp);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.creator__cta {
  position: absolute;
  left: 26px; bottom: 26px;
  z-index: 2;
}
.creator--tall { grid-row: span 2; min-height: 660px; }
.creator--wide { grid-column: span 2; }
.creator--feat { grid-column: span 1; grid-row: span 1; }

/* ============================================================
   SHOP BY CATEGORY
   ============================================================ */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat {
  position: relative;
  height: 460px;
  border-radius: 4px;
  overflow: hidden;
}
.cat .ph { position: absolute; inset: 0; }
.cat__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(.2, .8, .2, 1);
}
.cat:hover .cat__image { transform: scale(1.04); }
.cat::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.28);
  z-index: 1;
  transition: background .25s;
}
.cat:hover::after { background: rgba(0,0,0,.42); }
.cat__label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-disp);
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ============================================================
   SUBSCRIBE & SAVE (full bleed)
   ============================================================ */
.subsave {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.subsave .ph,
.subsave__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.subsave__image {
  display: block;
  object-fit: cover;
  object-position: center;
}
.subsave::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20,20,18,.45);
  z-index: 1;
}
.subsave__inner { position: relative; z-index: 2; max-width: 820px; padding: 0 var(--pad); }
.subsave__eyebrow {
  font-size: 14px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 18px;
}
.subsave__title { font-size: clamp(60px, 9vw, 120px); margin-bottom: 30px; }
.subsave__desc { font-size: 18px; line-height: 1.6; margin-bottom: 22px; }
.subsave__bold { font-weight: 700; font-size: 18px; margin-bottom: 34px; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  padding-block: 56px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.timeline__track {
  flex: 1;
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
.timeline__line {
  position: absolute;
  top: 9px; left: 0; right: 0;
  height: 2px;
  background: var(--line);
}
.tl-node { position: relative; padding-right: 16px; }
.tl-node__dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--bg);
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.tl-node.is-active .tl-node__dot { background: var(--ink); border-color: var(--ink); }
.tl-node__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  max-width: 16ch;
  line-height: 1.3;
}
.tl-node.is-active .tl-node__label { color: var(--ink); }

/* ---- About / story block ---- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-block: 60px 90px;
}
.story__media { aspect-ratio: 4/4.4; }
.story__eyebrow { font-weight: 700; font-size: 16px; margin-bottom: 18px; }
.story__title { font-size: clamp(40px, 5vw, 66px); margin-bottom: 26px; }
.story__desc { font-size: 17px; line-height: 1.6; color: var(--ink); max-width: 46ch; }

/* ============================================================
   DISCOVER (dark full-bleed with text)
   ============================================================ */
.discover {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.discover .ph { position: absolute; inset: 0; }
.discover::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.1) 100%);
  z-index: 1;
}
.discover__inner { position: relative; z-index: 2; max-width: 560px; padding: 0 var(--pad); }
.discover__title { font-size: clamp(44px, 5.5vw, 72px); margin-bottom: 26px; }
.discover__desc { font-size: 17px; line-height: 1.6; margin-bottom: 34px; }

/* ============================================================
   SHOPPABLE / RECENTLY VIEWED
   ============================================================ */
.shoppable {
  position: relative;
  aspect-ratio: 21 / 9;
  height: auto;
  min-height: 0;
  overflow: hidden;
}
.shoppable .ph,
.shoppable__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.shoppable__image {
  display: block;
  object-fit: cover;
  object-position: center 58%;
}
.hotspot {
  position: absolute;
  z-index: 2;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 29px;
  line-height: 1;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .2s;
}
.hotspot:hover { transform: scale(1.12); }

.recent-rail {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.recent-rail::-webkit-scrollbar { display: none; }
.recent {
  flex: 0 0 22%;
  min-width: 240px;
}
.recent__media { height: 300px; background: var(--bg-card); margin-bottom: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding-block: 96px 40px; padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px)); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer__title {
  font-family: var(--font-disp);
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 22px;
}
.footer__lead { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin-bottom: 26px; max-width: 30ch; }
.footer__form {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 4px 4px 4px 18px;
  max-width: 340px;
}
.footer__form input {
  flex: 1;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 0;
  outline: none;
  color: var(--ink);
}
.footer__submit {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--line);
  display: grid; place-items: center;
  color: var(--ink);
}
.footer__submit:hover { background: var(--accent); color: #fff; }
.footer__col h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer__col a { font-size: 15px; color: var(--ink); }
.footer__col a:hover { color: var(--accent); }
.footer__about p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 16px; }
.footer__about h4 { color: var(--ink); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 70px;
}
.copyright { font-size: 14px; color: var(--ink-soft); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --pad: 28px; }
  .trust { grid-template-columns: 1fr; gap: 48px; }
  .story { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .creators { grid-template-columns: repeat(2, 1fr); }
  .creator--tall { grid-row: span 1; min-height: 320px; }
  .creator--wide { grid-column: span 2; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .megamenu__inner { grid-template-columns: 1fr; }
  .megamenu__promos { display: none; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  .nav { grid-template-columns: auto auto 1fr auto; height: 68px; position: relative; }
  .nav__left { display: none; }
  .nav__burger { display: grid; place-items: center; width: 26px; height: 26px; grid-column: 1; grid-row: 1; }
  .nav__right { display: contents; }
  .nav__search { grid-column: 2; grid-row: 1; margin-left: 14px; }
  .nav__cart { grid-column: 4; grid-row: 1; justify-self: end; }
  .brand { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .brand__wordmark { height: 56px; }
  .brand__icon { height: 52px; }
  .hero { height: 560px; margin-top: -68px; }
  .hero,
  .hero__slide,
  .hero__image,
  .hero__content { cursor: auto; }
  .hero__next { display: none; }
  .hero__content a,
  .hero__content button { cursor: pointer; }
  .feature { min-height: 620px; }
  .feature__copy { width: min(100%, 560px); }
  .shoppable { aspect-ratio: 21 / 9; height: auto; min-height: 0; }
  .hotspot { width: 46px; height: 46px; font-size: 24px; }
  .cats { grid-template-columns: 1fr; }
  .creators { grid-template-columns: 1fr; }
  .creator--wide, .creator--tall { grid-column: span 1; grid-row: span 1; }
  .product { flex: 0 0 80%; min-width: 0; }
  .recent { flex: 0 0 70%; }
  .timeline { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 24px; align-items: flex-start; }
  .hero__dots { bottom: 26px; }
  .trust {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 0;
    padding-bottom: 16px;
  }
  .trust::-webkit-scrollbar { display: none; }
  .trust__item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    max-width: none;
  }
  .trust__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 48px;
  }
  .trust__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: background 0.2s;
  }
  .trust__dot.is-active { background: var(--ink); }
}

/* Mobile menu drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  transform: translateX(-100%);
  transition: transform .3s ease;
  padding: 28px var(--pad);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer.is-open { transform: translateX(0); }
.drawer__close { align-self: flex-end; font-size: 28px; margin-bottom: 20px; }
.drawer a {
  font-family: var(--font-disp);
  font-size: 28px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

/* ============================================================
   CART DRAWER (slide-out)
   ============================================================ */
.cd-overlay {
  position: fixed; inset: 0;
  background: rgba(20,20,18,.42);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
  z-index: 190;
}
.cd-overlay.is-open { opacity: 1; visibility: visible; }
.cd {
  position: fixed;
  top: 0; right: 0;
  height: 100vh; height: 100dvh;
  width: min(456px, 94vw);
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  box-shadow: -18px 0 50px rgba(0,0,0,.16);
}
.cd.is-open { transform: translateX(0); }

/* Head */
.cd__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 26px 18px;
}
.cd__title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-disp);
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.cd__count {
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 700;
  min-width: 24px; height: 24px;
  padding: 0 7px;
  border-radius: 12px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
}
.cd__close {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  font-size: 26px; line-height: 1;
  color: var(--ink);
}
.cd__close:hover { color: var(--accent); }

/* Free gift progress */
.cd__gift { padding: 0 26px 20px; }
.cd__giftMsg { font-size: 13px; letter-spacing: .02em; margin-bottom: 10px; }
.cd__giftMsg strong { font-weight: 700; }
.cd__giftBar {
  height: 4px; border-radius: 2px;
  background: var(--line); overflow: hidden;
}
.cd__giftFill {
  display: block; height: 100%;
  width: 0%;
  background: var(--ink);
  border-radius: 2px;
  transition: width .4s ease;
}
.cd__gift.is-unlocked .cd__giftFill { background: var(--accent); }

/* Body (scroll area) */
.cd__body {
  flex: 1; min-height: 0;
  overflow-y: auto;
  padding: 0 26px;
  border-top: 1px solid var(--line);
}
.cd__body::-webkit-scrollbar { width: 0; }

/* Line items */
.cd__items { display: flex; flex-direction: column; }
.cd-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.cd-item__media {
  width: 76px; height: 84px;
  background: var(--bg-card);
  overflow: hidden;
}
.cd-item__media .ph { width: 100%; height: 100%; }
.cd-item__media .product-img,
.cd-trend__media .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.cd-item__name { font-size: 15px; font-weight: 700; line-height: 1.25; }
.cd-item__price { font-size: 14px; margin-top: 4px; }
.cd-item__price s { color: var(--ink-soft); margin-right: 6px; font-weight: 400; }
.cd-item__variant { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.cd-item__tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  font-size: 12px; font-weight: 700;
  background: #e3e3df; color: var(--ink);
  padding: 4px 9px; border-radius: 5px;
}
.cd-item__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cd-item__stepper {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}
.cd-item__step {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  font-size: 16px; color: var(--ink);
}
.cd-item__step:hover { color: var(--accent); }
.cd-item__qty { min-width: 26px; text-align: center; font-size: 14px; font-weight: 600; }
.cd-item__remove {
  font-size: 13px; color: var(--ink-soft);
  text-decoration: underline; text-underline-offset: 2px;
}
.cd-item__remove:hover { color: var(--accent); }
.cd-item--gift .cd-item__price { font-weight: 700; color: var(--accent); }

/* Empty state */
.cd__empty { padding: 60px 0; text-align: center; color: var(--ink-soft); }
.cd__empty p { margin-bottom: 18px; font-size: 15px; }

/* Trending */
.cd__trending { padding: 24px 0 30px; }
.cd__trendHead {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.cd__trendHead span { font-size: 16px; font-weight: 700; }
.cd__trendNav { display: flex; gap: 8px; }
.cd__trendBtn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
}
.cd__trendBtn:hover { background: var(--ink); color: #fff; }
.cd__trendBtn svg { width: 14px; height: 14px; }
.cd__trendRail {
  display: flex; gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.cd__trendRail::-webkit-scrollbar { display: none; }
.cd-trend {
  flex: 0 0 78%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.cd-trend__media { width: 52px; height: 52px; background: var(--bg-card); overflow: hidden; border-radius: 6px; }
.cd-trend__name { font-size: 13px; font-weight: 700; line-height: 1.2; }
.cd-trend__price { font-size: 13px; color: var(--ink-soft); margin-top: 3px; }
.cd-trend__add {
  font-size: 12px; font-weight: 700;
  background: #e3e3df; color: var(--ink);
  padding: 8px 12px; border-radius: 7px;
  white-space: nowrap;
}
.cd-trend__add:hover { background: var(--ink); color: #fff; }

/* Footer */
.cd__foot {
  border-top: 1px solid var(--line);
  padding: 18px 26px calc(20px + env(safe-area-inset-bottom, 0px));
  background: var(--bg);
}
.cd__discount {
  display: flex; gap: 8px; margin-bottom: 12px;
}
.cd__code {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: inherit; font-size: 14px;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
}
.cd__code:focus { border-color: var(--ink); }
.cd__codeBtn {
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px; font-weight: 700;
  color: var(--ink);
}
.cd__codeBtn:hover { background: var(--ink); color: #fff; }
.cd__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.cd__chips:empty { margin-bottom: 0; }
.cd-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #e3e3df;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px; font-weight: 700;
}
.cd-chip button { font-size: 14px; line-height: 1; color: var(--ink-soft); }
.cd-chip button:hover { color: var(--accent); }

.cd__totalRow {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 8px;
}
.cd__totalLabel { font-family: var(--font-disp); font-size: 26px; text-transform: uppercase; }
.cd__totalVal { font-size: 18px; font-weight: 700; }
.cd__totalVal span { font-weight: 400; color: var(--ink-soft); font-size: 14px; }
.cd__totalNote { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.cd__note {
  font-size: 13px; color: var(--ink);
  text-decoration: underline; text-underline-offset: 2px;
  margin: 12px 0 14px;
}

/* Package protection */
.cd__prot {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 13px 14px;
  margin-bottom: 12px;
  cursor: pointer;
}
.cd__protIcon { width: 22px; height: 22px; color: var(--accent); flex: 0 0 auto; }
.cd__protIcon svg { width: 100%; height: 100%; }
.cd__protText { flex: 1; font-size: 14px; }
.cd__protText strong { font-weight: 700; }
.cd__protCheck {
  width: 22px; height: 22px;
  border: 2px solid var(--line);
  border-radius: 6px;
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.cd__protCheck svg { width: 14px; height: 14px; color: #fff; opacity: 0; }
.cd__prot.is-on .cd__protCheck { background: var(--ink); border-color: var(--ink); }
.cd__prot.is-on .cd__protCheck svg { opacity: 1; }

.cd__view, .cd__checkout {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  font-weight: 700; font-size: 16px;
  border-radius: 999px;
  padding: 17px;
  margin-bottom: 10px;
}
.cd__view { background: #fff; border: 1px solid var(--ink); color: var(--ink); }
.cd__view:hover { background: var(--ink); color: #fff; }
.cd__checkout { background: var(--accent); color: #fff; gap: 8px; }
.cd__checkout:hover { transform: translateY(-1px); }
.cd__checkout svg { width: 16px; height: 16px; }
.cd__contWithout {
  display: block; width: 100%;
  text-align: center;
  font-size: 13px; color: var(--ink-soft);
  text-decoration: underline; text-underline-offset: 2px;
  padding: 4px;
}
.cd__contWithout:hover { color: var(--accent); }

@media (max-width: 560px) {
  .cd { width: 100vw; }
  .cd-trend { flex-basis: 88%; }
}
