/* ============================================================
   Molvren – Markenfarben aus dem CRM-Frontend (tailwind.config.js)
   Gold/Brand:  #B08D57   Anthrazit/Ink: #18202A   Sand: #F2EFE7
   ============================================================ */

:root {
  /* Brand (Gold) */
  --brand-50: #faf6ee;
  --brand-100: #f3e9d6;
  --brand-200: #e7d2ad;
  --brand-300: #d8b97f;
  --brand-400: #c8a162;
  --brand-500: #b08d57;
  --brand-600: #936f3e;
  --brand-700: #75592f;

  /* Ink (Anthrazit) */
  --ink-700: #2b3744;
  --ink-800: #212a35;
  --ink-900: #18202a;
  --ink-950: #11171f;

  /* Sand (Creme) */
  --sand-50: #faf9f4;
  --sand-100: #f2efe7;
  --sand-200: #e8e3d5;

  --text: #1f2937;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(24, 32, 42, 0.08), 0 8px 24px rgba(24, 32, 42, 0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: "Inter", system-ui, "Segoe UI", Roboto, sans-serif;
  background: var(--sand-50);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Tastatur-Fokus klar sichtbar (nur bei Keyboard-Navigation) */
:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip-Link: für Screenreader/Tastatur, sichtbar nur bei Fokus */
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--ink-900);
  color: var(--sand-100);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; color: var(--ink-900); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.125rem; font-weight: 600; }

.accent { color: var(--brand-500); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin: 0 0 12px;
}
.eyebrow-light { color: var(--brand-300); }

.lead { font-size: 1.125rem; color: var(--text-muted); max-width: 34rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.925rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 13px 26px; font-size: 1rem; }

.btn-primary { background: var(--brand-600); color: #fff; }
.btn-primary:hover { background: var(--brand-700); }

.btn-secondary { background: #fff; color: var(--ink-800); border-color: var(--border); }
.btn-secondary:hover { background: var(--sand-100); }

.btn-light { background: var(--sand-100); color: var(--ink-900); }
.btn-light:hover { background: #fff; }

.btn-outline-light { color: var(--sand-100); border-color: rgba(242, 239, 231, 0.4); }
.btn-outline-light:hover { border-color: var(--sand-100); background: rgba(242, 239, 231, 0.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-200);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo { width: 34px; height: 34px; }
.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-700);
  font-size: 0.925rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--brand-600); }
.nav-actions { display: flex; gap: 10px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 96px;
  background:
    radial-gradient(60% 80% at 85% 10%, var(--brand-100) 0%, transparent 60%),
    var(--sand-50);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 14px; font-size: 0.85rem; color: var(--text-muted); }

.hero-photo {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.hero-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(17, 23, 31, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(242, 239, 231, 0.15);
  border-radius: 12px;
  padding: 10px 16px 10px 10px;
  color: var(--sand-100);
}
.hero-photo figcaption strong {
  display: block;
  font-size: 0.875rem;
}
.hero-photo figcaption span span,
.hero-photo figcaption > span {
  font-size: 0.78rem;
  color: #b9c2cd;
}
.hero-photo figcaption > span strong { color: var(--sand-100); }

/* ---------- Kennzahlen ---------- */
.stats-band {
  background: var(--ink-900);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; }
.stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-300);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #9aa7b5;
  margin-top: 2px;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--sand-100); }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 56px; }
.section-sub { color: var(--text-muted); }

/* Leistungen */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 2px rgba(24, 32, 42, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card p { margin: 0; color: var(--text-muted); font-size: 0.925rem; }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-100);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }

/* Über uns */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  margin: 0;
  max-width: 360px;
  justify-self: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.about-copy p { color: var(--text-muted); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}
.check-list li {
  padding: 8px 0 8px 32px;
  font-weight: 500;
  color: var(--ink-800);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23936f3e" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="m5 13 4 4 10-10"/></svg>') no-repeat left 12px / 18px;
}

