/* ================================================================
   FOREST CAMP — Unterseite, baut vollständig auf ../styles.css auf.
   Nur seiten-spezifische Komponenten: Hero, Programm, Ticketshop.
   ================================================================ */

/* ----------------------------------------------------------------
   HERO — Luftbild der Lütsche + Logo-Animation
   ---------------------------------------------------------------- */
.fc-hero {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-hero__photo {
  filter: saturate(0.82) contrast(1.05) brightness(0.72);
  object-position: center 35%;
}
.fc-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 46%, rgba(0, 0, 0, 0.55) 0%, transparent 70%),
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.72) 0%,
      rgba(10, 10, 10, 0.35) 30%,
      rgba(10, 10, 10, 0.45) 70%,
      var(--c-bg) 100%);
}
.fc-hero__body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 140px var(--gutter) 90px;
  max-width: 980px;
}

/* Logo-Bühne: Die Animation liegt als echtes Alpha-Video vor
   (HEVC-Alpha für Safari, VP9-Alpha für Chrome/Firefox) — kein
   Hintergrund, kein Blend-Trick. Nach einmaligem Abspielen blendet
   JS auf das transparente PNG um; das ist zugleich der Fallback,
   wenn ein Browser keins der Formate abspielt. */
.fc-hero__logo {
  position: relative;
  width: min(720px, 100%);
  aspect-ratio: 16 / 9;
  margin: -40px 0 -30px;    /* die Grafik bringt viel Leerraum mit */
  filter: drop-shadow(0 6px 40px rgba(0, 0, 0, 0.55));
}
.fc-hero__logo video,
.fc-hero__logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fc-hero__logo video {
  opacity: 1;
  transition: opacity .6s ease;
}
.fc-hero__logo img {
  opacity: 0;
  transition: opacity .6s ease;
}
.fc-hero__logo.is-done video { opacity: 0; }
.fc-hero__logo.is-done img   { opacity: 1; }

/* Datum & Ort — ruhige Typo statt Pill */
.fc-hero__date {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--c-ink);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.fc-hero__place {
  margin-top: 8px;
  font-family: var(--t-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.fc-hero__sub {
  margin-top: 22px;
  max-width: 480px;
  text-align: center;
}
.fc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

@media (max-width: 760px) {
  .fc-hero {
    display: flex;               /* überschreibt das Grid der Haupt-Hero */
    height: auto;
    min-height: 100vh;           /* voller Screen, Video läuft hinter
                                    Notch und Home-Indikator */
    min-height: 100dvh;
  }
  .fc-hero .hero__bg { position: absolute; height: 100%; }
  .fc-hero__body {
    padding: calc(96px + env(safe-area-inset-top, 0px)) 20px
             calc(56px + env(safe-area-inset-bottom, 0px));
  }
  .fc-hero__logo { margin: -20px 0 -14px; }

  /* Nav unter die Statusleiste schieben statt dahinter */
  .nav { padding-top: calc(14px + env(safe-area-inset-top, 0px)); }
}

/* ----------------------------------------------------------------
   NAV — Warenkorb-Button mit Zähler
   ---------------------------------------------------------------- */
.nav__cart {
  position: relative;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(244, 241, 236, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--c-ink);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.nav__cart:hover {
  background: rgba(244, 241, 236, 0.12);
  border-color: rgba(244, 241, 236, 0.35);
  transform: translateY(-1px);
}
.nav__cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--c-accent);
  color: var(--c-bg);
  font-family: var(--t-display);
  font-weight: 900;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, color .3s ease, opacity .3s ease;
}
.nav__cart-badge.is-empty {
  background: rgba(60, 60, 58, 0.9);
  color: var(--c-ink-3);
}
.nav__cart-badge.bump { animation: qtyPop .35s cubic-bezier(.16,.84,.25,1); }
@media (max-width: 700px) {
  .nav__cta { display: none; }   /* mobil reicht der Warenkorb */
}

/* ----------------------------------------------------------------
   PROGRAMM — drei Tageskarten auf dunklem Slate
   ---------------------------------------------------------------- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.program-day {
  padding: 28px 26px 24px;
  border-radius: 20px;
  background: rgba(244, 241, 236, 0.05);
  border: 1px solid rgba(244, 241, 236, 0.10);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .6s cubic-bezier(.16,.84,.25,1),
              border-color .6s ease;
}
.program-day:hover {
  transform: translateY(-6px);
  border-color: rgba(203, 189, 147, 0.35);
}
.program-day__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.program-day__tag {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 22px;
  color: var(--c-ink);
}
.program-day__date {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-ink-3);
}
.program-day ul {
  display: flex;
  flex-direction: column;
}
.program-day li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(244, 241, 236, 0.08);
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-ink-2);
}
.program-day li span {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding-top: 2px;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .program-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   TICKETSHOP — Camper-Kachel, Personen-Karten, Kloß-Add-on
   ---------------------------------------------------------------- */
.tickets {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tickets__subhead {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 20px;
  color: var(--c-ink);
  margin: 22px 0 0;
}

/* ----- Fortschrittsleiste ----------------------------------------- */
.steps {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.steps li { display: flex; }
.steps__line {
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: rgba(244, 241, 236, 0.15);
}
.step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-ink-3);
  transition: color .25s ease;
}
.step:disabled { cursor: default; }
.step:not(:disabled):hover { color: var(--c-ink); }
.step__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(244, 241, 236, 0.25);
  font-family: var(--t-display);
  font-weight: 900;
  font-size: 14px;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}
