/* eve Daily Stack PDP — design tokens & global styles */

@font-face {
  font-family: "Bilo";
  src: url("fonts/Bilo-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bilo";
  src: url("fonts/Bilo-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* eve brand palette — matching production PDP */
  --bg: #FCE9CF;             /* peachy cream main */
  --bg-elevated: #FDF1DF;    /* slight lift */
  --bg-deep: #FFE0BB;        /* warmer for cards */
  --bg-soft: #F7E5DF;        /* pinkish for quote boxes */
  --paper: #FFFFFF;
  --ink: #4A3A33;            /* warm brown ink */
  --ink-soft: #6B5851;
  --ink-mute: #9A867D;
  --rule: #E8D4BD;
  --rule-soft: #F0DFC8;

  /* primary action — eve green */
  --green: #4FAF73;
  --green-deep: #3E9A60;

  /* savings accent — soft premium terracotta-red (money saved) */
  --save: #BD5544;
  --save-deep: #A2412F;
  --save-tint: #F7E3DC;

  /* accents */
  --butter: #FFE8CC;
  --butter-deep: #F4C68A;
  --cocoa: #4A3A33;
  --cocoa-deep: #2E2421;     /* promo bar / dark sections */
  --vanilla: #FFE8CC;
  --rose: #F7E5DF;
  --star: #E6AE2D;           /* review stars */

  /* type — Bilo everywhere */
  --serif: "Bilo", Georgia, serif;
  --sans: "Bilo", system-ui, -apple-system, sans-serif;
  --mono: "Bilo", ui-monospace, "SF Mono", Menlo, monospace;

  --radius: 4px;
  --radius-lg: 10px;
  --radius-pill: 999px;

  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ───── Typography scale ───── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.label-mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.14;
  letter-spacing: -0.015em;
}
.h-display em { font-style: normal; font-weight: 700; color: var(--ink); }
.h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.008em;
}
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
}
.lede {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ───── Layout ───── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ───── Promo bar ───── */
.promo-bar {
  background: var(--cocoa-deep);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.promo-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  padding-left: 56px;
}
.promo-track span { display: inline-flex; align-items: center; gap: 10px; }
.promo-track .ic { font-size: 14px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ───── Nav ───── */
.nav {
  background: var(--bg);
  border-bottom: 0;
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  gap: 32px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 22px; font-size: 14px; font-weight: 700; align-items: center; flex-wrap: nowrap; }
.nav-links a { position: relative; padding: 8px 0; white-space: nowrap; }
.nav-links a.active { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1.5px; }
.nav-links a:hover { color: var(--cocoa); }
.nav-promo {
  background: var(--green);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  margin-left: 6px;
  letter-spacing: 0.01em;
}
.nav-promo:hover { background: var(--green-deep); color: #fff; }
.nav-icons { display: flex; align-items: center; gap: 18px; }
.nav-icons button { color: var(--ink); display: inline-flex; align-items: center; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  transition: transform 120ms ease, background 200ms ease, color 200ms ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-deep); }
.btn-yellow {
  background: var(--ink);
  color: var(--bg);
}
.btn-yellow:hover { background: var(--cocoa-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-block { width: 100%; }
.btn-lg { padding: 22px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ───── Pill / chip ───── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: var(--bg-deep);
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  white-space: nowrap;
}
.chip-butter { background: var(--butter); color: var(--ink); border-color: transparent; }
.chip-cocoa { background: var(--cocoa); color: var(--vanilla); border-color: transparent; }
.chip-outline { background: transparent; border-color: var(--ink); color: var(--ink); }

/* ───── Payment badges ───── */
.payment-badges {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  margin-top: 22px;
  flex-wrap: wrap;
}
.payment-badge {
  height: 28px;
  border-radius: 5px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.payment-badge svg {
  display: block;
  width: 100%;
  height: 100%;
}
.sub-toggle {
  display: flex;
  gap: 0;
  margin-bottom: -2px;
  position: relative;
  z-index: 2;
}
.sub-toggle button {
  padding: 12px 22px;
  background: var(--bg-deep);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  border-radius: 12px 12px 0 0;
  border: 1.5px solid var(--rule);
  border-bottom: 0;
  cursor: pointer;
  transition: 200ms;
}
.sub-toggle button + button { margin-left: -1.5px; }
.sub-toggle button.active {
  background: var(--paper);
  border-color: var(--ink);
  z-index: 2;
}

/* ───── Tier cards (horizontal) ───── */
.tier-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper);
  border-radius: 14px;
  border: 1.5px solid var(--rule);
  padding: 14px;
  margin-top: 0;
}
.tier-card {
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  padding: 14px 18px;
  cursor: pointer;
  position: relative;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 18px;
  align-items: center;
}
.tier-card:hover { border-color: var(--ink-mute); }
.tier-card.selected {
  border-color: var(--ink);
  border-width: 2px;
  padding: 13.5px 17.5px;
}
.tier-card--pinned {
  border-color: var(--green);
}
.tier-card--pinned.selected {
  border-color: var(--green-deep);
}
.tier-card--pinned .ribbon {
  background: var(--green);
}
.tier-sub-meta {
  color: var(--ink-mute);
  font-size: 12px;
}
.tier-note {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.005em;
}
.tier-card .ribbon {
  position: absolute;
  top: -10px; right: 18px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  white-space: nowrap;
  background: var(--cocoa-deep);
  color: #fff;
}
.tier-card .tier-thumb {
  width: 80px; height: 64px;
  border-radius: 8px;
  background: var(--bg-deep);
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
}
.tier-card .tier-thumb .tt-stack {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.tier-card .tier-thumb .tt-pouch {
  width: 28px; height: 38px;
  border-radius: 4px 4px 5px 5px;
  position: relative;
}
.tier-card .tier-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.tier-card .tier-title {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}
.tier-card .tier-sub {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.35;
}
.tier-card .tier-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  background: var(--green);
  color: #fff;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.005em;
  margin-top: 4px;
  align-self: flex-start;
  box-shadow: 0 2px 8px -2px color-mix(in oklch, var(--green) 70%, transparent);
}
.tier-card .tier-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.tier-card .tier-right .strike {
  font-size: 12px;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.tier-card .tier-right .price {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
.tier-card .tier-right .unit {
  font-size: 12px;
  color: var(--ink-mute);
}

/* ───── Hero eyebrow (category clarity) ───── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 12px 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  border: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ───── Hero urgency cue ───── */
.hero-urgency {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--save-tint);
  border: 1px solid color-mix(in oklch, var(--save) 26%, transparent);
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink-soft);
}
.hero-urgency strong { color: var(--save-deep); font-weight: 800; }
.hero-urgency-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--save);
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--save) 55%, transparent);
  animation: hero-urgency-pulse 2s ease-out infinite;
}
@keyframes hero-urgency-pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in oklch, var(--save) 50%, transparent); }
  70%  { box-shadow: 0 0 0 7px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
@media (prefers-reduced-motion: reduce) { .hero-urgency-dot { animation: none; } }

/* ───── CTA reassurance row ───── */
.hero-cta-reassure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 12px;
}
.hero-cta-reassure span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-cta-reassure svg { color: var(--green); flex: none; }

