/* ============================================================
   SkipperSachen – Global Styles + Hafentraining
   Aufgeräumte & Zusammengeführte Version
   ============================================================ */

/* ------------------ 1) Root & Base ------------------ */

:root{
  /* Primärfarben */
  --navy: #0E3A5A;
  --brand: #0E3A5A;

  /* CTA */
  --accent: #FF8C00;

  /* Textfarben */
  --ink: #1A1D21;
  --muted: #6B7280;

  /* Hintergründe */
  --bg: #FFFFFF;
  --bg-soft: #F4F7FA;

  --section-odd-bg: #FFFFFF;
  --section-even-bg: #F4F7FA;

  /* Cards */
  --card-bg: #FFFFFF;
  --card-border: #E5E7EB;

  /* Layout */
  --radius: 16px;
  --shadow: 0 14px 30px rgba(15,23,42,.12);
  --content-max: 1180px;
  --pad-x: 20px;

  /* Brand-Details */
  --logo-w: 100px;
  --brand-gap: 14px;

  /* Hero & Navigation */
  --hero-img: url('../pictures/hero.jpeg');
  --hero-darkness: .25;
  --nav-h: 60px;

  /* FW-Bar */
  --fw-red: #a82c1f;
  --fw-ink: #111827;
  --fw-border: #e5e7eb;
  --fw-shadow: 0 2px 14px rgba(0,0,0,.08);

  /* Logo & Menu */
  --logo-size: 58px;
  --menu-fs: 15px;
}

/* ------------------ Base Resets ------------------ */

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

html{
  font-size:16px;
  text-rendering:optimizeLegibility;
  font-kerning:normal;
  scroll-padding-top:80px;
  scroll-behavior:smooth;
}

body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-variant-ligatures:common-ligatures;
  font-feature-settings:"kern" 1, "liga" 1;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* ------------------ Text & Links ------------------ */

a{
  color:var(--navy);
  text-decoration:none;
  transition:color .2s ease, opacity .2s ease;
}

a:hover{
  color:var(--accent);
}

h1,h2,h3,h4{
  font-weight:700;
  color:var(--navy);
}

.muted{
  color:var(--muted);
}

.sharp{
  -webkit-font-smoothing:antialiased !important;
  -moz-osx-font-smoothing:grayscale !important;
  text-rendering:geometricPrecision !important;
}

/* ------------------ Layout Container ------------------ */

.container{
  max-width:var(--content-max);
  margin:0 auto;
  padding:0 var(--pad-x);
}

/* ============================================================
   2) Buttons – Zentrales System
   ============================================================ */

.btn, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition:
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    transform .15s ease;
}

/* Primary */
.btn {
  background: var(--accent);
  color: #111827;
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(15,23,42,.18);
}
.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(15,23,42,.16);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(15,23,42,0.22);
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(15,23,42,0.03);
  border-color: rgba(15,23,42,0.40);
}

/* Fokus */
.btn:focus-visible, .btn-outline:focus-visible {
  outline: 3px solid rgba(255,140,0,.55);
  outline-offset: 2px;
}

/* Links als Buttons */
a.btn, a.btn-outline {
  text-decoration: none;
  color: inherit;
}

/* Größen-Varianten */
.btn-small, .btn--sm {
  padding: 8px 14px;
  font-size: .87rem;
}

.btn--lg {
  padding: 14px 24px;
  font-size: 1rem;
}

/* Breite-Varianten */
.btn-block, .btn--block {
  width: 100%;
  display: inline-flex;
}

/* Slot-Variante für Termin-Karten */
.btn-slot {
  min-width: 190px;
  text-align: center;
}

@media (max-width: 900px) {
  .btn-slot {
    width: 100%;
    min-width: 0;
  }
}

/* Ghost-Variante */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 58, 90, 0.22);
  background: #fff;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  cursor: pointer;
  transition:
    background .2s,
    color .2s,
    border-color .2s,
    box-shadow .15s,
    transform .15s;
}

.btn-ghost::after {
  content: '›';
  font-size: 1rem;
  transform: translateY(1px);
}

.btn-ghost:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 6px 16px rgba(0,0,0,0.09);
  transform: translateY(-1px);
}

.toggle-more {
  margin-top: 1.5rem;
}

/* ============================================================
   3) Sections
   ============================================================ */

.section {
  position: relative;
  padding: 80px 0;
  text-align: left;
  border-bottom: 1px solid rgba(10,35,66,.08);
}

main > .section {
  background: var(--section-odd-bg);
}
main > .section:nth-of-type(even) {
  background: var(--section-even-bg);
}

/* Überschriften */
.section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .75em;
}

/* Texte */
.section p, .section p.lead, .section .muted {
  font-size: .95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

/* Muted Text */
.section .muted {
  color: rgba(10,35,66,.6);
  max-width: 780px;
}

/* Varianten mit reduzierter Vertikal-Padding */
.section.program, .section.faq, .section.special, .section.feeling, .section.founder-quote-plain {
  padding-top: 64px;
  padding-bottom: 64px;
}

/* ============================================================
   4) Grids & Cards
   ============================================================ */

/* Basis-Grid (Standard für andere Layouts) */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: stretch;
  justify-content: center;
  margin-top: 20px;
}

/* Startseite – Topics-Kacheln
   2 pro Zeile, letzte Zeile verteilt sich auf volle Breite */
.page-home .topics .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  align-items: stretch;
}

/* Standard: zwei Kacheln pro Zeile */
.page-home .topics .grid > .card {
  flex: 0 1 calc(50% - 12px);
  max-width: calc(50% - 12px);
}

/* Wenn Anzahl der Karten ungerade ist (3, 5, 7, …),
   bekommt die letzte Karte die volle Breite */
.page-home .topics .grid > .card:last-child:nth-child(odd) {
  flex-basis: 100%;
  max-width: 100%;
}

/* Mobile: immer eine Kachel pro Zeile */
@media (max-width: 640px) {
  .page-home .topics .grid > .card {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* ============================================================
   Basis-Karte
   ============================================================ */

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  /* keine feste Höhe hier */
  transition: box-shadow .2s ease, transform .18s ease;
}

.card h3 {
  margin: 0;
  font-size: 1.07rem;
  line-height: 1.35;
  color: var(--navy);
}

.card p {
  flex: 1;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Button immer unten */
.card .btn,
.card a.btn {
  margin-top: auto;
}

/* ============================================================
   Teaser-Kacheln (kleine horizontale Karten)
   ============================================================ */

.card.teaser {
  position: relative;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(10,35,66,.08);
  transition: transform .25s, box-shadow .25s;
}

.card.teaser:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10,35,66,.12);
}

.card.teaser .teaser-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-top-left-radius: 16px;
}

.card.teaser .teaser-head {
  position: relative;
  min-height: 90px;
  padding: 16px 16px 0 136px;
}

.card.teaser .teaser-title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #0A2342;
  font-weight: 700;
}

.card.teaser .teaser-text {
  margin: 0;
  padding: 12px 16px 16px;
  color: #111827;
  line-height: 1.6;
}

.more-btn {
  display: none !important;
}

/* Teaser – Mobile */
@media (max-width: 480px) {
  .card.teaser .teaser-thumb {
    width: 100px;
    height: 75px;
  }
  .card.teaser .teaser-head {
    min-height: 75px;
    padding-left: 116px;
  }
}

/* ============================================================
   Karten mit Bild oben (card-img-top)
   – alle Kacheln in einer Zeile gleich hoch,
   Buttons auf gleicher Höhe
   ============================================================ */

