/* ============================================================
   GLUKOSE BALANCE AUF REISEN — Sales Page
   Nora Weweler Design System + dezente Sommer-Erweiterung
   ============================================================ */

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

:root {
  /* --- Kern-Palette (Design System) --- */
  --berry: #D47479;
  --berry-dark: #b8585d;
  --berry-light: #e8a0a4;
  --berry-pale: #f2d0d2;
  --cream: #fffef5;
  --coco: #e3e3e3;
  --soy: #303030;
  --soy-light: #3d3d3d;
  --white: #ffffff;
  --green: #4caf50;

  /* --- Sommer-Erweiterung (auf Beere abgestimmt) --- */
  --aqua: #5ba8a0;          /* Pool-Türkis, Text/Akzent */
  --aqua-deep: #3e8c84;
  --aqua-light: #9fcfc9;
  --aqua-pale: #e6f1ef;     /* sehr sanfte Türkis-Tönung */
  --aqua-mist: #f1f8f7;
  --lemon: #e3b13c;         /* Zitronengelb, Akzent */
  --lemon-soft: #f6e6a8;
  --sand: #f7f1e6;          /* warmer Sand/Stein */

  /* --- Tweak-gesteuert --- */
  --aqua-mix: 0;            /* 0 = reine Beere ... 100 = Türkis (Akzente) */
  --accent: color-mix(in oklab, var(--berry), var(--aqua) calc(var(--aqua-mix) * 1%));
  --accent-soft: color-mix(in oklab, var(--berry-pale), var(--aqua-pale) calc(var(--aqua-mix) * 1%));

  --font-sans: 'Almarai', system-ui, sans-serif;
  --font-serif: 'Romie', 'Cormorant Garamond', Times, serif;

  --container: 1140px;
}

@font-face {
  font-family: 'Romie';
  src: url('assets/Romie-Regular-Italic.otf') format('opentype');
  font-weight: 400; font-style: italic; font-display: swap;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--soy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Shared ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

.section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--accent); margin-bottom: 18px; display: inline-block;
}
.heading-xl {
  font-family: var(--font-sans); font-weight: 800; text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 60px); line-height: 1.08; letter-spacing: -0.5px;
}
.heading-lg {
  font-family: var(--font-sans); font-weight: 800; text-transform: uppercase;
  font-size: clamp(26px, 3.6vw, 42px); line-height: 1.14; letter-spacing: -0.3px;
}
.italic-accent {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0;
}
.body-text { font-size: 16px; line-height: 1.75; color: rgba(48,48,48,0.76); }
.body-text--lg { font-size: 17.5px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; flex-direction: column; align-items: center;
  font-family: var(--font-sans); font-weight: 700; font-size: 15.5px; letter-spacing: 0.3px;
  padding: 17px 42px; border-radius: 30px; border: none; cursor: pointer;
  transition: all 0.3s ease; text-align: center;
}
.btn__sub { font-size: 11.5px; font-weight: 400; opacity: 0.82; margin-top: 4px; letter-spacing: 0.2px; }
.btn--primary { background: var(--berry); color: #fff; box-shadow: 0 6px 18px rgba(212,116,121,0.22); }
.btn--primary:hover { background: var(--berry-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,116,121,0.38); }
.btn--inverted { background: #fff; color: var(--berry); }
.btn--inverted:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.btn--outline { background: transparent; color: var(--berry); border: 1.5px solid var(--berry); }
.btn--outline:hover { background: var(--berry); color: #fff; transform: translateY(-2px); }
.btn--sun { background: linear-gradient(135deg, var(--berry) 0%, #e89a6a 120%); color: #fff; box-shadow: 0 8px 22px rgba(212,116,121,0.28); }
.btn--sun:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,116,121,0.4); }

/* ---------- Pills / tags ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 8px 18px; border-radius: 30px;
}
.pill--aqua { background: var(--aqua-pale); color: var(--aqua-deep); }
.pill--berry { background: var(--berry-pale); color: var(--berry-dark); }
.pill--lemon { background: var(--lemon-soft); color: #9a7414; }
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ---------- Wave divider ---------- */
.wave { display: block; width: 100%; height: 60px; }
.wave svg { display: block; width: 100%; height: 100%; }
[data-intensity="dezent"] .wave { height: 38px; }
[data-intensity="deutlich"] .wave { height: 78px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px); border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); border-bottom-color: var(--coco); }
.nav__logo { height: 30px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__link { font-size: 13px; font-weight: 400; color: var(--soy); transition: color 0.25s; }
.nav__link:hover { color: var(--accent); }
.nav__cta {
  font-size: 13px; font-weight: 700; padding: 9px 22px; border-radius: 30px;
  background: var(--berry); color: #fff; transition: all 0.3s;
}
.nav__cta:hover { background: var(--berry-dark); transform: translateY(-1px); }
@media (max-width: 820px) { .nav__links .nav__link { display: none; } }

/* ============================================================
   HERO — 3 Varianten (data-hero auf body)
   ============================================================ */
.hero { position: relative; overflow: hidden; }

/* --- gemeinsame Hero-Texte --- */
.hero__tag { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--font-sans); font-weight: 800; text-transform: uppercase;
  font-size: clamp(36px, 5vw, 62px); line-height: 1.05; letter-spacing: -0.5px; margin-bottom: 14px;
}
.hero h1 .italic-accent { display: inline-block; font-size: 0.92em; }
.hero__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(21px, 2.6vw, 32px); margin-bottom: 26px; color: var(--berry);
}
.hero__benefits { margin-bottom: 30px; display: flex; flex-direction: column; gap: 11px; }
.hero__benefits li { font-size: 16px; padding-left: 28px; position: relative; line-height: 1.45; }
.hero__benefits li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 13px; height: 13px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.hero__counter { margin-bottom: 26px; }
.hero__trust { display: flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 13px; color: rgba(48,48,48,0.6); }

