/* =========================================================================
   Launehoch³ — public stylesheet
   Selbst gehostete Fonts, warme Palette, mobile-first. Keine externen Requests.
   ========================================================================= */

/* ---- Fonts (lokal, font-display:swap) ---------------------------------- */
@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/baloo-2-v23-latin_latin-ext-600.woff2") format("woff2");
}
@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/baloo-2-v23-latin_latin-ext-700.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/nunito-v32-latin_latin-ext-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/nunito-v32-latin_latin-ext-600.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/nunito-v32-latin_latin-ext-700.woff2") format("woff2");
}

/* ---- Design-Tokens ----------------------------------------------------- */
:root {
  --gelb: #FFC93C;
  --rot: #E4572E;
  --rot-strong: #C43D1B;   /* für Text/Buttons: ausreichender Kontrast auf Weiß */
  --blau: #3A86FF;
  --blau-dark: #1B63D6;    /* Links */
  --gruen: #4CAF50;
  --gruen-dark: #2E7D32;
  --creme: #FFF8ED;
  --text: #2B2B2B;
  --muted: #6C6357;
  --card: #FFFFFF;
  --line: #ECE2D2;
  --tint: #FFF1DA;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(80, 52, 20, .08);
  --shadow: 0 10px 30px rgba(80, 52, 20, .12);
  --shadow-lg: 0 20px 50px rgba(80, 52, 20, .18);

  --maxw: 1100px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---- Reset / Basis ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--creme);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, .brand__name {
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif;
  line-height: 1.12;
  font-weight: 700;
  color: var(--text);
}
a { color: var(--blau-dark); text-decoration-thickness: 2px; text-underline-offset: 2px; }
a:hover { color: var(--rot-strong); }
button { font-family: inherit; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.container--narrow { max-width: 780px; }

/* ---- Fokus-Stile ------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--blau);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---- Skip-Link --------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--text); color: #fff;
  padding: 10px 16px; border-radius: 10px;
  z-index: 200; transition: top .2s var(--ease);
  text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1rem;
  padding: .72em 1.35em; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background-color .15s var(--ease);
  line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--rot-strong); color: #fff; box-shadow: 0 8px 18px rgba(196, 61, 27, .32); }
.btn--primary:hover { background: #a93317; color: #fff; }
.btn--ghost { background: #fff; color: var(--text); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { color: var(--rot-strong); border-color: var(--rot); }
.btn--lg { font-size: 1.12rem; padding: .85em 1.7em; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---- Header ------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 237, .92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 16px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.brand__name { font-size: 1.35rem; color: var(--text); letter-spacing: .2px; }
.brand__cube { color: var(--rot); }
.site-nav { display: none; margin-left: auto; gap: 22px; }
.site-nav a { color: var(--text); text-decoration: none; font-weight: 700; }
.site-nav a:hover { color: var(--rot-strong); }
.site-header__cta { margin-left: auto; }

@media (min-width: 960px) {
  .site-nav { display: flex; }
  .site-header__cta { margin-left: 0; }
}

/* ---- Wimpelkette (dekorativ) ------------------------------------------- */
.bunting {
  height: 26px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gelb) 50%),
    linear-gradient(-45deg, transparent 50%, var(--gelb) 50%);
  background-size: 34px 26px;
  background-position: 0 0, 17px 0;
  background-repeat: repeat-x;
  filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .18));
}
.bunting::before {
  /* zweite, versetzte Wimpelreihe in Wechselfarben via mehreren Layern */
  content: "";
}
.bunting--hero {
  position: absolute; left: 0; right: 0; top: 0; z-index: 3;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--rot) 50%),
    linear-gradient(-45deg, transparent 50%, var(--rot) 50%),
    linear-gradient(45deg, transparent 50%, var(--gelb) 50%),
    linear-gradient(-45deg, transparent 50%, var(--gelb) 50%);
  background-size: 40px 26px, 40px 26px, 40px 26px, 40px 26px;
  background-position: 0 0, 20px 0, 20px 0, 40px 0;
  background-repeat: repeat-x;
}