.card.card-img-top {
  padding: 0 !important;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

/* Bild über gesamte Breite, Höhe aus Aspect-Ratio,
   Cropping über object-fit: cover */
.card.card-img-top > img {
  width: 100%;
  height: auto;
  border-radius: var(--radius) var(--radius) 0 0;
  display: block;
}

/* Body füllt den verfügbaren Platz, Button nach unten */
.card.card-img-top .card-body {
  flex: 1;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card.card-img-top h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.35;
}

.card.card-img-top p {
  margin: 0;
  color: #374151;
  line-height: 1.55;
}

/* CTA unten ausrichten – Buttons auf gleicher Höhe */
.card.card-img-top .btn {
  margin-top: auto;
}

/* Desktop: Panorama-Feeling */
@media (min-width: 900px) {
  .card.card-img-top > img {
    /* aspect-ratio: 3 / 1; */
  }
}

/* Mobile-Feintuning */
@media (max-width: 520px) {
  .card.card-img-top .card-body {
    padding: 16px 18px 18px;
  }
}

/* ============================================================
   Side-Layout nur für volle Breite in der letzten Zeile
   (Karte ist alleine in der Zeile → Bild links, Text rechts)
   ============================================================ */

.page-home .topics .grid > .card.card-img-top.fullwidth {
  flex-direction: row;
  align-items: stretch;
}

/* Bild links */
.page-home .topics .grid > .card.card-img-top.fullwidth > img {
  width: 40%;
  height: auto;
  border-radius: 14px 0 0 14px;
}

/* Text rechts */
.page-home .topics .grid > .card.card-img-top.fullwidth .card-body {
  width: 60%;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}

/* Mobil → wieder normal untereinander */
@media (max-width: 780px) {
  .page-home .topics .grid > .card.card-img-top.fullwidth {
    flex-direction: column;
  }

  .page-home .topics .grid > .card.card-img-top.fullwidth > img {
    width: 100%;
    height: auto;
    border-radius: 14px 14px 0 0;
  }

  .page-home .topics .grid > .card.card-img-top.fullwidth .card-body {
    width: 100%;
    padding: 16px 18px 18px;
  }
}

/* ============================================================
   5) CTA-Band & Footer (Basis)
   ============================================================ */

/* CTA-Band */
.cta-band {
  background: var(--brand);
  color: #fff;
}
.cta-band .cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}
.cta-band h3 {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
}
.cta-band .btn {
  background: var(--accent);
  border-color: var(--accent);
}
.cta-band .btn:hover {
  background: #fff;
  color: var(--accent);
}

/* CTA – Mobile */
@media (max-width: 700px) {
  .cta-band .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Footer – Basis */
.site-footer {
  background: var(--brand);
  color: #c9d1e1;
  padding: 48px 0 32px;
  font-size: 15px;
  line-height: 1.5;
}

/* Footer Grid */
.footgrid {
  display: grid;
  gap: 32px;
}
@media (min-width: 800px) {
  .footgrid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

/* Brand-Bereich */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.footer-brand strong {
  font-size: 1.05rem;
  color: #fff;
}
.footer-brand small {
  display: block;
  color: #c9d1e1;
}

/* Footer – Links */
.site-footer a {
  color: #d7dfec;
  text-decoration: none;
  opacity: .95;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  opacity: 1;
}
.site-footer a:focus-visible {
  outline: 3px solid rgba(255,255,255,.6);
  outline-offset: 2px;
}

/* Copyright alt (Basis) */
.copyright {
  text-align: center;
  margin-top: 32px;
  padding-top: 16px;
  font-size: 14px;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* ============================================================
   6) Accordion (altes .acc-Pattern)
   ============================================================ */

.acc{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:14px;
}
.acc-item{
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#fff;
  box-shadow:var(--shadow);
  overflow:clip;
}
.acc-trigger{
  position:relative;
  width:100%;
  text-align:left;
  background:#f7fafc;
  border:0;
  border-radius:12px;
  font:inherit;
  color:#0A2342;
  cursor:pointer;
  display:grid;
  grid-template-columns:auto 1fr;
  grid-auto-rows:auto;
  align-items:center;
  gap:8px 12px;
  padding:12px 14px;
  transition:background .25s ease, box-shadow .25s ease;
}
.acc-trigger:hover, .acc-trigger:focus-visible{
  background:#eef3f8;
  box-shadow:inset 0 0 0 2px rgba(255,140,0,.25);
  outline:none;
}
.acc-thumb-inline{
  grid-column:1;
  grid-row:1 / span 2;
  width:88px;
  height:58px;
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
}
.acc-title{
  grid-column:2;
  margin:0;
  line-height:1.25;
  font-weight:800;
  color:#0A2342;
}
.acc-goal{
  grid-column:2;
  margin:2px 0 0;
  line-height:1.25;
  font-weight:500;
  color:#374151;
}
.acc-panel{
  padding:0 16px 14px;
  background:#fff;
  border-top:1px solid #e5e7eb;
  border-radius:0 0 12px 12px;
}
.acc-body{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:14px;
  align-items:start;
  padding-top:14px;
}
.acc-thumb{
  width:140px;
  height:100px;
  object-fit:cover;
  border-radius:8px;
}
.acc-text{
  color:#111827;
  line-height:1.6;
}
.acc-trigger::after{
  content:"";
  position:absolute;
  right:16px;
  bottom:8px;
  width:24px;
  height:24px;
  border-radius:50%;
  background-color:#f1f5f9;
  background-repeat:no-repeat;
  background-position:center;
  background-size:14px 14px;
  transform:rotate(0deg);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  transition:transform .25s ease, background-color .25s ease, background-image .25s ease;
}
.acc-trigger[aria-expanded='true']::after{
  transform:rotate(180deg);
  background-color:var(--accent);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}
@media(max-width:640px){
  .acc-trigger{
    grid-template-columns:1fr;
    gap:10px;
  }
  .acc-thumb-inline{
    width:100%;
    height:160px;
  }
}
@media(max-width:560px){
  .acc-body{
    grid-template-columns:1fr;
  }
  .acc-thumb{
    width:100%;
    height:160px;
  }
}

/* ============================================================
   7) Founder / Zitate
   ============================================================ */

/* Variante 1: Plain – Startseite (home.php)
   – Zitat mittig, darunter Signatur, Bild etwas nach links rausgezogen */
.founder-quote-plain {
  text-align: center;
  color: var(--muted);
}

.founder-quote-plain blockquote {
  margin: 0 auto 1rem;
  max-width: 720px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-style: italic;
}

/* Signaturzeile unter dem Zitat */
.founder-quote-plain .founder-signature {
  display: flex;
  flex-direction: row;          /* Bild links, Text rechts */
  align-items: center;
  justify-content: center;      /* Gruppe insgesamt zentriert im Abschnitt */
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

/* Avatar etwas größer + optisch prominenter, leicht aus der Flucht nach links */
.founder-quote-plain .founder-avatar {
  width: 150px;
  height: 150px;
  flex: 0 0 150px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.98;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  margin-left: -32px;
}

/* Name + Rolle untereinander */
.founder-signature-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}

.founder-name {
  font-weight: 600;
  color: var(--ink);
}

.founder-role {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Mobile: alles untereinander & zentriert */
@media (max-width: 768px) {
  .founder-quote-plain {
    text-align: center;
  }

  .founder-quote-plain .founder-signature {
    flex-direction: column;
    align-items: center;
    margin-top: 1.25rem;
  }

  .founder-quote-plain .founder-avatar {
    margin-left: 0;
    width: 130px;
    height: 130px;
  }

  .founder-signature-text {
    align-items: center;
    text-align: center;
  }

  .founder-quote-plain blockquote {
    max-width: 100%;
    font-size: 1.25rem;
  }
}

/* Variante 2: Klassisch zentriert (allgemein nutzbar) */
.founder-quote {
  font-size: 1.35rem;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

/* kleiner Avatar, wenn .founder-quote verwendet wird */
.founder-quote .founder-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto .5rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}

.founder-signature {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}

/* Variante 3: Offset-Zitat (z.B. in hafentraining.php) */
.founder-quote-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  margin-top: 60px;
}

.founder-image-col {
  flex-shrink: 0;
  position: relative;
  left: -40px;
}

.founder-avatar-offset {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.founder-text-col {
  flex: 1;
  max-width: 700px;
}

.founder-quote-text {
  font-size: 1.35rem;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1.2rem;
}

.founder-signature-offset {
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 700px) {
  .founder-quote-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .founder-image-col {
    left: 0;
    margin: 0 auto;
  }

  .founder-avatar-offset {
    width: 140px;
    height: 140px;
  }

  .founder-quote-text,
  .founder-signature-offset {
    text-align: center;
  }
}

/* ============================================================
   8) Nutzenkarten / Feeling
   ============================================================ */

.benefits-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  margin-top:12px;
}
.benefit{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:18px;
  box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease;
}
.benefit:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(10,35,66,.10);
}
.benefit-icon{
  font-size:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:10px;
  background:#f2f5f9;
  margin-bottom:10px;
}
.benefit h3{
  font-size:1.06rem;
  margin:0 0 6px;
  color:var(--navy);
}
.benefit p{
  margin:0;
  color:#374151;
  line-height:1.55;
}

.day {
  background:#FFFFFF;
  border:1px solid #E5E7EB;
  border-radius:var(--radius);
  padding:24px 28px;
  color:var(--ink);
  box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease;
  display:flex;
  flex-direction:column;
}

.day-header{
  margin:0 0 12px;
  padding-bottom:6px;
  border-bottom:1px solid #E5E7EB;
  font-size:1.25rem;
  color:var(--navy);
}

/* Liste wächst flexibel, drückt evtl. Footer nach unten */
.day .checklist{
  flex-grow:1;
}

/* Feeling-Karten */
.section.feeling{
  padding-top:64px;
  padding-bottom:64px;
  border-top:1px solid #e8edf3;
  border-bottom:1px solid #e8edf3;
}
.section.feeling h2{
  margin:0 0 22px;
  text-align:left;
  color:var(--brand);
}
.feeling-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  align-items:stretch;
}
@media (max-width:980px){
  .feeling-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .feeling-grid{ grid-template-columns:1fr; }
}
.feel-card{
  position:relative;
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
  background:#FFFFFF;
  border:1px solid #e5e7eb;
  transition:transform .2s ease, box-shadow .2s ease;
}
.feel-card.primary{ background:#F9FAFB; }
.feel-card h3{
  margin:0 0 .6rem;
  font-size:1.18rem;
  font-weight:800;
  color:var(--navy);
}
.feel-card p{
  margin:0;
  line-height:1.6;
  color:var(--muted);
}
.feel-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 40px rgba(15,23,42,.18);
}

