/* ============================================================
   Smiile Coffee — Entwurf 2
   Aufbau und Komponenten nach gruns.co.
   Farben, Motive und Effekte aus Entwurf 1.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Work+Sans:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  /* Farben — identisch zu Entwurf 1 */
  --yellow:      #FFDC3E;
  --yellow-deep: #F0C41A;
  --peach:       #FAD3AE;
  --peach-deep:  #F2B885;
  --cream:       #F1EBD8;
  --paper:       #FBF6F0;
  --ink:         #2E2318;
  --ink-70:      rgba(46, 35, 24, .70);
  --ink-45:      rgba(46, 35, 24, .45);
  --ink-12:      rgba(46, 35, 24, .12);
  --roast:       #4A3222;
  --roast-deep:  #33210F;

  /* Helle Töne auf dunklem Grund */
  --on-dark:     #F1EBD8;
  --on-dark-70:  rgba(241, 235, 216, .72);
  --on-dark-40:  rgba(241, 235, 216, .40);
  --on-dark-14:  rgba(241, 235, 216, .14);

  --display: 'Fredoka', 'Work Sans', system-ui, -apple-system, sans-serif;
  --body:    'Work Sans', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono:    'DM Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;

  --wrap: 1280px;
  --gut: clamp(18px, 4vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Körnung über allem — aus Entwurf 1 */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.center { text-align: center; }

/* ---------- Schrift ---------- */

.d1, .d2, .d3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}
.d1 { font-size: clamp(2.7rem, 6.2vw, 5rem); }
.d2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.d3 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }

/* Grosse Fliess-Überschrift im Work Sans, wie der Grüns-Hero */
.h-hero {
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(2.3rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 0 0 1.4rem;
  text-wrap: balance;
}
.h-hero em { font-style: normal; color: var(--roast); }

h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.03em; }
h3 { font-size: 1.15rem; line-height: 1.2; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.06rem; color: var(--ink-70); max-width: 54ch; }
.tiny { font-size: .82rem; line-height: 1.5; color: var(--ink-45); }
.eyebrow {
  font-size: .74rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-45); margin: 0 0 1rem;
}

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--body); font-weight: 600; font-size: 1rem; letter-spacing: -.02em;
  padding: 1em 2em; border-radius: 999px;
  border: 2px solid transparent; background: var(--roast); color: var(--paper);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s cubic-bezier(.3,1.5,.5,1), background .18s, color .18s, box-shadow .18s;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 0 -2px rgba(46,35,24,.25); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--ink    { background: var(--ink); color: var(--paper); }
.btn--line   { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--paper); }
.btn--cream  { background: var(--cream); color: var(--ink); }
.btn--lg     { font-size: 1.1rem; padding: 1.1em 2.4em; }
.btn--block  { width: 100%; }

/* ---------- Ankündigungsleiste ---------- */