/* ---- Hero -------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; min-height: 78vh; display: flex; align-items: flex-end; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(30, 18, 8, .82) 0%, rgba(30, 18, 8, .35) 42%, rgba(30, 18, 8, .12) 70%, rgba(30, 18, 8, .28) 100%);
}
.hero__content { position: relative; z-index: 4; padding-block: 40px 54px; color: #fff; }
.hero__keyword {
  display: inline-block; font-family: "Baloo 2", sans-serif; font-weight: 700; letter-spacing: .3px;
  background: var(--gelb); color: #3a2a10; padding: .35em .9em; border-radius: 999px;
  font-size: .9rem; line-height: 1.25; margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.hero__display {
  font-family: "Baloo 2", "Nunito", system-ui, sans-serif; font-weight: 700; line-height: 1.12;
  color: #fff; font-size: clamp(2.2rem, 7vw, 4.2rem); text-shadow: 0 3px 18px rgba(0, 0, 0, .45);
  max-width: 15ch;
}
.hero__sub {
  color: #fff; font-size: clamp(1.02rem, 2.4vw, 1.28rem); max-width: 46ch;
  margin-top: 14px; text-shadow: 0 2px 10px rgba(0, 0, 0, .5); font-weight: 600;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__phone {
  margin-top: 16px; color: #fff; font-weight: 700; font-size: .98rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}
.hero__phone a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.hero__phone a:hover { color: var(--gelb); }
.badges {
  list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px;
}
.badge {
  display: inline-flex; align-items: center; gap: .5em;
  background: rgba(255, 255, 255, .95); color: var(--text);
  padding: .5em 1em; border-radius: 999px; font-weight: 700; font-size: .92rem;
  box-shadow: var(--shadow-sm);
}
.badge__icon { font-size: 1.05em; }

/* ---- Sektionen --------------------------------------------------------- */
.section { padding-block: clamp(48px, 8vw, 88px); }
.section--tint { background: var(--tint); }
.section__head { max-width: 62ch; margin-bottom: 34px; }
.section__kicker {
  color: var(--rot-strong); font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: .8rem; margin-bottom: 8px;
}
.section__title { font-size: clamp(1.7rem, 4.4vw, 2.6rem); }
.section__lead { margin-top: 12px; color: var(--muted); font-size: 1.08rem; }

/* ---- Galerie ----------------------------------------------------------- */
.gallery {
  display: grid; gap: 14px; grid-template-columns: 1fr 1fr;
}
.gallery__item {
  position: relative; margin: 0; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); background: #fff;
  aspect-ratio: 4 / 3;
  /* aspect-ratio-Boxen stretchen laut Spec NICHT automatisch (align normal
     verhält sich wie start) — explizit strecken, damit die Kachel neben der
     breiten 16:9-Kachel die volle Zeilenhöhe füllt. */
  align-self: stretch;
}
/* Bild füllt die Kachel immer komplett — auch wenn die Grid-Zeile höher ist
   als das eigene Seitenverhältnis (z. B. neben der breiten 16:9-Kachel).
   height:100% am img scheitert am inline-<picture>-Wrapper, daher absolut. */
.gallery__item picture { position: absolute; inset: 0; display: block; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__item figcaption {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(43, 43, 43, .82); color: #fff; padding: .3em .8em;
  border-radius: 999px; font-size: .82rem; font-weight: 700;
}
.gallery__item--wide { grid-column: 1 / -1; aspect-ratio: 16 / 9; }

@media (min-width: 640px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
}

.feature-list {
  list-style: none; padding: 0; margin-top: 26px;
  display: grid; gap: 14px; grid-template-columns: 1fr;
}
.feature {
  display: flex; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow-sm);
}
.feature__ic { font-size: 1.7rem; line-height: 1; }
.feature strong { display: block; font-family: "Baloo 2", sans-serif; }
.feature span { display: block; color: var(--muted); font-size: .95rem; }
@media (min-width: 640px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .feature-list { grid-template-columns: repeat(4, 1fr); } }

/* ---- Schritte ---------------------------------------------------------- */
.steps {
  list-style: none; padding: 0; display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: none;
}
.step {
  background: #fff; border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow); border: 1px solid var(--line); position: relative;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gelb); color: #3a2a10; font-family: "Baloo 2", sans-serif;
  font-weight: 700; font-size: 1.4rem; margin-bottom: 12px; box-shadow: var(--shadow-sm);
}
.step__title { font-size: 1.3rem; margin-bottom: 6px; }
.step p { color: var(--muted); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---- Preise ------------------------------------------------------------ */
.price-grid {
  display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr);
}
.price-card {
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm);
  position: relative; display: flex; flex-direction: column; justify-content: flex-start;
}
.price-card__title { font-size: 1.15rem; color: var(--muted); font-weight: 700; }
.price-card__price { margin: 10px 0 4px; }
.price-card__amount {
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: clamp(1.9rem, 6vw, 2.5rem);
  color: var(--rot-strong);
}
.price-card__note { color: var(--muted); font-size: .9rem; min-height: 2.4em; }
.price-card--featured {
  border-color: var(--gelb); box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fffdf7, #fff);
}
.price-card__ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gelb); color: #3a2a10; font-family: "Baloo 2", sans-serif; font-weight: 700;
  padding: .25em 1em; border-radius: 999px; font-size: .82rem; box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }

