/* ============================================================
   COOLIE — SubZero Cooling Wipes
   Design tokens derived from the physical product label:
   charcoal ink + azure blue on white, Montserrat extra-bold
   italic display type, ice-crystal burst mark.
   ============================================================ */

:root {
  /* Label palette */
  --ink: #2d333c;          /* COOLIE / SUB charcoal */
  --ink-soft: #4c5563;
  --muted: #66707e;
  --cool: #1badec;         /* ZERO / EXTRA ICE azure */
  --cool-strong: #0b93d6;
  --cool-deep: #0a6dad;    /* Extreme Ice */
  --ice: #9fe0fa;          /* Ice (light tier) */
  --ice-soft: #d9f1fc;
  --frost: #f2f9fd;
  --frost-2: #e8f4fb;
  --line: #e1ebf2;
  --bg: #ffffff;
  --hot: #ff8a5e;          /* used sparingly, only to tell the "heat" story */
  --hot-deep: #f0663a;

  --font: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(23, 62, 88, 0.07);
  --shadow-md: 0 10px 30px rgba(23, 62, 88, 0.11);
  --shadow-lg: 0 24px 60px rgba(23, 62, 88, 0.16);
  --glow: 0 18px 50px rgba(27, 173, 236, 0.28);

  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

.ic {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
}

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

section { scroll-margin-top: calc(var(--nav-h) + 12px); }

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

.display,
.display-2 {
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.display { font-size: clamp(2.6rem, 6.2vw, 4.4rem); }
.display-2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }

.display span { display: block; }
.display .accent, .display-2 .accent { color: var(--cool); }
.accent-ice { color: var(--ice); }
.display-2 .accent { display: inline; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cool-strong);
  margin-bottom: 18px;
}
.kicker .ic { width: 1.35em; height: 1.35em; }
.kicker-light { color: var(--ice); }

.lede {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 20px;
  text-wrap: pretty;
}
.lede-light { color: rgba(255, 255, 255, 0.85); margin-inline: auto; }

.section { padding: clamp(72px, 10vw, 120px) 0; }

.section-head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 64px); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn .ic { width: 1.1em; height: 1.1em; transition: transform 0.2s ease; }
.btn:hover .ic { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--cool) 0%, var(--cool-strong) 100%);
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 55px rgba(27, 173, 236, 0.4); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--cool); color: var(--cool-strong); transform: translateY(-2px); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #3a424d; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ice {
  background: #fff;
  color: var(--cool-strong);
  box-shadow: 0 18px 50px rgba(4, 34, 52, 0.35);
}
.btn-ice:hover { transform: translateY(-2px); }

.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ---------- Cards ---------- */

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease var(--rd, 0s), transform 0.7s ease var(--rd, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(225, 235, 242, 0.8);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h);
}

.nav-brand {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:not(.btn):hover { color: var(--cool-strong); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta-mobile { display: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-burger span {
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 110px) 0 clamp(72px, 9vw, 120px);
  background:
    radial-gradient(900px 480px at 85% 8%, rgba(27, 173, 236, 0.14), transparent 65%),
    radial-gradient(700px 420px at 8% 90%, rgba(27, 173, 236, 0.09), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--frost) 100%);
}

.hero-mist {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(340px 200px at 70% 30%, rgba(255, 255, 255, 0.75), transparent 70%),
    radial-gradient(420px 260px at 90% 75%, rgba(27, 173, 236, 0.1), transparent 70%);
  animation: mist-drift 14s ease-in-out infinite alternate;
}

@keyframes mist-drift {
  from { transform: translateX(-14px); }
  to   { transform: translateX(18px); }
}

.hero-drops { position: absolute; inset: 0; pointer-events: none; }
.hdrop {
  position: absolute;
  left: var(--x);
  top: -20px;
  width: var(--s);
  height: calc(var(--s) * 1.3);
  background: linear-gradient(180deg, rgba(27, 173, 236, 0.34), rgba(27, 173, 236, 0.12));
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  animation: drop-fall 9s linear var(--d) infinite;
  opacity: 0;
}

@keyframes drop-fall {
  0%   { transform: translateY(-4vh) scale(0.9); opacity: 0; }
  8%   { opacity: 0.9; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(108vh) scale(1.05); opacity: 0; }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 34px;
}
.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  box-shadow: var(--shadow-sm);
}
.hero-pills .ic { color: var(--cool); width: 1.2em; height: 1.2em; }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}