/* === Variante A: SPLIT (Standard) === */
[data-hero="split"] .hero { background: var(--cream); padding: 116px 0 0; }
[data-hero="split"] .hero__inner {
  max-width: var(--container); margin: 0 auto; padding: 56px 24px 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
[data-hero="split"] .hero__content { max-width: 540px; }
[data-hero="split"] .hero__photo {
  position: relative; background: #fff; padding: 14px 14px 52px;
  border-radius: 6px; rotate: -1.5deg;
  box-shadow: 0 32px 72px rgba(91,168,160,0.22), 0 14px 34px rgba(48,48,48,0.12);
}
[data-hero="split"] .hero__photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; border-radius: 3px; }
[data-hero] .hero__sticker {
  position: absolute; z-index: 3;
}
[data-hero="split"] .hero__sticker {
  right: 18px; top: 22px; rotate: 6deg;
}
[data-hero="fullbleed"] .hero__photo,
[data-hero="postcard"] .hero__split-only { display: none; }

/* === Variante B: FULL-BLEED Foto mit hellem Scrim === */
.hero__bg { display: none; }
[data-hero="fullbleed"] .hero { min-height: 100vh; display: flex; flex-direction: column; }
[data-hero="fullbleed"] .hero__bg { display: block; position: absolute; inset: 0; }
[data-hero="fullbleed"] .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
[data-hero="fullbleed"] .hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,254,245,0.96) 0%, rgba(255,254,245,0.82) 34%, rgba(255,254,245,0.25) 58%, rgba(255,254,245,0) 78%);
}
[data-hero="fullbleed"] .hero__inner {
  position: relative; z-index: 2; flex: 1; display: flex; align-items: center;
  max-width: var(--container); margin: 0 auto; width: 100%; padding: 140px 24px 80px;
}
[data-hero="fullbleed"] .hero__content { max-width: 560px; }
[data-hero="fullbleed"] .hero__inner > .hero__photo { display: none; }