.price-extra {
  display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 22px;
}
.price-extra__box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.price-extra__box h3 { font-size: 1.15rem; margin-bottom: 6px; }
.price-extra__box p { color: var(--muted); font-size: .98rem; }
.price-extra__box--accent { background: #fff6f2; border-color: #f6d3c6; }
@media (min-width: 820px) { .price-extra { grid-template-columns: repeat(3, 1fr); } }

.price-included {
  margin-top: 18px; background: #fff; border: 1.5px dashed var(--gelb); border-radius: var(--radius);
  padding: 14px 18px; text-align: center; color: var(--text); font-weight: 600; box-shadow: var(--shadow-sm);
}
.price-included strong { color: var(--rot-strong); }

/* ---- Liefergebiet ------------------------------------------------------ */
.area-grid {
  display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px; text-decoration: none;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm); color: var(--text);
  transition: border-color .15s var(--ease), transform .12s var(--ease), box-shadow .15s var(--ease);
}
.area-card:hover { border-color: var(--rot); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--text); }
.area-card__city { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.2rem; }
.area-card__price {
  display: inline-flex; align-items: center; background: var(--tint); color: var(--rot-strong);
  font-weight: 700; font-size: .9rem; padding: .3em .85em; border-radius: 999px;
}
.area-card__note { color: var(--muted); font-size: .85rem; }
.area-card__more { margin-top: auto; color: var(--blau-dark); font-weight: 700; font-size: .88rem; }
.area-card:hover .area-card__more { color: var(--rot-strong); }
.area-note { margin-top: 16px; color: var(--muted); font-size: .95rem; }

/* ---- Reservierung: Layout --------------------------------------------- */
.booking-layout {
  display: grid; gap: 22px; grid-template-columns: 1fr; align-items: start;
}
@media (min-width: 960px) {
  .booking-layout { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 30px; }
}
.booking-col--calendar, .booking-col--form { min-width: 0; }

/* ---- Kalender ---------------------------------------------------------- */
.calendar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 18px; box-shadow: var(--shadow);
  position: sticky; top: 80px;
}
.calendar__quickpicks {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 14px;
}
.calendar__quicklabel { font-weight: 700; font-size: .9rem; color: var(--muted); }
.chip {
  background: var(--tint); border: 1.5px solid var(--line); color: var(--text);
  border-radius: 999px; padding: .45em 1em; font-weight: 700; font-size: .9rem; cursor: pointer;
  transition: background-color .15s var(--ease), border-color .15s var(--ease), transform .1s var(--ease);
}
.chip:hover { border-color: var(--rot); color: var(--rot-strong); transform: translateY(-1px); }
.chip:active { transform: translateY(0); }

.calendar__toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px;
}
.calendar__heading { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.05rem; text-align: center; flex: 1; }
.calendar__nav {
  width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--line);
  background: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--text);
  transition: background-color .15s var(--ease), border-color .15s var(--ease);
}
.calendar__nav:hover:not([disabled]) { border-color: var(--rot); color: var(--rot-strong); }
.calendar__nav[disabled] { opacity: .35; cursor: not-allowed; }