.hero-burst {
  position: absolute;
  width: min(520px, 92%);
  aspect-ratio: 1;
  color: rgba(27, 173, 236, 0.16);
  animation: burst-spin 60s linear infinite;
}

@keyframes burst-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   PACKET MOCKUP — renders the actual Coolie SubZero label
   ============================================================ */

.packet {
  position: relative;
  /* label typography scales off this font-size */
  font-size: 10px;
  width: 36em;
  max-width: 100%;
  filter: drop-shadow(0 30px 40px rgba(23, 62, 88, 0.18));
}

.packet-face {
  position: relative;
  overflow: hidden;
  background: linear-gradient(152deg, #ffffff 0%, #fdfeff 55%, #f2f8fc 100%);
  border: 1px solid #e6eef4;
  border-radius: 1.1em;
  padding: 1.5em 0;
}

/* crimped seals top & bottom of the sachet */
.packet-seal {
  height: 1.5em;
  background:
    repeating-linear-gradient(90deg,
      rgba(140, 170, 190, 0.16) 0 2px,
      transparent 2px 7px);
  border-block: 1px solid rgba(140, 170, 190, 0.22);
}
.packet-seal-top { margin-top: -1.5em; margin-bottom: 1.2em; }
.packet-seal-bottom { margin-bottom: -1.5em; margin-top: 1.2em; }

.packet-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg,
      transparent 12%,
      rgba(255, 255, 255, 0.85) 22%,
      transparent 34%,
      transparent 70%,
      rgba(210, 232, 244, 0.5) 88%,
      transparent 97%);
  mix-blend-mode: screen;
}

.packet-shadow {
  position: absolute;
  left: 50%;
  bottom: -3.4em;
  width: 78%;
  height: 2.6em;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(23, 62, 88, 0.22), transparent 70%);
  border-radius: 50%;
}

/* ----- The label itself ----- */

.label {
  position: relative;
  padding: 0.6em 2.2em 0.4em;
  text-align: center;
}

.label-brand {
  text-align: left;
  font-size: 1.7em;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1;
}

.label-logo {
  position: relative;
  display: block;
  margin: 1em 0 0.7em;
  font-size: 4.6em;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.lz-sub { color: var(--ink); }
.lz-zer { color: var(--tier-color, var(--cool)); }

.lz-o {
  position: relative;
  display: inline-block;
  color: var(--tier-color, var(--cool));
  /* stacking context so the burst can sit behind the O but above the packet face */
  z-index: 0;
}
/* diagonal slash through the O, as on the label */
.lz-o::after {
  content: "";
  position: absolute;
  left: -18%;
  top: 51%;
  width: 136%;
  height: 0.075em;
  background: #fff;
  transform: rotate(-34deg);
}
.lz-burst {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 1.85em;
  height: 1.85em;
  max-width: none;
  transform: translate(-50%, -50%);
  color: var(--tier-color, var(--cool));
  z-index: -1;
}

.label-tag {
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
  max-width: 24em;
  margin-inline: auto;
}

.label-kind {
  font-size: 0.95em;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 0.6em;
}

.label-tier {
  font-size: 2.1em;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--tier-color, var(--cool));
  margin-top: 0.55em;
  line-height: 1;
}