/* === Variante C: POSTKARTE auf Aqua === */
[data-hero="postcard"] .hero { background: var(--aqua-pale); padding: 116px 0 0; position: relative; }
[data-hero="postcard"] .hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255,255,255,0.7), transparent 55%);
  pointer-events: none;
}
[data-hero="postcard"] .hero__inner {
  position: relative; z-index: 1; max-width: 1080px; margin: 0 auto;
  padding: 50px 24px 30px; text-align: center;
}
[data-hero="postcard"] .hero__content { max-width: 720px; margin: 0 auto 44px; }
[data-hero="postcard"] .hero h1 { margin-inline: auto; }
[data-hero="postcard"] .hero__benefits { display: inline-flex; text-align: left; margin-inline: auto; }
[data-hero="postcard"] .hero__trust { justify-content: center; }
[data-hero="postcard"] .hero__photo {
  position: relative; max-width: 760px; margin: 0 auto; background: #fff;
  padding: 16px 16px 58px; border-radius: 6px; rotate: -1.2deg;
  box-shadow: 0 30px 70px rgba(48,48,48,0.16);
}
[data-hero="postcard"] .hero__photo img { border-radius: 3px; aspect-ratio: 16/9; object-fit: cover; object-position: center 60%; }
.hero__postcard-cap {
  display: block;
  position: absolute; left: 0; right: 0; bottom: 16px; text-align: center;
  font-family: var(--font-serif); font-style: italic; font-size: 21px; color: var(--soy);
}
[data-hero="fullbleed"] .hero__postcard-cap { display: none; }
[data-hero="postcard"] .hero__sticker { right: 26px; top: -22px; rotate: 8deg; }

/* Sticker (Zitronen-/Boarding-Badge) */
.sticker-badge {
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--lemon-soft); color: #8a6710;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: 0 10px 26px rgba(0,0,0,0.14);
  border: 2px dashed rgba(138,103,16,0.35);
}
.sticker-badge strong { font-size: 26px; font-weight: 800; line-height: 1; }
.sticker-badge span { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* Countdown-Pill (nur Phase A – blendet sich bei Aktionsende automatisch aus) */
.countdown-pill {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 14px auto 0; padding: 8px 16px;
  background: var(--berry-pale); color: var(--berry-dark);
  border-radius: 999px; font-weight: 800;
  font-size: 13px; letter-spacing: 0.2px;
}
.countdown-pill .js-countdown { font-variant-numeric: tabular-nums; font-size: 15px; letter-spacing: 0.5px; }
.countdown-pill__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--berry);
  animation: countdown-pulse 1.4s ease-in-out infinite;
}
@keyframes countdown-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.7); }
}

@media (max-width: 880px) {
  [data-hero="split"] .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  [data-hero="split"] .hero__photo { rotate: 0deg; }
}

/* ============================================================
   GOOD-NEWS BANNER (unter Hero)
   ============================================================ */
.goodnews {
  padding: 54px 0; text-align: center;
  background: linear-gradient(135deg, var(--berry) 0%, #d98a6a 130%);
}
.goodnews h2 {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(18px, 2.4vw, 27px); color: #fff; line-height: 1.5;
  max-width: 760px; margin: 0 auto;
}
.goodnews .italic-accent { color: var(--lemon-soft); }

/* ============================================================
   SECTION shells
   ============================================================ */
.section { padding: 104px 0; }
.section--cream { background: var(--cream); }
.section--aqua { background: var(--aqua-mist); }
.section--white { background: var(--white); }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__head p { margin-top: 18px; }
.section__head--left { margin-left: 0; text-align: left; }

/* Quote rule (problem header) */
.quote-rule {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 2.1vw, 24px); color: var(--accent);
  margin: 26px auto; padding: 20px 0; max-width: 640px;
  border-top: 1px solid var(--coco); border-bottom: 1px solid var(--coco);
}

