/* ============================================================
   Cupping-Signature — Mobile-Funnel (cinematisch)
   Prototyp für künftiges Kurs-Template. Theme-Tokens, BP 768px.
   ============================================================ */

/* Intro „Was ist Kaffeeverkostung": nur der Header wird zentriert (wie Röstkurs).
   Der Grid-Satz selbst — Text links, sticky Kennzahlen-Spalte rechts (1fr 340px) —
   kommt aus dem inline <style> der Kursseite und wird hier NICHT ueberschrieben.
   Vorher stand hier `grid-template-columns: 1fr !important` aus der Zeit, als der
   Block noch einspaltig war. Das !important hat die rechte Spalte flachgelegt:
   die Karte rutschte voll breit darunter und ihr position:sticky war wirkungslos.
   Ebenso raus: `text-align: center` auf den Absaetzen — zentrierter Fließtext
   liest sich auf 760px schlecht und passt nicht zum zweispaltigen Satz. */
.bk-sig-intro .bk-sig-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.bk-sig-intro .bk-sig-header .bk-accent-line { margin-left: auto; margin-right: auto; }

/* Mobile-only Ort/Ankunft-Zeile in der CTA */
.bk-cta-info-mobile { display: none; }

/* ============================================================
   CINEMATISCHER ABLAUF — Vollbild-Szenen mit Scroll-Snap.
   Nur mobil. Jede Szene füllt den Screen, Bild vollflächig mit
   Verlauf, Text steigt ein; Scroll rastet Moment für Moment ein.
   ============================================================ */
.bk-scenes { display: none; }

.bk-scene { position: relative; overflow: hidden; }
.bk-scene-bg { position: absolute; inset: 0; }
.bk-scene-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bk-scene::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.30) 100%);
}
.bk-scene-content { position: relative; z-index: 2; color: #fff; }
.bk-scene-eyebrow {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.bk-scene-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; letter-spacing: 1px;
  color: var(--accent); margin-bottom: 10px;
}
.bk-scene-content h3 {
  font-family: var(--font-display);
  font-size: 32px; line-height: 1.15; font-weight: 600;
  margin: 0 0 14px; color: #fff;
}
.bk-scene-content p {
  font-size: 17px; line-height: 1.6; margin: 0;
  color: rgba(255,255,255,0.9);
}
.bk-scene-cue {
  position: absolute; left: 0; right: 0; bottom: 22px; z-index: 2;
  text-align: center;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  animation: bk-cue 1.8s ease-in-out infinite;
}
@keyframes bk-cue { 0%,100%{ transform: translateY(0); opacity:.55 } 50%{ transform: translateY(5px); opacity:1 } }

/* ============================================================
   STICKY MOBILE-AKTIONSLEISTE
   ============================================================ */
.bk-mobilebar { display: none; }

@media (max-width: 768px) {
  /* Scroll-Snap nur mobil; nur die Szenen sind Snap-Punkte */
  html { scroll-snap-type: y proximity; }

  .bk-scenes { display: block; }
  .bk-scene {
    min-height: 100svh;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    align-items: flex-end;
    padding: 0 26px calc(20vh + env(safe-area-inset-bottom, 0px));
  }
  .bk-scene-content { max-width: 520px; }

  /* Tiefe/Signature-Blöcke + Ballast inline aus */
  .bk-sig-intro, .bk-sig-sca, .bk-sig-aromen, .bk-sig-kontext, .bk-sig-cta-wrap,
  .bk-intro, .bk-audience, .bk-trainer, .bk-details, .bk-courses { display: none; }

  .bk-cta-info-mobile {
    display: block; margin: 20px auto 0; max-width: 460px;
    font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.9); text-align: center;
  }

  /* Reviews mobil auf 2 kürzen */
  .hp-reviews-grid > .hp-review-card:nth-child(n+3) { display: none; }

  /* Sticky Aktionsleiste */
  .bk-mobilebar {
    display: flex; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -6px 24px rgba(0,0,0,0.16);
  }
  .bk-mobilebar-btn {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 4px;
    padding: 8px 4px; border-radius: 12px;
    font-family: var(--font-body); font-size: 12px; font-weight: 600;
    line-height: 1.1; text-decoration: none; min-height: 0;
  }
  .bk-mobilebar-ico { width: 20px; height: 20px; display: block; }
  .bk-mobilebar-book { flex: 1.5; background: var(--accent); color: #fff; }
  .bk-mobilebar-gift,
  .bk-mobilebar-call { background: var(--bg-3); color: var(--text-primary); }

  body { padding-bottom: 74px; }
}

/* Reduced motion: kein Snap-Zwang, kein Cue-Wackeln */
@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; }
  .bk-scene { scroll-snap-align: none; scroll-snap-stop: normal; }
  .bk-scene-cue { animation: none; }
}