/* ───── Value stack (perceived value + savings) ───── */.value-stack {
  margin-top: 22px;
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 10px 30px -18px rgba(60,30,10,0.28);
}
.value-stack-gifts {
  padding: 16px 18px 14px;
  background: color-mix(in oklch, var(--butter) 42%, var(--paper));
  border-bottom: 1px dashed var(--rule);
}
.value-stack-gifts-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 12px;
}
.value-stack-gifts-head .vs-gift-icon { font-size: 18px; }
.value-stack-gifts-head .vs-gift-worth {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 9px;
  border-radius: 999px;
}
.value-stack-gift-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.value-stack-gift-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.value-stack-gift-list li svg { flex: none; }
.value-stack-gift-list .vs-gift-name { flex: 1; min-width: 0; }
.value-stack-gift-list .vs-gift-price { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.value-stack-gift-list .vs-gift-price s { color: var(--ink-mute); font-size: 13px; }
.value-stack-gift-list .vs-gift-price strong {
  color: var(--green-deep);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.value-stack-total {
  display: flex;
  align-items: stretch;
  padding: 14px 18px;
}
.value-stack-total .vs-total-left,
.value-stack-total .vs-total-right { flex: 1; }
.value-stack-total .vs-total-right { text-align: right; }
.value-stack-total .vs-total-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.value-stack-total .vs-total-strike {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: color-mix(in oklch, var(--ink-mute) 60%, transparent);
}
.value-stack-total .vs-total-price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.value-stack-save {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 13px 16px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.005em;
}
.value-stack-save .vs-save-spark { font-size: 14px; opacity: 0.85; }
.value-stack-save .vs-save-pct {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,0.22);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .value-stack-save { font-size: 16px; }
  .value-stack-total .vs-total-price { font-size: 24px; }
  .value-stack-gifts-head { font-size: 15px; }
  .value-stack-gift-list li { font-size: 13px; }
}

/* ───── Trust strip ───── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-item {
  padding: 22px 20px;
  border-right: 1px solid var(--rule);
  display: flex; align-items: center; gap: 14px;
}
.trust-item:last-child { border-right: 0; }
.trust-item .glyph {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  background: var(--bg-elevated);
  border-radius: 50%;
  font-family: var(--mono); font-size: 13px;
}
.trust-item .glyph--logo {
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  padding: 2px;
}
.trust-item .copy { font-size: 13px; color: var(--ink-soft); line-height: 1.35; display: flex; flex-direction: column; gap: 2px; }
.trust-item .copy strong { color: var(--ink); font-weight: 500; font-size: 14px; }

/* ───── Product image placeholder ───── */
.product-img {
  background: var(--bg-elevated);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: block;
}
.product-img.stripes {
  background-image:
    repeating-linear-gradient(135deg,
      rgba(55,45,45,0.04) 0 12px,
      transparent 12px 24px),
    linear-gradient(180deg, #FCF1E0 0%, #F4DDC4 100%);
}
.product-img .label {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,252,244,0.9);
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  color: var(--ink);
}

/* placeholder pouch */
.pouch {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 18px 18px 26px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(60,30,10,0.35), 0 2px 6px rgba(60,30,10,0.08);
}
.pouch::before {
  content: "";
  position: absolute; left: 12%; right: 12%; top: -4%; height: 7%;
  background: var(--cocoa-deep);
  border-radius: 4px;
}
.pouch::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(170deg, rgba(255,255,255,0.32), rgba(255,255,255,0) 40%);
  pointer-events: none;
}
.pouch-vanilla {
  background: linear-gradient(180deg, #FFE8CC 0%, #F4C68A 100%);
}
.pouch-cocoa {
  background: linear-gradient(180deg, #5A4242 0%, #2A2222 100%);
  color: var(--vanilla);
}
.pouch-creatin {
  background: linear-gradient(180deg, #F9EFE8 0%, #E4D2C5 100%);
}
.pouch-inner {
  position: absolute; inset: 20% 14% 18%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.pouch-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px; line-height: 1;
}
.pouch-name {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pouch-flavor {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}
.pouch-weight {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
}

/* canvas bag placeholder */
.bag {
  width: 100%;
  aspect-ratio: 1;
  background: #F4DDC4;
  border-radius: 6px;
  position: relative;
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 3px);
}
.bag::before, .bag::after {
  content: "";
  position: absolute;
  top: -22%; width: 28%; height: 42%;
  border: 5px solid #E0BE96;
  border-bottom: 0;
  border-radius: 60% 60% 0 0 / 100% 100% 0 0;
}
.bag::before { left: 14%; }
.bag::after { right: 14%; }
.bag-mark {
  position: absolute;
  inset: 0; display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--cocoa-deep);
}

/* ───── Section spacing ───── */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ───── Accordion ───── */
.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}
.faq-q .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  transition: 200ms;
  flex: none; margin-left: 24px;
}
.faq-item.open .faq-q .ic { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > * { min-height: 0; }
.faq-a-inner {
  padding: 0 0 24px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 720px;
}

/* ───── Sticky bottom bar ───── */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 14px 0;
  z-index: 30;
  transform: translateY(100%);
  transition: transform 280ms ease;
  box-shadow: 0 -20px 40px -20px rgba(60,30,10,0.18);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
@media (max-width: 640px) {
  .sticky-bar { padding: 10px 0; }
  .sticky-bar-inner { grid-template-columns: 1fr auto; gap: 12px; }
  .sticky-thumb { display: none; }
  .sticky-info .t { font-size: 15px; }
  .sticky-info .p { font-size: 11px; }
  .sticky-bar .btn { padding: 12px 16px; font-size: 13px; min-height: 44px; }
}
.sticky-thumb {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: var(--bg-deep);
  background-image: url("https://www.evenutrition.de/cdn/shop/files/Packaging-Hero.jpg?v=1764091287&width=200");
  background-size: cover;
  background-position: center;
}
.sticky-info { line-height: 1.25; min-width: 0; }
.sticky-info .t { font-family: var(--serif); font-size: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-info .p { font-size: 13px; color: var(--ink-mute); }
.sticky-info .p strong { color: var(--ink); font-weight: 700; }
.sticky-info .p s { color: var(--ink-mute); }

/* ───── Quote card ───── */
.quote-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--rule);
}
.quote-card .stars {
  display: flex; gap: 2px; margin-bottom: 12px;
  color: var(--butter-deep);
  font-size: 14px;
}
.quote-card .quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.quote-card .who {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}
.quote-card .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rose);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px; color: var(--cocoa-deep);
}
.quote-card .who strong { color: var(--ink); font-weight: 500; }