.topbar { height: 36px; overflow: hidden; position: relative; z-index: 95; }
.topbar__track { animation: topbar 11s infinite; }
.js-still .topbar__track { animation: none; }
.topbar__row {
  height: 36px; display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.topbar__row--a { background: var(--peach); color: var(--ink); }
.topbar__row--b { background: var(--roast); color: var(--yellow); }
@keyframes topbar {
  0%, 44%   { transform: translateY(0); }
  50%, 94%  { transform: translateY(-36px); }
  100%      { transform: translateY(-72px); }
}

/* ---------- Navigation: schwebende Pillen ---------- */

.nav {
  position: sticky; top: 0; z-index: 90;
  padding: .8rem var(--gut);
  display: flex; align-items: center; gap: 1rem;
}
.nav__pill {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(251, 246, 240, .72);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1.5px solid rgba(46, 35, 24, .10);
  border-radius: 999px;
  box-shadow: 0 2px 14px rgba(46, 35, 24, .07);
}
.nav__brand { padding: .45rem 1.15rem .45rem .85rem; text-decoration: none; }
.nav__brand svg { width: 30px; height: 30px; flex: none; }
.nav__word {
  font-family: var(--display); font-weight: 600; font-size: 1.35rem;
  letter-spacing: -.03em; line-height: 1; margin-left: .1rem;
}
.nav__right { margin-left: auto; padding: .35rem .35rem .35rem .35rem; }
.nav__links {
  display: flex; gap: .3rem; list-style: none; margin: 0; padding: 0 .5rem;
}
.nav__links a {
  display: block; padding: .5rem .9rem; border-radius: 999px;
  text-decoration: none; font-size: .92rem; font-weight: 500;
  transition: background .15s;
}
.nav__links a:hover { background: rgba(46, 35, 24, .09); }
.nav__cta { padding: .62em 1.35em; font-size: .92rem; }
.nav__icon {
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: transparent; display: grid; place-items: center;
  transition: background .15s;
}
.nav__icon:hover { background: rgba(46, 35, 24, .09); }
.nav__icon svg { width: 19px; height: 19px; }

/* Menü-Panel */
.menu {
  position: fixed; inset: 0; z-index: 120;
  background: var(--roast-deep); color: var(--on-dark);
  padding: clamp(2rem, 7vw, 5rem) var(--gut);
  display: none;
}
.menu[data-open] { display: block; animation: menuIn .3s ease both; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-12px); } }
.menu__close {
  position: absolute; top: 1.4rem; right: var(--gut);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--on-dark-14); border: 0; color: var(--on-dark); cursor: pointer;
}
.menu ul { list-style: none; margin: 0; padding: 0; }
.menu__main a {
  display: block; text-decoration: none;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2rem, 7vw, 3.6rem); line-height: 1.18;
  letter-spacing: -.02em;
  transition: color .15s;
}
.menu__main a:hover { color: var(--yellow); }
.menu__meta { margin-top: 2.5rem; display: flex; gap: 1.6rem; flex-wrap: wrap; font-size: .95rem; }
.menu__meta a { color: var(--on-dark-70); text-decoration: none; }
.menu__meta a:hover { color: var(--yellow); }

/* ---------- Sektionen ---------- */

section { position: relative; }
/* Kein overflow-x:hidden auf body — das bricht position:sticky.
   Stattdessen clippen die Sektionen, in denen die Wasserzeichen sitzen. */
.band { padding: clamp(3.5rem, 7vw, 6.5rem) 0; overflow: hidden; }
.band--paper { background: var(--paper); }
.band--cream { background: var(--cream); }
.band--peach { background: var(--peach); }
.band--roast { background: var(--roast); color: var(--on-dark); }
.band--deep  { background: var(--roast-deep); color: var(--on-dark); }
.band--roast .lead, .band--deep .lead { color: var(--on-dark-70); }
.band--roast .eyebrow, .band--deep .eyebrow { color: var(--on-dark-40); }

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

.hero { background: var(--paper); padding: 0 0 clamp(2rem, 5vw, 4rem); margin-top: -74px; padding-top: 74px; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  padding-top: clamp(1rem, 3vw, 2rem);
}
.rating { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-size: .95rem; margin-bottom: 1.4rem; }
.rating__stars { color: var(--yellow-deep); letter-spacing: .06em; font-size: 1rem; }
.rating b { font-weight: 700; }

.hero__micro {
  display: flex; gap: 1.6rem; flex-wrap: wrap;
  margin-top: 1rem; font-size: .88rem; font-weight: 500; color: var(--ink-70);
}
.hero__micro span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__micro svg { width: 15px; height: 15px; flex: none; }