/* Ablauf (dunkel) */
.section-dark { background: var(--ink-900); }
.section-dark h2 { color: var(--sand-100); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.step h3 { color: var(--sand-100); }
.step p { margin: 0; color: #9aa7b5; font-size: 0.925rem; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-500);
  color: var(--ink-950);
  font-weight: 700;
  margin-bottom: 18px;
}

/* Einblicke / Galerie */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(24, 32, 42, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gallery-card figcaption { padding: 18px 20px 20px; }
.gallery-card strong {
  display: block;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.gallery-card span { font-size: 0.875rem; color: var(--text-muted); }

/* CTA */
.section-cta { padding-bottom: 110px; }
.cta-box {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 100%);
  border-radius: 20px;
  padding: 72px 32px;
  text-align: center;
}
.cta-box svg { margin: 0 auto 22px; }
.cta-box h2 { color: var(--sand-100); }
.cta-box p { color: #9aa7b5; margin: 0 0 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Kontakt (Grid + Formular) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 100%);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
}
.contact-intro h2 { color: var(--sand-100); }
.contact-lead { color: #9aa7b5; margin: 0 0 28px; }
.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sand-100);
  font-size: 0.95rem;
}
.contact-details svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--brand-300);
}
.contact-details a { color: var(--sand-100); text-decoration: none; }
.contact-details a:hover { color: var(--brand-300); }

.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sand-100);
}
.contact-form label span[aria-hidden] { color: var(--brand-300); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--sand-100);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 239, 231, 0.18);
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6e7d8c; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-400);
  background: rgba(255, 255, 255, 0.07);
}
.contact-form textarea { resize: none; min-height: 96px; }

/* Eigene, dezente Inline-Validierung (statt nativer Browser-Bubbles) */
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #e0796b;
}
input.has-error,
textarea.has-error {
  border-color: #e0796b !important;
}
.consent input.has-error { outline: 2px solid #e0796b; outline-offset: 2px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  color: #9aa7b5 !important;
  line-height: 1.5;
}
.consent .field-error { flex-basis: 100%; margin-top: 0; }
.consent input { width: auto; margin-top: 2px; flex: none; accent-color: var(--brand-500); }
.consent a { color: var(--brand-300); }

.contact-form .btn { justify-self: start; margin-top: 4px; }
.form-reassure {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--brand-300);
}
.form-reassure svg { width: 16px; height: 16px; flex: none; }
.form-note { margin: 4px 0 0; font-size: 0.85rem; min-height: 1.2em; }
.form-note.is-ok { color: var(--brand-300); }
.form-note.is-error { color: #e0796b; }

/* ---------- Rechtliche Seiten (Impressum / Datenschutz) ---------- */
.legal {
  padding: 72px 0 96px;
  background:
    radial-gradient(60% 70% at 90% 0%, var(--brand-100) 0%, transparent 55%),
    var(--sand-50);
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px);
}
.legal-content h1 { margin-bottom: 8px; }
.legal-content .eyebrow { margin-bottom: 16px; }
.legal-content h2 {
  font-size: 1.25rem;
  margin: 40px 0 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { border-top: 0; padding-top: 0; }
.legal-content h3 {
  font-size: 1rem;
  margin: 24px 0 8px;
}
.legal-content p,
.legal-content li { color: var(--text); font-size: 0.95rem; }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0 0 16px; padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--brand-600); }
.legal-content a:hover { color: var(--brand-700); }
.legal-meta { color: var(--text-muted); font-size: 0.85rem; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
}
.legal-back:hover { color: var(--brand-600); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-950);
  padding: 36px 0;
}
.footer-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.brand-footer .brand-name { color: var(--sand-100); }
.brand-footer .brand-logo { width: 28px; height: 28px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  color: #9aa7b5;
  text-decoration: none;
  font-size: 0.875rem;
}
.footer-links a:hover { color: var(--brand-300); }
.footer-copy {
  margin: 0 0 0 auto;
  color: #5d6b7a;
  font-size: 0.825rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-photo img { min-height: 300px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .feature-grid, .steps, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { max-width: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--sand-50);
    border-bottom: 1px solid var(--sand-200);
    padding: 8px 24px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 56px 0 64px; }
  .section { padding: 64px 0; }
  .feature-grid, .steps, .gallery-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-copy { margin-left: 0; }
}

/* ── Terminbuchung ───────────────────────────────────────────────────── */
.booking-alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.booking-alt span { color: var(--sand-100); opacity: 0.85; font-size: 0.95rem; }