/* ============================================================
   9) Preise
   ============================================================ */

#preise .grid{ align-items:stretch }
#preise .card{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
#preise .card .checklist{
  list-style:none;
  padding-left:1.2rem;
  margin:.75rem 0;
}
#preise .card .checklist li{
  position:relative;
  margin:.35rem 0;
  line-height:1.5;
  padding-left:1rem;
}
#preise .card .checklist li::before{
  content:"✔";
  position:absolute;
  left:0; top:0;
  color:var(--accent);
  font-weight:700;
  font-size:.95rem;
}
#preise .card .price{
  margin-top:auto;
  font-size:1.3rem;
  font-weight:700;
  color:var(--navy);
}
#preise .card .actions{
  margin-top:auto;
  display:flex;
  gap:10px;
}
#preise .card .actions .btn{ flex:1; text-align:center }
@media (max-width:600px){
  #preise .card .actions{ flex-direction:column }
}
#preise .card:hover{
  box-shadow:0 10px 26px rgba(10,35,66,.10);
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border-color:#dde4ed;
}

.preis-block{ width:100%; margin:0; }
.price{
  font-size:1.2rem;
  margin:0 0 1.5rem;
}
.preis-note{
  display:inline-block;
  font-size:.95rem;
  color:var(--muted);
}
#preise.section{ padding-bottom:30px; }
#termine.section{ padding-top:20px; }

/* Mini-Trust-Strip beim Preis */
.trust-strip{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 12px;
  margin:14px 0 10px;
  font-size:.9rem;
  color:#4b5563;
}
.trust-stars{
  display:inline-flex;
  align-items:center;
  font-size:.95rem;
  letter-spacing:1px;
  color:#f4b400;
}
.trust-text strong{
  font-weight:600;
}
.trust-link{
  margin-left:auto;
  font-size:.88rem;
  text-decoration:underline;
}
@media (max-width:600px){
  .trust-strip{
    flex-direction:column;
    align-items:flex-start;
  }
  .trust-link{
    margin-left:0;
  }
}

/* Hinweis unter Preisblock */
.section .price-hinweis.muted {
  max-width:none !important;
  width:100% !important;
  margin-left:0 !important;
  margin-right:0 !important;
  text-align:left !important;
  display:block !important;
}

/* ============================================================
   10) Hero
   ============================================================ */

.hero{
  position:relative;
  isolation:isolate;
  min-height:calc(100vh - var(--nav-h,60px));
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 20px;
  padding-bottom:max(80px, env(safe-area-inset-bottom) + 64px);
  color:#fff;
  background:none !important;
  background-image:none !important;
  overflow:hidden;
}

/* Noise + Abdunklung */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url('/assets/noise_512.webp');
  background-size:cover;
  opacity:.4;
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,calc(var(--hero-darkness,0.10))) 0%,
    rgba(0,0,0,calc(var(--hero-darkness,0.25))) 55%,
    rgba(0,0,0,calc(var(--hero-darkness,0.35))) 100%
  );
}

/* Inhalt */
.hero .inner{
  position:relative;
  z-index:3;
  max-width:900px;
  width:100%;
  display:grid;
  justify-items:center;
  align-content:center;
  gap:clamp(12px,2.8vh,28px);
  padding-block:clamp(56px,10vh,96px);
}

.hero h1, .hero p, .hero .claim, .hero .subline, .hero .kicker{
  color:#fff !important;
  text-shadow:0 2px 6px rgba(0,0,0,.30), 0 0 6px rgba(0,0,0,.10);
}

/* Headline */
.hero h1{
  font-size:clamp(2.1rem,4.6vw,3.2rem);
  line-height:1.12;
  font-weight:800;
  letter-spacing:-0.3px;
  text-wrap:balance;
}

/* Claim */
.hero .claim{
  font-size:clamp(1.06rem,1.6vw,1.28rem);
  line-height:1.55;
  max-width:46ch;
  margin:0 0 clamp(10px,2.4vh,22px);
}

/* Subline */
.hero .subline{
  font-size:clamp(.98rem,1.1vw,1.08rem);
  line-height:1.6;
  max-width:80ch;
}

/* Badge/Kicker */
.hero .kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  font-size:clamp(.82rem,.9vw,.95rem);
  font-weight:600;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.38);
  backdrop-filter:blur(3px);
  box-shadow:0 1px 6px rgba(0,0,0,.18);
}
.hero .kicker::before, .hero .kicker::after{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:currentColor;
  opacity:.9;
}

/* CTA-Gruppe */
.hero-cta-group{
  display:flex;
  gap:clamp(12px,1.8vw,18px);
  flex-wrap:wrap;
  justify-content:center;
  margin-top:clamp(8px,1.8vh,18px);
}
.hero-cta-group .btn, .hero-cta-group .btn-outline{
  padding:14px 22px;
  border-width:2.5px;
  font-size:clamp(.95rem,1.05vw,1.05rem);
}

/* Hintergrundbild */
.hero-media{
  position:absolute;
  inset:0;
  z-index:1;
  overflow:hidden;
}
.hero-media picture, .hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center bottom;
}

/* Extra Overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
}

/* Scroll-Down Button */
.scroll-down{
  position:absolute;
  left:50%;
  bottom:20px;
  transform:translateX(-50%);
  width:48px;
  height:48px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1.5px solid rgba(255,255,255,.9);
  background:rgba(0,0,0,.65);
  color:#fff;
  cursor:pointer;
  z-index:20;
  box-shadow:0 4px 16px rgba(0,0,0,.4);
}
.scroll-down:hover, .scroll-down:focus-visible{
  background:#fff;
  color:var(--accent);
  border-color:#fff;
  outline:none;
}

/* Mini-Jumpbar unter dem Hero */
.section-nav{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top:1.75rem;
  font-size:.85rem;
}
.section-nav a{
  display:inline-flex;
  align-items:center;
  padding:.4rem .85rem;
  border-radius:999px;
  border:1px solid #ddd;
  background:#fff;
}

/* ============================================================
   11) NAV
   ============================================================ */

.topnav.fw-onebar{
  position: sticky;
  top: 0;
  z-index: 100;
}

.fw-bar{
  background: #fff;
  border-bottom: 2px solid var(--fw-red);
  box-shadow: var(--fw-shadow);
  display: flex;
  align-items: center;
  height: var(--nav-h);
}

.fw-bar-inner{
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand-link{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fw-ink);
  height: 100%;
}
.brand-logo{
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.brand-url{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-left: 1px solid rgba(0,0,0,.08);
  padding-left: 10px;
  font-size: .9rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-url strong, .brand-url .part-sachen{
  font-weight: 700;
  color: var(--fw-ink);
}
.brand-url .url-path{
  color: var(--fw-red);
  font-weight: 600;
}
@media(max-width:820px){
  .brand-url{ display:none; }
}

/* Desktop Navigation */
.fw-navmenu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--menu-fs);
  font-weight: 500;
  color: var(--fw-ink);
}
.fw-item{ position: relative; }
.fw-link, .fw-toggle{
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 10px;
  cursor: pointer;
  color: var(--fw-ink);
}