/* Zahlen mit gelbem Kreis dahinter */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.6vw, 1.6rem); margin-top: 2.6rem; }
.stat { min-width: 0; }
.stat__n {
  position: relative; display: inline-grid; place-items: center;
  width: 58px; height: 58px; margin-bottom: .55rem;
}
.stat__n::before {
  content: ''; position: absolute; inset: 0;
  background: var(--yellow); border-radius: 50%;
  transform: scale(1);
  transition: transform .3s cubic-bezier(.3,1.5,.5,1);
}
.stat:hover .stat__n::before { transform: scale(1.12) rotate(8deg); }
.stat__n b {
  position: relative; font-family: var(--display); font-weight: 600;
  font-size: 1.6rem; letter-spacing: -.03em; line-height: 1;
}
.stat__t { font-weight: 700; font-size: .98rem; line-height: 1.15; letter-spacing: -.02em; }
.stat__s { font-size: .76rem; font-weight: 500; color: var(--ink-70); line-height: 1.3; margin-top: .25rem; }

/* Produktkarte rechts */
.showcase {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--yellow) 0%, var(--peach) 52%, var(--cream) 100%);
  aspect-ratio: 5/4;
  display: grid; place-items: center;
  overflow: hidden;
}
.showcase__bag { width: 50%; max-width: 290px; filter: drop-shadow(0 24px 34px rgba(46,35,24,.28)); }
.showcase__badge {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 3;
  background: var(--ink); color: var(--yellow);
  font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .6em 1em; border-radius: 999px; rotate: -4deg;
  box-shadow: 0 0 0 4px rgba(251,246,240,.85);
}
.showcase__face { position: absolute; top: 8%; right: 7%; width: clamp(48px, 6vw, 74px); z-index: 3; }

/* schwebende Bohnen */
.bean { position: absolute; pointer-events: none; z-index: 2; }
.bean svg { width: 100%; height: auto; }
@keyframes bob { 50% { transform: translateY(-11px) rotate(var(--rot, 0deg)); } }
.bean--f { animation: bob 5s ease-in-out infinite; }
.js-still .bean--f { animation: none; }

/* ---------- Laufband ---------- */

.marq {
  background: var(--paper);
  border-block: 1.5px solid var(--ink-12);
  overflow: hidden; padding: 1.5rem 0;
}
.marq--cream { background: var(--cream); }
.marq__track { display: flex; width: max-content; animation: marq 42s linear infinite; }
.js-still .marq__track { animation: none; }
.marq__track > * {
  display: flex; align-items: center; gap: 2.6rem; padding-right: 2.6rem;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem); letter-spacing: -.015em;
  white-space: nowrap; color: var(--ink);
}
.marq__track svg { width: 22px; height: 22px; flex: none; opacity: .55; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Produktkacheln ---------- */

.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem, 1.6vw, 1.4rem); }
.tile { display: flex; flex-direction: column; }
.tile__art {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1/1; display: grid; place-items: center;
  transition: transform .3s cubic-bezier(.3,1.4,.5,1);
}
.tile:hover .tile__art { transform: translateY(-6px); }
.tile__art--a { background: linear-gradient(160deg, var(--yellow) 0%, var(--yellow-deep) 100%); }
.tile__art--b { background: linear-gradient(160deg, var(--peach) 0%, var(--peach-deep) 100%); }
.tile__art--c { background: linear-gradient(160deg, var(--cream) 0%, var(--peach) 100%); }
.tile__art--d { background: linear-gradient(160deg, var(--roast) 0%, var(--roast-deep) 100%); }
.tile__art img { width: 100%; height: 100%; object-fit: cover; }
.tile__bag { width: 56%; filter: drop-shadow(0 14px 20px rgba(46,35,24,.3)); }
.tile__flag {
  position: absolute; top: .8rem; left: .8rem;
  background: var(--ink); color: var(--yellow);
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .45em .8em; border-radius: 999px;
}
.tile__flag--light { background: var(--paper); color: var(--ink); }
.tile h3 { margin: 1rem 0 .3rem; }
.tile__price { font-size: .92rem; font-weight: 500; margin: 0 0 .9rem; }
.tile__price s { color: var(--ink-45); margin-left: .35rem; }
.tile__buy { margin-top: auto; display: grid; gap: .5rem; justify-items: center; }
.tile__buy .btn { width: 100%; padding: .78em 1.2em; font-size: .92rem; }
.tile__more { font-size: .86rem; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Weisse Karten auf farbigem Band ---------- */

.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.prop {
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-lg); overflow: hidden;
  padding: .6rem .6rem 1.7rem;
  transition: transform .3s cubic-bezier(.3,1.4,.5,1);
}
.prop:hover { transform: translateY(-8px); }
.prop__img { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16/11; margin-bottom: 1.2rem; }
.prop__img img { width: 100%; height: 100%; object-fit: cover; }
.prop h3 { font-size: 1.35rem; text-align: center; margin-bottom: .5rem; }
.prop p { text-align: center; font-size: .95rem; color: var(--ink-70); padding-inline: 1.2rem; }