.step__lbl {
  font-family: var(--t-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.step.is-active { color: var(--c-ink); }
.step.is-active .step__num {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-bg);
  transform: scale(1.08);
}
.step.is-done { color: var(--c-ink-2); }
.step.is-done .step__num {
  background: rgba(203, 189, 147, 0.16);
  border-color: rgba(203, 189, 147, 0.5);
  color: var(--c-accent);
}

/* ----- Schritt-Panels ---------------------------------------------- */
.step-panel[hidden] { display: none; }
.step-panel { animation: panelIn .45s cubic-bezier(.16,.84,.25,1); }
@keyframes panelIn {
  from { opacity: 0; transform: translateX(26px); }
  to   { opacity: 1; transform: none; }
}
.step-panel__hint {
  font-size: 14px;
  color: var(--c-ink-2);
  margin: 0 0 12px;
}
.avail-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(203, 189, 147, 0.08);
  border: 1px solid rgba(203, 189, 147, 0.30);
  font-size: 13.5px;
  color: var(--c-ink-2);
}
.avail-pill strong { color: var(--c-accent); font-weight: 600; }
.avail-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
  animation: availPulse 2.4s ease-in-out infinite;
}
@keyframes availPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(203, 189, 147, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(203, 189, 147, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .avail-pill__dot { animation: none; }
}
.step-panel__foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
.step-panel__foot--split { justify-content: space-between; align-items: center; }
.step-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--t-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  transition: color .2s ease;
}
.step-back:hover { color: var(--c-accent); }

