/* ══════════════════════════════════════════
   ROLLFONDANT — Design System
   ══════════════════════════════════════════ */
@font-face {
  font-family: 'Google Sans Flex';
  src: url('../fonts/GoogleSansFlex.woff2') format('woff2');
  font-weight: 1 1000;
  font-stretch: 25% 151%;
  font-display: swap;
}
@font-face {
  font-family: 'Neulis Cursive';
  src: url('../fonts/Neulis.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

:root {
  --white: #FFFFFF;
  --cream: #f7f3ee;          /* matches video background */
  --ink: #17120e;
  --ink-soft: #57504a;
  --pink: #F42273;
  --pink-soft: #FF8CE9;
  --orange: #FF5309;
  --yellow: #FFF711;
  --green: #59FF00;
  --font-body: 'Google Sans Flex', system-ui, sans-serif;
  --font-brand: 'Neulis Cursive', cursive;
  --squish: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Brand word — Neulis with −9% letter-spacing so the double L flows handwritten */
.brand {
  font-family: var(--font-brand);
  font-weight: 400;
  letter-spacing: -0.09em;
}
.accent-pink { color: var(--pink); }
.accent-orange { color: var(--orange); }
.accent-green { color: #2ecc00; }

::selection { background: var(--pink-soft); color: var(--ink); }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 640;
  padding: 1em 1.9em;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .45s var(--squish), background .25s, color .25s, border-color .25s, box-shadow .3s;
  will-change: transform;
}
.btn:hover { transform: scale(1.045); }
.btn:active { transform: scale(0.955); transition-duration: .12s; }
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(244, 34, 115, .55);
}
.btn-primary:hover { box-shadow: 0 16px 40px -8px rgba(244, 34, 115, .6); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-light { background: #fff; color: var(--pink); box-shadow: 0 12px 34px -10px rgba(0,0,0,.35); }
.btn-small { font-size: .9rem; padding: .68em 1.4em; }
.btn-big { font-size: 1.2rem; padding: 1.1em 2.4em; }
.pulse { animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(244,34,115,.55); }
  50% { box-shadow: 0 10px 44px -4px rgba(244,34,115,.85); }
}

/* ═══════════ LOADER ═══════════ */
#loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease-out), visibility .7s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-roll {
  width: 64px; height: 26px; margin: 0 auto 22px;
  background: var(--pink);
  border-radius: 999px;
  animation: roll-squish 1.1s var(--squish) infinite alternate;
}
@keyframes roll-squish {
  from { transform: scaleX(1) scaleY(1) rotate(-6deg); border-radius: 999px; }
  to   { transform: scaleX(.72) scaleY(1.5) rotate(6deg); border-radius: 44%; }
}
.loader-brand { font-size: clamp(2.4rem, 6vw, 4rem); color: var(--ink); }
.loader-track {
  width: 220px; height: 4px; margin: 26px auto 12px;
  background: rgba(23,18,14,.1); border-radius: 99px; overflow: hidden;
}
#loader-bar { height: 100%; width: 0%; background: var(--pink); border-radius: 99px; transition: width .2s; }
#loader-percent { font-size: .85rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .08em; }

/* ═══════════ HEADER ═══════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: background .4s, box-shadow .4s, padding .4s;
}
.site-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.62), rgba(255,255,255,0));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.site-header.scrolled::before { opacity: 1; }
.site-header.scrolled { padding-top: .7rem; padding-bottom: .7rem; }
.site-header.on-dark .header-logo,
.site-header.on-dark .header-nav a { color: #fff; }
.site-header.on-dark .header-nav a::after { background: var(--yellow); }
.site-header.on-dark::before { background: linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,0)); }
.header-logo, .header-nav, .site-header .btn { position: relative; z-index: 1; }
.header-logo {
  font-size: 1.7rem; color: var(--ink); text-decoration: none;
  transition: color .25s;
}
.header-logo:hover { color: var(--pink); }
.header-nav { display: flex; gap: clamp(.8rem, 2vw, 1.8rem); }
.header-nav a {
  color: var(--ink); text-decoration: none; font-size: .95rem; font-weight: 560;
  padding: .3em .1em; position: relative;
}
.header-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--pink); border-radius: 2px;
  transition: right .35s var(--squish);
}
.header-nav a:hover::after { right: 0; }

/* ── header actions + hamburger (mobile) ─────────────────────────────── */
.header-actions { display: flex; align-items: center; gap: .7rem; position: relative; z-index: 1; }
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: none; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0; border-radius: 10px;
}
.menu-toggle span {
  display: block; width: 21px; height: 2.5px; border-radius: 2px;
  background: var(--ink);
  transition: transform .4s var(--squish), opacity .25s, background .25s;
}
.site-header.on-dark .menu-toggle span { background: #fff; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
/* menu stays dark-on-cream once open, regardless of what's behind the header */
.menu-toggle[aria-expanded="true"] span { background: var(--ink) !important; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 400;
  background: var(--cream);
  display: flex; flex-direction: column;
  padding: clamp(5.5rem, 18vh, 7rem) clamp(1.2rem, 6vw, 2rem) 2.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease-out), visibility .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .3rem; margin-bottom: auto; }
.mobile-menu nav a {
  color: var(--ink); text-decoration: none;
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 7vw, 2.1rem);
  font-weight: 720;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.02em;
  padding: .5em 0;
  border-bottom: 1px solid rgba(23,18,14,.08);
  opacity: 0; transform: translateY(14px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), color .2s;
}
.mobile-menu.is-open nav a { opacity: 1; transform: none; }
.mobile-menu nav a:nth-child(1) { transition-delay: .05s; }
.mobile-menu nav a:nth-child(2) { transition-delay: .09s; }
.mobile-menu nav a:nth-child(3) { transition-delay: .13s; }
.mobile-menu nav a:nth-child(4) { transition-delay: .17s; }
.mobile-menu nav a:nth-child(5) { transition-delay: .21s; }
.mobile-menu nav a:nth-child(6) { transition-delay: .25s; }
.mobile-menu nav a:nth-child(7) { transition-delay: .29s; }
.mobile-menu nav a:nth-child(8) { transition-delay: .33s; }
.mobile-menu nav a:active { color: var(--pink); }
.mobile-menu-cta {
  width: 100%;
  opacity: 0; transform: translateY(14px);
  transition: opacity .4s var(--ease-out) .36s, transform .4s var(--ease-out) .36s;
}
.mobile-menu.is-open .mobile-menu-cta { opacity: 1; transform: none; }

