/* ==========================================================================
   Badis Adventures — Design System (Vanilla CSS, kein Framework)
   Tokens aus dem Marken-Kit der Buchungs-App (badis.mechti.at)
   ========================================================================== */

/* --- Fonts: Sora, self-hosted (DSGVO — KEIN Google-Fonts-CDN) --- */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/sora-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/sora-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/sora-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/sora-800.woff2') format('woff2');
}

/* --- Design-Tokens --- */
:root {
  --orange: #F39309;
  --orange-dk: #b06400; /* abgedunkelt: ≥4.5:1 auf Weiß (WCAG AA, Hover-Text) */
  --navy: #143F70;
  --navy-lt: #1d5599;
  --ink: #0e2a44;
  --dark: #0d2b26; /* dunkles Petrol/Waldgrün für dunkle Sektionen */
  --bg-soft: #faf7f2;
  --white: #fff;

  /* Akzent-Indirektion: Industrieklettern-Theme überschreibt diese */
  --accent: var(--orange);
  --accent-dk: var(--orange-dk);
  /* Button-Text auf Akzent: dunkles Ink statt Weiß — 6.27:1 auf Orange (AA) */
  --accent-contrast: var(--ink);
  /* Akzentfarbe für kleinen Text auf hellen Flächen (Eyebrows): ≥4.5:1 */
  --accent-deep: #9c5e00;

  --text: #2b3947;
  --muted: #64748b;
  --line: #e6e0d6;

  --radius-card: 12px;
  --radius-pill: 999px;
  --container: 1200px;
  --font: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shadow-card: 0 6px 24px rgba(14, 42, 68, 0.08);
  --shadow-pop: 0 12px 40px rgba(14, 42, 68, 0.18);
}

/* Industrieklettern: Stahl/Anthrazit statt Orange (Kapselung, eigenes Theme) */
[data-theme='industrial'] {
  --accent: #5f7385;
  --accent-dk: #46586a;
  --accent-contrast: #fff;
  --accent-deep: #46586a;
  --bg-soft: #f4f5f7;
  --line: #dde2e8;
}

/* --- Reset / Basis --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a {
  color: var(--navy);
  text-decoration-color: color-mix(in srgb, var(--accent) 55%, transparent);
  text-underline-offset: 3px;
}
a:hover { color: var(--accent-dk); }

ul, ol { padding-left: 1.3em; }

table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.2em 0;
  font-size: 0.95rem;
}
th, td {
  border: 1px solid var(--line);
  padding: 0.6em 0.8em;
  text-align: left;
  vertical-align: top;
}
th { background: var(--bg-soft); color: var(--ink); }

/* Fokus-Ring: kräftiges Navy (10.6:1 auf Weiß) mit weißem Zwischenring,
   damit der Indikator auch auf dunklen Sektionen ≥3:1 sichtbar bleibt
   (WCAG 1.4.11 Non-text Contrast). */
:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--white);
  border-radius: 4px;
}

/* --- Layout-Utilities --- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.section--soft { background: var(--bg-soft); }

.section--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark a { color: var(--white); }
.section--dark a:hover { color: var(--accent); }

/* Eyebrow: Versalien mit Letterspacing (Screenshot). Auf hellen Flächen
   abgedunkelter Akzent (≥4.5:1, WCAG AA); auf dunklen Sektionen/Hero bleibt
   das kräftige Akzent-Orange (6.46:1 auf --dark). */
.eyebrow {
  display: block;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero .eyebrow,
.section--dark .eyebrow {
  color: var(--accent);
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 46rem;
}

/* --- Buttons: Pill-Form --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.8em 1.7em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: var(--accent-contrast);
}
.btn--primary:hover {
  background: var(--accent-dk);
  /* Auf dem dunkleren Hover-Grund kontrastiert Weiß besser (4.5:1 auf #b06400) */
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: currentColor;
}
.btn--ghost:hover { color: var(--accent-dk); }

.btn--white {
  background: var(--white);
  color: var(--ink);
}
.btn--white:hover { background: var(--bg-soft); color: var(--ink); }

/* Orange Text-Link mit Pfeil (dunkle Angebots-Sektion) */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.arrow-link::after { content: '→'; transition: transform 0.15s ease; }
.arrow-link:hover { color: var(--accent); }
.arrow-link:hover::after { transform: translateX(4px); }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 43, 38, 0.92);
  backdrop-filter: blur(10px);
  color: var(--white);
}
[data-theme='industrial'] .site-header { background: rgba(30, 38, 46, 0.95); }

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
}

.site-header__logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__logo .accent { color: var(--accent); }
.site-header__logo:hover { color: var(--white); }

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}
.site-header__nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.site-header__nav a:hover,
.site-header__nav a[aria-current='page'] { color: var(--accent); }