/* ----- Schritt 1: Ticket-Auswahl ------------------------------------ */
.ticket-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ticket-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
  padding: 28px 28px 24px;
  border-radius: 22px;
  background: rgba(244, 241, 236, 0.05);
  border: 1px solid rgba(244, 241, 236, 0.10);
  color: var(--c-ink);
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.ticket-option:hover { transform: translateY(-4px); border-color: rgba(244, 241, 236, 0.25); }
.ticket-option.is-selected {
  border-color: var(--c-accent);
  background: rgba(203, 189, 147, 0.08);
}
.ticket-option__check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(244, 241, 236, 0.25);
  color: transparent;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.ticket-option.is-selected .ticket-option__check {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-bg);
  transform: scale(1.1);
}
.ticket-option__days {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1;
  color: var(--c-ink);
}
.ticket-option__name {
  font-family: var(--t-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-accent);
  margin-top: 6px;
}
.ticket-option__sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--c-ink-2);
  margin-top: 4px;
  max-width: 420px;
}
.ticket-option__price {
  margin-top: 18px;
  font-family: var(--t-display);
  font-weight: 900;
  font-size: clamp(26px, 2.2vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--c-ink);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 820px) {
  .ticket-options { grid-template-columns: 1fr; }
  .steps { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .steps__line { max-width: 40px; }
  .step__lbl { display: none; }
  .step.is-active .step__lbl { display: inline; }
}

/* ----- Crew-Liste: eine Zeile pro Person --------------------------- */
.crew__head { margin-bottom: 18px; }
.crew__head .tickets__subhead { margin: 0 0 6px; }
.crew__hint { font-size: 13.5px; color: var(--c-ink-2); margin: 0; }

.crew-list {
  border-radius: 20px;
  background: rgba(244, 241, 236, 0.05);
  border: 1px solid rgba(244, 241, 236, 0.10);
  padding: 4px 24px;
  margin-bottom: 16px;
}
.crew-row {
  display: grid;
  grid-template-columns: 44px 1fr auto 28px;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  animation: chipIn .35s cubic-bezier(.16,.84,.25,1);
}
.crew-row + .crew-row { border-top: 1px solid rgba(244, 241, 236, 0.08); }
@keyframes chipIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.crew-row__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(203, 189, 147, 0.10);
  color: var(--c-accent);
  flex-shrink: 0;
}
.crew-row__avatar svg { width: 22px; height: 22px; }
.crew-row__who { min-width: 0; }
.crew-row__who strong {
  display: block;
  font-family: var(--t-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-ink);
}
.crew-row__who small {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.crew-row__price {
  font-family: var(--t-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--c-ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.crew-row__price--muted {
  font-family: var(--t-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.crew-row__x {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-4);
  transition: color .2s ease, background .2s ease;
}
.crew-row__x:hover { color: var(--c-ink); background: rgba(244, 241, 236, 0.1); }
.crew-row__x svg { width: 11px; height: 11px; }
.crew-row__x[disabled] { visibility: hidden; }

/* Hinzufügen-Buttons */
.crew-add {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.addp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 16px;
  background: rgba(244, 241, 236, 0.04);
  border: 1px dashed rgba(244, 241, 236, 0.25);
  color: var(--c-ink);
  font-family: var(--t-display);
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.addp:hover:not(:disabled) {
  background: rgba(203, 189, 147, 0.10);
  border-color: var(--c-accent);
  transform: translateY(-2px);
}
.addp:disabled { opacity: 0.35; cursor: default; }
.addp small {
  display: block;
  font-family: var(--t-mono);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  margin-top: 2px;
}
.addp__plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-ink);
  color: var(--c-bg);
  font-size: 17px;
  font-weight: 700;
  transition: background .3s ease;
}
.addp:hover:not(:disabled) .addp__plus { background: var(--c-accent); }

@media (max-width: 900px) {
  .crew-add { grid-template-columns: 1fr; }
  .crew-list { padding: 4px 16px; }
  .crew-row { grid-template-columns: 40px 1fr auto 28px; }
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 2px;
}
.step-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(244, 241, 236, 0.25);
  background: transparent;
  color: var(--c-ink);
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.step-btn:hover:not(:disabled) {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-bg);
}
.step-btn:disabled { opacity: 0.25; cursor: default; }
.stepper output {
  min-width: 38px;
  text-align: center;
  font-family: var(--t-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--c-ink);
  font-variant-numeric: tabular-nums;
}

/* ----- Bestellübersicht ------------------------------------------ */
.shop__cart {
  position: sticky;
  top: 96px;
}
.cart__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cart__head-icon { color: var(--c-accent); flex-shrink: 0; }
.cart__title {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 19px;
  color: var(--c-ink);
  margin: 0;
}
.cart__count {
  margin-left: auto;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--c-accent);
  color: var(--c-bg);
  font-family: var(--t-display);
  font-weight: 900;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, color .3s ease;
}
.cart__count.is-empty {
  background: rgba(244, 241, 236, 0.12);
  color: var(--c-ink-3);
}
.cart__count.bump { animation: qtyPop .35s cubic-bezier(.16,.84,.25,1); }
.cart__total-val.bump { animation: totalPop .35s ease; }
@keyframes totalPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* Leerer Warenkorb */
.cart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  margin: 6px 0 2px;
  border: 1.5px dashed rgba(244, 241, 236, 0.18);
  border-radius: 14px;
  text-align: center;
}
.cart__empty svg { color: var(--c-ink-4); }
.cart__empty p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-ink-3);
  margin: 0;
  max-width: 220px;
}

/* Warenkorb-Zeilen: Einslide + Entfernen-Knopf */
.cart__lines li.line-in { animation: lineIn .35s cubic-bezier(.16,.84,.25,1); }
@keyframes lineIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: none; }
}
.cart__line-x {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-4);
  border: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.cart__line-x:hover {
  color: var(--c-ink);
  border-color: rgba(244, 241, 236, 0.3);
  transform: rotate(90deg);
}
.cart__line-x svg { width: 10px; height: 10px; }

/* Hinweis, solange kein Camper-Ticket im Korb liegt */
.cart__gate {
  font-family: var(--t-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--c-ink-3);
}
.cart__gate[hidden] { display: none; }
.btn--primary:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none !important;
  box-shadow: none !important;
}