/* Desktop Dropdown */
.fw-submenu{
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: #fff;
  border: 1px solid #e4e6ea;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  padding: 6px 0;
  list-style: none;
  display: none;
  z-index: 1000;
}

/* Öffnen über Hover/Fokus ODER Klasse .open (für Klick) */
.fw-dropdown:hover > .fw-submenu, .fw-dropdown:focus-within > .fw-submenu, .fw-dropdown.open > .fw-submenu{
  display: block;
}

.fw-sublink{
  display: block;
  padding: 9px 12px;
  color: #111827;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 8px;
}

/* Hamburger Basis */
.hamburger{
  display: none;
  width: 44px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hamburger-box{
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  margin: 0 auto;
  position: relative;
}
.hamburger-box::before, .hamburger-box::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:#111;
}
.hamburger-box::before{ top:-7px; }
.hamburger-box::after{ top:7px; }

/* Animation */
.hamburger-box, .hamburger-box::before, .hamburger-box::after {
  transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
}

/* Wenn Menü offen → Burger wird zum X */
.hamburger[aria-expanded="true"] .hamburger-box {
  background: transparent; /* mittlere Linie ausblenden */
}
.hamburger[aria-expanded="true"] .hamburger-box::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger-box::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ------------------ Mobile Navigation ------------------ */

@media(max-width:979px){

  .fw-bar-inner{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .hamburger{
    display: block;
    -webkit-tap-highlight-color: transparent;
  }

  /* Menü: fix unter der Leiste, erst mal unsichtbar */
  .fw-navmenu{
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 16px 24px rgba(0,0,0,.08);
    padding: 4px 0 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none;
    z-index: 101;
  }

  /* JS setzt .is-open → sichtbar */
  .fw-navmenu.is-open{
    display: flex;
  }

  .fw-item{
    border-bottom: 1px solid #eceff3;
  }

  .fw-link,
  .fw-toggle{
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    background: var(--fw-red);
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: .03em;
  }

  .fw-submenu{
    position: static;
    transform: none;
    margin: 0;
    padding: 6px 0;
    border: 0;
    box-shadow: none;
    background: #fff;
    display: none;
  }

  .fw-dropdown.open > .fw-submenu{
    display: block;
  }

  .fw-sublink{
    padding: 8px 18px;
    font-size: .9rem;
  }

  /* Body fixen, wenn Menü offen */
  body.nav-open{
    overflow: hidden;
  }
}

/* ============================================================
   12) Formulare global
   ============================================================ */

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], input[type="date"], input[type="url"], textarea, select{
  width:100%;
  padding:12px 14px;
  font-size:1rem;
  font-family:inherit;
  color:var(--ink);
  border:1px solid #d1d5db;
  border-radius:var(--radius);
  background-color:#fff;
  transition:border-color .15s ease, box-shadow .15s ease;
}
input:focus, textarea:focus, select:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,0.25);
  outline:none;
}
input:hover, textarea:hover, select:hover{
  border-color:#b3b7c0;
}
input:disabled, textarea:disabled, select:disabled{
  background-color:#f3f4f6;
  opacity:.6;
  cursor:not-allowed;
}

/* Status-Anzeige für Mitgliedsprüfung / Feedback */
.mitglied-status{
  margin-top:6px;
  font-size:.85rem;
  line-height:1.35;
  display:none;
  padding:8px 10px;
  border-radius:6px;
}
.mitglied-status.error{
  background:#d93025;
  color:#fff;
}
.mitglied-status.ok{
  background:#0a7a20;
  color:#fff;
}
.mitglied-status.muted{
  background:#e8e8e8;
  color:#333;
}

/* Booking-spezifische Select-Optik */
.booking-form select{
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  border:1px solid rgba(0,0,0,0.08);
  border-radius:var(--radius);
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5.5 7.5l4.5 4.5 4.5-4.5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:18px;
}

/* ============================================================
   13) Booking-Layouts
   ============================================================ */

.booking-grid{
  max-width:var(--content-max);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,2fr) minmax(0,1.4fr);
  gap:32px;
  align-items:flex-start;
}
.booking-summary.card, .booking-form.card{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px 24px 28px;
  background:#ffffff;
}

/* Formularraster */
.form-booking .form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px 20px;
  margin-top:16px;
}
.form-booking .form-field{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.form-booking .form-field-full{
  grid-column:1 / -1;
}

/* Mobile Booking-Layout */
@media(max-width:900px){
  .booking-grid{
    grid-template-columns:1fr;
  }
  .form-booking .form-grid{
    grid-template-columns:1fr;
  }
}

/* Konto-Variante */
.booking-grid.booking-grid--konto{
  grid-template-columns:minmax(0,3fr) minmax(0,2fr);
}
@media(max-width:900px){
  .booking-grid.booking-grid--konto{
    grid-template-columns:1fr;
  }
  .booking-grid.booking-grid--konto .booking-form{
    order:1;
  }
  .booking-grid.booking-grid--konto .booking-summary{
    order:2;
  }
}

/* ============================================================
   14) Kurzinfos-Strip
   ============================================================ */

.course-overview-strip{
  background:#f7f8fb;
  border-top:1px solid #e2e4ea;
  border-bottom:1px solid #e2e4ea;
  padding:1rem 0;
}

.course-overview-heading{
  font-size:1rem;
  font-weight:600;
  margin:0 0 .75rem 0;
  color:#111;
}

.course-overview-grid{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:1rem 2rem;
}

.course-overview-item{
  min-width:140px;
}

.course-overview-label{
  display:block;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#777;
  margin-bottom:.15rem;
}

.course-overview-value{
  font-size:.95rem;
  font-weight:500;
  color:#111;
}

/* CTA rechts (Desktop) */
.course-overview-cta{
  margin-left:auto;
}

/* Mobile: Label und Wert in EINER Zeile  */
@media(max-width:768px){

  .course-overview-grid{
    flex-direction:column;
    align-items:flex-start;
  }

  .course-overview-heading{
    margin-bottom:.85rem;
  }

  .course-overview-item{
    display:flex;
    flex-direction:row;
    align-items:baseline;
    justify-content:space-between;
    width:100%;
    max-width:100%;
    min-width:0;
    padding:2px 0;
    gap:.5rem;
  }

  .course-overview-label{
    display:inline;
    margin:0;
    font-size:.82rem;
  }
  .course-overview-label::after{
    content:":";
    margin-left:2px;
  }

  .course-overview-value{
    display:inline;
    font-size:.92rem;
    font-weight:600;
    text-align:right;
    flex-shrink:0;
  }

  .course-overview-cta{
    margin-left:0;
    margin-top:.75rem;
    width:100%;
  }
  .course-overview-cta .btn{
    width:100%;
    justify-content:center;
  }
}

/* ============================================================
   15) Termine – Kartenlayout
   ============================================================ */

.dates-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  width:100%;
}
.date-card{
  width:100%;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:20px 24px;
}