.calendar__months { display: grid; gap: 20px; grid-template-columns: 1fr; }
.month__name { text-align: center; font-family: "Baloo 2", sans-serif; font-weight: 700; margin-bottom: 8px; font-size: .98rem; color: var(--muted); }
.month__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.month__wd {
  text-align: center; font-size: .72rem; font-weight: 700; color: var(--muted);
  padding-bottom: 4px; text-transform: uppercase; letter-spacing: .3px;
}
.day, .day--blank { aspect-ratio: 1 / 1; }
.day {
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid transparent; border-radius: 11px;
  background: #f4fbf4; color: var(--text); font-weight: 700; font-size: .92rem;
  cursor: pointer; padding: 0; width: 100%;
  transition: background-color .12s var(--ease), border-color .12s var(--ease), color .12s var(--ease), transform .08s var(--ease);
}
.day:hover:not([disabled]) { border-color: var(--gruen); transform: translateY(-1px); }
.day[disabled] { cursor: not-allowed; }
.day--occupied {
  background: repeating-linear-gradient(45deg, #f0eae0, #f0eae0 5px, #e7ded0 5px, #e7ded0 10px);
  color: #a99f8e; text-decoration: line-through;
}
.day--past { background: transparent; color: #cabfae; }
.day--sel, .day--start, .day--end {
  background: var(--gruen); color: #fff; border-color: var(--gruen-dark);
}
.day--range { background: #cdeccd; color: #23611f; border-color: #a9dca8; }
.day--start { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.day--end { border-top-left-radius: 4px; border-bottom-left-radius: 4px; }

.calendar__legend {
  list-style: none; display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; padding: 0;
  font-size: .82rem; color: var(--muted);
}
.calendar__legend li { display: inline-flex; align-items: center; gap: 6px; }
.swatch { width: 15px; height: 15px; border-radius: 5px; display: inline-block; border: 1.5px solid transparent; }
.swatch--free { background: #f4fbf4; border-color: var(--gruen); }
.swatch--sel { background: var(--gruen); }
.swatch--occ { background: repeating-linear-gradient(45deg, #f0eae0, #f0eae0 3px, #e7ded0 3px, #e7ded0 6px); border-color: #d9cdb8; }
.calendar__msg { margin-top: 10px; font-weight: 700; font-size: .92rem; min-height: 1.4em; }
.calendar__msg--error { color: var(--rot-strong); }
.calendar__msg--ok { color: var(--gruen-dark); }

@media (min-width: 520px) {
  .calendar__months { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 959px) {
  .calendar { position: static; }
  /* mobil: nur ein Monat sichtbar */
  .calendar__months { grid-template-columns: 1fr; }
  .month:nth-child(2) { display: none; }
}

/* ---- Formular ---------------------------------------------------------- */
.booking-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(18px, 4vw, 28px); box-shadow: var(--shadow);
}
.selection-banner {
  display: flex; align-items: center; gap: 10px;
  background: var(--tint); border: 1.5px dashed var(--gelb); border-radius: var(--radius);
  padding: 12px 14px; font-weight: 700; margin-bottom: 6px;
}
.selection-banner--set { background: #eefaee; border-style: solid; border-color: var(--gruen); }
.selection-banner__ic { font-size: 1.2rem; }

.fieldset { border: 0; padding: 0; margin: 18px 0 0; }
.fieldset legend { font-family: "Baloo 2", sans-serif; font-weight: 700; margin-bottom: 10px; font-size: 1.05rem; }

.toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.toggle__opt { position: relative; cursor: pointer; }
.toggle__opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.toggle__box {
  display: block; border: 2px solid var(--line); border-radius: var(--radius); padding: 12px 14px;
  transition: border-color .15s var(--ease), background-color .15s var(--ease);
  background: #fff;
}
.toggle__box strong { display: block; font-family: "Baloo 2", sans-serif; }
.toggle__box small { color: var(--muted); }
.toggle__opt input:checked + .toggle__box { border-color: var(--rot); background: #fff6f2; }
.toggle__opt input:focus-visible + .toggle__box { outline: 3px solid var(--blau); outline-offset: 2px; }

.field { margin-top: 16px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.field-row .field { margin-top: 16px; }
@media (min-width: 520px) {
  .field-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .field-row .field--zip { grid-column: auto; }
}
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .95rem; }
.field__opt { font-weight: 400; color: var(--muted); font-size: .85em; }
.field input, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; font: inherit; color: var(--text); background: #fffdfa;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blau); box-shadow: 0 0 0 3px rgba(58, 134, 255, .18);
}
.field textarea { resize: vertical; min-height: 76px; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--rot-strong); }
.address-fields { margin-top: 4px; }
.field--zip input { max-width: 140px; }
@media (min-width: 520px) { .field--zip { max-width: none; } .field--zip input { max-width: 140px; } }

.field-error { display: block; color: var(--rot-strong); font-size: .85rem; font-weight: 700; margin-top: 5px; min-height: 0; }
.field-error:empty { display: none; }
.field-error--block { margin-top: 8px; }

/* Honeypot – für Menschen komplett unsichtbar */
.hp {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; padding: 0;
  left: -9999px;
}

/* Zusammenfassung */
.summary {
  margin-top: 22px; background: var(--creme); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px;
}
.summary__row { display: flex; justify-content: space-between; gap: 14px; padding: 5px 0; font-weight: 600; }
.summary__row--total {
  border-top: 2px dashed var(--line); margin-top: 6px; padding-top: 12px;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.25rem;
}
.summary__row--total span:last-child { color: var(--rot-strong); }
.summary__note { margin-top: 8px; color: var(--muted); font-size: .86rem; }

/* Checkboxen */
.check {
  display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start;
  margin-top: 16px; font-size: .95rem; cursor: pointer;
}
.check input { width: 22px; height: 22px; margin-top: 1px; accent-color: var(--rot-strong); cursor: pointer; }
.check a { font-weight: 700; }

.form-error {
  margin-top: 16px; background: #fdece6; border: 1.5px solid #f3b7a5; color: #8a2a12;
  border-radius: var(--radius-sm); padding: 12px 14px; font-weight: 700;
}
.form-hint { margin-top: 10px; color: var(--muted); font-size: .86rem; text-align: center; }

#submit-btn { margin-top: 20px; }

/* Erfolgspanel */
.success {
  background: #fff; border: 2px solid var(--gruen); border-radius: var(--radius-lg);
  padding: clamp(22px, 5vw, 34px); box-shadow: var(--shadow); text-align: center;
}
.success__confetti { font-size: 2.6rem; }
.success__title { font-size: 1.6rem; margin: 8px 0 10px; color: var(--gruen-dark); }
.success__ref {
  display: inline-block; background: var(--tint); border-radius: 999px;
  padding: .4em 1.1em; font-size: 1.05rem; margin-bottom: 12px;
}
.success__ref strong { font-family: "Baloo 2", sans-serif; letter-spacing: .5px; color: var(--rot-strong); }
.success__steps { text-align: left; max-width: 44ch; margin: 16px auto; display: grid; gap: 8px; padding-left: 20px; }
.success__steps li { color: var(--text); }
#success-again { margin-top: 8px; }

/* ---- FAQ --------------------------------------------------------------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__q { margin: 0; font-size: 1rem; }
.faq__toggle {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.06rem; color: var(--text);
  padding: 18px 52px 18px 20px; position: relative; line-height: 1.3;
}
.faq__toggle:hover { color: var(--rot-strong); }
.faq__icon {
  position: absolute; right: 18px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--rot); border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.faq__icon::before { left: 0; top: 7px; width: 16px; height: 3px; }
.faq__icon::after { left: 7px; top: 0; width: 3px; height: 16px; }
.faq__toggle[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a { padding: 0 20px 20px; color: var(--muted); }
.faq__a p { max-width: 68ch; }
.faq__a a { font-weight: 700; }

/* ---- Sicherheit -------------------------------------------------------- */
.safety { display: grid; gap: 18px; grid-template-columns: 1fr; }
.safety__cert, .safety__rules {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.safety__seal { font-size: 2.4rem; }
.safety__cert h3, .safety__rules h3 { font-size: 1.3rem; margin: 6px 0 14px; }
.cert-list { display: grid; gap: 8px; }
.cert-list > div { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px dashed var(--line); padding-bottom: 8px; }
.cert-list dt { color: var(--muted); font-weight: 700; }
.cert-list dd { text-align: right; font-weight: 700; }
.rules { padding-left: 22px; display: grid; gap: 8px; }
.rules li { color: var(--text); }
@media (min-width: 820px) { .safety { grid-template-columns: 1fr 1fr; } }

.cta-band {
  margin-top: 30px; background: linear-gradient(120deg, var(--gelb), #ffdf7a);
  border-radius: var(--radius-lg); padding: 26px 24px; text-align: center;
  box-shadow: var(--shadow); display: grid; gap: 14px; justify-items: center;
}
.cta-band p { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 1.4rem; color: #3a2a10; }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: #2b2b2b; color: #e9e2d6; margin-top: 10px; }
.site-footer__inner { display: grid; gap: 26px; grid-template-columns: 1fr; padding-block: 44px; }
.brand--footer .brand__name { color: #fff; }
.site-footer__tag { color: #b9b0a2; margin-top: 10px; max-width: 40ch; }
.site-footer__h { font-size: 1.05rem; color: #fff; margin-bottom: 12px; }
.site-footer__addr { font-style: normal; line-height: 1.9; color: #d7cfc1; }
.site-footer a { color: #ffd77a; }
.site-footer a:hover { color: #fff; }
.site-footer__links { list-style: none; padding: 0; display: grid; gap: 8px; }
.site-footer__bottom { border-top: 1px solid #3d3d3d; padding-block: 16px; font-size: .85rem; color: #b0a798; }
@media (min-width: 720px) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; } }

/* ---- Utilities --------------------------------------------------------- */
[hidden] { display: none !important; }

/* ---- Reduced Motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .btn:hover, .chip:hover, .day:hover, .gallery__item:hover { transform: none; }
}