/* Fußbereich des Warenkorbs */
.cart__foot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(244, 241, 236, 0.10);
  padding-top: 22px;
}
.cart__lines {
  display: flex;
  flex-direction: column;
}
.cart__lines li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(244, 241, 236, 0.08);
  font-size: 14px;
  color: var(--c-ink-2);
}
.cart__lines li strong {
  font-weight: 500;
  color: var(--c-ink);
}
.cart__lines li .cart__line-val {
  font-family: var(--t-mono);
  font-size: 12.5px;
  color: var(--c-ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.cart__lines li.cart__line--free .cart__line-val { color: var(--c-cool-soft); }

.cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 22px;
}
.cart__total-lbl {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.cart__total-val {
  font-family: var(--t-display);
  font-weight: 900;
  font-size: clamp(32px, 2.8vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--c-ink);
  font-variant-numeric: tabular-nums;
}

/* Formular */

.cart__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cart__field span {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.cart__field span em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.05em;
  color: var(--c-ink-4);
}
.cart__field input {
  font-family: var(--t-body);
  font-size: 15px;
  color: var(--c-ink);
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(244, 241, 236, 0.16);
  transition: border-color .25s ease, background .25s ease;
  width: 100%;
}
.cart__field input::placeholder { color: var(--c-ink-4); }
.cart__field input:focus {
  outline: none;
  border-color: var(--c-accent);
  background: rgba(10, 10, 10, 0.65);
}
.cart__field input.is-invalid { border-color: #b3564a; }

/* Zahlungsart — verbundene Optionsgruppe */
.pay-group {
  border: 1px solid rgba(244, 241, 236, 0.16);
  border-radius: 14px;
  overflow: hidden;
}
.pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: rgba(10, 10, 10, 0.35);
  cursor: pointer;
  transition: background .25s ease;
}
.pay-option + .pay-option { border-top: 1px solid rgba(244, 241, 236, 0.10); }
.pay-option:hover { background: rgba(244, 241, 236, 0.04); }
.pay-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pay-option__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(244, 241, 236, 0.4);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s ease;
}
.pay-option__dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  opacity: 0;
  transition: opacity .2s ease;
}
.pay-option:has(input:checked) {
  background: rgba(203, 189, 147, 0.10);
}
.pay-option:has(input:checked) .pay-option__dot { border-color: var(--c-accent); }
.pay-option:has(input:checked) .pay-option__dot::after { opacity: 1; }
.pay-option:has(input:focus-visible) {
  outline: 2px solid rgba(203, 189, 147, 0.6);
  outline-offset: 2px;
}
.pay-option__label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
}
.pay-option__label small {
  font-size: 12px;
  font-weight: 400;
  color: var(--c-ink-3);
}

/* Einwilligungen */
.cart__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--c-ink-2);
  cursor: pointer;
}
.cart__consent a { color: var(--c-accent); text-decoration: underline; }
.cart__consent em { font-style: normal; color: var(--c-ink-4); }
.cart__consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.consent-box {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 6px;
  border: 1.5px solid rgba(244, 241, 236, 0.4);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-bg);
  transition: background .2s ease, border-color .2s ease;
}
.consent-box svg { width: 11px; height: 11px; opacity: 0; }
.cart__consent:has(input:checked) .consent-box {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.cart__consent:has(input:checked) .consent-box svg { opacity: 1; }
.cart__consent:has(input:focus-visible) .consent-box {
  outline: 2px solid rgba(203, 189, 147, 0.6);
  outline-offset: 2px;
}
.cart__consent.is-invalid { color: #d98a7f; }
.cart__consent.is-invalid .consent-box { border-color: #b3564a; }

.cart__submit {
  width: 100%;
  margin-top: 6px;
}
.cart__hint {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--c-ink-3);
}
.cart__trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.cart__trust li {
  position: relative;
  padding-left: 24px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--c-ink-2);
}
.cart__trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23cbbd93" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12l5 5L20 6"/></svg>')
    center / 9px no-repeat,
    rgba(203, 189, 147, 0.14);
}

/* Erfolgsmeldung */
.cart__success[hidden] { display: none; }
.cart__success {
  text-align: center;
  padding: 26px 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cart__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 107, 47, 0.25);
  border: 1px solid var(--c-cool-soft);
  color: var(--c-ink);
}
/* Haken zeichnet sich, sobald die Bestätigung erscheint */
.cart__success:not([hidden]) .cart__success-icon path {
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
  animation: drawCheck .5s ease .25s forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  .crew-row,
  .cart__lines li.line-in,
  .checkout__backdrop,
  .checkout__panel,
  .checkout__success:not([hidden]),
  .stepper output.pop,
  .cart__count.bump,
  .cart__total-val.bump { animation: none; }
}
.cart__success h3 {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: var(--c-ink);
}
.cart__success p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-ink-2);
  max-width: 320px;
}

/* ----------------------------------------------------------------
   PLATZ-ABSCHNITT — Fakten & Foto-Credits
   ---------------------------------------------------------------- */
#platz .spec-row { margin-bottom: 28px; }

.fc-credits {
  margin-top: 18px;
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-dark-3);
}

/* ----------------------------------------------------------------
   FOOTER — Anpassungen fürs breite Forest-Camp-Logo
   ---------------------------------------------------------------- */
.footer__logo--fc img { width: 220px; }

/* Der Footer der Hauptseite bricht seine zweispaltige Kopfzeile nie um —
   auf schmalen Screens läuft er sonst aus dem Viewport. */
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

/* ----------------------------------------------------------------
   MOBILE SHOP-LEISTE — Summe + Zur Kasse, nur auf schmalen Screens
   ---------------------------------------------------------------- */