/* ---------- Sticky-Scroll-Sektion ---------- */

/* Der Verlauf liegt auf der ganzen Sektion, die Inhalte kleben davor.
   Beim Scrollen wandert der Ausschnitt von Röstbraun nach Gelb. Die Stopps
   sitzen spät genug, dass die weisse Schrift oben nie auf Gelb landet. */
.scroller {
  height: 200vh;
  background: linear-gradient(var(--roast) 0 62%, var(--yellow-deep) 88%, var(--yellow) 100%);
  position: relative;
}
.scroller__stick {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 11vh;
}
.scroller__lines {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 4rem); line-height: 1.06;
  letter-spacing: -.02em; text-transform: uppercase;
  text-align: center; color: var(--paper);
  position: relative; z-index: 3;
}
.scroller__lines span {
  display: block;
  opacity: 0; transform: translateY(26px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1);
}
.scroller__lines span.on { opacity: 1; transform: none; }
.scroller__lines span:last-child { color: var(--yellow); }
.scroller__bag {
  position: absolute; bottom: -6vh; left: 50%;
  width: clamp(210px, 25vw, 330px);
  transform: translate(-50%, 60px);
  opacity: 0;
  transition: opacity .5s ease, transform .8s cubic-bezier(.22,1,.36,1);
  filter: drop-shadow(0 24px 34px rgba(46,35,24,.35));
  z-index: 2;
}
.scroller__bag.on { opacity: 1; transform: translate(-50%, 0); }
.js-still .scroller__lines span,
.js-still .scroller__bag { opacity: 1; transform: translateX(-50%); }
.js-still .scroller__lines span { transform: none; }

/* ---------- Prüf-Band ---------- */

.checks { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.8rem, 1.4vw, 1.2rem); }
.check {
  background: rgba(241, 235, 216, .07);
  border: 1.5px solid var(--on-dark-14);
  border-radius: var(--r-md);
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: transform .25s cubic-bezier(.3,1.4,.5,1), background .25s;
}
.check:hover { transform: translateY(-5px); background: rgba(241, 235, 216, .12); }
.check__ico {
  width: 54px; height: 54px; margin: 0 auto .9rem;
  border-radius: 50%; border: 1.5px solid var(--on-dark-40);
  display: grid; place-items: center;
}
.check__ico svg { width: 24px; height: 24px; }
.check p { font-size: .92rem; line-height: 1.35; margin: 0; }
.check b { display: block; font-weight: 700; font-size: 1.5rem; font-family: var(--display); letter-spacing: -.02em; }

/* ---------- Buybox ---------- */

.buy { display: grid; grid-template-columns: 1.08fr 1fr; gap: clamp(1.5rem, 3.5vw, 3.5rem); align-items: start; }