/* ── language switcher ──────────────────────────────────────────────── */
.lang-switch {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 650;
}
.lang-switch .lang-current { color: var(--ink); }
.lang-switch .lang-divider { color: rgba(23,18,14,.25); }
.lang-switch a { color: var(--ink-soft); text-decoration: none; transition: color .2s; }
.lang-switch a:hover { color: var(--pink); }
.site-header.on-dark .lang-switch .lang-current { color: #fff; }
.site-header.on-dark .lang-switch a { color: rgba(255,255,255,.72); }
.site-header.on-dark .lang-switch .lang-divider { color: rgba(255,255,255,.3); }
.lang-switch-mobile {
  justify-content: center; margin-top: 1.4rem;
  font-size: .95rem;
  opacity: 0; transform: translateY(14px);
  transition: opacity .4s var(--ease-out) .4s, transform .4s var(--ease-out) .4s;
}
.mobile-menu.is-open .lang-switch-mobile { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .header-actions .lang-switch { display: none; }
}

@media (min-width: 901px) {
  .mobile-menu, .menu-toggle { display: none !important; }
}
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
}

/* ═══════════ HERO ═══════════ */
.hero-standalone {
  position: relative; z-index: 5;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  background: transparent;
  padding: clamp(5.5rem, 11vh, 8rem) clamp(1.2rem, 5vw, 4rem) 5.5rem;
}
.hero-grid { max-width: 1280px; width: 100%; margin: 0 auto; position: relative; z-index: 7; }
.hero-copy { max-width: min(680px, 54vw); }
.eyebrow-pill {
  display: inline-block;
  background: rgba(244,34,115,.1);
  color: var(--pink);
  font-size: .85rem; font-weight: 660; letter-spacing: .02em;
  padding: .5em 1.2em; border-radius: 999px;
  margin-bottom: 1.3rem;
}
.hero-heading {
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
  font-weight: 760;
  font-variation-settings: 'opsz' 144, 'wdth' 100;
  line-height: 1.03;
  letter-spacing: -0.028em;
  margin-bottom: 1.3rem;
}
.hero-heading .brand {
  font-weight: 400;
  font-size: 1.02em;
  letter-spacing: -0.09em;
}
.hero-heading .w { display: inline-block; }
.hero-du {
  color: var(--orange);
  position: relative;
}
.hero-tagline {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 30em;
  margin-bottom: 1.9rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.3rem; }
.hero-trust {
  display: flex; align-items: center; gap: .7rem;
  font-size: .95rem; color: var(--ink-soft); font-weight: 540;
  margin-bottom: 1.7rem;
}
.stars { color: var(--orange); letter-spacing: .12em; font-size: 1.05rem; }

/* Blob colour dots — signature interaction */
.hero-blobs { display: flex; gap: .9rem; align-items: center; }
.blob {
  width: 44px; height: 40px;
  background: var(--c);
  border: none; cursor: pointer;
  border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%;
  transition: transform .5s var(--squish), border-radius .5s var(--squish), box-shadow .3s;
  box-shadow: inset -4px -6px 10px rgba(0,0,0,.12), inset 4px 5px 8px rgba(255,255,255,.45);
}
.blob:hover {
  transform: scale(1.22) rotate(-8deg);
  border-radius: 56% 44% 42% 58% / 45% 58% 42% 55%;
}
.blob:active { transform: scale(0.9); }
.blob:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