.shop-bar[hidden] { display: none; }
.shop-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: min(480px, calc(100% - 24px));
  bottom: 14px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 10px 10px 20px;
  border-radius: 18px;
  background: rgba(15, 15, 16, 0.92);
  border: 1px solid rgba(244, 241, 236, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.shop-bar__total {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.shop-bar__total small {
  font-family: var(--t-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.shop-bar__total strong {
  font-family: var(--t-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--c-ink);
  font-variant-numeric: tabular-nums;
}
.shop-bar__btn { padding: 14px 22px; font-size: 14px; }
.shop-bar:not([hidden]) {
  display: flex;
  animation: barIn .4s cubic-bezier(.16,.84,.25,1);
}
@keyframes barIn {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ----------------------------------------------------------------
   RESPONSIVE — Shop
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .person-grid { grid-template-columns: 1fr; }

}

/* ----------------------------------------------------------------
   KASSE — eigene View als Overlay
   ---------------------------------------------------------------- */
body.checkout-open { overflow: hidden; }

.checkout[hidden] { display: none; }
.checkout {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: clamp(0px, 3vw, 40px);
}
.checkout__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: checkoutFade .35s ease;
}
@keyframes checkoutFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.checkout__panel {
  position: relative;
  width: min(1000px, 100%);
  max-height: min(92dvh, 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  background: var(--c-bg-soft);
  border: 1px solid rgba(244, 241, 236, 0.14);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.8);
  animation: checkoutRise .45s cubic-bezier(.16,.84,.25,1);
}
@keyframes checkoutRise {
  from { opacity: 0; transform: translateY(26px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

/* Kopfzeile */
.checkout__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.10);
  flex-shrink: 0;
}
.checkout__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--t-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  transition: color .2s ease;
}
.checkout__back:hover { color: var(--c-accent); }
.checkout__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 18px;
  color: var(--c-ink);
  margin: 0;
}
.checkout__close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 241, 236, 0.06);
  border: 1px solid rgba(244, 241, 236, 0.16);
  color: var(--c-ink);
  transition: background .25s ease, transform .25s ease;
}
.checkout__close:hover { background: rgba(244, 241, 236, 0.14); transform: rotate(90deg); }

/* Inhalt: zwei Spalten */
.checkout__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: auto;
}
.checkout__grid[hidden] { display: none; }

.checkout__summary {
  padding: 28px;
  background: rgba(244, 241, 236, 0.03);
  border-right: 1px solid rgba(244, 241, 236, 0.08);
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.checkout__summary h4 {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 16px;
  font-weight: 500;
}
.checkout__lines { display: flex; flex-direction: column; }
.checkout__lines li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 241, 236, 0.08);
  font-size: 14px;
  color: var(--c-ink-2);
}
.checkout__lines li strong { font-weight: 500; color: var(--c-ink); }
.checkout__lines li span:last-child {
  font-family: var(--t-mono);
  font-size: 12.5px;
  color: var(--c-ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.checkout__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0 6px;
}
.checkout__total span {
  font-family: var(--t-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.checkout__total strong {
  font-family: var(--t-display);
  font-weight: 900;
  font-size: clamp(30px, 2.6vw, 40px);
  letter-spacing: -0.03em;
  color: var(--c-ink);
  font-variant-numeric: tabular-nums;
}
.checkout__note {
  margin-top: auto;
  padding-top: 20px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--c-ink-3);
}

/* Formular-Spalte */
.checkout__form {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkout__step {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding-bottom: 2px;
}
.checkout__step:not(:first-child) { margin-top: 14px; }

/* Bestätigung */
.checkout__success[hidden] { display: none; }
.checkout__success {
  padding: clamp(40px, 7vw, 70px) 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  animation: checkoutRise .4s cubic-bezier(.16,.84,.25,1);
}
.checkout__success h3 {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 24px;
  color: var(--c-ink);
}
.checkout__success p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-ink-2);
  max-width: 340px;
}
.checkout__success .btn { margin-top: 12px; }
.checkout__success:not([hidden]) .cart__success-icon path {
  stroke-dasharray: 26;
  animation: drawCheckIn .55s ease .2s both;
}
@keyframes drawCheckIn {
  from { stroke-dashoffset: 26; }
  to   { stroke-dashoffset: 0; }
}

/* Mobil: Vollbild-Sheet */
@media (max-width: 820px) {
  .checkout { padding: 0; }
  .checkout__panel {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    border: none;
  }
  .checkout__grid { grid-template-columns: 1fr; }
  .checkout__summary {
    border-right: none;
    border-bottom: 1px solid rgba(244, 241, 236, 0.08);
    padding: 22px 20px;
  }
  .checkout__form { padding: 22px 20px 40px; }
  .checkout__back span { display: none; }
}

/* ----------------------------------------------------------------
   WARENKORB — eigene View als Drawer von rechts
   ---------------------------------------------------------------- */
body.cart-open { overflow: hidden; }

.cartview[hidden] { display: none; }
.cartview {
  position: fixed;
  inset: 0;
  z-index: 140;
}
.cartview__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: checkoutFade .3s ease;
}
.cartview__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 100%);
  display: flex;
  flex-direction: column;
  background: var(--c-bg-soft);
  border-left: 1px solid rgba(244, 241, 236, 0.12);
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.55);
  animation: drawerIn .45s cubic-bezier(.16,.84,.25,1);
}
@keyframes drawerIn {
  from { transform: translateX(100%); }
  to   { transform: none; }
}
.cartview__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.10);
  flex-shrink: 0;
}
.cartview__head .cart__count { margin-left: 4px; }
.cartview__close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 241, 236, 0.06);
  border: 1px solid rgba(244, 241, 236, 0.16);
  color: var(--c-ink);
  transition: background .25s ease, transform .25s ease;
}
.cartview__close:hover { background: rgba(244, 241, 236, 0.14); transform: rotate(90deg); }