/* ───── Cellebrities Strip ───── */
.celebrity {
  display: flex; gap: 16px; align-items: flex-start;
}
.celebrity-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background-image: linear-gradient(135deg, var(--rose), var(--cocoa));
  flex: none;
}
.celebrity-quote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 8px;
}
.celebrity-name {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ───── Marquee dividers ───── */
.divider-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.divider-eyebrow .line {
  flex: 1; height: 1px; background: var(--rule);
}
.divider-eyebrow .label-mono { flex: none; }

/* ───── Footer ───── */
.footer {
  background: var(--cocoa-deep);
  color: var(--bg-elevated);
  padding: 80px 0 32px;
}
.footer a:hover { color: var(--butter); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h5 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; margin: 0 0 16px;
  color: var(--butter);
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-legal {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,252,244,0.12);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(255,252,244,0.6);
}

/* ───── Toast ───── */
.toast {
  position: fixed; top: 88px; right: 24px;
  background: var(--ink); color: var(--paper);
  padding: 14px 18px; border-radius: 8px;
  font-size: 14px;
  z-index: 60;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
  transform: translateX(140%);
  transition: transform 320ms cubic-bezier(.2,.8,.3,1);
}
.toast.visible { transform: translateX(0); }

.hero-gallery { position: sticky; top: 96px; min-width: 0; }
.hero-thumb { transition: border-color 180ms ease; flex: 0 0 auto; width: 64px; scroll-snap-align: start; }
.hero-thumb-row { display: flex; gap: 10px; min-width: 0; max-width: 100%; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--ink) transparent; padding-bottom: 4px; }
.hero-thumb-row::-webkit-scrollbar { height: 5px; }
.hero-thumb-row::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 999px; }
.hero-nav-btn { transition: background 160ms ease, opacity 160ms ease; opacity: 0; }
.hero-main-img:hover .hero-nav-btn, .hero-main-img:focus-within .hero-nav-btn { opacity: 1; }
@media (hover: none) { .hero-nav-btn { opacity: 1; } }