.scroll-indicator {
  position: absolute; z-index: 7; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 640; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.scroll-arrow {
  width: 2px; height: 42px;
  background: linear-gradient(var(--pink), transparent);
  border-radius: 2px;
  animation: drip 1.6s var(--ease-out) infinite;
}
@keyframes drip {
  0% { transform: scaleY(.2); transform-origin: top; opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(10px); opacity: 0; }
}

/* Confetti */
.hero-confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.confetti-bit {
  position: absolute;
  width: 9px; height: 14px;
  border-radius: 3px;
  opacity: 0;
}

/* ═══════════ CANVAS + OVERLAYS ═══════════ */
.canvas-wrap {
  position: fixed; inset: 0; z-index: 3;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 74% 52%, #000 0%, transparent 6%);
  mask-image: radial-gradient(circle at 74% 52%, #000 0%, transparent 6%);
}
#canvas { width: 100%; height: 100%; display: block; }

#dark-overlay {
  position: fixed; inset: 0; z-index: 7;
  background: #14100d;
  opacity: 0; pointer-events: none;
}

/* The stage dissolves to white under the closing CTA, which keeps the
   headline legible over the cake and hands off cleanly to the page below. */
#light-veil {
  position: fixed; inset: 0; z-index: 7;
  background: #fff;
  opacity: 0; pointer-events: none;
}

.marquee-wrap {
  position: fixed; top: 78%; left: 0; right: 0; z-index: 4;
  transform: translateY(-50%);
  overflow: hidden; pointer-events: none;
  opacity: 0;
  transition: opacity .5s;
}
.marquee-text {
  white-space: nowrap;
  font-size: 13vw;
  color: rgba(23,18,14,.055);
  line-height: 1;
  will-change: transform;
}

/* ═══════════ AI TRANSPARENCY LABELS (Art. 50 EU AI Act) ═══════════ */
/* Sits on the footage itself, not in a caption, so it survives a screenshot. */
#ai-badge {
  position: fixed; z-index: 9;
  right: clamp(1rem, 3vw, 2.2rem);
  bottom: clamp(1rem, 3vh, 1.8rem);
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .76rem; font-weight: 640; letter-spacing: .04em;
  color: #2b241e;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(23, 18, 14, .14);
  padding: .48em 1em;
  border-radius: 999px;
  pointer-events: none;
  transition: opacity .4s, color .3s, background .3s, border-color .3s;
}
#ai-badge[hidden] { display: none; }
#ai-badge .ai-icon { height: 1.05em; width: auto; display: block; }
#ai-badge .dark-bg, #ai-badge.on-dark .light-bg { display: none; }
#ai-badge.on-dark .dark-bg { display: block; }
#ai-badge.on-dark {
  color: #fff;
  background: rgba(0, 0, 0, .46);
  border-color: rgba(255, 255, 255, .3);
}
#ai-badge.on-dark span { color: var(--yellow); }
#ai-badge[hidden] { display: none; }

.ai-tag {
  position: absolute; z-index: 2;
  top: .7rem; left: .7rem;
  font-size: .68rem; font-weight: 680; letter-spacing: .05em;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(23, 18, 14, .16);
  padding: .34em .42em;
  border-radius: 999px;
  line-height: 0;
  pointer-events: none;
}
.flavour-face .ai-tag img { height: 13px; width: 13px; object-fit: contain; display: block; }
.ai-inline { height: .95em; width: auto; vertical-align: -.1em; margin: 0 .1em; }
.ai-note { font-size: .86rem; color: var(--ink-soft); }

/* ═══════════ SCROLL EXPERIENCE ═══════════ */
#scroll-container {
  position: relative; z-index: 8;
  height: 820vh;
  pointer-events: none;
}
.scroll-section {
  position: absolute; left: 0; right: 0;
  transform: translateY(-50%);
  pointer-events: auto;
}
.align-left  { padding-left: 6vw; padding-right: 55vw; }
.align-right { padding-left: 55vw; padding-right: 6vw; }
.align-left .section-inner,
.align-right .section-inner { max-width: 40vw; }

/* Sits the copy above the chocolate drops in the closing shot. */
.scroll-section.lift { padding-left: 58vw; }
.scroll-section.lift .section-inner { transform: translateY(-13vh); }
@media (max-width: 768px) {
  .scroll-section.lift { padding-left: 6vw; padding-right: 6vw; }
  .scroll-section.lift .section-inner { transform: none; }
}