.label-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1.4em;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* tier color variants */
.packet[data-tier="ice"]     { --tier-color: #56c7f2; }
.packet[data-tier="extra"]   { --tier-color: var(--cool); }
.packet[data-tier="extreme"] { --tier-color: var(--cool-deep); }

/* packet sizes */
.packet-hero { font-size: clamp(8px, 1.35vw, 12.5px); }
.packet-mini { font-size: 6.4px; filter: drop-shadow(0 12px 18px rgba(23, 62, 88, 0.14)); }
.packet-shop { font-size: clamp(7.5px, 1.15vw, 11px); }

.float { animation: float 5.5s ease-in-out infinite; }
.float-slow { animation: float 7s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50%      { transform: translateY(-14px) rotate(1.2deg); }
}

/* ============================================================
   QUICK BENEFITS STRIP
   ============================================================ */

.strip {
  border-block: 1px solid var(--line);
  background: #fff;
  padding: clamp(40px, 5vw, 56px) 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
}

.strip-grid li { text-align: left; }
.strip-grid .ic {
  width: 30px;
  height: 30px;
  color: var(--cool);
  margin-bottom: 12px;
}
.strip-grid h3 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.strip-grid p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ============================================================
   THE PROBLEM — lifestyle scene tiles
   ============================================================ */

.problem { background: linear-gradient(180deg, #fff 0%, var(--frost) 100%); }

.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.scene {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scene:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.scene-art {
  display: grid;
  place-items: center;
  height: 150px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.scene-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 85% -10%, rgba(255, 255, 255, 0.35), transparent 55%);
}
.scene-art .ic { width: 46px; height: 46px; position: relative; z-index: 1; opacity: 0.95; }

.scene-gym    { background: linear-gradient(135deg, #2d333c, #4c5563); }
.scene-sport  { background: linear-gradient(135deg, #0b93d6, #1badec); }
.scene-run    { background: linear-gradient(135deg, #f0663a, #ff8a5e); }
.scene-hike   { background: linear-gradient(135deg, #0a6dad, #1badec); }
.scene-work   { background: linear-gradient(135deg, #e8a13c, #f6c063); }
.scene-travel { background: linear-gradient(135deg, #34405c, #57708f); }
.scene-hot    { background: linear-gradient(135deg, #f0663a, #f6c063); }

.scene figcaption {
  padding: 16px 20px 18px;
  display: grid;
  gap: 2px;
}
.scene figcaption strong {
  font-size: 0.95rem;
  font-weight: 800;
}
.scene figcaption span {
  font-size: 0.85rem;
  color: var(--muted);
}

.scene-wide { grid-column: span 3; }
.scene-wide .scene-art { height: 120px; }

/* ============================================================
   HOW COOLIE FEELS
   ============================================================ */

.feels-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 14px;
}

.feel-card {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.feel-card:hover { transform: translateY(-6px); }
.feel-card .ic { width: 34px; height: 34px; margin-bottom: 14px; }
.feel-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
.feel-card p { font-size: 0.92rem; opacity: 0.92; margin-top: 6px; }

.feel-hot  { background: linear-gradient(150deg, var(--hot-deep), var(--hot)); }
.feel-wipe { background: linear-gradient(150deg, #3a424d, var(--ink)); }
.feel-cool { background: linear-gradient(150deg, var(--cool-strong), var(--cool)); box-shadow: var(--glow); }

.feel-arrow {
  display: grid;
  place-items: center;
  color: var(--cool);
}
.feel-arrow .ic { width: 26px; height: 26px; }

.temp-bar {
  position: relative;
  height: 14px;
  margin-top: 54px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hot-deep) 0%, var(--hot) 28%, #ffd9a8 46%, var(--ice) 64%, var(--cool) 100%);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
}

.temp-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: inherit;
  clip-path: inset(0 0 0 0);
}

.temp-tag {
  position: absolute;
  top: -32px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.temp-tag-hot { left: 0; color: var(--hot-deep); }
.temp-tag-cool { right: 0; color: var(--cool-strong); text-align: right; }

/* ============================================================
   INGREDIENTS
   ============================================================ */

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

.ing-card {
  padding: 32px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27, 173, 236, 0.45);
}

.ing-ic {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(150deg, var(--frost-2), var(--ice-soft));
  color: var(--cool-strong);
  margin-bottom: 18px;
}
.ing-ic .ic { width: 28px; height: 28px; }

.ing-card h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.ing-card p { font-size: 0.92rem; color: var(--muted); }

/* ============================================================
   MADE FOR SWEAT — dark band
   ============================================================ */

.sweatband {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 400px at 88% 20%, rgba(27, 173, 236, 0.25), transparent 60%),
    linear-gradient(150deg, #232932 0%, var(--ink) 55%, #313a46 100%);
  color: #fff;
  text-align: center;
}
.sweatband .section-head { margin-inline: auto; }
.sweatband .display-2 { color: #fff; }

.sweat-burst {
  position: absolute;
  color: rgba(27, 173, 236, 0.14);
  aspect-ratio: 1;
}
.sweat-burst-a { width: 340px; top: -120px; left: -100px; }
.sweat-burst-b { width: 260px; bottom: -90px; right: -70px; }

.chain {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  list-style: none;
}

.chain li:not(.chain-arrow) {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 1rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 14px 26px;
  backdrop-filter: blur(6px);
}
.chain li:not(.chain-arrow) .ic { color: var(--cool); width: 1.3em; height: 1.3em; }
.chain li:last-child { background: var(--cool); border-color: var(--cool); box-shadow: var(--glow); }
.chain li:last-child .ic { color: #fff; }

.chain-arrow { color: rgba(255, 255, 255, 0.45); display: grid; place-items: center; }
.chain-arrow .ic { width: 22px; height: 22px; }

/* ============================================================
   COOLING LEVELS
   ============================================================ */

.levels { background: linear-gradient(180deg, var(--frost) 0%, #fff 70%); }

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

.level-card {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 34px 26px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.level-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.level-featured {
  border-color: rgba(27, 173, 236, 0.55);
  box-shadow: var(--glow);
}

.level-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--cool);
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
}

.level-meta h3 {
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
.level-meta p { font-size: 0.9rem; color: var(--muted); }

.level-dots {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 10px;
}
.level-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--frost-2);
  border: 1px solid var(--line);
}
.level-dots i.on { background: var(--cool); border-color: var(--cool); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  counter-reset: step;
}

.how-card {
  position: relative;
  padding: 34px 28px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.how-num {
  position: absolute;
  top: 6px;
  right: 16px;
  font-size: 4.6rem;
  font-weight: 900;
  font-style: italic;
  color: var(--frost-2);
  line-height: 1;
  user-select: none;
}

.how-card .ic {
  position: relative;
  width: 34px;
  height: 34px;
  color: var(--cool);
  margin-bottom: 16px;
}
.how-card h3 {
  position: relative;
  font-size: 1.15rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.how-card p { position: relative; font-size: 0.94rem; color: var(--muted); }

/* ============================================================
   WHERE TO USE
   ============================================================ */

.where { background: linear-gradient(180deg, #fff 0%, var(--frost) 100%); }

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

.where-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.where-card:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 173, 236, 0.5);
  box-shadow: var(--shadow-md);
}
.where-card .ic { width: 30px; height: 30px; color: var(--cool); }
.where-card span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
}

.shop-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(40px, 5vw, 70px) clamp(24px, 4vw, 50px);
  background:
    radial-gradient(420px 320px at 50% 42%, rgba(27, 173, 236, 0.16), transparent 70%),
    linear-gradient(160deg, var(--frost) 0%, var(--frost-2) 100%);
}

.shop-burst {
  position: absolute;
  width: min(400px, 85%);
  aspect-ratio: 1;
  color: rgba(27, 173, 236, 0.18);
  animation: burst-spin 70s linear infinite;
}

.shop-info { padding: clamp(32px, 4vw, 56px); }

.shop-brandline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cool-strong);
  margin-bottom: 10px;
}

.shop-name {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
}

.shop-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.shop-rating a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.shop-rating a:hover { color: var(--cool-strong); }

.stars { display: inline-flex; gap: 2px; color: #ffb43a; }
.stars .ic { width: 16px; height: 16px; }
.stars-lg .ic { width: 22px; height: 22px; }

.shop-desc { margin-top: 16px; color: var(--ink-soft); font-size: 0.97rem; }

.shop-field { margin-top: 24px; }
.shop-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.tier-picker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tier-picker button {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tier-picker button:hover { border-color: var(--cool); color: var(--cool-strong); }
.tier-picker button.active {
  background: var(--cool);
  border-color: var(--cool);
  color: #fff;
  box-shadow: 0 8px 22px rgba(27, 173, 236, 0.35);
}

.shop-benefits {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 24px;
}
.shop-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.shop-benefits .ic { width: 18px; height: 18px; color: var(--cool); }

.shop-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.shop-pack {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}
.shop-pack .ic { width: 20px; height: 20px; color: var(--cool); }
.shop-price {
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
}

.shop-buy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty button {
  width: 44px;
  height: 52px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: none;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.qty button:hover { background: var(--frost); color: var(--cool-strong); }
.qty input {
  width: 44px;
  border: 0;
  text-align: center;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  background: none;
}
.qty input:focus { outline: none; }

/* ---------- Where to buy ---------- */

.shop-field-buy { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }

.retailers { display: grid; gap: 10px; }

.retailer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  background: #fff;
  color: var(--ink);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.retailer:hover {
  transform: translateY(-2px);
  border-color: var(--cool);
  box-shadow: var(--shadow-md);
}
.retailer .ic { width: 20px; height: 20px; color: var(--cool); transition: transform 0.2s ease; }
.retailer:hover .ic { transform: translateX(4px); }

.retailer-text { display: grid; gap: 1px; }
.retailer-text strong {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.retailer-text span { font-size: 0.83rem; color: var(--muted); }

/* Primary store gets the brand treatment */
.retailer-primary {
  background: linear-gradient(135deg, var(--cool) 0%, var(--cool-strong) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow);
}
.retailer-primary:hover { border-color: transparent; box-shadow: 0 22px 55px rgba(27, 173, 236, 0.4); }
.retailer-primary .ic { color: #fff; }
.retailer-primary .retailer-text span { color: rgba(255, 255, 255, 0.85); }

/* No URL configured yet */
.retailer-soon {
  background: var(--frost);
  border-style: dashed;
  color: var(--muted);
  cursor: default;
}
.retailer-soon:hover { transform: none; border-color: var(--line); box-shadow: none; }
.retailer-soon .retailer-text strong { color: var(--ink-soft); }
.retailer-soon.retailer-primary {
  background: var(--frost);
  border-color: rgba(27, 173, 236, 0.4);
  box-shadow: none;
}
.retailer-soon.retailer-primary .retailer-text strong { color: var(--cool-strong); }
.retailer-soon.retailer-primary .retailer-text span { color: var(--muted); }

.shop-fineprint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
}
.shop-fineprint .ic { width: 16px; height: 16px; color: var(--cool); flex: none; }

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews { background: linear-gradient(180deg, var(--frost) 0%, #fff 60%); }

.rating-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.rating-summary strong {
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
}
.rating-count { font-size: 0.9rem; color: var(--muted); font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

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

.review-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(150deg, var(--cool), var(--cool-strong));
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }

.review-who { display: grid; gap: 2px; }
.review-who strong { font-size: 0.95rem; font-weight: 800; }

.verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cool-strong);
}
.verified .ic { width: 14px; height: 14px; }

.review-card .stars .ic { width: 15px; height: 15px; }
.review-title { font-size: 0.98rem; font-weight: 800; }
.review-body { font-size: 0.9rem; color: var(--ink-soft); }
.review-photo {
  border-radius: 12px;
  overflow: hidden;
  max-height: 160px;
}
.review-photo img { width: 100%; height: 100%; object-fit: cover; }

.review-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
  padding: 32px 36px;
  background:
    radial-gradient(400px 200px at 90% 0%, rgba(27, 173, 236, 0.12), transparent 60%),
    #fff;
}
.review-cta h3 {
  font-size: 1.25rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
.review-cta p { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }

/* ============================================================
   BRAND STORY
   ============================================================ */

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.story-copy p { margin-top: 18px; color: var(--ink-soft); }
.story-copy p:first-of-type { margin-top: 26px; }
.story-sign { font-size: 0.95rem; }
.story-sign strong { color: var(--ink); }

.story-visual { display: grid; place-items: center; }

.story-badge {
  position: relative;
  display: grid;
  place-items: center;
  gap: 6px;
  width: min(320px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, #fff 78%, transparent 79%),
    conic-gradient(from 90deg, var(--ice-soft), var(--cool), var(--ice-soft));
  box-shadow: var(--shadow-md);
}
.story-burst {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  color: rgba(27, 173, 236, 0.2);
  animation: burst-spin 50s linear infinite;
}
.story-badge-brand {
  position: relative;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.story-badge-line {
  position: relative;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cool-strong);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq { background: linear-gradient(180deg, #fff 0%, var(--frost) 100%); }
.faq-container { max-width: 860px; }

.faq-list { display: grid; gap: 12px; }

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-list details[open] {
  border-color: rgba(27, 173, 236, 0.5);
  box-shadow: var(--shadow-md);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 0.98rem;
  font-weight: 800;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .ic {
  width: 20px;
  height: 20px;
  color: var(--cool);
  transform: rotate(90deg);
  transition: transform 0.25s ease;
}
.faq-list details[open] summary .ic { transform: rotate(-90deg); }

.faq-list details p {
  padding: 0 22px 20px;
  font-size: 0.93rem;
  color: var(--ink-soft);
  max-width: 68ch;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(800px 420px at 50% -10%, rgba(159, 224, 250, 0.35), transparent 60%),
    linear-gradient(160deg, var(--cool-strong) 0%, var(--cool) 45%, #0d7fc0 100%);
}

.final-burst {
  position: absolute;
  color: rgba(255, 255, 255, 0.14);
  aspect-ratio: 1;
}
.final-burst-a { width: 380px; top: -130px; right: -110px; animation: burst-spin 80s linear infinite; }
.final-burst-b { width: 260px; bottom: -100px; left: -80px; animation: burst-spin 65s linear infinite reverse; }

.final-inner { position: relative; }

.final-title { margin-bottom: 6px; }
.final-title span { display: inline; }
.final .lede { margin-inline: auto; margin-bottom: 36px; }
.final .kicker { justify-content: center; display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(56px, 7vw, 80px) 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-brand p { margin-top: 10px; font-size: 0.9rem; }

.footer-mark {
  margin-top: 22px;
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.01em;
  opacity: 0.9;
}
.footer-mark .lz-sub { color: #fff; }
.footer-mark .lz-o::after { background: var(--ink); }
.footer-mark .lz-burst { width: 1.9em; height: 1.9em; }

.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--cool); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   REVIEW MODAL
   ============================================================ */

.modal {
  border: 0;
  padding: 0;
  background: none;
  max-width: min(560px, calc(100vw - 32px));
  width: 100%;
  margin: auto;
}
.modal::backdrop {
  background: rgba(20, 34, 46, 0.55);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: min(86vh, 760px);
  overflow-y: auto;
}

.modal-body { padding: 36px; }
.modal-body h3 {
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
.modal-sub { color: var(--muted); font-size: 0.92rem; margin: 6px 0 22px; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--frost);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}
.modal-close:hover { background: var(--frost-2); color: var(--ink); }
.modal-close .ic { width: 18px; height: 18px; }

.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field > span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cool);
  box-shadow: 0 0 0 3px rgba(27, 173, 236, 0.18);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.star-input { display: inline-flex; gap: 4px; }
.star-input button {
  background: none;
  border: 0;
  padding: 2px;
  cursor: pointer;
  color: var(--line);
  transition: color 0.15s ease, transform 0.15s ease;
}
.star-input button .ic { width: 30px; height: 30px; }
.star-input button:hover { transform: scale(1.12); }
.star-input button.lit { color: #ffb43a; }

.photo-drop {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.photo-drop:hover { border-color: var(--cool); color: var(--cool-strong); background: var(--frost); }
.photo-drop .ic { width: 22px; height: 22px; }
.photo-drop.has-photo { border-style: solid; border-color: var(--cool); color: var(--cool-strong); }

/* Subscription opt-in */
.check-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  background: var(--frost);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.check-field:hover { border-color: rgba(27, 173, 236, 0.5); }
.check-field input { position: absolute; opacity: 0; pointer-events: none; }

.check-box {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 1px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.check-box .ic { width: 14px; height: 14px; opacity: 0; transition: opacity 0.15s ease; }
.check-field input:checked ~ .check-box {
  background: var(--cool);
  border-color: var(--cool);
}
.check-field input:checked ~ .check-box .ic { opacity: 1; }
.check-field input:focus-visible ~ .check-box {
  box-shadow: 0 0 0 3px rgba(27, 173, 236, 0.25);
}

.check-text {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--muted);
}
.check-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 2px;
}

/* Empty review states */
.rating-empty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cool-strong);
}
.rating-empty .ic { width: 20px; height: 20px; }

.reviews-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  background: #fff;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 68px) 28px;
}
.reviews-empty .ic {
  width: 70px;
  height: 70px;
  color: rgba(27, 173, 236, 0.4);
  margin-bottom: 4px;
}
.reviews-empty h3 {
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
.reviews-empty p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 46ch;
}

.form-error {
  color: #d64545;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.modal-success {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  padding: 56px 36px;
}
.modal-success[hidden] { display: none; }
.success-burst {
  width: 90px;
  aspect-ratio: 1;
  color: var(--cool);
  animation: success-pop 0.6s cubic-bezier(0.2, 1.6, 0.4, 1);
}
@keyframes success-pop {
  from { transform: scale(0.3) rotate(-30deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}
.modal-success h3 {
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
.modal-success p { color: var(--muted); font-size: 0.95rem; max-width: 34ch; }
.modal-success .btn { margin-top: 12px; }

/* ============================================================
   TOAST
   ============================================================ */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 24px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 90;
  max-width: calc(100vw - 40px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1020px) {
  .strip-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-ctas, .hero-pills { justify-content: center; }
  .hero-visual { order: -1; min-height: 0; margin-bottom: 8px; }
  .packet-hero { font-size: clamp(7px, 2.4vw, 10px); }

  .feels-flow { grid-template-columns: 1fr; }
  .feel-arrow .ic { transform: rotate(90deg); }

  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  .scene-wide { grid-column: span 2; }

  .levels-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .how-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }

  .shop-grid { grid-template-columns: 1fr; }
  .shop-stage { padding: 48px 24px; }

  .story-grid { grid-template-columns: 1fr; }
  .story-visual { order: -1; }
}

@media (max-width: 760px) {
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 6px; }

  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 10px 24px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) {
    padding: 13px 4px;
    border-bottom: 1px solid var(--frost-2);
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .scene-grid { grid-template-columns: 1fr; }
  .scene-wide { grid-column: span 1; }
  .ing-grid { grid-template-columns: 1fr; }
  .where-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-body { padding: 28px 22px; }

  .shop-buy { flex-direction: column; align-items: stretch; }
  .qty { justify-content: center; }

  .chain li:not(.chain-arrow) { padding: 11px 18px; font-size: 0.88rem; }
  .chain { gap: 8px; }
  .chain-arrow .ic { width: 16px; height: 16px; }

  .review-cta { justify-content: center; text-align: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