/* ───── Hero social proof bubble ───── */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  padding: 5px 14px 5px 6px;
  margin-bottom: 22px;
  align-self: flex-start;
}
.hero-social-proof-avatars {
  display: inline-flex;
  flex: none;
}
.hero-social-proof-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--paper);
  background: var(--bg-deep);
}
.hero-social-proof-avatars img + img { margin-left: -9px; }
.hero-social-proof-avatars img:nth-child(1) { object-position: 50% 30%; }
.hero-social-proof-avatars img:nth-child(2) { object-position: 70% 50%; }
.hero-social-proof-text {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.3;
  text-wrap: pretty;
}
.hero-social-proof-text strong {
  color: var(--ink-soft);
  font-weight: 700;
}
@media (max-width: 480px) {
  .hero-social-proof { padding: 4px 12px 4px 5px; gap: 8px; }
  .hero-social-proof-avatars img { width: 24px; height: 24px; }
  .hero-social-proof-avatars img + img { margin-left: -8px; }
  .hero-social-proof-text { font-size: 11.5px; }
}
@media (max-width: 900px) {
  .hero-gallery { position: static; top: auto; gap: 4px !important; }
  .hero-gallery > div:last-child { gap: 6px !important; }
  .hero-thumb { border-radius: 6px !important; }
  .hero-thumb-row { max-width: none; gap: 8px !important; margin-top: 4px; }
  .hero-thumb { width: 60px !important; }
  /* Collapse the column gap so the chip sits right under the gallery */
  section:first-of-type .grid-2 { gap: 8px !important; }
  /* Hero section: minimal top padding so first-content sits right under nav */
  section:first-of-type { padding: 4px 0 28px !important; }
  /* Tighten hero spacing on mobile so the bubble reaches above the fold */
  section > .container > .grid-2 > div:last-child .chip-butter { margin-bottom: 6px !important; margin-top: 6px !important; }
  section > .container > .grid-2 > div:last-child h1.h-display { margin: 0 0 6px !important; }
  /* Compact hero image — true square, full mobile width */
  .hero-gallery .product-img:first-child { aspect-ratio: 1 / 1 !important; max-height: none !important; }
  /* Headline stays bold/large per spec */
  h1.h-display { font-size: 30px !important; line-height: 1.12 !important; letter-spacing: -0.012em !important; }
  .chip { font-size: 10px !important; padding: 4px 10px !important; }
  /* Subhead compact */
  section:first-of-type .grid-2 > div:last-child > p:first-of-type,
  section:first-of-type p[style*="textWrap"] { font-size: 14.5px !important; line-height: 1.4 !important; margin: 0 0 10px !important; }
  /* Hide the lede paragraph on mobile — adds 4-5 lines of text between headline and the bubble */
  .lede { display: none !important; }
  /* Stars tighter */
  section:first-of-type [data-stars-row],
  section:first-of-type > .container > .grid-2 > div:last-child > div[style*="--star"] { margin-bottom: 8px !important; }
  /* Social proof bubble: visually beef up so it earns the above-fold spot */
  .hero-social-proof { margin-top: 0 !important; margin-bottom: 14px !important; padding: 10px 12px !important; }
  .hero-social-proof-text { font-size: 12.5px !important; line-height: 1.35 !important; }
  .label-mono { white-space: normal; }
  .divider-eyebrow .label-mono { white-space: normal; text-align: center; }
  /* Promo bar slimmer on mobile to save above-fold real estate */
  .promo-bar { height: 30px !important; font-size: 11.5px !important; }
  .promo-track { gap: 32px !important; padding-left: 32px !important; }
  /* Hero image goes edge-to-edge on mobile (negative margin cancels container padding) — perfect square, full width */
  .hero-gallery .hero-main-img { margin-left: -16px !important; margin-right: -16px !important; border-radius: 0 !important; aspect-ratio: 1 / 1 !important; max-height: none !important; width: calc(100% + 32px) !important; }
  .hero-gallery .hero-main-img > img { border-radius: 0 !important; }
  /* Tighter container padding on mobile */
  .container { padding: 0 16px !important; }
  /* Header / nav: tighter on mobile */
  .nav-inner { height: 56px !important; }
  .nav-logo img { height: 32px !important; }
  .nav-icons { gap: 14px !important; }
}
@media (max-width: 480px) {
  h1.h-display { font-size: 28px !important; }
  .hero-gallery .product-img:first-child { aspect-ratio: 1 / 1 !important; max-height: none !important; }
  .hero-thumb-row { max-width: none; }
  .hero-thumb { width: 54px !important; }
  /* Make thumbnails compact so they don't eat fold space */
  .hero-thumb { aspect-ratio: 1/1; }
}
.hide-md { }
@media (max-width: 1180px) {
  .hide-md { display: none; }
}
@media (max-width: 900px) {
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--rule); }
  .trust-item:last-child { border-bottom: 0; }

  /* ── Tier card: reflow to a 2-row layout on mobile ── */
  .tier-card {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "thumb body"
      "price price";
    gap: 10px 14px;
    padding: 12px 14px;
  }
  .tier-card.selected { padding: 11.5px 13.5px; }
  .tier-card .tier-thumb { grid-area: thumb; width: 64px; height: 56px; }
  .tier-card .tier-body { grid-area: body; min-width: 0; }
  .tier-card .tier-title { font-size: 16px; }
  .tier-card .tier-sub { font-size: 12.5px; }
  .tier-card .tier-right {
    grid-area: price;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 10px;
    text-align: left;
    padding-top: 10px;
    margin-top: 2px;
    border-top: 1px dashed var(--rule);
    width: 100%;
  }
  .tier-card .tier-right .price { font-size: 22px; }
  .tier-card .tier-right .strike { order: 2; }
  .tier-card .tier-right .price { order: 1; }
  .tier-card .tier-right .unit { order: 3; margin-left: auto; }
  .tier-card .tier-right > div:last-child:not(.strike):not(.price):not(.unit) {
    order: 4;
    margin-left: auto;
    text-align: left;
    max-width: 100%;
  }
  /* Coffee-anchor box: keep visible but constrain so it never pushes the column out */
  .tier-card .tier-right > div[style*="butter"],
  .tier-card .tier-right > div[style*="--butter"] {
    margin-left: auto;
  }
  .tier-coffee-anchor {
    order: 4;
    margin-top: 0 !important;
    margin-left: auto !important;
    text-align: left !important;
    max-width: 100%;
    font-size: 11px !important;
    padding: 5px 8px !important;
  }
}