.cartview__lines {
  flex: 1;
  overflow-y: auto;
  padding: 10px 22px;
}
.cartview__foot {
  flex-shrink: 0;
  padding: 16px 22px 22px;
  border-top: 1px solid rgba(244, 241, 236, 0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(244, 241, 236, 0.02);
}
.cartview__foot .cart__total { padding: 4px 0 6px; }

/* ----------------------------------------------------------------
   WARENKORB — eigene View als Drawer von rechts
   ---------------------------------------------------------------- */
body.cart-open { overflow: hidden; }

.cartview[hidden] { display: none; }
.cartview {
  position: fixed;
  inset: 0;
  z-index: 140;
}
.cartview__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: checkoutFade .3s ease;
}
.cartview__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 100%);
  display: flex;
  flex-direction: column;
  background: var(--c-bg-soft);
  border-left: 1px solid rgba(244, 241, 236, 0.12);
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.55);
  animation: drawerIn .45s cubic-bezier(.16,.84,.25,1);
}
@keyframes drawerIn {
  from { transform: translateX(100%); }
  to   { transform: none; }
}
.cartview__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.10);
  flex-shrink: 0;
}
.cartview__head .cart__count { margin-left: 4px; }
.cartview__close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 241, 236, 0.06);
  border: 1px solid rgba(244, 241, 236, 0.16);
  color: var(--c-ink);
  transition: background .25s ease, transform .25s ease;
}
.cartview__close:hover { background: rgba(244, 241, 236, 0.14); transform: rotate(90deg); }

.cartview__lines {
  flex: 1;
  overflow-y: auto;
  padding: 10px 22px;
}
.cartview__foot {
  flex-shrink: 0;
  padding: 16px 22px 22px;
  border-top: 1px solid rgba(244, 241, 236, 0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(244, 241, 236, 0.02);
}
.cartview__foot .cart__total { padding: 4px 0 6px; }


/* ----------------------------------------------------------------
   KASSE — Shop-Look: Event-Karte, Gutschein, Express, Blöcke
   ---------------------------------------------------------------- */
.checkout__event {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.10);
}
.checkout__event img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}
.checkout__event strong {
  display: block;
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 15px;
  color: var(--c-ink);
}
.checkout__event small {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}