/* Klassisches Layout (Fallback) */
.date-card-layout{
  display:flex;
  align-items:center;
  gap:1.6rem;
  justify-content:space-between;
}
.date-main{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.date-label{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--muted);
}
.date-date{
  font-weight:600;
  font-size:1rem;
  color:var(--navy);
}
.date-ort{
  font-size:.9rem;
  color:var(--muted);
}
.date-status{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.date-action{
  white-space:nowrap;
}
.date-action .btn, .date-action .btn-outline{
  white-space:nowrap;
}
.status-note{
  font-size:.85rem;
  color:var(--muted);
}

/* Badges allgemein */
.badge{
  font-size:.8rem;
  padding:.2rem .6rem;
  border-radius:999px;
  border:1px solid transparent;
  display:inline-flex;
  align-items:center;
}
.badge.ok{
  background:#e6f8ee;
  color:#0f6a33;
  border-color:#bfe9cf;
}
.badge.plan{
  background:#eef6ff;
  color:#0b4d9a;
  border-color:#cfe3ff;
}
.badge.off{
  background:#f7f7f7;
  color:#6b7280;
  border-color:#e5e7eb;
}

/* Classic Termin-Karten responsive */
@media(max-width:900px){
  .date-card-layout{
    flex-direction:column;
    align-items:flex-start;
  }
  .date-action{
    justify-self:stretch;
    margin-top:6px;
  }
  .date-action .btn,
  .date-action .btn-outline{
    width:100%;
    text-align:center;
  }
}

/* Kleiner Hinweistext */
.terminhinweis-mini{
  font-size:.9rem;
  margin-top:-4px;
  margin-bottom:10px;
}

/* Wunschkarten leicht hervorheben */
.date-card-request {
  border-style: dashed;
}

/* ============================================================
   16) „In Planung / Vormerken“
   ============================================================ */

.section.interest .interest-card{
  max-width:900px;
  margin:0 auto;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:24px;
}
.section.interest .plan-status{
  display:flex;
  gap:16px;
  padding:0;
  margin:10px 0 18px;
  list-style:none;
  flex-wrap:wrap;
}
.section.interest .plan-status .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  display:inline-block;
  margin-right:8px;
}
.section.interest .plan-status .dot.ok{ background:#16a34a; }
.section.interest .plan-status .dot.plan{ background:#2563eb; }

.section.interest .waitlist{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.section.interest .waitlist .wl-grid{
  display:grid;
  gap:12px;
  width:100%;
  grid-template-columns:repeat(3, minmax(220px,1fr));
}
@media(max-width:900px){
  .section.interest .waitlist .wl-grid{
    grid-template-columns:1fr;
  }
}

/* ============================================================
   17) Reviews / Testimonials
   ============================================================ */

.section.reviews{
  padding:48px 0;
  background:#f7f7f7;
}

/* Header */
.reviews-header{
  margin-bottom:24px;
}
.reviews-header h2{
  font-size:1.8rem;
  margin:0 0 8px;
}
.reviews-header .muted{
  margin:0;
  font-size:.95rem;
  color:#666;
}

/* Scroller */
.reviews-scroller{
  overflow-x:auto;
  overflow-y:visible;
  -webkit-overflow-scrolling:touch;
  padding-bottom:12px;
  margin:0 -16px;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.reviews-scroller::-webkit-scrollbar{ display:none; }

.reviews-track{
  display:flex;
  flex-wrap:nowrap;
  gap:16px;
  padding:4px 16px;
  scroll-snap-type:x mandatory;
}

/* Karten – Basis: 1 Karte pro Zeile (Mobile), Desktop wird unten angepasst */
.review-card{
  position:relative;
  flex:0 0 100%;
  max-width:100%;
  scroll-snap-align:start;
  background:#fff;
  border-radius:14px;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
  padding:16px 18px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  text-align:left !important;
  transition:transform .15s ease-out, box-shadow .15s ease-out;
}
.review-card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* Breakpoints: 2 / 3 Karten (DESKTOP) */
@media (min-width:700px){
  .review-card{
    flex:0 0 calc((100% - 16px)/2);
    max-width:calc((100% - 16px)/2);
  }
}
@media (min-width:1024px){
  .review-card{
    flex:0 0 calc((100% - 32px)/3);
    max-width:calc((100% - 32px)/3);
  }
}

/* Kopf */
.review-head{
  display:flex;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  gap:12px;
  margin-bottom:6px;
}
.review-avatar{
  flex:0 0 auto;
}
.review-avatar img, .review-avatar-fallback{
  width:40px;
  height:40px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:1rem;
  object-fit:cover;
}
.review-avatar-fallback{
  background:#e0e0e0;
  color:#555;
}
.review-header-main{
  display:flex;
  flex-direction:column;
  align-items:flex-start !important;
  text-align:left !important;
  gap:2px;
}
.review-name{
  font-size:.95rem;
  font-weight:600;
}
.review-stars-row{
  display:inline-flex;
  align-items:center;
  font-size:.85rem;
}
.review-stars-row .star{
  display:inline-block;
  margin-right:1px;
  opacity:.25;
}
.review-stars-row .star-filled{
  opacity:1;
  color:#f4b400;
}
.review-meta-row{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:.8rem;
  color:#777;
}
.review-badge-new{
  font-size:.75rem;
  text-transform:uppercase;
  background:#e6f4ea;
  color:#137333;
  border-radius:999px;
  padding:1px 6px;
  font-weight:600;
}

/* Text & Link */
.review-text{
  font-size:.93rem;
  line-height:1.5;
  color:#333;
}
.review-readmore a{
  color:#1a73e8;
  text-decoration:none;
  font-weight:500;
}
.review-readmore a:hover{ text-decoration:underline; }

/* Dots */
.reviews-dots{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-top:12px;
}
.reviews-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:1px solid #ccc;
  background:#e4e4e4;
  padding:0;
  cursor:pointer;
  transition:all .15s ease-out;
}
.reviews-dot.is-active{
  width:18px;
  background:#1a73e8;
  border-color:#1a73e8;
}

/* Modal */
.review-modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.35);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:1300;
}
.review-modal{
  max-width:600px;
  width:90%;
  max-height:80vh;
  background:#fff;
  border-radius:16px;
  box-shadow:0 16px 40px rgba(0,0,0,0.25);
  padding:18px 20px 20px;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.review-modal-head{
  text-align:left;
}
.review-modal-body{
  margin-top:4px;
  font-size:.95rem;
  line-height:1.6;
  color:#333;
  overflow-y:auto;
  padding-right:4px;
}
.review-modal-close{
  position:absolute;
  top:8px;
  right:10px;
  border:none;
  background:transparent;
  font-size:1.4rem;
  line-height:1;
  cursor:pointer;
  color:#666;
}

/* eigene Antworten ausblenden */
.review-reply{ display:none !important; }

/* ============================================================
   MOBILE-ANPASSUNG: Nächste Karte rechts "anreißen"
   ============================================================ */
@media (max-width:699px){
  .reviews-track{
    padding-right:40px;
  }

  .review-card{
    flex:0 0 88%;
    max-width:88%;
  }
}

/* ============================================================
   18) Learn-Details & FAQ – einfarbig + Slide (kompakte Version)
   ============================================================ */

.learn-details-group {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-accordion {
  margin-top: 20px;
}

.faq-item {
  margin-bottom: 14px;
}

/* Box */
details.learn-details, details.faq-item {
  padding: 0;
  border-radius: 16px;
  background: #f3f7fb;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Header / Summary */
details.learn-details > summary, details.faq-item    > summary {
  margin: 0;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  background: transparent;
}

/* Marker ausblenden */
summary::-webkit-details-marker, summary::marker {
  display: none;
}

/* Pfeil */
details.learn-details > summary::before, details.faq-item    > summary::before {
  content: "▾";
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--accent);
  transition: transform .25s ease;
}
details.learn-details[open] > summary::before, details.faq-item[open]    > summary::before {
  transform: rotate(180deg);
}

/* Header-Text */
.learn-summary-text {
  flex: 1;
}
.learn-summary-title {
  display: block;
  font-weight: 700;
  color: var(--navy);
}
.learn-summary-goal {
  display: block;
  margin-top: 2px;
  font-size: .9rem;
  color: var(--muted);
}

/* Body – Slide-Animation */
.learn-details-body, .faq-answer {
  padding: 10px 16px 14px 36px;
  font-size: .95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(0,0,0,.04);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .28s ease, opacity .28s ease;
}

/* Geöffnet (Desktop & große Screens) */
details.learn-details[open] .learn-details-body, details.faq-item[open]    .faq-answer {
  max-height: 4000px;
  opacity: 1;
}

/* Typografie im Body */
.learn-details-body h4 {
  margin: 0 0 .4rem;
  font-size: .95rem;
  color: #0A2342;
}
.learn-details-body p {
  margin: 0 0 .6rem;
}

/* Mobile: kein max-height-Limit → nichts wird abgeschnitten */
@media (max-width: 768px) {
  details.learn-details[open] .learn-details-body,
  details.faq-item[open]    .faq-answer {
    max-height: none;
    opacity: 1;
    overflow: visible;
    transition: none;
  }
}

/* ============================================================
   19) Mobile-Optimierungen (bis 768px)
   ============================================================ */

@media(max-width:768px){

  .section{
    padding-top:32px;
    padding-bottom:40px;
  }
  .section .container{
    padding-left:16px;
    padding-right:16px;
  }

  .hero{
    min-height:calc(100vh - var(--nav-h,60px));
    align-items:flex-start;
    padding-top:24px;
    padding-bottom:40px;
  }
  .hero .inner{
    padding-top:24px;
    padding-bottom:40px;
  }
  .hero h1{
    font-size:1.6rem;
    line-height:1.2;
    margin-bottom:12px;
  }
  .hero .claim{
    font-size:.98rem;
  }
  .hero-cta-group{
    flex-direction:column;
    gap:10px;
  }
  .hero-cta-group .btn,
  .hero-cta-group .btn-outline{
    width:100%;
    text-align:center;
  }

  .section-nav{
    margin-top:18px;
    gap:8px;
    overflow-x:auto;
    padding-bottom:8px;
  }
  .section-nav a{
    white-space:nowrap;
    font-size:.88rem;
    padding:6px 10px;
  }

  .review-card{
    min-width:85%;
  }
}

/* =========================================
   Bulletpoints – ein System für alle Listen
   (Learn-Details, FAQ, Checklisten, Leistungen)
   ========================================= */

.learn-details-body ul, .faq-answer ul, .day .checklist, .preis-block .leistungs-liste, .leistungs-liste {
  list-style: none;
  margin: 0 0 .7rem;
  padding-left: 0;
}

.learn-details-body li, .faq-answer li, .day .checklist li, .preis-block .leistungs-liste li, .leistungs-liste li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  color: var(--muted);
}

.learn-details-body li::before, .faq-answer li::before, .day .checklist li::before, .preis-block .leistungs-liste li::before, .leistungs-liste li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

/* ============================================================
   Termine & Buchung – Pseudotabelle in den Cards
   ============================================================ */

/* Hinweisblock unter den Karten */
.terminhinweis-tip {
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--card-border);
}

/* Liste im Hinweisblock: Dots & Ausrichtung */
.training-dates .terminhinweis-tip ul {
  list-style: disc;
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.training-dates .terminhinweis-tip li::marker {
  color: var(--accent);
  font-size: 0.9em;
}

.training-dates .date-card-table {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 0.8fr 1fr 1fr auto;
  column-gap: 1.5rem;
  row-gap: 0.35rem;
  align-items: start;
}
.training-dates .date-cell.label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  white-space: nowrap;
}
.training-dates .date-cell.value {
  font-size: 0.95rem;
  color: var(--ink);
  align-self: flex-start;
}
.training-dates .date-cell.action-cell {
  text-align: right;
}
.training-dates .date-cell .status-note {
  margin-top: 4px;
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--muted);
}