/* utility */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-2 > *, .grid-2-tight > * { min-width: 0; }
.hero-buy-row > * { min-width: 0; }
@media (max-width: 480px) {
  .hero-buy-row { grid-template-columns: 1fr !important; }
}
.grid-2-tight { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 900px) {
  .grid-2, .grid-2-tight { grid-template-columns: 1fr; gap: 32px; }
}
.stack-sm > * + * { margin-top: 8px; }
.stack-md > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 28px; }
.muted { color: var(--ink-mute); }
.serif-it { font-family: var(--serif); font-style: normal; color: var(--ink); font-weight: 700; }
em { font-style: normal; }

/* ───── Flavor picker ───── */
.flavor-picker {
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 4px;
}
.flavor-picker-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.flavor-mode-toggle {
  display: inline-flex;
  padding: 3px;
  background: var(--bg-elevated);
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  gap: 0;
}
.flavor-mode-btn {
  padding: 7px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
  font-weight: 700;
}
.flavor-mode-btn.active {
  background: var(--ink);
  color: var(--paper);
}
.flavor-mode-btn:not(.active):hover {
  color: var(--ink);
}
.flavor-picker-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.flavor-summary-plus {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-mute);
  line-height: 1;
}
.flavor-picker-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin: 4px 0 0;
  color: var(--ink);
}
.flavor-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: var(--radius-pill);
  background: var(--bg-elevated);
  border: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.25;
}
.flavor-summary-pill strong {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 700;
  margin-top: 1px;
}
.flavor-summary-pill--main { border-color: var(--ink); }
.flavor-summary-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid;
  flex: none;
}