/* ---------- Problem cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pcard {
  background: #fff; border: 1px solid var(--coco); border-radius: 14px;
  padding: 32px 26px; transition: transform 0.3s, box-shadow 0.3s; position: relative;
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,0.07); }
.pcard__num {
  font-family: var(--font-serif); font-style: italic; font-size: 46px;
  color: var(--accent-soft); line-height: 1; margin-bottom: 14px;
}
.pcard h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.pcard p { font-size: 14.5px; line-height: 1.7; color: rgba(48,48,48,0.72); }
@media (max-width: 760px) { .cards-3 { grid-template-columns: 1fr; } }

/* ---------- Checklist (possibility / qualifier) ---------- */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; }
.checklist--single { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.check {
  display: flex; gap: 16px; align-items: flex-start;
  font-size: 16px; line-height: 1.55; color: rgba(48,48,48,0.82);
  padding: 14px 0; border-bottom: 1px solid rgba(227,227,227,0.7);
}
.check__mark {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check__mark svg { width: 13px; height: 13px; }

/* ---------- Solution (light, airy) ---------- */
.solution__body { max-width: 760px; margin: 0 auto; text-align: center; }
.solution__body .body-text { margin-bottom: 18px; }
.solution__tag { font-family: var(--font-serif); font-style: italic; font-size: 21px; color: var(--accent); }

/* ---------- Modules (Inhalte) ---------- */
.modules { display: flex; flex-direction: column; gap: 22px; max-width: 920px; margin: 0 auto; }
.module {
  display: grid; grid-template-columns: 88px 1fr; gap: 28px; align-items: start;
  background: #fff; border: 1px solid var(--coco); border-radius: 16px;
  padding: 32px 34px; transition: transform 0.3s, box-shadow 0.3s;
}
.module:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(0,0,0,0.06); }
.module__num {
  font-family: var(--font-serif); font-style: italic; font-size: 56px;
  color: var(--accent); line-height: 0.9;
}
.module__kicker {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--aqua-deep); margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.module__kicker svg { width: 15px; height: 15px; }
.module h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.module p { font-size: 15px; line-height: 1.7; color: rgba(48,48,48,0.74); }
.module p strong { color: var(--soy); font-weight: 700; }
@media (max-width: 700px) {
  .module { grid-template-columns: 1fr; gap: 8px; padding: 26px 24px; }
  .module__num { font-size: 40px; }
}

/* ---------- About the guide ---------- */
.about__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 64px; align-items: center; }
.about__photo { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-image, 0 20px 50px rgba(0,0,0,0.12)); }
.about__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__text p { font-size: 16px; line-height: 1.75; color: rgba(48,48,48,0.78); margin-bottom: 16px; }
.about__text .italic-accent { color: var(--accent); }
.about__sign { font-family: var(--font-serif); font-style: italic; font-size: 24px; color: var(--soy); margin-top: 6px; }
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Quote with photo background ---------- */
.photo-quote { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
.photo-quote__bg { position: absolute; inset: 0; }
.photo-quote__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.photo-quote__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(62,140,132,0.5), rgba(48,48,48,0.62)); }
.photo-quote .container { position: relative; z-index: 1; max-width: 760px; }
.photo-quote__text { font-family: var(--font-serif); font-style: italic; font-size: clamp(22px, 3vw, 36px); line-height: 1.4; color: #fff; margin-bottom: 16px; }
.photo-quote__sub { font-size: 14px; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; }

/* ============================================================
   PRICING — Boarding-Pass-Card
   ============================================================ */
.pricing { padding: 104px 0; background: linear-gradient(180deg, var(--aqua-mist), var(--cream)); }
.boarding {
  max-width: 720px; margin: 0 auto; background: #fff; border-radius: 20px;
  box-shadow: 0 30px 80px rgba(62,140,132,0.16); overflow: hidden;
  border: 1px solid var(--coco);
}
.boarding__head {
  background: linear-gradient(135deg, var(--berry), #d98a6a 135%); color: #fff;
  padding: 26px 36px; display: flex; align-items: center; justify-content: space-between;
}
.boarding__head-left { display: flex; flex-direction: column; gap: 4px; }
.boarding__route { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }
.boarding__title { font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.3px; }
.boarding__icon { width: 40px; height: 40px; opacity: 0.9; }
.boarding__body { display: grid; grid-template-columns: 1fr 270px; }
.boarding__main { padding: 34px 36px; }
.boarding__price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.boarding__price .now { font-size: 52px; font-weight: 800; color: var(--soy); line-height: 1; }
.boarding__price .was { font-size: 24px; color: rgba(48,48,48,0.4); text-decoration: line-through; }
.boarding__terms { font-size: 13px; color: rgba(48,48,48,0.6); margin-bottom: 24px; }
.boarding__list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.boarding__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.boarding__list .check__mark { width: 22px; height: 22px; }
.boarding__list .check__mark svg { width: 11px; height: 11px; }
.boarding__pay { font-size: 12px; color: rgba(48,48,48,0.5); margin-top: 16px; text-align: center; }
/* Stub */
.boarding__stub {
  border-left: 2px dashed var(--coco); padding: 34px 28px; background: var(--aqua-mist);
  display: flex; flex-direction: column; justify-content: center; gap: 16px; position: relative;
}
.boarding__stub::before, .boarding__stub::after {
  content: ''; position: absolute; left: -11px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--cream);
}
.boarding__stub::before { top: -10px; }
.boarding__stub::after { bottom: -10px; }
.boarding__stub-row { display: flex; flex-direction: column; gap: 2px; }
.boarding__stub-row .lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--aqua-deep); }
.boarding__stub-row .val { font-size: 15px; font-weight: 700; color: var(--soy); }
@media (max-width: 680px) {
  .boarding__body { grid-template-columns: 1fr; }
  .boarding__stub { border-left: none; border-top: 2px dashed var(--coco); }
  .boarding__stub::before { left: -10px; top: -11px; } .boarding__stub::after { left: auto; right: -10px; top: -11px; bottom: auto; }
}