.section-label {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .82rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.section-label .dot {
  width: 12px; height: 11px; display: inline-block;
  background: var(--c);
  border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%;
}
.section-heading {
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  font-weight: 740;
  font-variation-settings: 'opsz' 144;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.section-body {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 480;
}

/* Stats — only section allowed centred, on dark overlay */
.section-stats { text-align: center; padding: 0 6vw; }
.stats-heading { color: #fff; font-size: clamp(1.8rem, 3.4vw, 3.2rem); margin-bottom: 3rem; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 3vw, 3rem);
  max-width: 1180px; margin: 0 auto;
}
.stat { color: #fff; }
.stat-row { display: flex; align-items: baseline; justify-content: center; gap: .1em; }
.stat-number {
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  font-weight: 800;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.02em;
  color: var(--yellow);
}
.stat-suffix { font-size: clamp(1.4rem, 2.4vw, 2.2rem); font-weight: 750; color: var(--yellow); }
.stat-label { display: block; margin-top: .5rem; font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.45; }

/* CTA in scroll flow */
.section-cta { text-align: center; padding: 0 6vw; }
.cta-inner { max-width: 900px; margin: 0 auto; }
.centered-label { justify-content: center; color: var(--pink); }
.cta-heading {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 780;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.03em;
  line-height: 1.03;
  margin-bottom: 2.2rem;
}
.cta-note { margin-top: 1.3rem; color: var(--ink-soft); font-size: .95rem; }

/* ═══════════ AFTER CONTENT ═══════════ */
.after-content { position: relative; z-index: 10; background: var(--white); }
.section { padding: clamp(5rem, 11vh, 9rem) clamp(1.2rem, 5vw, 4rem); }
.container { max-width: 1280px; margin: 0 auto; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }
.h2 {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  font-weight: 750;
  font-variation-settings: 'opsz' 144;
  line-height: 1.06;
  letter-spacing: -0.026em;
  margin-bottom: 1.1rem;
}
.h2 .brand { font-weight: 400; }
.sub { font-size: clamp(1rem, 1.4vw, 1.25rem); color: var(--ink-soft); line-height: 1.55; margin-bottom: 3rem; }
.reviews-lang-note { display: inline-block; margin-top: .5rem; font-size: .82rem; font-style: italic; opacity: .75; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(46px); }
.reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* Problem / Solution */
.problem-section { background: var(--white); padding-top: clamp(6rem, 13vh, 10rem); }
.split { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.problem-col { position: relative; }
/* Reads first: bigger than the standard .h2 so "Kennst du das?" lands
   before "Schluss damit!" in visual weight, even though both are
   technically h2s. The bubbles (the pain points) sit right underneath it. */
.problem-heading {
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
  margin-bottom: 1.8rem;
}
.bubbles { display: flex; flex-direction: column; gap: 1rem; margin-top: 0; }
.bubble {
  background: #f4f0ea;
  border-radius: 22px 22px 22px 6px;
  padding: 1.05rem 1.4rem;
  font-size: clamp(.98rem, 1.25vw, 1.15rem);
  font-weight: 540;
  width: fit-content;
  max-width: 92%;
  box-shadow: 0 4px 14px -8px rgba(23,18,14,.18);
}
.bubble:nth-child(even) { align-self: flex-end; border-radius: 22px 22px 6px 22px; background: #fdeef5; }
.solution-col { position: relative; padding-left: clamp(1.5rem, 3vw, 3rem); }
.riss {
  position: absolute; left: -6px; top: -4%; height: 108%; width: 34px;
  overflow: visible;
}
.riss path {
  fill: none; stroke: var(--pink); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
}
.riss.is-torn path { animation: tear 1.6s var(--ease-out) forwards; }
@keyframes tear { to { stroke-dashoffset: 0; } }
.check-list { list-style: none; margin: 1.8rem 0 2.2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.check-list li {
  position: relative; padding-left: 2.3rem;
  font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.5; color: var(--ink-soft);
}
.check-list li b { color: var(--ink); }
.check-list li::before {
  content: '✓';
  position: absolute; left: 0; top: .05em;
  width: 1.55em; height: 1.5em;
  display: flex; align-items: center; justify-content: center;
  background: rgba(89,255,0,.22); color: #1f9400;
  font-weight: 800; font-size: .9em;
  border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%;
}

/* Flavours */
.flavour-section { background: var(--cream); }
.flavour-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.1rem, 2.4vw, 2rem);
  perspective: 1400px;
}
.flavour-card {
  position: relative;
  aspect-ratio: 3/4;
  border: none; background: none; padding: 0; cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .8s var(--squish);
  border-radius: 14px;
}
.flavour-card:hover:not(.flipped) { transform: translateY(-10px) rotateX(4deg) rotateY(-4deg); }
.flavour-card.flipped { transform: rotateY(180deg); }
.flavour-card:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }
.flavour-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 44px -18px rgba(23,18,14,.28);
  display: flex; flex-direction: column;
}
.flavour-face img { width: 100%; height: 100%; object-fit: cover; }
.flavour-face.back { transform: rotateY(180deg); }
.flavour-face.back img { height: 62%; object-fit: cover; }
.flavour-info {
  flex: 1; display: flex; flex-direction: column; gap: .35rem;
  align-items: flex-start; justify-content: center;
  padding: 1rem 1.2rem; text-align: left;
}
.flavour-info b { font-size: 1.15rem; font-weight: 720; }
.flavour-info span { font-size: .88rem; color: var(--ink-soft); line-height: 1.4; }
.mini-link { color: var(--pink) !important; font-weight: 700 !important; font-size: .95rem !important; }
.pack-note {
  display: inline-block;
  font-size: .78rem !important; font-weight: 640 !important;
  color: var(--ink-soft) !important;
  background: var(--cream);
  padding: .28em .7em;
  border-radius: 999px;
  margin-top: .15rem;
}

/* Sets */
.sets-section { background: var(--white); padding-right: 0; }
.sets-section .container { padding-right: clamp(1.2rem, 5vw, 4rem); }
.sets-row {
  display: flex; gap: clamp(1rem, 2vw, 1.6rem);
  overflow-x: auto;
  padding: 1rem clamp(1.2rem, 5vw, 4rem) 2.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) transparent;
}
.set-card {
  position: relative;
  flex: 0 0 clamp(240px, 24vw, 320px);
  scroll-snap-align: start;
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform .5s var(--squish), box-shadow .4s;
  box-shadow: 0 10px 30px -18px rgba(23,18,14,.25);
}
.set-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 26px 50px -22px rgba(23,18,14,.35); }
.set-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.set-name {
  display: block; padding: 1rem 1.2rem 1.2rem;
  font-weight: 680; font-size: 1.02rem;
}
.set-card .badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: var(--yellow); color: var(--ink);
  font-size: .78rem; font-weight: 760; letter-spacing: .04em;
  padding: .42em 1em; border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.25);
}
.set-card.popular { outline: 3px solid var(--yellow); outline-offset: -3px; }