@media (min-width: 901px) {
  .training-dates .date-cell .status-note {
    display: none;
  }
  .training-dates .date-card-table::after {
    content: attr(data-status-note);
    grid-column: 1 / -1;
    text-align: center;
    margin-top: .9rem;
    font-size: .85rem;
    color: var(--muted);
    white-space: nowrap;
  }
}

/* Badges im Terminbereich */
.training-dates .badge {
  display: inline-block;
  min-width: 110px;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 900px) {

  .training-dates .date-card-table {
    grid-template-columns: auto 1fr;
    grid-auto-rows: auto;
    column-gap: 0.75rem;
    row-gap: 0.35rem;
  }

  .training-dates .date-cell.label {
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--muted);
  }
  .training-dates .date-cell.label::after {
    content: ":";
    margin-left: 3px;
  }
  .training-dates .date-cell.value {
    font-size: 0.95rem;
  }

  .training-dates .date-card-table .date-cell:nth-child(1)  { grid-column: 1; grid-row: 1; }
  .training-dates .date-card-table .date-cell:nth-child(7)  { grid-column: 2; grid-row: 1; }

  .training-dates .date-card-table .date-cell:nth-child(2)  { grid-column: 1; grid-row: 2; }
  .training-dates .date-card-table .date-cell:nth-child(8)  { grid-column: 2; grid-row: 2; }

  .training-dates .date-card-table .date-cell:nth-child(3)  { grid-column: 1; grid-row: 3; }
  .training-dates .date-card-table .date-cell:nth-child(9)  { grid-column: 2; grid-row: 3; }

  .training-dates .date-card-table .date-cell:nth-child(4)  { grid-column: 1; grid-row: 4; }
  .training-dates .date-card-table .date-cell:nth-child(10) { grid-column: 2; grid-row: 4; }

  .training-dates .date-card-table .date-cell:nth-child(5)  { grid-column: 1; grid-row: 5; }
  .training-dates .date-card-table .date-cell:nth-child(11) { grid-column: 2; grid-row: 5; }

  .training-dates .date-card-table .date-cell:nth-child(6)  { grid-column: 1; grid-row: 6; }
  .training-dates .date-card-table .date-cell:nth-child(12) { grid-column: 2; grid-row: 6; }

  .training-dates .date-card-table .date-cell.label.action-label {
    display: none;
  }
  .training-dates .date-card-table .date-cell.action-cell {
    grid-column: 1 / -1;
    margin-top: 0.6rem;
    text-align: center;
  }
  .training-dates .date-card-table .date-cell.action-cell .btn-slot {
    width: 100%;
    min-width: 0;
  }
}

/* ============================================================
   Hero-Meta & „Für wen?“ Layout + Randbild
   ============================================================ */

.hero-meta-mini {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}
.hero-meta-mini .hero-meta-note {
  font-size: 0.9em;
  opacity: 0.9;
}

.feeling-figure {
  margin: 1.5rem 0 2rem;
}
.feeling-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feeling-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Layout „Für wen?“ mit Bild rechts */
.feeling-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: flex-start;
}
.feeling-text {
  min-width: 0;
}
.feeling-figure {
  margin: 0;
  max-width: 420px;
  justify-self: end;
}
.feeling-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feeling-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .feeling-layout {
    grid-template-columns: 1fr;
  }
  .feeling-figure {
    max-width: 100%;
    justify-self: start;
    margin-top: 1.5rem;
  }
}

/* Dezentes Randbild rechts */
.side-image-wrapper {
  position: absolute;
  right: -120px;
  top: 60px;
  width: 180px;
  pointer-events: none;
}
.side-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  opacity: 0.85;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
@media (max-width: 1200px) {
  .side-image-wrapper {
    display: none;
  }
}
#infos .container {
  position: relative;
}

/* ============================================================
   Foto-Streifen – horizontale Galerie + Modal
   ============================================================ */

.photo-strip-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* äußere Hülle, um Abstände zu steuern (optional, wenn verwendet) */
.photo-strip-shell {
  margin-top: 2.5rem;
  margin-bottom: -1rem;
}
@media (max-width: 768px) {
  .photo-strip-shell {
    margin-top: 2rem;
    margin-bottom: -0.5rem;
  }
}

/* Band */
.photo-strip-inner {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.photo-strip-inner::-webkit-scrollbar {
  display: none;
}

/* Slides */
.photo-strip-slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
}
.photo-strip-slide-btn {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
}
.photo-strip-slide-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.photo-strip-slide img {
  display: block;
  height: 72px;
  width: auto;
  object-fit: cover;
  border-radius: 12px;
  transform: scale(1.01);
  transition: transform 0.25s ease-out, filter 0.25s ease-out, opacity 0.25s ease-out;
  filter: saturate(1.05);
}
.photo-strip-slide:hover img, .photo-strip-slide-btn:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.15);
}

/* Dots */
.photo-strip-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.photo-strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease-out, transform 0.2s ease-out, width 0.2s ease-out;
}
.photo-strip-dot.is-active {
  width: 18px;
  background: var(--accent);
  transform: scale(1.1);
}

/* Modal */
.gallery-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1100;
}
.gallery-modal-backdrop.is-open {
  display: flex;
}

.gallery-modal {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gallery-modal-inner {
  padding: 16px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bild im Modal */
.gallery-modal-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 12px;
}

/* Pfeile im Bildbereich */
.gallery-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  color: #fff;
  font-size: 1.5rem;
  transition: background 0.2s ease-out, transform 0.2s ease-out, border-color .2s;
}
.gallery-modal-arrow:hover {
  background: rgba(0,0,0,0.7);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.07);
}
.gallery-modal-prev {
  left: 20px;
}
.gallery-modal-next {
  right: 20px;
}