.gal { display: grid; grid-template-columns: 78px 1fr; gap: .8rem; position: sticky; top: 96px; }
.gal__thumbs { display: grid; gap: .55rem; align-content: start; }
.gal__thumb {
  border: 2px solid var(--ink-12); border-radius: var(--r-sm);
  overflow: hidden; padding: 0; background: var(--cream); cursor: pointer;
  aspect-ratio: 3/4; transition: border-color .15s;
}
.gal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal__thumb[aria-current="true"] { border-color: var(--ink); }
.gal__stage {
  position: relative; border: 2px solid var(--ink); border-radius: var(--r-lg);
  overflow: hidden; background: var(--cream);
  aspect-ratio: 4/5;
}
.gal__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; }
.gal__slide[data-on] { opacity: 1; }
.gal__slide img { width: 100%; height: 100%; object-fit: cover; }
.gal__strip {
  position: absolute; top: 0; left: 0; right: 0; z-index: 4;
  background: var(--ink); color: var(--yellow);
  text-align: center; padding: .6rem;
  font-weight: 700; font-size: .84rem; letter-spacing: .04em; text-transform: uppercase;
}
/* Erste Kachel: Packung plus Nutzenliste, wie bei Grüns */
.gal__hero {
  position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 38%;
  background: linear-gradient(150deg, var(--peach) 0%, var(--cream) 60%, var(--paper) 100%);
  align-items: center; padding: 3rem 1rem 1rem;
}
.gal__hero .bagwrap { display: grid; place-items: center; }
.gal__hero .bagwrap svg { width: 82%; filter: drop-shadow(0 18px 26px rgba(46,35,24,.28)); }
.gal__list {
  background: var(--paper); border: 1.5px solid var(--ink-12); border-radius: var(--r-md);
  padding: 1.1rem .7rem; display: grid; gap: 1rem; margin-right: .6rem;
}
.gal__list li { list-style: none; text-align: center; font-size: .8rem; font-weight: 600; line-height: 1.2; }
.gal__list svg { width: 20px; height: 20px; margin: 0 auto .35rem; display: block; }
.gal__list ul { margin: 0; padding: 0; display: grid; gap: 1rem; }

.buy__rating { font-size: .88rem; display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.buy h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem); letter-spacing: -.025em; line-height: 1;
  color: var(--roast); margin: 0 0 .55rem;
}
.buy__sub { font-size: 1rem; color: var(--ink-70); margin-bottom: 1.2rem; }
.ticks { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .55rem; }
.ticks li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.ticks svg { width: 18px; height: 18px; flex: none; margin-top: 3px; }

.opt__label { font-size: .82rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; margin-bottom: .5rem; }
.opt__label span { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--ink-70); }
.opt__row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1.3rem; }
.opt {
  border: 2px solid var(--ink-12); border-radius: var(--r-sm);
  background: var(--paper); padding: .85em 1em; cursor: pointer;
  font-weight: 600; font-size: .95rem; text-align: center;
  transition: border-color .15s, background .15s;
}
.opt:hover { border-color: var(--ink-45); }
.opt[aria-pressed="true"] { border-color: var(--roast); background: var(--paper); }

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: .9rem; }
.plan__tab {
  border: 2px solid var(--ink-12); background: var(--cream); cursor: pointer;
  padding: .95em 1em; font-weight: 600; font-size: .95rem;
  position: relative;
}
.plan__tab:first-child { border-radius: var(--r-sm) 0 0 0; }
.plan__tab:last-child  { border-radius: 0 var(--r-sm) 0 0; }
.plan__tab[aria-pressed="true"] { background: var(--paper); border-color: var(--roast); border-bottom-color: var(--paper); z-index: 2; }
.plan__save {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--ink);
  font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .3em .7em; border-radius: 999px; white-space: nowrap;
}
.plan__body {
  border: 2px solid var(--roast); border-radius: 0 0 var(--r-sm) var(--r-sm);
  margin-top: -2px; padding: 1.2rem; display: grid; grid-template-columns: 1fr auto; gap: 1rem;
  align-items: start;
}
.plan__flag {
  display: inline-block; background: var(--roast); color: var(--paper);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .35em .7em; border-radius: 6px; margin-bottom: .5rem;
}
.plan__price { display: flex; align-items: baseline; gap: .5rem; }
.plan__price b { font-family: var(--display); font-weight: 600; font-size: 1.9rem; letter-spacing: -.03em; }
.plan__price s { color: var(--ink-45); font-size: 1rem; }
.plan__day { font-size: .86rem; font-weight: 600; color: var(--roast); margin: .2rem 0 .8rem; }
.plan__perks { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; font-size: .88rem; }
.plan__perks li { display: flex; gap: .5rem; align-items: flex-start; }
.plan__perks svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }
.plan__aside { text-align: center; width: 108px; }
.plan__aside svg { width: 62px; margin: 0 auto; }
.plan__aside p { font-size: .74rem; color: var(--ink-70); margin: .4rem 0 0; line-height: 1.25; }

