/* ============================================================
   MAHABAD COFFEE ROASTERS — Dark Premium Concept
   Palette drawn from the Barista Edition packaging:
   matte black · antique gold · deep crimson · warm cream
   ============================================================ */

:root {
  --bg: #0c0a08;
  --bg-2: #121008;
  --panel: #171310;
  --panel-2: #1d1814;
  --line: rgba(201, 162, 94, .18);
  --gold: #c9a25e;
  --gold-bright: #e6c684;
  --red: #b3242c;
  --red-deep: #7e1a20;
  --cream: #f2e9db;
  --muted: #a2957f;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;
  --font-caps: "Oswald", sans-serif;
  --font-num: "Cinzel", serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* subtle grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.container { width: min(1240px, 92%); margin-inline: auto; }

::selection { background: var(--red); color: var(--cream); }

/* ---------- Type ---------- */

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; }

h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: .01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

h1 em, h2 em { font-style: italic; color: var(--gold); }
h1 .accent { color: var(--gold); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-caps);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow .rule { display: inline-block; width: 42px; height: 1px; background: var(--gold); opacity: .6; }

.section { padding: 110px 0; position: relative; }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.section-sub { color: var(--muted); max-width: 520px; margin: 18px auto 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-caps);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid transparent;
  transition: all .35s ease;
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-bright) 55%, var(--gold) 100%);
  color: #171006;
}
.btn-gold:hover { box-shadow: 0 8px 32px rgba(201, 162, 94, .35); transform: translateY(-2px); }

.btn-line { border-color: var(--gold); color: var(--gold-bright); background: transparent; }
.btn-line:hover { background: rgba(201, 162, 94, .12); transform: translateY(-2px); }

.btn-red { background: var(--red); color: var(--cream); }
.btn-red:hover { background: #c93038; box-shadow: 0 8px 32px rgba(179, 36, 44, .4); transform: translateY(-2px); }

/* ---------- Breadcrumb (shared: product & category pages) ---------- */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-caps);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color .25s ease; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb i { color: var(--gold); font-style: normal; opacity: .5; }
.breadcrumb span { color: var(--cream); }

/* ---------- Option chips (shared: product, subscription, wholesale) ---------- */

.opt-group { margin-bottom: 24px; }

.opt-label {
  font-family: var(--font-caps);
  font-size: .66rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.opt-label span { color: var(--gold-bright); margin-left: 6px; }

.chips { display: flex; gap: 10px; flex-wrap: wrap; }

.chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--font-caps);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 11px 18px;
  transition: all .25s ease;
}
.chip:hover { border-color: var(--gold); color: var(--gold-bright); }
.chip.active { background: var(--gold); border-color: var(--gold); color: #171006; font-weight: 500; }

/* ---------- Announcement ---------- */

.announce {
  background: linear-gradient(90deg, var(--red-deep), var(--red) 50%, var(--red-deep));
  text-align: center;
  padding: 9px 16px;
  position: relative;
  z-index: 60;
}
.announce p {
  font-family: var(--font-caps);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 10, 8, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.header.scrolled { background: rgba(12, 10, 8, .94); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo { display: flex; align-items: center; gap: 12px; }

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-bright);
  background: radial-gradient(circle at 30% 25%, rgba(201,162,94,.25), transparent 65%);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-caps);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: .3em;
  color: var(--red);
}
.logo-text em {
  font-family: var(--font-caps);
  font-style: normal;
  font-weight: 400;
  font-size: .56rem;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav { display: flex; gap: 36px; }
.nav a {
  font-family: var(--font-caps);
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}
.nav a:hover { color: var(--gold-bright); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 6px; }

.icon-btn {
  background: none;
  border: none;
  color: var(--cream);
  padding: 9px;
  position: relative;
  transition: color .25s ease;
}
.icon-btn:hover { color: var(--gold-bright); }
.icon-btn svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.cart-count {
  position: absolute;
  top: 1px; right: 1px;
  background: var(--red);
  color: var(--cream);
  font-size: .6rem;
  font-weight: 600;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .2s ease;
}
.cart-count.bump { transform: scale(1.35); }

.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--gold); display: block; transition: all .3s ease; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 90px 0 120px;
  background:
    radial-gradient(ellipse 70% 55% at 78% 38%, rgba(179, 36, 44, .12), transparent 65%),
    radial-gradient(ellipse 60% 60% at 18% 80%, rgba(201, 162, 94, .07), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 70%);
  overflow: hidden;
}

