/* ============================================================
   PEEK — one-page site · black & white
   ============================================================ */
:root {
  --bg: #ffffff;
  --text: #0a0a0a;
  --muted-bg: #f4f4f4;
  --muted-text: #5a5a5a;
  --line: #e4e4e4;
  --water: #d3d7da;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "News Cycle", "Inter", Arial, sans-serif;

  --page-width: 1200px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- focus states (keyboard) ----------
   Monochrome double-ring: a white halo + a black ring, so the
   indicator stays visible on white pages AND on the black bands
   (hero, marquee, CTA band, primary buttons). The transparent
   outline surfaces the ring in Windows forced-colors mode. */
:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--text);
}
/* don't double-draw on mouse click in browsers that support :focus-visible */
:focus:not(:focus-visible) { outline: none; }

.container { width: 100%; max-width: var(--page-width); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border: 0; border-radius: 0; cursor: pointer;
  background: var(--text); color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .06em; line-height: 1;
  transition: opacity .2s ease, transform .2s ease;
}
.btn:hover { opacity: .85; }
.btn:active { transform: translateY(1px); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 18px 40px; font-size: 15px; }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn[disabled] { opacity: .4; cursor: not-allowed; }

/* nav links: plain editorial text (no box), black on the light hero.
   The cart circle stays the only boxed element in the header. */
.pill {
  display: inline-flex; align-items: center; height: 40px; padding: 0 4px;
  background: none; border: 0; color: var(--text);
  font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: .09em;
  text-decoration: none; text-underline-offset: 5px; transition: opacity .2s ease;
}
.pill:hover { background: none; color: var(--text); text-decoration: underline; }