.buy__trustrow { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; font-size: .84rem; font-weight: 500; margin: 1rem 0; }
.buy__trustrow span { display: inline-flex; align-items: center; gap: .4rem; }
.buy__trustrow svg { width: 16px; height: 16px; }
.buy__once { text-align: center; font-size: .88rem; font-weight: 600; margin-top: .9rem; letter-spacing: .02em; }
.buy__once s { color: var(--ink-45); font-weight: 500; }
.buy__note {
  background: var(--cream); border-radius: 999px;
  padding: .7em 1.2em; text-align: center; font-size: .88rem; margin: 1.4rem 0;
}

.acc { border-top: 1.5px solid var(--ink-12); }
.acc:last-of-type { border-bottom: 1.5px solid var(--ink-12); }
.acc__h {
  width: 100%; background: none; border: 0; cursor: pointer; color: inherit;
  padding: 1.15rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 600; font-size: 1rem; text-align: left; letter-spacing: -.02em;
}
.acc__h::after { content: '+'; font-size: 1.5rem; font-weight: 400; line-height: 1; transition: rotate .25s; }
.acc__h[aria-expanded="true"]::after { rotate: 45deg; }
.acc__b { display: none; padding-bottom: 1.3rem; font-size: .94rem; color: var(--ink-70); }
.acc__b[data-open] { display: block; }
.acc__b b { color: var(--ink); }

/* Laborbeleg — aus Entwurf 1 */
.report {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--r-md) var(--r-md) 0 0;
  padding: 1.6rem 1.6rem 1.3rem;
  rotate: -1.2deg;
  position: relative;
  box-shadow: 9px 11px 0 var(--ink);
  font-family: var(--mono);
  max-width: 430px;
}
.report__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  border-bottom: 2px dashed var(--ink-12); padding-bottom: .65rem; margin-bottom: .85rem;
  padding-right: 5.4rem;
}
.report__title { font-family: var(--body); font-weight: 700; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; }
.report__batch { font-size: .8rem; font-weight: 500; }
.report__row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .42rem 0; font-size: .85rem;
  border-bottom: 1px dotted var(--ink-12);
}
.report__row b { font-weight: 500; font-variant-numeric: tabular-nums; }
.report__foot { font-family: var(--body); font-size: .74rem; color: var(--ink-45); margin-top: .9rem; line-height: 1.45; }
.report__stamp {
  position: absolute; top: 1rem; right: 1.3rem;
  font-family: var(--body); font-size: .6rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid var(--ink); border-radius: 6px;
  padding: .3em .6em; rotate: -9deg; opacity: .5;
}
.report::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: -13px; height: 14px;
  background:
    linear-gradient(-45deg, transparent 50%, var(--cream) 50%) 0 0/14px 14px repeat-x,
    linear-gradient(45deg,  transparent 50%, var(--cream) 50%) 0 0/14px 14px repeat-x;
  filter: drop-shadow(0 2px 0 var(--ink));
}

/* 40/60-Leiste — aus Entwurf 1 */
.ratio { display: flex; border: 2px solid var(--ink); border-radius: 999px; overflow: hidden; }
.ratio__part { padding: .7rem 1.1rem; font-size: .8rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.ratio__light { flex: 40; background: var(--cream); color: var(--ink); }
.ratio__dark  { flex: 60; background: var(--roast); color: var(--cream); justify-content: flex-end; }
.ratio__dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; flex: none; }