.flavor-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.flavor-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 8px 10px;
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, transform 120ms ease, background 180ms ease;
  position: relative;
}
.flavor-tile:hover {
  border-color: var(--ink-mute);
  transform: translateY(-1px);
}
.flavor-tile--main {
  border-color: var(--ink);
  border-width: 2px;
  padding: 7px 7px 9px;
  background: var(--bg-elevated);
}
.flavor-tile--secondary {
  border-color: var(--cocoa);
  border-style: dashed;
  background: var(--bg-elevated);
}
.flavor-tile-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  overflow: hidden;
  display: block;
}
.flavor-tile-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flavor-tile-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  border: 1.5px solid #fff;
  box-shadow: 0 4px 10px rgba(60,30,10,0.25);
}
.flavor-tile-badge--main {
  background: var(--ink);
  color: #fff;
}
.flavor-tile-badge--sec {
  background: var(--paper);
  color: var(--ink);
}
.flavor-tile-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 2px;
}
.flavor-tile-name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
.flavor-tile-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  line-height: 1.3;
}
.flavor-picker-hint {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.45;
}
.flavor-picker-hint strong {
  color: var(--ink-soft);
  font-weight: 700;
}
.flavor-picker-hint svg {
  flex: none;
  margin-top: 1px;
  color: var(--ink-mute);
}