/* Für SVG-Icons, falls später genutzt */
.gallery-modal-arrow svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.gallery-modal-caption {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0 20px 16px;
}

/* Close-Button oben rechts */
.gallery-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 30;
  color: #333;
}
.gallery-modal-close:hover {
  color: #000;
}

body.modal-open {
  overflow: hidden;
}

/* Mobile Feinheiten */
@media (max-width: 768px) {
  .gallery-modal {
    max-width: 100%;
  }

  .gallery-modal-arrow {
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
  }

  .gallery-modal-caption {
    font-size: 0.85rem;
  }
}

/* ============================================================
   Ultra-dezente Floating-CTA-Pille (final optimiert)
   ============================================================ */

#floating-cta.booking-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: env(safe-area-inset-bottom, 6px);

  max-width: 420px;
  width: calc(100% - 1.5rem);
  margin: 0 auto;

  padding: 6px 10px;
  border-radius: 16px 16px 0 0;

  background: rgba(14, 58, 90, 0.96);
  color: #ffffff;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.16);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  z-index: 120;
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#floating-cta.booking-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Innenaufbau */
.booking-banner-inner {
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.booking-banner-text {
  font-size: 0.8rem;
  line-height: 1.3;
  opacity: 0.9;
  margin-right: auto;
}

/* Button */
.booking-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent, #FF8C00);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.booking-banner-btn:hover {
  background: #e67f00;
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 640px) {
  #floating-cta.booking-banner {
    padding: 6px 12px;
    gap: 8px;
  }
  .booking-banner-text {
    font-size: 0.78rem;
  }
}

/* Pille schwebt über Content — kein zusätzlicher Body-Abstand */
body.with-booking-banner {
  padding-bottom: 0;
}

/* ============================================================
   Hero Restore Button (Scroll nach oben)
   ============================================================ */

.hero-restore{
  position: fixed;
  right: 1.25rem;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 1.25rem);
  z-index: 50;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--fw-red);
  color: #fff;
  display: none;
  opacity: 0;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
  cursor: pointer;
  transition: transform .18s, opacity .18s;
}

/* Wird nur sichtbar, wenn JS es erlaubt */
.hero-restore.is-visible{
  display: flex;
  opacity: 1;
}

.hero-restore:hover{
  transform: translateY(-2px);
}
.hero-restore:active{
  transform: translateY(0);
}
.hero-restore svg{
  width: 22px;
  height: 22px;
  stroke: currentColor;
  display: block;
  pointer-events: none;
}

/* Auf kleinen Bildschirmen: NIEMALS anzeigen */
@media (max-width: 640px) {
  .hero-restore,
  .hero-restore.is-visible {
    display: none !important;
    opacity: 0 !important;
  }
}

/* ============================================================
   Ultra-schlanke Floating-CTA Pille (super reduziert)
   ============================================================ */

#floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: env(safe-area-inset-bottom, 6px);

  max-width: 360px;
  width: calc(100% - 1.2rem);
  margin: 0 auto;

  padding: 4px 8px;
  border-radius: 999px;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.05);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .18s ease;
}

#floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Buttons ultra-low */
#floating-cta .cta-btn {
  flex: 1;
  height: 26px;
  font-size: 0.82rem;
  line-height: 1;
  border-radius: 999px;

  border: 1.6px solid var(--accent);
  background: rgba(255,140,0,0.10);
  color: var(--accent);
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background .15s ease, color .15s ease;
}

#floating-cta .cta-btn:hover {
  background: rgba(255,140,0,0.18);
}

/* Sekundär-Variante */
#floating-cta .cta-btn.secondary {
  background: transparent;
  color: var(--accent);
}

/* Sehr kleine Devices */
@media (max-width: 380px) {
  #floating-cta {
    flex-direction: column;
    gap: 4px;
    padding: 6px 10px;
  }
  #floating-cta .cta-btn {
    width: 100%;
  }
}

/* ============================================================
   Footer – Feintuning neues Layout
   ============================================================ */

.site-footer {
  padding-top: 40px;
  padding-bottom: 28px;
}
.footer-block {
  font-size: 0.95rem;
}
.footer-claim {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #cbd5f5;
  max-width: 260px;
}
.footer-section-title {
  margin: 0 0 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5e7eb;
}
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav li + li {
  margin-top: 4px;
}
.footer-nav a {
  text-decoration: none;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-contact {
  margin: 0 0 10px;
}
.footer-contact-btn {
  padding-inline: 16px;
  font-size: 0.9rem;
}

/* Untere Zeile: Legal + Copyright */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.85rem;
  color: #94a3b8;
}
.footer-bottom .legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-bottom .legal a + a::before {
  content: "·";
  margin: 0 4px 0 1px;
  color: #94a3b8;
}
.footer-bottom .copyright {
  margin: 0;
  border: 0;
  padding: 0;
  text-align: right;
}
@media (max-width: 700px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom .copyright {
    text-align: left;
    width: 100%;
  }
}

.contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 140;
}