/* Gold gefüllter Buchungs-Button – klar sichtbar auf dem dunklen Kontaktbereich. */
.btn-book { background: var(--brand-500); color: #fff; border-color: var(--brand-500); }
.btn-book:hover { background: var(--brand-400); border-color: var(--brand-400); }

.booking-reassure { margin: 10px 0 0; font-size: 0.85rem; color: var(--brand-300); }

.field-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.booking-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.booking-modal[hidden] { display: none; }
.booking-backdrop { position: absolute; inset: 0; background: rgba(17, 23, 31, 0.72); backdrop-filter: blur(3px); }

/* Dialog: fester Kopf + fester Fuß, nur die Mitte scrollt bei Bedarf.
   So bleiben die runden Ecken und der Schließen-Button immer sauber sichtbar. */
.booking-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(780px, 100%);
  max-height: min(880px, 94vh);
  min-height: min(620px, 90vh);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(17, 23, 31, 0.32);
  overflow: hidden;            /* clippt scrollende Inhalte an den runden Ecken */
}
/* Das Formular trägt body+foot und muss selbst die Höhe verteilen */
#booking-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;            /* erlaubt dem Body, korrekt zu scrollen */
}
.booking-head {
  flex: none;
  padding: 36px 44px 22px;
  border-bottom: 1px solid var(--border);
}
.booking-head .eyebrow { margin-bottom: 6px; }
.booking-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 28px 44px;
  overscroll-behavior: contain;
}
.booking-foot {
  flex: none;
  padding: 22px 44px 30px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.booking-dialog h2 { margin: 4px 0 8px; font-size: 1.6rem; }
.booking-intro { color: var(--text-muted); margin: 0; font-size: 0.95rem; }
.booking-close {
  position: absolute; top: 20px; right: 22px; z-index: 2;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%; background: var(--sand-100); cursor: pointer;
  font-size: 24px; line-height: 1; color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.booking-close:hover { background: var(--sand-200); color: var(--text); }
.booking-dialog .field { margin-top: 18px; }
.booking-dialog label { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.booking-dialog input,
.booking-dialog textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
}
.booking-dialog textarea { resize: none; min-height: 76px; }
.booking-dialog input:focus,
.booking-dialog textarea:focus { outline: none; border-color: var(--brand-400); }
.booking-foot .btn { margin-top: 0; width: 100%; }
.booking-reassure { margin: 12px 0 0; text-align: center; }
.booking-foot .form-note { text-align: center; }

/* Zeit-Slots */
.slot-group { margin-top: 18px; }
.slot-group > .slot-caption {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 10px;
}
.slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
  min-height: 24px;
}
.booking-muted { color: var(--text-muted); font-size: 0.9rem; margin: 0; grid-column: 1 / -1; }
.slot-button {
  border: 1px solid var(--brand-300);
  background: var(--brand-50);
  color: var(--brand-700);
  padding: 12px 6px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.slot-button:hover { background: var(--brand-100); border-color: var(--brand-400); }
.slot-button.active { background: var(--brand-600); color: #fff; border-color: var(--brand-600); }

/* Erfolgs-Overlay nach erfolgreicher Buchung */
.booking-success {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 6px;
}
.booking-dialog.is-success .booking-success { display: flex; }
.booking-dialog.is-success #booking-form { visibility: hidden; }
.booking-success-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.booking-success-icon svg { width: 38px; height: 38px; }
.booking-success h2 { margin: 0 0 4px; }
.booking-success p { color: var(--text-muted); margin: 0; max-width: 28rem; }
.booking-success-hint { font-size: 0.85rem; margin-top: 14px !important; color: var(--text-muted); }

/* Tablet / kleinere Fenster */
@media (max-width: 720px) {
  .booking-head { padding: 28px 22px 18px; }
  .booking-body { padding: 22px 22px; }
  .booking-foot { padding: 18px 22px 24px; }
  .booking-dialog h2 { font-size: 1.4rem; }
}

/* Mobile: Dialog wird zum Bottom-Sheet über die volle Breite/Höhe */
@media (max-width: 560px) {
  .booking-modal { padding: 0; place-items: end stretch; }
  .booking-dialog {
    width: 100%;
    max-height: 96vh;
    border-radius: 22px 22px 0 0;
  }
  .booking-head { padding: 26px 20px 16px; }
  .booking-body { padding: 20px; }
  .booking-foot { padding: 16px 20px calc(20px + env(safe-area-inset-bottom)); }
  .booking-close { top: 16px; right: 16px; }
  .slot-list { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
  /* Felder im Modal untereinander statt nebeneinander */
  .booking-dialog .field-row { grid-template-columns: 1fr; gap: 0; }
}