/* ---------- Unsure box ---------- */
.unsure { max-width: 760px; margin: 0 auto; background: var(--cream); border: 1px solid var(--coco); border-radius: 16px; padding: 40px 44px; }
.unsure h3 { font-family: var(--font-serif); font-style: italic; font-size: 26px; color: var(--soy); margin-bottom: 18px; }
.unsure ul { display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.unsure li { display: flex; gap: 13px; font-size: 15.5px; line-height: 1.55; color: rgba(48,48,48,0.8); }
.unsure li::before { content: ''; flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-top: 9px; }
.unsure__foot { font-size: 14px; color: rgba(48,48,48,0.6); margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--coco); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--coco); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 18px; font-weight: 700; color: var(--soy);
  padding: 24px 44px 24px 0; position: relative;
}
.faq__q::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 300; color: var(--accent); transition: transform 0.3s;
}
.faq__item.open .faq__q::after { content: '–'; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__a-inner { padding: 0 0 24px; font-size: 15.5px; line-height: 1.75; color: rgba(48,48,48,0.74); }

/* ---------- Bridge ---------- */
.bridge { padding: 90px 0; background: var(--soy); color: #fff; }
.bridge__grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; max-width: 920px; margin: 0 auto; }
.bridge .section-label { color: var(--aqua-light); }
.bridge h2 { font-family: var(--font-serif); font-style: italic; font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.bridge p { font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 520px; }
@media (max-width: 760px) { .bridge__grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: #262626; padding: 56px 0 30px; color: rgba(255,255,255,0.5); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
.footer__brand img { height: 30px; filter: brightness(0) invert(0.65); margin-bottom: 16px; }
.footer__brand p { font-size: 13.5px; line-height: 1.7; max-width: 320px; }
.footer__col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer__col a { display: block; font-size: 13.5px; margin-bottom: 9px; transition: color 0.25s; }
.footer__col a:hover { color: rgba(255,255,255,0.9); }
.footer__note { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.32); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; margin-top: 8px; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 16px; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--coco); padding: 12px 18px;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
}
.sticky-cta__price { font-size: 14px; font-weight: 700; }
.sticky-cta__price .was { color: rgba(48,48,48,0.4); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
@media (max-width: 700px) { .sticky-cta { display: flex; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; }

/* ---------- Intensity-controlled motifs ---------- */
.summer-motif { transition: opacity 0.4s; }
[data-intensity="dezent"] .summer-motif { opacity: 0.55; }
[data-intensity="dezent"] .summer-motif--hide { display: none; }
[data-intensity="deutlich"] .section--cream.alt-aqua { background: var(--aqua-mist); }