.contact-modal.is-open {
  display: block;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

.contact-modal-dialog {
  position: relative;
  max-width: 640px;
  margin: 4vh auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem 1.75rem 1.75rem;
  box-shadow: 0 20px 40px rgba(15,23,42,0.35);
}

.contact-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.contact-modal .form-field label {
  color: #1A1D21;
  font-weight: 500;
}

.contact-modal input, .contact-modal select, .contact-modal textarea {
  color: #111827;
}

.contact-modal input::placeholder, .contact-modal textarea::placeholder {
  color: #9CA3AF;
}

.contact-modal .muted {
  color: #4B5563 !important;
}

.contact-modal .check-inline span {
  color: #1A1D21;
}

.contact-modal .field-error {
  color: #B91C1C;
  font-size: 0.85rem;
}

.micro-faq-block {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.micro-faq {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.micro-faq-answer {
  color: var(--muted);
  max-width: 720px;
}
.training-inline {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.training-inline-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.training-inline-col-img {
  display: flex;
  justify-content: center;
}

.training-inline-img {
  max-height: 220px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.training-inline-col-text {
  display: flex;
  align-items: center;
}

.training-inline-caption {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.35;
  max-width: 420px;
}

/* Mobile */
@media (max-width: 768px) {
  .training-inline-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .training-inline-img {
    max-height: 200px;
  }
}

/* ============================================
   PREIS-BOX – Struktur wie beim Eigner-Training
   ============================================ */

/* Hauptcontainer */
.preis-block {
  padding: 1.5rem 1.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(0,0,0,0.05);
}

/* Header mit Titel + Intro */
.preis-header h3 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

.preis-header p {
  margin: 0 0 1.25rem;
}

/* ====== Preisbereich ====== */
.preis-primary {
  margin: 1rem 0 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* einzelne Preiszeile */
.preis-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.preis-label {
  max-width: 60ch;
}

.preis-label-sub {
  display: block;
  margin-top: 2px;
  font-size: 0.85rem;
  color: var(--muted);
}

.preis-value {
  text-align: right;
  white-space: nowrap;
  font-size: 1rem;
}

.preis-value small {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.preis-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -0.5rem;
}

/* ====== Info-Gitter (2 Spalten) ====== */
.preis-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

/* einzelne Info-Blöcke */
.preis-info-block h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.preis-info-block p, .preis-info-block ul {
  margin-bottom: 1rem;
}

/* Listen mit etwas Luft */
.leistungs-liste li {
  margin-bottom: 0.35rem;
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .preis-line {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
  }

  .preis-value {
    text-align: left;
    margin-top: 0.25rem;
  }

  .preis-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Garantie-Bereich */
.preis-garantie {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.preis-garantie h4 {
  margin-bottom: 0.5rem;
}

.preis-garantie p {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* Garantie-Karte */
.guarantee-card {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff9e8;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 580px;
}

/* Icon */
.guarantee-icon svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Text */
.guarantee-text h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.guarantee-text p {
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.guarantee-text .muted {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 700px) {
  .guarantee-card {
    max-width: 100%;
  }
}

/* Einheitliche Ausrichtung & kleinerer Einzug */
.vision-list {
  margin: 1.25rem 0 2rem 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.vision-list li {
  margin: 0.25rem 0;
  line-height: 1.45;
}

/* Abstand nach der Liste */
.vision-note {
  margin-top: 1.5rem !important;
  display: block;
}

/* 4 Benefits: Desktop 4 | Tablet 2 | Mobile 1 */
.benefit-grid.four-cols {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Vorteile-Mitgliedschaft: 2 Karten je Zeile (Desktop/Tablet), 1 Karte mobil */
.benefit-grid.benefit-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 2rem;
}

@media (max-width: 768px) {
  .benefit-grid.benefit-grid-2 {
    grid-template-columns: 1fr;
  }
}

.exam-note {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--text-muted, #666);
  line-height: 1.3;
}
.exam-note strong {
  font-weight: 600;
}

.date-cta-note {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  line-height: 1.3;
}
.preis-original {
  text-decoration: line-through;
  opacity: .6;
  margin-right: .5rem;
}
.preis-ab {
  color: var(--ink);
}

/* Preis-Spalte Layout */
.price-col {
  min-width: 160px;
  max-width: 160px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Preis-Zeilen */
.price-line {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
}

/* Text links */
.price-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: left;
}

/* Preis rechts */
.price-amount {
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
  min-width: 64px;
}

/* Spalte: Preis (Termin-Tabelle) */
.date-card-table .date-cell.value.price-col {
  text-align: left;
  min-width: 150px;
  max-width: 150px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Zeile: Text links, Preis rechts */
.date-card-table .price-line {
  display: flex;
  align-items: baseline;
}

.date-card-table .price-label {
  flex: 1 1 auto;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: left;
  margin-left: 8px;
}

/* Preis rechtsbündig */
.date-card-table .price-amount {
  flex: 0 0 auto;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
  min-width: 60px;
}

.price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.price-row {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 0.5rem;
  align-items: baseline;
}

.price-number {
  text-align: right;
  font-weight: 600;
}

.price-text {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: left;
  white-space: nowrap;
}

/* Einheitliche Höhe für alle Info-Felder */
.course-overview-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 75px;
}

/* Preis-Item braucht mehr Luft */
.course-overview-item-price {
  min-height: 76px;
}

/* Überschrift immer oben bündig */
.course-overview-label {
  margin-bottom: 4px;
}

/* Wertebereich (Preis-Stack) */
.course-overview-value {
  display: flex;
  flex-direction: column;
}

/* Programm / 2,5 Tage – Kartenlayout mit sauberer letzter Zeile */
.day-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

/* Standard: 3 Karten pro Reihe (Desktop) */
.day-grid > .day {
  flex: 1 1 calc(33.333% - 13.333px);
  max-width: calc(33.333% - 13.333px);
}

/* FALL 1: Nur 1 Karte in der letzten Zeile (1,4,7,…) → volle Breite */
.day-grid > .day:last-child:nth-child(3n + 1) {
  flex-basis: 100%;
  max-width: 100%;
}

/* FALL 2: 2 Karten in der letzten Zeile (2,5,8,…) → beide je 50 % */
.day-grid > .day:nth-last-child(-n + 2):nth-child(3n + 1),
.day-grid > .day:nth-last-child(-n + 2):nth-child(3n + 2) {
  flex-basis: calc(50% - 10px);
  max-width: calc(50% - 10px);
}

/* Mobile: immer 1 Karte pro Zeile */
@media (max-width: 700px) {
  .day-grid > .day {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* Globale Hinweise / Alerts */
.alert {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  border: 1px solid transparent;
}

.alert-error {
  background: #FEE2E2;
  color: #7F1D1D;
  border-color: #FCA5A5;
}

.alert-success {
  background: #DCFCE7;
  color: #14532D;
  border-color: #BBF7D0;
}

/* Feldbezogene Fehlermeldungen */
.field-error {
  margin-top: 0.35rem;
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  background: #FEE2E2;
  color: #7F1D1D;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* mitglied-status-Varianten (überschrieben, wenn sichtbar) */
.mitglied-status {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
}

/* ============================================================
   COOKIE BANNER – finale, bereinigte Version
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  background: #b71c1c;
  color: #fff;

  font-size: 0.85rem;
  z-index: 9999;
  border-top: 1px solid rgba(0, 0, 0, 0.25);

  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 14px 18px 18px;
  text-align: center;
}

.cookie-banner__text {
  margin: 0 0 10px;
  line-height: 1.4;
}

.cookie-banner__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

/* CTA */
.btn-cookie {
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: 600;
  border: none;
}

.btn-cookie--primary {
  background: #ffb300;
  color: #111;
}

.cookie-secondary-link {
  padding: 6px 8px;
  background: none;
  border: none;
  color: #fff;
  text-decoration: underline;
  font-size: 0.8rem;
  cursor: pointer;
  opacity: 0.9;
}

.cookie-secondary-link:hover {
  opacity: 1;
}

.cookie-info-link {
  background: none;
  border: none;
  padding: 0 4px;
  font-size: 0.78rem;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.85;
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-info-link:hover {
  opacity: 1;
}

@media (max-width: 500px) {
  .cookie-banner__inner {
    padding-bottom: 24px;
  }
  .cookie-banner__text {
    font-size: 0.8rem;
  }
}

/* ============================================================
   Flexibles Card-Grid – 2/3 Spalten + saubere letzte Zeile
   ============================================================ */

.card-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

/* Kinder immer volle Höhe nutzen */
.card-grid > * {
  height: 100%;
}

/* Kleine Screens: immer eine Karte pro Zeile */
@media (max-width: 599px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* Mittlere Screens: 2 Karten pro Zeile */
@media (min-width: 600px) and (max-width: 999px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Letzte Karte alleine in der letzten Zeile -> volle Breite */
  .card-grid > *:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
  }
}

/* Große Screens: Standard 3 Spalten */
@media (min-width: 1000px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Sonderfall: Es gibt genau 2 Karten -> nur 2 Spalten, beide über volle Breite verteilt */
  .card-grid:has(> :nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Wenn nur eine Karte in der letzten Zeile steht -> volle Breite */
  .card-grid > *:nth-last-child(1):nth-child(3n + 1) {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   FORCE BULLETS ORANGE + TEXTBÜNDIGKEIT IN ALLEN CHECKLISTEN
   ============================================================ */

/* Alle Checklisten global angleichen */
.day .checklist,
.card .checklist,
.section.feeling .feel-card .checklist,
#preise .card .checklist {
  list-style: none !important;
  margin: 0 0 .8rem 0 !important;
  padding-left: 0 !important;
}

/* Listeneinträge bündig wie normaler Text */
.day .checklist li,
.card .checklist li,
.section.feeling .feel-card .checklist li,
#preise .card .checklist li {
  position: relative;
  margin: .4rem 0;
  padding-left: var(--pad-x) !important;
  color: var(--muted);
}

/* Orange Bullet-Punkte links im Randbereich */
.day .checklist li::before,
.card .checklist li::before,
.section.feeling .feel-card .checklist li::before,
#preise .card .checklist li::before {
  content: "•";
  position: absolute;
  left: calc(var(--pad-x) - 1.1rem);
  top: 0.15em;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
}

.hero-contact-strip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.25rem;
  background: rgba(255,255,255,0.08);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  font-size: .95rem;
}

.hero-contact-strip a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.hero-contact-strip a:hover {
  text-decoration: underline;
}

.hero-contact-label {
  color: #fff;
  font-size: .85rem;
  margin-bottom: .25rem;
}

/* Weihnachts-Teaser auf der Startseite */
.xmas-teaser {
  background: var(--bg-soft);
}

.xmas-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* <<< WICHTIG: statt space-between */
  gap: 1rem;                   /* enger Abstand zwischen Bild & Text */
}

.xmas-teaser-text {
  max-width: 620px;
}

.xmas-teaser-media {
  flex: 0 0 auto;
  max-width: 260px;
}

.xmas-teaser-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(15, 23, 42, 0.25));
}

/* Weihnachts-Teaser: Bild links */
.xmas-media-left {
  flex-direction: row-reverse; /* Bild links, Text rechts */
}

/* KEIN zusätzlicher Abstand mehr rechts */
.xmas-media-left .xmas-teaser-media {
  margin-right: 0;
}

/* Mobil: Bild ausblenden, damit nichts gequetscht wirkt */
@media (max-width: 768px) {
  .xmas-teaser-inner,
  .xmas-media-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .xmas-teaser-media {
    display: none;
  }
}

.xmas-teaser-media img {
  max-width: 220px;
  margin-right: 1rem;
  transform: translateY(-10px);
}