/* ---------- Foto-Fächer ---------- */

.fan { position: relative; overflow: hidden; padding-top: clamp(3rem, 6vw, 5rem); }
.fan__head { position: relative; z-index: 5; text-align: center; }
.fan__head .d1 { text-transform: uppercase; letter-spacing: -.025em; }
.fan__head .d1 em { font-style: normal; color: var(--roast); display: block; }
.fan__social { display: flex; gap: .5rem; justify-content: center; margin-top: 1.2rem; }
.fan__social a {
  width: 38px; height: 38px; border-radius: 10px; background: var(--roast); color: var(--paper);
  display: grid; place-items: center; transition: transform .2s cubic-bezier(.3,1.5,.5,1);
}
.fan__social a:hover { transform: translateY(-3px) rotate(-6deg); }
.fan__social svg { width: 18px; height: 18px; }

.fan__stage { position: relative; height: clamp(300px, 34vw, 470px); margin-top: 1.5rem; }
.fan__media {
  position: absolute; left: 50%; top: 0;
  width: clamp(130px, 15vw, 216px); aspect-ratio: 5/7;
  border-radius: 18px; overflow: hidden;
  transform-origin: 50% 1150px;
  box-shadow: 0 12px 26px rgba(46, 35, 24, .16);
  transition: transform .35s cubic-bezier(.3,1.3,.5,1);
}
.fan__media img { width: 100%; height: 100%; object-fit: cover; }
.fan__media:hover { z-index: 6; }

/* ---------- Fussbereich ---------- */