@media (max-width: 720px) {
  .flavor-tiles { grid-template-columns: repeat(3, 1fr); }
  .flavor-picker-head { flex-direction: column; align-items: flex-start; }
  .flavor-picker-summary { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 420px) {
  .flavor-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* ───── Intro video modal ───── */
.intro-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: color-mix(in oklch, var(--ink) 62%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: intro-fade-in 0.3s ease both;
}
.intro-modal-overlay.closing { animation: intro-fade-out 0.24s ease both; }
.intro-modal {
  position: relative;
  width: min(420px, 100%);
  border-radius: 22px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
  animation: intro-pop-in 0.34s cubic-bezier(0.22,1,0.36,1) both;
}
.intro-modal.closing { animation: intro-pop-out 0.24s ease both; }
.intro-modal-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(78vh, 720px);
  background: #000;
}
.intro-modal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-modal-overlay-grad {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(18,12,8,0.92) 0%, rgba(18,12,8,0.55) 26%, rgba(18,12,8,0) 52%);
}
.intro-modal-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.intro-modal-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,252,244,0.72);
}
.intro-modal-headline {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.intro-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  box-shadow: 0 10px 26px -8px color-mix(in oklch, var(--green) 70%, transparent);
}
.intro-modal-cta:hover { background: var(--green-deep); transform: translateY(-1px); }
.intro-modal-cta svg { transition: transform 0.15s ease; }
.intro-modal-cta:hover svg { transform: translateX(3px); }
.intro-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.15s ease;
}
.intro-modal-close:hover { background: rgba(0,0,0,0.62); }
.intro-modal-mute {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.15s ease;
}
.intro-modal-mute:hover { background: rgba(0,0,0,0.62); }
@keyframes intro-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes intro-fade-out { from { opacity: 1; } to { opacity: 0; } }
@keyframes intro-pop-in {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes intro-pop-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(10px) scale(0.97); }
}
@media (max-width: 480px) {
  .intro-modal-overlay { padding: 14px; }
  .intro-modal-headline { font-size: 24px; }
  .intro-modal-content { padding: 24px 20px 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .intro-modal-overlay, .intro-modal { animation-duration: 0.01ms !important; }
}

/* ═══════════════ Advertorial / Listicle (pre-sell) ═══════════════ */
.adv { background: var(--paper); padding: 52px 0 60px; border-bottom: 1px solid var(--rule); }
.adv-wrap { max-width: 730px; margin: 0 auto; padding: 0 22px; }
.adv-flag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); border: 1px solid var(--rule); padding: 5px 11px; border-radius: 999px; }
.adv-flag .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--green); display: inline-block; }
.adv-h1 { font-size: clamp(30px, 5.2vw, 47px); line-height: 1.07; letter-spacing: -0.022em; font-weight: 700; margin: 18px 0 14px; color: var(--ink); text-wrap: balance; }
.adv-h1 .hl { background: linear-gradient(transparent 58%, var(--butter-deep) 58%); padding: 0 2px; }
.adv-dek { font-size: clamp(17px, 2.2vw, 20px); line-height: 1.45; color: var(--ink-soft); margin: 0 0 22px; text-wrap: pretty; }
.adv-byline { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 26px; }
.adv-byline.adv-byline-sm { gap: 9px; padding: 11px 0 0; border-top: 0; border-bottom: 1px solid var(--rule); margin-bottom: 30px; }
.adv-byline.adv-byline-sm .adv-avatar { width: 32px; height: 32px; font-size: 12px; }
.adv-byline.adv-byline-sm .adv-byline-meta strong { font-size: 12.5px; }
.adv-byline.adv-byline-sm .adv-byline-meta span { font-size: 11px; }
.adv-avatar { width: 44px; height: 44px; border-radius: 999px; background: var(--butter-deep); color: var(--ink); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex: 0 0 auto; }
.adv-byline-meta strong { display: block; font-size: 14.5px; color: var(--ink); }
.adv-byline-meta span { font-size: 12.5px; color: var(--ink-mute); }
.adv-lead { border-radius: 13px; overflow: hidden; margin: 0 0 14px; aspect-ratio: 16/10; background: var(--bg-deep); }
.adv-lead img { width: 100%; height: 100%; object-fit: cover; display: block; }
.adv-body p { font-size: 17.5px; line-height: 1.62; color: var(--ink); margin: 0 0 18px; text-wrap: pretty; }
.adv-body p .hl { background: linear-gradient(transparent 60%, var(--butter) 60%); padding: 0 1px; }
.adv-body strong { font-weight: 700; }
.adv-kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); margin: 40px 0 4px; }
.adv-section-h { font-size: clamp(23px, 3.2vw, 31px); font-weight: 700; letter-spacing: -0.012em; line-height: 1.12; margin: 4px 0 8px; color: var(--ink); text-wrap: balance; }
.adv-item { padding: 26px 0; border-top: 1px solid var(--rule-soft); }
.adv-item:first-of-type { border-top: 0; }
.adv-item-head { display: flex; align-items: baseline; gap: 14px; }
.adv-item-num { font-size: 46px; font-weight: 700; line-height: 0.9; color: var(--butter-deep); flex: 0 0 auto; font-variant-numeric: tabular-nums; }
.adv-item-h { font-size: 21px; font-weight: 700; line-height: 1.18; margin: 0; color: var(--ink); }
.adv-item p { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 12px 0 0; }
.adv-item p strong { color: var(--ink); }
.adv-figure { margin: 18px auto 0; border-radius: 11px; overflow: hidden; border: 1px solid var(--rule-soft); max-width: 470px; }
.adv-figure.wide { max-width: 100%; }
.adv-figure img { width: 100%; display: block; }
.adv-reviews { background: var(--bg-soft); border-radius: 15px; padding: 24px 24px 8px; margin: 34px 0; }
.adv-reviews-h { font-size: 13px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 4px; }
.adv-review { padding: 16px 0; border-bottom: 1px solid rgba(74,58,51,0.1); }
.adv-review:last-child { border-bottom: 0; }
.adv-stars { color: var(--star); letter-spacing: 3px; font-size: 15px; }
.adv-review p { font-size: 16.5px; line-height: 1.5; color: var(--ink); margin: 8px 0 6px; }
.adv-review cite { font-size: 13.5px; color: var(--ink-mute); font-style: normal; }
.adv-cta-box { background: linear-gradient(160deg, var(--bg-deep), var(--bg-elevated)); border: 1px solid var(--rule); border-radius: 18px; padding: 34px 28px; text-align: center; margin: 36px 0 0; }
.adv-cta-box h3 { font-size: clamp(22px, 3vw, 27px); font-weight: 700; letter-spacing: -0.012em; margin: 0 0 8px; color: var(--ink); text-wrap: balance; }
.adv-cta-box > p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.5; margin: 0 auto 20px; max-width: 460px; text-wrap: pretty; }
.adv-cta-box .btn { font-size: 17px; }
.adv-cta-sub { font-size: 13px; color: var(--ink-mute); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; flex-wrap: wrap; }
.adv-disclaimer { font-size: 11.5px; color: var(--ink-mute); line-height: 1.5; margin: 26px 0 0; }
.adv-quote { border-left: 3px solid var(--butter-deep); padding: 4px 0 4px 20px; margin: 24px 0; font-size: 20px; line-height: 1.4; font-style: italic; color: var(--ink); }
.adv-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0 4px; }
.adv-chip { font-size: 13.5px; font-weight: 600; background: var(--bg-deep); border: 1px solid var(--rule); border-radius: 999px; padding: 7px 14px; color: var(--ink-soft); }
.adv-chip b { color: var(--ink); }
.adv-claim { font-size: 13px; line-height: 1.5; color: var(--ink-soft); background: rgba(255,232,204,.5); border-radius: 8px; padding: 11px 14px; margin: 16px 0 2px; }
.adv-claim b { color: var(--ink); }
.adv-source { font-size: 12px; line-height: 1.5; color: var(--ink-mute); margin: 18px 0 2px; padding-top: 12px; border-top: 1px solid var(--rule-soft); }
.adv-chart { background: var(--bg-deep); border: 1px solid var(--rule); border-radius: 14px; padding: 24px 22px 20px; margin: 22px 0 4px; }
.adv-chart-head { display: flex; flex-direction: column; gap: 3px; margin-bottom: 18px; }
.adv-chart-title { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.adv-chart-sub { font-size: 13px; color: var(--ink-mute); }
.adv-bar-row { margin-top: 16px; }
.adv-bar-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 7px; }
.adv-bar-name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.adv-bar-dose { font-size: 12.5px; color: var(--ink-mute); white-space: nowrap; }
.adv-bar-track { background: rgba(74,58,51,0.08); border-radius: 9px; height: 42px; overflow: hidden; }
.adv-bar-fill { height: 100%; border-radius: 9px; display: flex; align-items: center; justify-content: flex-end; padding: 0 15px; transition: width 1.15s cubic-bezier(0.16,1,0.3,1); }
.adv-bar-fill.muted { background: linear-gradient(90deg, #E4D7C8, #CFC0AE); }
.adv-bar-fill.hl { background: linear-gradient(90deg, var(--butter-deep), #E8A84F); }
.adv-bar-grams { font-size: 16px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.adv-chart-foot { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); margin: 18px 0 0; font-style: italic; }
@media (prefers-reduced-motion: reduce) { .adv-bar-fill { transition: none; } }
.adv-softcta { margin: 30px 0; padding: 26px 24px; border-radius: 15px; background: var(--ink); color: var(--paper); text-align: center; }
.adv-softcta p { font-size: 19px; font-style: italic; line-height: 1.4; margin: 0 0 16px; color: var(--paper); }
@media (max-width: 600px) {
  .adv { padding: 30px 0 40px; }
  .adv-wrap { padding: 0 18px; }
  .adv-body p { font-size: 16.5px; }
  .adv-item-num { font-size: 38px; }
  .adv-item-h { font-size: 19px; }
  .adv-lead { aspect-ratio: 4/3; margin-bottom: 22px; }
}