/* ============================================================
   HEADER (floats over hero)
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header--float { background: transparent; }
.site-header.is-scrolled { background: #fff; box-shadow: 0 1px 0 var(--line); }
.site-header__inner {
  height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.main-nav--left { display: flex; gap: 10px; flex: 1; }
.logo { position: absolute; left: 50%; transform: translateX(-50%); display: inline-flex; }
.logo img { height: 26px; width: auto; }
.logo__fallback { font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1; letter-spacing: .04em; text-transform: uppercase; }
.header-icons { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: flex-end; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--text); border-radius: 999px; cursor: pointer; }
.nav-toggle svg { width: 20px; height: 20px; }

/* cart button rendered as a circle (injected by cart.js) */
.cart-toggle {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; border: 1px solid var(--text); border-radius: 999px;
  background: #fff; color: var(--text); cursor: pointer; transition: background .2s, color .2s;
}
.cart-toggle:hover { background: var(--text); color: #fff; }
.cart-toggle svg { width: 20px; height: 20px; }
.cart-toggle__count {
  position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
  display: none; align-items: center; justify-content: center;
  background: var(--text); color: #fff; border: 2px solid #fff; border-radius: 999px;
  font-size: 10px; font-weight: 700; line-height: 1;
}
.cart-toggle__count.is-visible { display: inline-flex; }

/* ============================================================
   HERO
   ============================================================ */
/* White hero: the fridge shots sit on pure white, so the image
   edges melt into the background and the black headline pops. */
.hero { position: relative; height: 100svh; min-height: 560px; overflow: hidden; background: #fff; }

/* ---- "Peek inside the fridge" reveal ----
   Two stacked images: the interior (behind) and the closed door
   (front). A radial-gradient mask punches a soft circle through the
   door under the cursor, revealing the cans. --peek-r drives the
   circle size and is the only animated value (registered below so it
   can transition); --peek-x / --peek-y follow the pointer instantly. */
@property --peek-r { syntax: "<length>"; inherits: true; initial-value: 0px; }

.peek { position: absolute; inset: 0; --peek-x: 50%; --peek-y: 44%; --peek-r: 0px; }
.peek img {
  position: absolute; inset: 0; width: 100%; height: 100%; box-sizing: border-box;
  object-fit: contain; object-position: center;
  /* breathing room so the fridge floats, not full-bleed. Both images
     share the same fit + padding, so they stay pixel-aligned. */
  padding: 8vh 6vw;
  user-select: none; -webkit-user-drag: none; pointer-events: none;
}
.peek__inside { z-index: 1; }
.peek__door {
  z-index: 2;
  -webkit-mask-image: radial-gradient(circle var(--peek-r) at var(--peek-x) var(--peek-y),
                        transparent 0, transparent calc(var(--peek-r) - 26px), #000 var(--peek-r));
          mask-image: radial-gradient(circle var(--peek-r) at var(--peek-x) var(--peek-y),
                        transparent 0, transparent calc(var(--peek-r) - 26px), #000 var(--peek-r));
}
@media (hover: hover) and (pointer: fine) { .peek { cursor: crosshair; } }

/* Desktop nudge — fades the moment the pointer is over the hero. */
.peek__hint {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; font-size: 13px; color: var(--text); white-space: nowrap;
  background: rgba(255,255,255,.72); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  padding: 10px 18px; border: 1px solid var(--text); border-radius: 999px;
  pointer-events: none; transition: opacity .3s ease;
}
.hero:hover .peek__hint { opacity: 0; }
@media (hover: none) { .peek__hint { display: none; } }

.hero__overlay {
  position: absolute; inset: 0; z-index: 4; display: flex; align-items: flex-end;
  padding-bottom: 9vh; pointer-events: none;
  background: linear-gradient(to top, rgba(255,255,255,.94) 0%, rgba(255,255,255,.55) 22%, rgba(255,255,255,0) 46%);
}
.hero__overlay .container { pointer-events: auto; }
.hero__claim {
  font-family: var(--font-display); font-weight: 700; color: var(--text); margin: 0 0 28px;
  font-size: clamp(44px, 8.4vw, 104px); line-height: .98; letter-spacing: -0.01em;
  text-transform: uppercase; text-shadow: 0 2px 26px rgba(255,255,255,.7);
}

/* ============================================================
   SECTIONS / HEADINGS
   ============================================================ */
.section { padding: 88px 0; }
.section__eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; color: var(--muted-text); margin: 0 0 8px; }
.section__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; font-size: clamp(34px, 5.4vw, 64px); line-height: 1.0; margin: 0 0 12px; }
.section__lead { color: var(--muted-text); font-size: 17px; margin: 0 0 40px; }
.section__note { color: var(--muted-text); font-size: 13px; margin-top: 24px; text-align: center; }

/* ---------- credibility ---------- */
.credibility { padding: 96px 0; border-bottom: 1px solid var(--line); }
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.cred__q { font-weight: 700; font-size: 20px; margin: 0 0 10px; }
.cred__a { color: var(--muted-text); margin: 0; }

/* ============================================================
   O PROCESSO — sticky can
   ============================================================ */
.process { padding: 88px 0 0; }
.process__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.process__sticky {
  position: sticky; top: calc(var(--header-h) + 4vh); height: 78vh;
  display: flex; align-items: center; justify-content: center;
}
.can { width: auto; height: 68vh; max-height: 560px; }
.can__body, .can__lid { fill: #fff; stroke: var(--text); stroke-width: 3; }
.can__word { font-family: var(--font-display); font-weight: 700; font-size: 40px; letter-spacing: 1px; fill: var(--text); }
.can__water { fill: var(--water); transition: y .6s ease, height .6s ease; }
.can__bubbles circle, .can__fizz circle { fill: #fff; stroke: var(--text); stroke-width: 1.5; opacity: 0; transition: opacity .5s ease; }
.can__aroma circle { fill: none; stroke: var(--text); stroke-width: 1.5; opacity: 0; transition: opacity .5s ease; }

/* step-driven states */
.process[data-active-step="1"] .can__water { y: 206px; height: 90px; }
.process[data-active-step="2"] .can__water { y: 146px; height: 150px; }
.process[data-active-step="3"] .can__water { y: 86px;  height: 210px; }
.process[data-active-step="4"] .can__water { y: 34px;  height: 262px; }
.process[data-active-step="2"] .can__bubbles circle,
.process[data-active-step="3"] .can__bubbles circle { opacity: 1; }
.process[data-active-step="3"] .can__aroma circle { opacity: .9; }
.process[data-active-step="4"] .can__fizz circle { opacity: 1; }

.process__steps { padding: 4vh 0 20vh; }
.process__step { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; opacity: .28; transition: opacity .4s ease; }
.process__step.is-active { opacity: 1; }
.process__num { font-family: var(--font-display); font-weight: 700; font-size: 56px; line-height: 1; color: var(--text); -webkit-text-stroke: 1px var(--text); -webkit-text-fill-color: transparent; }
.process__step h3 { font-size: 30px; margin: 10px 0 12px; }
.process__step p { color: var(--muted-text); max-width: 420px; margin: 0; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { display: flex; flex-direction: column; }
.card__media { position: relative; border: 0; padding: 0; background: var(--muted-bg); cursor: pointer; aspect-ratio: 1/1; overflow: hidden; width: 100%; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card__media:hover img { transform: scale(1.03); }
.card__media-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--muted-text); padding: 20px; text-align: center; }
.card.is-soldout .card__media img { filter: grayscale(1) opacity(.6); }
.badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 6px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.badge--soldout { background: var(--text); color: #fff; }
.card__body { padding: 18px 0 0; display: flex; flex-direction: column; gap: 6px; }
.card__title { font-size: 18px; margin: 0; text-transform: uppercase; letter-spacing: .02em; }
.card__flavor { color: var(--muted-text); margin: 0; font-size: 14px; }
.price { margin: 4px 0 10px; }
.price__now { font-weight: 700; font-size: 20px; }
.card__details { margin-top: 6px; background: none; border: 0; cursor: pointer; color: var(--muted-text); font-size: 13px; text-decoration: underline; text-underline-offset: 3px; align-self: flex-start; display: inline-flex; align-items: center; min-height: 44px; padding: 4px 0; }
.card__details:hover { color: var(--text); }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.social-card { margin: 0; }
.social-card__media { aspect-ratio: 9/12; background: #e9e9e9; display: flex; align-items: center; justify-content: center; color: var(--muted-text); font-size: 14px; }
.social-card figcaption { margin-top: 10px; font-size: 13px; color: var(--muted-text); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion { border-top: 1px solid var(--line); margin-top: 24px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-size: 18px; font-weight: 600; color: var(--text); font-family: var(--font-body);
}
.acc-item__icon { position: relative; width: 16px; height: 16px; flex: 0 0 16px; }
.acc-item__icon::before, .acc-item__icon::after { content: ""; position: absolute; background: var(--text); transition: transform .3s ease; }
.acc-item__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc-item__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.acc-item.is-open .acc-item__icon::after { transform: scaleY(0); }
.acc-item__a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.acc-item__a p { margin: 0 0 24px; color: var(--muted-text); max-width: 60ch; }

/* ============================================================
   MODALS (age gate + quick view)
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,.6); display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay[hidden] { display: none; }   /* [hidden] must beat .modal-overlay's display:flex */
.age-gate { background: #fff; max-width: 420px; width: 100%; text-align: center; padding: 44px 32px; }
.age-gate__logo { height: 30px; width: auto; display: inline-block; margin: 0 auto 4px; }
.age-gate h2 { margin: 12px 0 24px; font-size: 24px; }
.age-gate__actions { display: flex; gap: 12px; justify-content: center; }
.age-gate__note { margin-top: 20px; font-size: 12px; color: var(--muted-text); }

.quickview__panel { position: relative; background: #fff; max-width: 920px; width: 100%; max-height: 88vh; overflow: auto; }
.quickview__close { position: absolute; top: 12px; right: 16px; z-index: 2; border: 0; background: none; font-size: 32px; line-height: 1; cursor: pointer; }
.quickview__body { display: grid; grid-template-columns: 1fr 1fr; }
.qv-gallery { background: var(--muted-bg); display: grid; grid-template-rows: 1fr auto; }
.qv-gallery__main { aspect-ratio: 1/1; }
.qv-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.qv-gallery__thumbs { display: flex; gap: 8px; padding: 12px; }
.qv-gallery__thumbs img { width: 56px; height: 56px; object-fit: cover; cursor: pointer; border: 1px solid var(--line); }
.qv-info { padding: 40px 36px; }
.qv-info h3 { font-size: 26px; margin: 0 0 4px; text-transform: uppercase; }
.qv-info__flavor { color: var(--muted-text); margin: 0 0 14px; }
.qv-info__price { font-size: 24px; font-weight: 700; margin: 0 0 18px; }
.qv-info__blurb { color: var(--muted-text); margin: 0 0 22px; }
.qv-detail { border-top: 1px solid var(--line); padding: 14px 0; }
.qv-detail strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.qv-detail span { color: var(--muted-text); font-size: 14px; }
.qv-info .btn { margin-top: 22px; }

/* ============================================================
   SHOPPING CART DRAWER
   ============================================================ */
.cart-overlay { position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,.4); opacity: 0; transition: opacity .3s ease; }
.cart-overlay.is-open { opacity: 1; }
.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 61; height: 100%; width: 400px; max-width: 90vw;
  background: #fff; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s ease; box-shadow: -8px 0 40px rgba(0,0,0,.12);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-drawer__head h3 { font-size: 18px; text-transform: uppercase; letter-spacing: .02em; margin: 0; }
.cart-drawer__close { border: 0; background: none; font-size: 30px; line-height: 1; cursor: pointer; color: var(--text); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-drawer__empty { color: var(--muted-text); padding: 40px 0; text-align: center; }
.cart-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item__media { width: 64px; height: 64px; flex: 0 0 64px; background: var(--muted-bg); overflow: hidden; }
.cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__title { font-weight: 700; font-size: 14px; text-transform: uppercase; margin: 0; }
.cart-item__price { color: var(--muted-text); margin: 2px 0 8px; font-size: 14px; }
.cart-item__qty { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.cart-item__qty button { width: 44px; height: 44px; border: 0; background: none; cursor: pointer; font-size: 16px; display: inline-flex; align-items: center; justify-content: center; }
.cart-item__qty span { min-width: 32px; text-align: center; font-size: 14px; }
.cart-item__remove { border: 0; background: none; font-size: 22px; line-height: 1; cursor: pointer; color: var(--muted-text); align-self: flex-start; min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

/* upsell inside the drawer */
.cart-upsell { border-bottom: 1px solid var(--line); padding: 16px 0; }
.cart-upsell__label { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-text); margin: 0 0 10px; }
.cart-upsell__row { display: flex; align-items: center; gap: 12px; }
.cart-upsell__row img { width: 48px; height: 48px; object-fit: cover; background: var(--muted-bg); }
.cart-upsell__row .t { flex: 1; font-size: 14px; font-weight: 600; }
.cart-upsell__add { border: 1px solid var(--text); background: #fff; cursor: pointer; padding: 6px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.cart-upsell__add:hover { background: var(--text); color: #fff; }

.cart-drawer__foot { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart-drawer__row { display: flex; justify-content: space-between; font-weight: 700; font-size: 16px; text-transform: uppercase; }
.cart-drawer__note { color: var(--muted-text); font-size: 12px; margin: 8px 0 14px; }
.cart-secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; color: var(--muted-text); font-size: 12px; }
.cart-secure svg { width: 14px; height: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 14px; }
.footer-col a { display: block; color: var(--muted-text); padding: 4px 0; font-size: 14px; }
.footer-col a:hover { color: var(--text); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: var(--text); }
.footer-social svg { width: 22px; height: 22px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-text); font-size: 13px; flex-wrap: wrap; }

/* ============================================================
   MARQUEE TICKER (under hero)
   ============================================================ */
.marquee { background: var(--text); color: #fff; overflow: hidden; border: 0; }
.marquee__track {
  display: flex; width: max-content; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; }
.marquee span {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 20px; letter-spacing: .04em; padding: 16px 26px; line-height: 1;
}
.marquee span::after { content: "✦"; margin-left: 52px; opacity: .5; font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   REDUCED MOTION — honour the OS preference everywhere:
   marquee, hero cross-fade, the sticky-can fill, card hover
   zoom and smooth scrolling all become instant.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ============================================================
   STATS BAND (big numbers)
   ============================================================ */
.stats { border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 56px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(48px, 6vw, 80px); line-height: .9; }
.stat__label { text-transform: uppercase; letter-spacing: .1em; font-size: 12px; color: var(--muted-text); margin-top: 8px; }

/* credibility: add a top rule + counter for a less bare look */
.cred { position: relative; padding-top: 28px; border-top: 2px solid var(--text); }

/* ============================================================
   CLOSING CTA BAND
   ============================================================ */
.cta-band { background: var(--text); color: #fff; text-align: center; padding: 96px 0; }
.cta-band h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(40px, 7vw, 88px); line-height: .98; letter-spacing: -0.01em; margin: 0 0 28px;
}
.cta-band .btn { background: #fff; color: var(--text); }
.cta-band .btn:hover { opacity: .85; }
.cta-band__note { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 20px; }

/* ============================================================
   LEGAL PAGES  ·  Termos / Privacidade / Reembolsos
   ============================================================ */
.legal { max-width: 760px; margin: 0 auto; }
.legal__eyebrow {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: 13px; color: var(--muted-text); margin: 0 0 10px;
}
.legal__title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1.0; font-size: clamp(34px, 5.4vw, 60px); margin: 0 0 8px;
}
.legal__updated { color: var(--muted-text); font-size: 14px; margin: 0 0 40px; }
.legal h2 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.01em; font-size: 24px; line-height: 1.1;
  margin: 44px 0 14px; padding-top: 28px; border-top: 2px solid var(--text);
}
.legal h3 { font-size: 17px; font-weight: 700; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--text); line-height: 1.7; font-size: 16px; }
.legal p { margin: 0 0 16px; }
.legal ul, .legal ol { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin: 0 0 8px; }
.legal a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { opacity: .7; }
.legal .legal__fill {
  background: #fff3b0; color: #6b5900; padding: 1px 6px; border-radius: 3px;
  font-weight: 600; font-size: .92em;
}
.legal__idbox {
  border: 2px solid var(--text); border-radius: 10px;
  padding: 22px 24px; margin: 0 0 8px;
}
.legal__idbox p { margin: 0 0 6px; }
.legal__idbox p:last-child { margin: 0; }
.legal__toc {
  border: 1px solid var(--border, #e2e2e2); border-radius: 10px;
  padding: 18px 22px; margin: 0 0 40px; background: var(--muted-bg, #f6f6f6);
}
.legal__toc strong {
  display: block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .04em; font-size: 13px; margin-bottom: 8px;
}
.legal__toc a { display: inline-block; margin: 0 14px 6px 0; font-size: 14px; }

/* ============================================================
   RESPONSIVE  ·  desktop → laptop → tablet → phone
   Headings scale fluidly via clamp(); these tiers tune the
   layout, grids and spacing so each device gets its own fit.
   ============================================================ */

/* ---- Laptops / small desktops (≤1200px) ---- */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .cred-grid { gap: 40px; }
}

/* ---- Large tablets / small laptops (≤1024px) ---- */
@media (max-width: 1024px) {
  :root { --page-width: 920px; --header-h: 68px; }
  .container { padding: 0 26px; }
  .section, .credibility, .process { padding-top: 76px; padding-bottom: 76px; }
  .process { padding-bottom: 0; }
  .product-grid { gap: 22px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-col:nth-child(5) { grid-column: 1 / -1; }   /* social row full width */
}

/* ---- Tablets (≤900px): collapse nav, stack complex grids ---- */
@media (max-width: 900px) {
  /* mobile header nav */
  .nav-toggle { display: inline-flex; }
  .main-nav--left {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 16px 26px; gap: 10px;
  }
  .main-nav--left.is-open { display: flex; }
  .main-nav--left .pill { justify-content: center; height: 46px; font-size: 14px; }

  .cred-grid { grid-template-columns: 1fr; gap: 28px; }

  /* stats → 2×2 */
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 44px 18px; border-right: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }

  .marquee span { font-size: 16px; padding: 13px 20px; }

  .quickview__body { grid-template-columns: 1fr; }
  .quickview__panel { max-height: 92vh; }

  /* process → single column, can sticky on top */
  .process__inner { grid-template-columns: 1fr; gap: 8px; }
  .process__sticky { position: sticky; top: var(--header-h); height: 40vh; }
  .can { height: 34vh; }
  .process__steps { padding: 2vh 0 12vh; }
  .process__step { min-height: 56vh; }
}

/* ---- Large phones (≤640px) ---- */
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .container { padding: 0 18px; }
  .section, .credibility { padding-top: 56px; padding-bottom: 56px; }

  .btn--lg { padding: 16px 30px; font-size: 14px; }

  /* single-column products / social, a touch more breathing room */
  .product-grid, .social-grid { grid-template-columns: 1fr; gap: 34px; }
  .social-card__media { aspect-ratio: 16/10; }

  .section__lead { font-size: 15px; margin-bottom: 30px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-col:nth-child(1) { grid-column: 1 / -1; }

  .cta-band { padding: 68px 0; }
  .marquee span { font-size: 15px; padding: 12px 15px; }
  .marquee span::after { margin-left: 30px; }
}

/* ---- Small phones (≤420px) ---- */
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .btn { padding: 13px 22px; }

  .hero__claim { margin-bottom: 16px; }
  .hero__play { width: 66px; height: 66px; }
  .hero__play svg { width: 26px; height: 26px; }

  .stat { padding: 34px 14px; }
  .stat__label { font-size: 11px; letter-spacing: .08em; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }

  .age-gate { padding: 36px 22px; }
  .cart-drawer { width: 100vw; max-width: 100vw; }
}