.site-header__lang {
  display: flex;
  gap: 0.15rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.site-header__lang a,
.site-header__lang span {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.25em 0.45em;
  border-radius: 6px;
}
.site-header__lang a:hover { color: var(--white); }
.site-header__lang [aria-current='true'] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.site-header__book { white-space: nowrap; }
.site-header__nav a.site-header__book { color: var(--ink); }
.site-header__nav a.site-header__book:hover { color: var(--ink); background: var(--bg-soft); }

.site-header__claim {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
}

/* Mobile Nav */
.site-header__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
}

@media (max-width: 860px) {
  .site-header__toggle { display: block; }
  .site-header__nav {
    display: none;
    position: absolute;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--dark);
    padding: 0.5rem 1.25rem 1.25rem;
    box-shadow: var(--shadow-pop);
  }
  [data-theme='industrial'] .site-header__nav { background: #1e262e; }
  .site-header__nav.is-open { display: flex; }
  .site-header__nav a { padding: 0.7rem 0; width: 100%; }
  .site-header__lang { padding-top: 0.6rem; }
  .site-header__claim { display: none; }
}

/* --- Hero (Vollbild-Foto + dunkles Overlay) --- */
.hero {
  position: relative;
  color: var(--white);
  background: var(--dark);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 43, 38, 0.55) 0%,
    rgba(13, 43, 38, 0.65) 60%,
    rgba(13, 43, 38, 0.92) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(4.5rem, 12vw, 9rem) clamp(3rem, 7vw, 5rem);
  max-width: 820px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  margin-bottom: 0.35em;
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
  margin-bottom: 2rem;
}

/* Kompakter Hero für Unterseiten */
.hero--page .hero__inner { padding-block: clamp(3.5rem, 8vw, 5.5rem) clamp(2.5rem, 5vw, 3.5rem); }
.hero--page h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }

/* --- Nummerierte Angebots-Spalten (dunkle Sektion, Screenshot) --- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
@media (max-width: 820px) {
  .offer-grid { grid-template-columns: 1fr; }
}
.offer-col__num {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.8rem;
}
.offer-col h2 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.offer-col p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}
.tour-card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  position: relative;
}
.tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-card__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgba(13, 43, 38, 0.8);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 0.9em;
  border-radius: var(--radius-pill);
}
.tour-card__body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.tour-card__body h3 { margin: 0; font-size: 1.15rem; }
.tour-card__body h3 a {
  color: var(--ink);
  text-decoration: none;
}
.tour-card__body h3 a:hover { color: var(--accent-dk); }
.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  padding: 0;
  list-style: none;
}
.tour-card__teaser {
  font-size: 0.93rem;
  color: var(--text);
  margin: 0;
}
.tour-card__foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.5rem;
}
.tour-card__price {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
}

/* --- Facts-Box (Tour-/Kurs-Detail) --- */
.facts-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.6rem;
}
.facts-box h2,
.facts-box h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.facts-box dl {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}
.facts-box dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.facts-box dd {
  margin: 0.1rem 0 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

/* --- Included-Liste --- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em;
  display: grid;
  gap: 0.45rem;
}
.check-list li {
  padding-left: 1.7em;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.check-list--neg li::before { content: '—'; color: var(--muted); }

/* --- FAQ --- */
.faq-block details {
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0;
}
.faq-block summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  padding: 0.7rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::after {
  content: '+';
  color: var(--accent);
  font-weight: 800;
  font-size: 1.2em;
  flex-shrink: 0;
}
.faq-block details[open] summary::after { content: '–'; }
.faq-block .faq-answer { padding: 0 0 1rem; color: var(--text); }

/* --- Breadcrumbs --- */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  padding-block: 1rem 0;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.breadcrumbs li + li::before {
  content: '›';
  margin-right: 0.35rem;
  color: var(--muted);
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent-dk); }
.breadcrumbs [aria-current='page'] { color: var(--ink); font-weight: 600; }

/* --- CTA-Band --- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--dark) 100%);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-band h2 { color: var(--white); margin: 0 0 0.3em; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0; max-width: 34rem; }

/* --- Booking-Widget --- */
.booking-widget {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-pop);
  padding: 1rem;
  color: var(--text);
}
.booking-widget__fields {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1fr auto;
  gap: 0.8rem;
  align-items: end;
}
.booking-widget--panel .booking-widget__fields {
  grid-template-columns: 1fr;
}
@media (max-width: 860px) {
  .booking-widget__fields { grid-template-columns: 1fr 1fr; }
  .booking-widget__submit { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .booking-widget__fields { grid-template-columns: 1fr; }
}
.booking-widget label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.booking-widget select,
.booking-widget input,
.booking-widget button.bw-date-btn {
  width: 100%;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65em 0.8em;
  text-align: left;
}
.booking-widget button.bw-date-btn { cursor: pointer; }
.booking-widget__submit { width: 100%; }
.booking-widget__note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.7rem 0.2rem 0;
  min-height: 1em;
}