.hero-art {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(680px, 55vw);
  color: var(--gold);
  opacity: .14;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 60px;
}

.hero-copy .lead { color: var(--muted); max-width: 480px; margin: 26px 0 38px; font-size: 1.06rem; }

.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong {
  font-family: var(--font-num);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--gold-bright);
}
.hero-stats span {
  font-family: var(--font-caps);
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-visual { position: relative; justify-self: center; }

.hero-frame {
  width: min(360px, 78vw);
  aspect-ratio: 3 / 4.2;
  border: 1px solid var(--line);
  outline: 1px solid var(--line);
  outline-offset: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55), 0 0 120px rgba(201, 162, 94, .07);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(12, 10, 8, .5));
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-chip {
  position: absolute;
  background: rgba(18, 14, 10, .88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 13px 20px;
  font-family: var(--font-caps);
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: floaty 5.5s ease-in-out infinite;
}
.chip-top {
  top: 8%;
  left: -18%;
  font-size: .62rem;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  gap: 9px;
}
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); }
.chip-bottom {
  bottom: 7%;
  right: -14%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  animation-delay: -2.6s;
}
.chip-bottom strong { font-size: .78rem; font-weight: 500; color: var(--cream); }
.chip-bottom span { font-size: .58rem; color: var(--muted); letter-spacing: .18em; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Marquee ---------- */

.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-caps);
  font-size: .74rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.marquee-track i { color: var(--red); font-style: normal; font-size: .7rem; }

@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Categories ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.cat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 34px 12px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: all .35s ease;
}
.cat-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: invert(78%) sepia(32%) saturate(420%) hue-rotate(-5deg) brightness(1.02);
  transition: transform .35s ease;
}
.cat-card span {
  font-family: var(--font-caps);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  transition: color .35s ease;
}
.cat-card:hover {
  border-color: var(--gold);
  background: var(--panel-2);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
}
.cat-card:hover img { transform: scale(1.12); }
.cat-card:hover span { color: var(--gold-bright); }

/* ---------- Products ---------- */

.products { background: linear-gradient(180deg, var(--bg), var(--bg-2) 40%, var(--bg)); }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; }

.tab {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-caps);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 11px 20px;
  transition: all .3s ease;
}
.tab:hover { color: var(--gold-bright); border-color: var(--gold); }
.tab.active { background: var(--gold); border-color: var(--gold); color: #171006; font-weight: 500; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.product { transition: opacity .35s ease, transform .35s ease; cursor: pointer; }
.product.hide { display: none; }

.product-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  aspect-ratio: 1;
}
.product-media > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
  filter: saturate(.92) brightness(.94);
}
.product:hover .product-media > img { transform: scale(1.06); filter: saturate(1) brightness(1); }

.badge {
  position: absolute;
  z-index: 2;
  top: 14px; left: 14px;
  font-family: var(--font-caps);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.badge-red { background: var(--red); color: var(--cream); }
.badge-gold { background: var(--gold); color: #171006; }

.quick-add {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  background: rgba(12, 10, 8, .92);
  border: none;
  border-top: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-caps);
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 15px;
  transform: translateY(101%);
  transition: transform .35s ease, background .3s ease, color .3s ease;
}
.product:hover .quick-add { transform: translateY(0); }
.quick-add:hover { background: var(--gold); color: #171006; }

.product-info { padding: 18px 4px 0; }
.product-cat {
  font-family: var(--font-caps);
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-info h3 { font-size: 1.25rem; margin: 6px 0 4px; font-weight: 600; }
.price { font-family: var(--font-num); font-size: .92rem; font-weight: 500; letter-spacing: .08em; color: var(--gold); }

/* ---------- Story ---------- */

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-media { position: relative; padding-bottom: 70px; }

.story-img { border: 1px solid var(--line); }
.story-img.main { width: 86%; }
.story-img.float {
  position: absolute;
  width: 48%;
  right: 0;
  bottom: 0;
  outline: 10px solid var(--bg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}

.story-seal {
  position: absolute;
  top: -46px;
  right: 8%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  animation: spin 24s linear infinite;
}
.story-seal svg { width: 96px; height: 96px; overflow: visible; }
.story-seal text {
  font-family: var(--font-caps);
  font-size: 9.5px;
  letter-spacing: .24em;
  fill: var(--gold);
}
@keyframes spin { to { transform: rotate(360deg); } }

.story-copy > p { color: var(--muted); margin: 22px 0 30px; max-width: 460px; }

.story-list { margin-bottom: 38px; display: flex; flex-direction: column; gap: 16px; }
.story-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}
.story-list span {
  font-family: var(--font-caps);
  font-size: .72rem;
  color: var(--red);
  letter-spacing: .1em;
}

/* ---------- Bundles ---------- */

.bundle-banner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.bundle-media { position: relative; min-height: 420px; }
.bundle-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.85);
}
.bundle-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--panel));
}