.foot { background: var(--roast-deep); color: var(--on-dark); padding-top: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.foot a { color: inherit; }
.foot__top { display: grid; grid-template-columns: 1.15fr 1fr 1fr 1fr .9fr; gap: 2rem; }
.foot h4 {
  font-family: var(--display); font-weight: 600; font-size: 1.25rem;
  color: var(--yellow); margin-bottom: .9rem; letter-spacing: -.02em;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .94rem; }
.foot ul a { text-decoration: none; color: var(--on-dark-70); }
.foot ul a:hover { color: var(--yellow); }

.signup__field { display: flex; gap: .5rem; margin: .8rem 0 .7rem; max-width: 330px; }
.signup__field input {
  flex: 1; min-width: 0; background: transparent; color: var(--on-dark);
  border: 1.5px solid var(--on-dark-40); border-radius: 8px;
  padding: .8em 1em; font: inherit; font-size: .95rem;
}
.signup__field input::placeholder { color: var(--on-dark-40); }
.signup__field button {
  width: 48px; border: 0; border-radius: 8px; background: var(--yellow); color: var(--ink);
  cursor: pointer; font-size: 1.15rem;
}
.signup__ok { font-size: .86rem; color: var(--yellow); min-height: 1.2em; margin: 0; }

.foot__mid { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin: 3rem 0 2rem; }
.foot__word { font-family: var(--display); font-weight: 600; font-size: clamp(3rem, 8vw, 5.5rem); color: var(--yellow); letter-spacing: -.045em; line-height: .85; }
.foot__soc { display: flex; gap: .5rem; }
.foot__soc a { width: 40px; height: 40px; border-radius: 10px; background: var(--on-dark-14); display: grid; place-items: center; transition: background .2s; }
.foot__soc a:hover { background: var(--yellow); color: var(--ink); }
.foot__soc svg { width: 18px; height: 18px; }

.foot__notes { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.foot__note {
  border: 1.5px solid var(--on-dark-14); border-radius: var(--r-sm);
  padding: 1rem 1.1rem; font-size: .82rem; line-height: 1.55; color: var(--on-dark-70);
}
.foot__note strong { color: var(--on-dark); font-weight: 600; }

.foot__legal {
  display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: space-between;
  padding: 1.8rem 0; margin-top: 2rem;
  border-top: 1px solid var(--on-dark-14);
  font-size: .82rem; color: var(--on-dark-40);
}
.foot__legal ul { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.foot__legal a { text-decoration: none; }
.foot__legal a:hover { color: var(--yellow); }

/* Riesenzeile ganz unten, wie Grüns' "The Bear Necessities" */
.foot__giant {
  position: relative; text-align: center; line-height: .82;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(3rem, 11vw, 8.6rem); letter-spacing: -.04em; text-transform: uppercase;
  color: var(--roast);
  padding-bottom: 1.5rem;
  user-select: none;
}
.foot__giant svg {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%);
  width: clamp(70px, 12vw, 150px);
}

/* ---------- Kleinteile ---------- */

.eyes { display: inline-flex; gap: 4px; vertical-align: middle; margin-right: .5em; }
.eyes i { width: 6px; height: 10px; border-radius: 50%; background: currentColor; display: block; }

@keyframes blink { 0%, 92%, 100% { transform: scaleY(1); } 96% { transform: scaleY(.1); } }
.blink { transform-box: fill-box; transform-origin: center; animation: blink 5.5s infinite; }
.blink--b { animation-delay: .08s; }
.js-still .blink { animation: none; }

.watermark { position: absolute; pointer-events: none; z-index: 0; width: clamp(200px, 30vw, 480px); opacity: .06; }
.watermark--tr { top: -5%; right: -6%; rotate: 12deg; }
.watermark--bl { bottom: -8%; left: -7%; rotate: -14deg; }
.band > .wrap { position: relative; z-index: 1; }

/* Breite in rem, nicht in ch: ch richtet sich nach der Schriftgrösse des
   Containers (17 px), nicht nach der Überschrift darin. */
.hdr { max-width: 46rem; margin: 0 auto clamp(2rem, 4vw, 3.2rem); text-align: center; }
.hdr--wide { max-width: 62rem; }
.hdr--left { margin-inline: 0; text-align: left; }
.hdr .lead { margin-inline: auto; margin-top: 1rem; }

/* Zweispalter, der auf Mobil untereinander läuft */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.duo--check { grid-template-columns: 1fr 1.5fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.duo--proof { margin-top: clamp(3.5rem, 7vw, 6rem); }
.btnrow { display: flex; gap: .7rem; flex-wrap: wrap; }
.hdr--left .lead { margin-inline: 0; }
.accent { color: var(--yellow); }
.accent--roast { color: var(--roast); }

.progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 300; pointer-events: none; }
.progress__bar { height: 100%; width: 0%; background: var(--roast); transition: width .1s linear; }

/* Reveal — aus Entwurf 1 */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.js .reveal.in { opacity: 1; transform: none; }
.js-still .reveal { opacity: 1 !important; transform: none !important; }

.par { will-change: transform; }

/* ---------- Mobil ---------- */

@media (max-width: 1024px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .checks { grid-template-columns: repeat(2, 1fr); }
  .foot__top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero__grid, .buy { grid-template-columns: 1fr; }
  .props { grid-template-columns: 1fr; }
  .duo, .duo--check { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .foot__notes { grid-template-columns: 1fr; }
  .scroller { height: 180vh; }
  .fan__media { transform-origin: 50% 780px; }
  .gal { position: static; }
  .report { max-width: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .tiles { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
  .gal { grid-template-columns: 1fr; }
  .gal__thumbs { display: flex; gap: .4rem; }
  .gal__thumb { flex: 1; min-width: 0; }
  .gal__hero { grid-template-columns: 1fr; padding: 3rem .8rem .8rem; }
  .gal__hero .gal__list { display: none; }
  .opt__row, .plans { grid-template-columns: 1fr 1fr; }
  .plan__body { grid-template-columns: 1fr; }
  .plan__aside { display: none; }
  .report { rotate: 0deg; box-shadow: 6px 7px 0 var(--ink); }
  .stats { gap: 1.1rem; }
  .stat { max-width: 8.5rem; }
  .nav__cta { display: none; }
  .fan__media { transform-origin: 50% 560px; width: 104px; }
}

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