/* Mini-Kalender-Popup */
.bw-field { position: relative; }
.bw-cal {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-pop);
  padding: 0.9rem;
}
.bw-cal[hidden] { display: none; }
.bw-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.bw-cal__head button {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
}
.bw-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.bw-cal__dow {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  padding: 0.3em 0;
  text-transform: uppercase;
}
.bw-cal__day {
  border: 0;
  background: #e8f5ee;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.82rem;
  border-radius: 6px;
  padding: 0.45em 0;
  cursor: pointer;
}
.bw-cal__day:hover { outline: 2px solid var(--accent); }
.bw-cal__day:disabled {
  background: #f1f1f1;
  color: #b6b6b6;
  cursor: not-allowed;
  text-decoration: line-through;
  outline: none;
}
.bw-cal__day.is-empty {
  background: transparent;
  cursor: default;
  outline: none;
}
.bw-cal__day.is-selected {
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 700;
}
.bw-cal__legend {
  display: flex;
  gap: 1rem;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.6rem;
}
.bw-cal__legend i {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 3px;
  margin-right: 0.35em;
  font-style: normal;
}
.bw-cal__legend i { border: 1px solid #b6b6b6; }
.bw-cal__legend .i-free { background: #e8f5ee; border-color: #7dbb98; }
/* belegt: diagonale Strichelung als farbunabhängiges Unterscheidungsmerkmal */
.bw-cal__legend .i-blocked {
  background: linear-gradient(135deg, #f1f1f1 42%, #9a9a9a 42%, #9a9a9a 58%, #f1f1f1 58%);
}

/* --- Prose (Artikel-Inhalt) --- */
.prose { max-width: 46rem; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose img { border-radius: var(--radius-card); }
.prose blockquote {
  border-left: 4px solid var(--accent);
  margin: 1.2em 0;
  padding: 0.3em 0 0.3em 1.2em;
  color: var(--muted);
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  margin-top: clamp(3rem, 7vw, 5rem);
  font-size: 0.92rem;
}
[data-theme='industrial'] .site-footer { background: #1e262e; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
}
@media (max-width: 760px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}
.site-footer h2 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.site-footer address { font-style: normal; line-height: 1.8; }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* --- Sonstiges --- */
/* Skip-Link: erstes fokussierbares Element (Base.astro), erscheint bei Fokus */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.6em 1.2em;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transform: translateY(-400%);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; }
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}
.usp-item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.usp-item p { font-size: 0.93rem; color: var(--muted); margin: 0; }
.usp-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent-dk);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

/* =============================================================================
   Buchungsseite /buchen/ (BookingForm.astro): großer Inline-Kalender + Formular
   ============================================================================= */
.booking-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .booking-form__grid { grid-template-columns: 1fr; }
}
.booking-form h2 { margin-bottom: 1rem; }

.booking-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.booking-form select,
.booking-form input,
.booking-form textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65em 0.8em;
}
.booking-form .bw-field { margin-bottom: 1rem; }
.booking-form textarea { resize: vertical; }

/* Inline-Kalender: Karte statt Popup, größere Tages-Zellen */
.bf-cal {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-pop);
  padding: 1.1rem;
  margin-top: 0.4rem;
}
.bf-cal .bw-cal__day { min-height: 2.6em; font-size: 1rem; }
.booking-form__avail-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.7rem 0.1rem 0;
  min-height: 1em;
}

.booking-form__selected {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7em 0.9em;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
}

/* Honeypot: aus dem Sichtbereich, aber nicht display:none (Bots prüfen das) */
.bf-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bf-error {
  color: #b3261e;
  background: #fdeceb;
  border: 1px solid #f0b9b5;
  border-radius: 8px;
  padding: 0.6em 0.9em;
  font-size: 0.9rem;
}
.bf-error[hidden] { display: none; }

.bf-success,
.bf-fail {
  border-radius: var(--radius-card);
  padding: 1.3rem 1.5rem;
  margin-top: 0.5rem;
}
.bf-success {
  background: #e8f5ee;
  border: 1px solid #7dbb98;
}
.bf-fail {
  background: #fdeceb;
  border: 1px solid #f0b9b5;
}
.bf-success h3, .bf-fail h3 { margin-bottom: 0.5rem; }
.bf-success[hidden], .bf-fail[hidden] { display: none; }
.bf-submit { width: 100%; }