/* Gutschein */
.checkout__coupon {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.checkout__coupon input {
  flex: 1;
  min-width: 0;
  font-family: var(--t-body);
  font-size: 13.5px;
  color: var(--c-ink);
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(244, 241, 236, 0.16);
}
.checkout__coupon input::placeholder { color: var(--c-ink-4); }
.checkout__coupon input:focus { outline: none; border-color: var(--c-accent); }
.checkout__coupon button {
  padding: 11px 18px;
  border-radius: 10px;
  background: rgba(244, 241, 236, 0.08);
  border: 1px solid rgba(244, 241, 236, 0.18);
  color: var(--c-ink);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .25s ease;
}
.checkout__coupon button:hover { background: rgba(244, 241, 236, 0.16); }
.checkout__coupon-msg {
  margin: 8px 0 0;
  font-size: 12px;
  color: #d98a7f;
}
.checkout__coupon-msg[hidden] { display: none; }

/* Express-Checkout */
.checkout__express {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.checkout__express-lbl {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  text-align: center;
}
.paypal-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #ffc439;
  font-size: 17px;
  letter-spacing: -0.01em;
  transition: filter .2s ease, transform .2s ease;
}
.paypal-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.paypal-btn i { font-style: italic; font-weight: 800; color: #003087; }
.paypal-btn em { font-style: italic; font-weight: 800; color: #0070ba; }
.checkout__or {
  display: flex;
  align-items: center;
  gap: 14px;
}
.checkout__or::before,
.checkout__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(244, 241, 236, 0.12);
}
.checkout__or span {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-4);
}

/* Formular-Blöcke */
.checkout__form { gap: 22px; }
.checkout__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkout__block h4 {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 14px;
  color: var(--c-ink);
  margin: 0;
}
.checkout__block--consent { gap: 10px; }

/* Bezahlen-Button + Rechtliches */
.checkout__pay {
  width: 100%;
  gap: 10px;
}
.checkout__pay svg { flex-shrink: 0; }
.checkout__legal-hint { text-align: center; }


/* ----------------------------------------------------------------
   NAV — größeres Forest-Camp-Logo
   ---------------------------------------------------------------- */
.nav__brand { height: 76px; }
@media (max-width: 700px) {
  .nav__brand { height: 60px; }
}

/* ----------------------------------------------------------------
   HERO-VIDEO — lädt lazy, Poster steht sofort
   ---------------------------------------------------------------- */
video.fc-hero__photo { object-fit: cover; }

/* ----------------------------------------------------------------
   KLOSS-BOX — Personen antippen, die mitessen
   ---------------------------------------------------------------- */
.kloss-box[hidden] { display: none; }
.kloss-box {
  margin-bottom: 16px;
  padding: 22px 26px;
  border-radius: 20px;
  background: rgba(203, 189, 147, 0.06);
  border: 1px solid rgba(203, 189, 147, 0.25);
}
.kloss-box__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.kloss-box__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(203, 189, 147, 0.12);
  color: var(--c-accent);
  flex-shrink: 0;
}
.kloss-box__icon svg { width: 26px; height: 26px; }
.kloss-box__txt { flex: 1; min-width: 0; }
.kloss-box__txt h4 {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 16px;
  color: var(--c-ink);
  margin: 0 0 2px;
}
.kloss-box__txt p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--c-ink-2);
  margin: 0;
  max-width: 640px;
}
.kloss-box__sum {
  font-family: var(--t-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--c-accent);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.kloss-box__people {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.kloss-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px 11px 13px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(244, 241, 236, 0.18);
  color: var(--c-ink-2);
  font-size: 13.5px;
  font-weight: 500;
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}
.kloss-pill:hover { border-color: rgba(203, 189, 147, 0.6); color: var(--c-ink); transform: translateY(-1px); }
.kloss-pill svg { width: 16px; height: 16px; flex-shrink: 0; }
.kloss-pill__check {
  width: 19px;
  height: 19px;
  border-radius: 6px;
  border: 1.5px solid rgba(244, 241, 236, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: transparent;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.kloss-pill__check svg { width: 10px; height: 10px; }
.kloss-pill.is-on {
  background: rgba(203, 189, 147, 0.14);
  border-color: var(--c-accent);
  color: var(--c-ink);
}
.kloss-pill.is-on .kloss-pill__check {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-bg);
}

/* ----------------------------------------------------------------
   ZAHLARTEN — Badges rechts
   ---------------------------------------------------------------- */
.pay-option { position: relative; }
.pay-badge {
  margin-left: auto;
  width: 52px;
  height: 32px;
  border-radius: 6px;
  background: rgba(244, 241, 236, 0.92);
  color: #2b2b28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pay-badge--pp {
  font-size: 12.5px;
  letter-spacing: -0.01em;
  background: #ffffff;
}
.pay-badge--pp i { font-style: italic; font-weight: 800; color: #003087; }
.pay-badge--pp em { font-style: italic; font-weight: 800; color: #0070ba; }


/* Kloß-Pill: Textblock mit Preis */
.kloss-pill__txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
  text-align: left;
}
.kloss-pill__txt small {
  font-family: var(--t-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.kloss-pill.is-on .kloss-pill__txt small { color: var(--c-accent); }

/* Pflichtfeld-Sternchen */
.req { color: var(--c-accent); font-weight: 700; }

/* ----------------------------------------------------------------
   MOBILE-FEINSCHLIFF & PERFORMANCE
   ---------------------------------------------------------------- */
/* iPhone: Bereich hinter Notch/Statusleiste dunkel statt weiß,
   und Overscroll unter dem Footer bleibt schwarz */
html, body { background: var(--c-bg); }

@media (max-width: 820px) {
  /* Backdrop-Blur ist auf Mobilgeräten teuer: dunkler statt unscharf */
  .cartview__backdrop,
  .checkout__backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 0, 0, 0.88);
  }
}

@media (max-width: 700px) {
  /* Sektionsköpfe mittig */
  .slate__head {
    text-align: center;
    align-items: center;
  }
  .slate__head .slate__eyebrow { justify-content: center; }

  #platz .fc-credits { text-align: center; }
}

/* Kloß-Box mobil: Kopf stapeln statt quetschen */
@media (max-width: 700px) {
  .kloss-box { padding: 18px; }
  .kloss-box__head {
    flex-wrap: wrap;
    gap: 12px;
  }
  .kloss-box__icon { width: 42px; height: 42px; }
  .kloss-box__txt { flex: 1; min-width: 200px; }
  .kloss-box__sum {
    width: 100%;
    order: 3;
    padding-top: 4px;
  }
  .kloss-box__people { flex-direction: column; }
  .kloss-box__people .kloss-pill { width: 100%; }

  /* Schritt-Footer: Weiter-Button voll, Zurück-Link drunter */
  .step-panel__foot--split {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 14px;
  }
  .step-panel__foot--split .btn { width: 100%; }
  .step-panel__foot--split .step-back { align-self: center; }
}

/* ----------------------------------------------------------------
   VX4-MUSTER — einmal groß statt gekachelt (das Tile ist nicht
   nahtlos, beim Repeat entstehen sichtbare Lücken)
   ---------------------------------------------------------------- */
.site--forest-camp .slate--pattern::before,
.site--forest-camp .forest-transition::before {
  background-image: url('../img/muster-stretch.svg');  /* Kopie mit
                        preserveAspectRatio="none", sonst passt der
                        Browser das SVG proportional ein und lässt
                        links/rechts Luft */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 106% 104%;   /* leicht über die Ränder hinaus,
                                   damit nirgends Luft bleibt */
  background-attachment: scroll;
}

/* ----------------------------------------------------------------
   FOOTER — vereinfacht und zentriert (Desktop & Mobil)
   ---------------------------------------------------------------- */
.fc-footer { padding: 70px 24px 34px; }
.fc-footer__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.fc-footer__logo img { width: 230px; height: auto; }
.fc-footer__claim {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ink-2);
  margin: 0;
}
.fc-footer__claim a {
  color: var(--c-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fc-footer__claim a:hover { color: var(--c-accent); }
.fc-footer__legal {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 26px;
  border-top: 1px solid rgba(244, 241, 236, 0.10);
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-3);
}
.fc-footer__legal nav { display: flex; gap: 22px; }
.fc-footer__legal a { color: var(--c-ink-3); transition: color .25s ease; }
.fc-footer__legal a:hover { color: var(--c-accent); }

/* Lead-Texte am Desktop breiter */
.slate__head .slate__lead { max-width: 760px; }

/* Trenner: transparenter oberer Bereich muss hell bleiben, seit der
   Body (für den Overscroll) schwarz ist */
.forest-transition { background: var(--c-paper-soft); }

/* ----------------------------------------------------------------
   ANFAHRT — Adresskarte + drei Schritte
   ---------------------------------------------------------------- */
.route {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 24px;
  align-items: start;
}
.route-card {
  background: #ffffff;
  border: 1px solid rgba(21, 20, 15, 0.06);
  border-radius: 20px;
  padding: 30px 30px 28px;
  box-shadow: 0 2px 12px rgba(21, 20, 15, 0.06);
}
.route-card__lbl {
  display: block;
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cool-soft);
  margin-bottom: 10px;
}
.route-card__addr {
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  color: var(--c-ink-dark);
  margin: 0 0 22px;
}
.route-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.route-card__btn { gap: 10px; padding: 15px 24px; font-size: 14px; }
.route-card__alt {
  font-size: 13px;
  color: var(--c-ink-dark-3);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.route-card__alt:hover { color: var(--c-ink-dark); }

.route-steps {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(21, 20, 15, 0.06);
  border-radius: 20px;
  padding: 6px 28px;
  box-shadow: 0 2px 12px rgba(21, 20, 15, 0.06);
}
.route-steps li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
}
.route-steps li + li { border-top: 1px solid rgba(21, 20, 15, 0.08); }
.route-steps__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 107, 47, 0.10);
  color: var(--c-cool);
  font-family: var(--t-display);
  font-weight: 900;
  font-size: 14px;
}
.route-steps strong {
  display: block;
  font-family: var(--t-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 15px;
  color: var(--c-ink-dark);
  margin-bottom: 3px;
}
.route-steps p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-ink-dark-2);
  margin: 0;
}

@media (max-width: 900px) {
  .route { grid-template-columns: 1fr; }
  .route-card__actions { align-items: stretch; }
  .route-card__btn { justify-content: center; }
  .route-card__alt { text-align: center; }
}

/* MwSt-Hinweis unter Summen */
.vat-note {
  margin: -6px 0 0;
  font-size: 13px;
  color: var(--c-ink-2);
  text-align: right;
}