.bundle-copy { padding: 64px 58px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.bundle-copy > p { color: var(--muted); margin: 20px 0 30px; max-width: 420px; }

.bundle-perks { display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.bundle-perks li {
  font-family: var(--font-caps);
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 9px;
}
.bundle-perks li::before { content: "✦"; color: var(--red); font-size: .6rem; }

/* ---------- Subscription ---------- */

.subscription {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(179, 36, 44, .14), transparent 65%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.plan {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 46px 38px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s ease, border-color .35s ease;
}
.plan:hover { transform: translateY(-6px); border-color: var(--gold); }

.plan.featured {
  background: linear-gradient(180deg, #201810, var(--panel));
  border-color: var(--gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45), 0 0 60px rgba(201, 162, 94, .08);
}

.plan-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-caps);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 7px 16px;
  white-space: nowrap;
}

.plan h3 { font-size: 1.7rem; margin-bottom: 8px; }

.plan-price {
  font-family: var(--font-num);
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--gold-bright);
  margin-bottom: 26px;
}
.plan-price span { font-size: 1.05rem; color: var(--muted); font-family: var(--font-caps); letter-spacing: .08em; }

.plan ul { flex: 1; margin-bottom: 34px; display: flex; flex-direction: column; gap: 12px; }
.plan ul li {
  color: var(--muted);
  font-size: .95rem;
  padding-left: 22px;
  position: relative;
}
.plan ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .65rem;
  top: 5px;
}
.plan .btn { text-align: center; }

/* ---------- Wholesale ---------- */

.wholesale { padding: 90px 0; }

.wholesale-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  padding: 58px 62px;
}
.wholesale-inner p { color: var(--muted); max-width: 560px; margin-top: 16px; }

/* ---------- Footer ---------- */

.footer { border-top: 1px solid var(--line); background: var(--bg-2); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding: 80px 0 60px;
}

.footer-brand p { color: var(--muted); font-size: .92rem; margin: 20px 0 24px; max-width: 260px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all .3s ease;
}
.socials a:hover { color: var(--gold-bright); border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: var(--font-caps);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-col a { color: var(--muted); font-size: .92rem; transition: color .25s ease, padding-left .25s ease; }
.footer-col a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer-col p { color: var(--muted); font-size: .88rem; }

.news-form { display: flex; margin-top: 16px; }
.news-form input {
  flex: 1;
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-right: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: 0 16px;
}
.news-form input::placeholder { color: var(--muted); }
.news-form input:focus { outline: none; border-color: var(--gold); }
.news-form .btn { padding: 14px 22px; }

.footer-bar { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bar p { font-size: .78rem; color: var(--muted); letter-spacing: .06em; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-cta { justify-content: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-stats { justify-content: center; }
  .chip-top { left: -6%; }
  .chip-bottom { right: -6%; }
}

@media (max-width: 820px) {
  .section { padding: 76px 0; }

  .nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(12, 10, 8, .98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    transform: translateX(-100%);
    transition: transform .4s ease;
    z-index: 90;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1rem; }

  .nav-toggle { display: flex; z-index: 100; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }

  .story-inner { grid-template-columns: 1fr; gap: 60px; }
  .bundle-banner { grid-template-columns: 1fr; }
  .bundle-media { min-height: 300px; }
  .bundle-media::after { background: linear-gradient(180deg, transparent 55%, var(--panel)); }
  .bundle-copy { padding: 44px 34px; }

  .plans { grid-template-columns: 1fr; }
  .wholesale-inner { padding: 44px 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 60px 0 44px; }

  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .hero { padding: 60px 0 90px; }
}