/* Konfigurator */
.config-section {
  background:
    radial-gradient(110% 130% at 15% 10%, rgba(255,140,233,.32), transparent 55%),
    radial-gradient(110% 130% at 90% 95%, rgba(255,247,17,.3), transparent 55%),
    linear-gradient(160deg, #fff 0%, #ffeef7 100%);
}
.config-card {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  background: #fff;
  border-radius: 32px;
  padding: clamp(1.6rem, 4vw, 4rem);
  box-shadow: 0 40px 90px -40px rgba(244,34,115,.35);
  align-items: center;
}
.config-preview {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.config-preview img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .3s, transform .6s var(--squish);
}
.config-preview img.swap { opacity: 0; transform: scale(.94); }
.config-current { color: var(--ink-soft); margin-bottom: 1.2rem; font-size: 1.05rem; }
.config-current b { color: var(--ink); }
.swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
  gap: .6rem;
  margin-bottom: 1.8rem;
}
.swatch {
  aspect-ratio: 1;
  border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%;
  border: 3px solid transparent;
  background: var(--c);
  cursor: pointer;
  transition: transform .4s var(--squish), border-color .25s, border-radius .4s var(--squish);
  box-shadow: inset -3px -4px 8px rgba(0,0,0,.14), inset 3px 4px 6px rgba(255,255,255,.4);
}
.swatch:hover { transform: scale(1.22) rotate(-7deg); border-radius: 56% 44% 42% 58% / 45% 58% 42% 55%; }
.swatch.is-active { border-color: var(--ink); transform: scale(1.14); }
/* Flavour entries carry a photo instead of a flat colour. */
.swatch.has-icon {
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(23,18,14,.10);
}
.swatch:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.config-label { font-weight: 660; margin-bottom: .7rem; }
.weight-note { font-size: .84rem; color: var(--ink-soft); margin: -.3rem 0 .7rem; }
.weight-note[hidden] { display: none; }
.pill[hidden] { display: none; }
.weight-pills { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.pill {
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 620;
  padding: .6em 1.35em;
  background: #f3efe9; color: var(--ink);
  border: 2px solid transparent; border-radius: 999px;
  cursor: pointer;
  transition: transform .4s var(--squish), background .25s, color .25s;
}
.pill:hover { transform: scale(1.07); }
.pill:active { transform: scale(.94); }
.pill.is-active { background: var(--pink); color: #fff; }
.config-bonus { margin-top: 1.1rem; font-size: .95rem; color: var(--ink-soft); }
.config-bonus b { color: var(--pink); }
.shape-ico { display: inline-block; width: 13px; height: 13px; margin-right: .5em; vertical-align: -1px; border: 2px solid currentColor; }
.shape-ico.round { border-radius: 50%; }
.shape-ico.rect { border-radius: 3px; }
.trust-icons svg {
  width: 17px; height: 17px; margin-right: .45em; vertical-align: -3px;
  fill: none; stroke: var(--pink); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.trust-icons {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  margin-top: 1.4rem; padding-top: 1.4rem;
  border-top: 1px solid #f0ebe4;
  font-size: .86rem; color: var(--ink-soft); font-weight: 560;
}

/* Rechner */
.calc-section { background: var(--white); }
.calc-card {
  background: var(--cream);
  border-radius: 32px;
  padding: clamp(1.8rem, 4.5vw, 4.5rem);
}
.calc-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.field { margin-bottom: 1.7rem; }
.field label { display: block; font-weight: 640; margin-bottom: .7rem; font-size: 1rem; }
.field output { color: var(--pink); font-weight: 760; }
.field.hidden { display: none; }
.toggle { display: inline-flex; background: #fff; border-radius: 999px; padding: .3rem; gap: .3rem; }
.toggle button {
  font-family: var(--font-body); font-size: .95rem; font-weight: 620;
  padding: .55em 1.3em; border: none; border-radius: 999px;
  background: transparent; color: var(--ink); cursor: pointer;
  transition: transform .35s var(--squish), background .25s, color .25s;
}
.toggle button.is-active { background: var(--pink); color: #fff; }
.toggle button:active { transform: scale(.94); }
input[type=range] {
  width: 100%; height: 8px; appearance: none; -webkit-appearance: none;
  background: linear-gradient(to right, var(--pink) var(--fill, 50%), #e8e2da var(--fill, 50%));
  border-radius: 99px; outline: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 26px; height: 24px;
  background: var(--pink);
  border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px -3px rgba(244,34,115,.6);
  transition: transform .3s var(--squish);
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.25); }
input[type=range]::-moz-range-thumb {
  width: 24px; height: 22px;
  background: var(--pink);
  border-radius: 46% 54% 52% 48%;
  border: 3px solid #fff;
}
.stepper { display: inline-flex; align-items: center; gap: 1.2rem; background: #fff; border-radius: 999px; padding: .4rem .6rem; }
.stepper button {
  width: 40px; height: 40px; border-radius: 50%;
  border: none; background: var(--pink); color: #fff;
  font-size: 1.4rem; font-weight: 700; cursor: pointer;
  transition: transform .35s var(--squish);
}
.stepper button:hover { transform: scale(1.12); }
.stepper button:active { transform: scale(.9); }
.stepper output { font-size: 1.3rem; font-weight: 740; min-width: 1.4em; text-align: center; }
.checkbox { display: flex; align-items: center; gap: .7rem; font-weight: 560; cursor: pointer; font-size: .98rem; }
.checkbox input { width: 20px; height: 20px; accent-color: var(--pink); cursor: pointer; }

.calc-result {
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.6rem, 3vw, 2.8rem);
  text-align: center;
  box-shadow: 0 24px 60px -30px rgba(23,18,14,.3);
  position: sticky; top: 6.5rem;
}
.result-rolls { display: flex; justify-content: center; gap: .35rem; margin-bottom: 1.2rem; min-height: 22px; flex-wrap: wrap; }
.result-roll {
  width: 40px; height: 17px;
  background: var(--pink);
  border-radius: 999px;
  animation: pop-in .5s var(--squish) backwards;
}
.result-roll:nth-child(even) { background: var(--pink-soft); }
@keyframes pop-in { from { transform: scale(0); } to { transform: scale(1); } }
.result-line { color: var(--ink-soft); font-weight: 560; }
.result-amount {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 820;
  font-variation-settings: 'opsz' 144;
  color: var(--pink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: .3rem 0 .1rem;
}
#result-unit { font-size: .45em; font-weight: 740; margin-left: .12em; }
.brand-line { font-size: 1.7rem; color: var(--ink); margin-bottom: 1rem; }
.result-tip { font-size: .98rem; font-weight: 620; margin-bottom: 1.4rem; }
.result-trust { margin-top: 1.2rem; font-size: .86rem; color: var(--ink-soft); line-height: 1.5; }
.disclaimer { margin-top: 2.6rem; font-size: .84rem; color: var(--ink-soft); text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.55; }

/* Reviews */
.reviews-section { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: 3rem;
}
.review-card {
  background: var(--cream);
  border-radius: 20px;
  padding: clamp(1.3rem, 2.2vw, 1.8rem);
  display: flex; flex-direction: column; gap: .85rem;
}
.review-card[hidden] { display: none; }
.review-card.is-placeholder {
  background: #fff6f0;
  outline: 2px dashed var(--orange);
  outline-offset: -2px;
}
.review-warn {
  font-size: .74rem; font-weight: 720; letter-spacing: .06em;
  text-transform: uppercase; color: var(--orange);
}
/* Stars top-left, product pill top-right — same row, so a pill never
   pushes the footer row (name/verified/date) into an uneven wrap. */
.review-head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.review-stars { color: var(--orange); letter-spacing: .1em; font-size: 1rem; }
.review-text {
  font-size: .98rem; line-height: 1.55; color: var(--ink);
  flex: 1;
}
.review-meta {
  display: flex; flex-wrap: wrap; gap: .4rem .8rem; align-items: baseline;
  font-size: .88rem; color: var(--ink-soft);
  border-top: 1px solid rgba(23,18,14,.08);
  padding-top: .8rem;
}
.review-name { font-weight: 680; color: var(--ink); }
.review-verified { display: inline-flex; align-items: center; gap: .3em; }
.review-verified svg { width: 14px; height: 14px; fill: none; stroke: #1f9400; stroke-width: 2.2; }
.review-title { font-size: 1.02rem; font-weight: 720; line-height: 1.3; }
.review-product {
  flex-shrink: 0;
  background: rgba(244,34,115,.1); color: var(--pink);
  font-size: .76rem; font-weight: 680;
  padding: .25em .7em; border-radius: 999px;
}
.review-date { margin-left: auto; opacity: .75; font-size: .82rem; }
/* Lives as the grid's last child — spans the full row on desktop so it
   centres below the three visible cards, and rides along at the end of
   the horizontal scroller on mobile (see the 768px block below). */
.reviews-more {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 1.2rem;
}
.reviews-more[hidden] { display: none; }
.reviews-expanded-actions {
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
  margin-top: 2.4rem;
}
.reviews-expanded-actions[hidden] { display: none; }
.reviews-expanded-buttons {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.2rem;
}
.btn-text {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .95rem; font-weight: 620;
  color: var(--ink-soft); text-decoration: underline; text-underline-offset: .2em;
  padding: .4em .2em;
  transition: color .2s;
}
.btn-text:hover { color: var(--pink); }
/* Only visible once the section is fully expanded — nested inside
   .reviews-expanded-actions so it shares that show/hide state. */
.authenticity {
  padding-top: 1.6rem;
  border-top: 1px solid #f0ebe4;
  font-size: .84rem; line-height: 1.6; color: var(--ink-soft);
  max-width: 62em;
  text-align: center;
}

/* DIY videos */
.videos-section { background: var(--cream); }
.video-gate {
  max-width: 640px; margin: 2.6rem auto 0;
  background: #fff; border-radius: 24px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  box-shadow: 0 20px 50px -30px rgba(23,18,14,.3);
}
.gate-text { font-size: .98rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 1.4rem; }
.gate-note { font-size: .82rem; color: var(--ink-soft); margin-top: .9rem; }
.videos-row {
  display: flex; gap: clamp(1rem, 2vw, 1.4rem);
  align-items: flex-start;   /* keep each card's own aspect ratio */
  overflow-x: auto;
  padding: 1.2rem .2rem;     /* symmetric — just enough for hover lift + shadow */
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) transparent;
}
.videos-row[hidden] { display: none; }
.video-card {
  flex: 0 0 clamp(190px, 17vw, 230px);
  scroll-snap-align: start;
  border: none; padding: 0; background: #111;
  border-radius: 18px; overflow: hidden;
  position: relative; cursor: pointer;
  aspect-ratio: 9 / 16;   /* every card, uniform */
  transition: transform .5s var(--squish), box-shadow .4s;
  box-shadow: 0 12px 30px -18px rgba(23,18,14,.4);
}
.video-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 26px 50px -22px rgba(23,18,14,.45); }
.video-card img { width: 100%; height: 100%; object-fit: cover; display: block; background: #1a1a1a; }
.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-play {
  position: absolute; inset: 0; margin: auto;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  pointer-events: none;
  transition: transform .4s var(--squish);
}
.video-card:hover .video-play { transform: scale(1.12); }
.video-play::after {
  content: ''; margin-left: 4px;
  border-left: 15px solid var(--ink);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
.video-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem .9rem .8rem;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff; text-align: left;
  font-size: .84rem; font-weight: 620; line-height: 1.3;
  pointer-events: none;
}
.video-label .creator { display: block; font-weight: 500; opacity: .8; margin-top: .15rem; }
.video-sponsored {
  position: absolute; top: .6rem; left: .6rem;
  background: var(--yellow); color: var(--ink);
  font-size: .68rem; font-weight: 760; letter-spacing: .04em;
  padding: .3em .7em; border-radius: 999px;
}
/* margin-top mirrors .sub's margin-bottom (3rem) above, so the gap to the
   note below the row matches the gap from the subtitle above it. */
.videos-note { text-align: center; font-size: .86rem; color: var(--ink-soft); margin-top: 3rem; }

/* FAQ */
.faq-section { background: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: .9rem; margin-top: 3rem; }
.faq-category {
  font-size: .8rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pink);
  margin: 2.2rem 0 -.2rem;
}
.faq-category:first-child { margin-top: 0; }
.faq-item {
  background: #fff; border-radius: 18px;
  box-shadow: 0 8px 26px -18px rgba(23,18,14,.25);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 1.6rem;
  font-weight: 660; font-size: clamp(.98rem, 1.3vw, 1.12rem);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--pink); }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244,34,115,.1); color: var(--pink);
  border-radius: 50%; font-size: 1.25rem; font-weight: 600;
  transition: transform .45s var(--squish), background .25s, color .25s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--pink); color: #fff; }
.faq-item p {
  padding: 0 1.6rem 1.5rem;
  color: var(--ink-soft); line-height: 1.62; font-size: 1rem;
}
.faq-item p a { color: var(--pink); font-weight: 660; text-decoration: underline; text-underline-offset: .15em; }
.faq-item p a:hover { color: var(--orange); }

/* Inline product mentions — same "our shop, clickable" pill language as the
   .faq-shop-links chips, just small enough to sit mid-sentence. Scoped with
   the .faq-item p ancestor so it outweighs the plain-link underline rule
   above instead of losing to it on specificity. */
.faq-item p a.faq-chip {
  display: inline-flex; align-items: center; gap: .28em;
  background: rgba(244,34,115,.08);
  color: var(--pink); font-weight: 660;
  text-decoration: none;
  padding: .1em .65em; margin: 0 .05em;
  border-radius: 999px;
  border: 1px solid rgba(244,34,115,.16);
  white-space: nowrap;
  transition: transform .3s var(--squish), background .2s, color .2s, border-color .2s;
}
.faq-item p a.faq-chip::after { content: '↗'; font-size: .8em; opacity: .75; }
.faq-item p a.faq-chip:hover { background: var(--pink); color: #fff; border-color: var(--pink); transform: translateY(-1px); }
.faq-item p a.faq-chip:active { transform: scale(.96); }

/* Shop-product chips — used where an FAQ answer links out to several
   products at once, so the "these are our clickable shop items" affordance
   reads visually, not just as buried inline links. */
.faq-shop-caption {
  padding: 0 1.6rem;
  font-size: .74rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: -.4rem;
}
.faq-shop-links {
  display: flex; flex-wrap: wrap; gap: .55rem;
  padding: .6rem 1.6rem 1.5rem;
}
.faq-shop-links a {
  display: inline-flex; align-items: center; gap: .4em;
  background: rgba(244,34,115,.08);
  color: var(--pink);
  font-size: .88rem; font-weight: 660;
  text-decoration: none;
  padding: .5em 1em;
  border-radius: 999px;
  border: 1px solid rgba(244,34,115,.16);
  transition: transform .35s var(--squish), background .2s, color .2s, border-color .2s;
}
.faq-shop-links a::after { content: '↗'; font-size: .82em; opacity: .75; }
.faq-shop-links a:hover { background: var(--pink); color: #fff; border-color: var(--pink); transform: translateY(-2px) scale(1.03); }
.faq-shop-links a:active { transform: scale(.96); }

/* Final CTA */
.final-cta {
  background:
    radial-gradient(100% 120% at 80% 0%, rgba(255,83,9,.55), transparent 55%),
    var(--pink);
  padding-top: clamp(6rem, 14vh, 10rem);
  padding-bottom: clamp(6rem, 14vh, 10rem);
}
.final-heading {
  font-size: clamp(2.8rem, 6.6vw, 6rem);
  font-weight: 790;
  font-variation-settings: 'opsz' 144;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin-bottom: 2.4rem;
}
.final-heading .brand { font-weight: 400; }

/* Footer */
.site-footer { background: #17120e; color: #b9b2ab; padding: 4.5rem clamp(1.2rem, 5vw, 4rem) 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { font-size: 2rem; color: #fff; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; line-height: 1.6; }
.footer-col h3 {
  font-size: .8rem; font-weight: 720; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; margin-bottom: 1.1rem;
}
.footer-col a {
  display: block; color: #b9b2ab; text-decoration: none;
  font-size: .95rem; padding: .3em 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--pink-soft); }
.footer-bottom { padding-top: 1.8rem; font-size: .84rem; }

/* ═══════════ MOBILE ═══════════ */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .config-card, .calc-grid { grid-template-columns: 1fr; }
  .flavour-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calc-result { position: static; }
}
@media (max-width: 768px) {
  #scroll-container { height: 560vh; }
  .reviews-grid {
    display: flex; align-items: center; gap: 1rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: thin; scrollbar-color: var(--pink) transparent;
    margin: 3rem -1.2rem 0; padding: .2rem 1.2rem 1rem;
  }
  .review-card { flex: 0 0 82vw; scroll-snap-align: start; }
  /* Sits right after the third card in the scroller, not below it. */
  .reviews-more {
    flex: 0 0 auto;
    grid-column: auto;
    margin-top: 0;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .hero-standalone { min-height: 100svh; height: auto; padding-bottom: 4.5rem; }
  .hero-copy { max-width: 100%; }
  .hero-heading { line-height: 1.06; }
  .hero-tagline { max-width: 100%; font-size: 1.02rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-trust { font-size: .88rem; }
  .blob { width: 40px; height: 36px; }
  .scroll-indicator { display: none; }
  .align-left, .align-right { padding: 0 6vw; }
  .align-left .section-inner, .align-right .section-inner {
    max-width: 100%;
    background: rgba(247,243,238,.86);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 1.6rem;
    text-align: center;
  }
  .section-label { justify-content: center; }
  .hero-heading { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero-ctas .btn { width: 100%; }
  .marquee-text { font-size: 22vw; }
  .config-preview { max-width: 380px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .flavour-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ═══════════ FOCUS VISIBILITY ═══════════ */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, .flavour-card:focus-visible, .set-card:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}
.blob:focus-visible, .swatch:focus-visible { outline-offset: 4px; }
