/* =============================================================
   PIZZERIA POST — Reservierungsseite
   ============================================================= */

:root {
  --res-surface: #f1f1f1;
  --res-raised: #e8e8e8;
  --res-raised-hover: #e0e0e0;
  --res-border: rgba(0, 0, 0, 0.09);
  --res-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
}

.reservation-page {
  background: #f3f3f3b7;
}

/* Header immer deckend schwarz — sonst scheint die Seiten-Hintergrundfarbe durch die halbtransparente Navbar */
.reservation-page .site-header {
  background: #0f0f0f;
  border-bottom-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* ── HERO ────────────────────────────────────────────────── */
.res-hero {
  position: relative;
  height: 52vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
  margin-top: 86px;
}

@media (max-width: 899px) {
  .reservation-page .res-hero {
    margin-top: 92px;
  }
}

.res-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.res-hero:hover .res-hero-bg { transform: scale(1.0); }

.res-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,11,8,0.94) 0%, rgba(14,11,8,0.5) 55%, rgba(14,11,8,0.2) 100%);
}

.res-hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow-res {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.res-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1.0;
  margin: 0 0 16px;
}

.res-hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(240,232,216,0.65);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

/* ── OPTIONEN ────────────────────────────────────────────── */
.res-options { padding: 44px 0 12px; }

.res-options-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.res-option-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--res-border);
  border-radius: 14px;
  padding: 18px 22px;
  cursor: pointer;
  text-decoration: none;
  color: #1a1a1a;
  transition: background 220ms, border-color 220ms, transform 220ms, box-shadow 220ms;
  text-align: left;
  box-shadow: var(--res-shadow);
}

.res-option-card:hover {
  background: #ebebeb;
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
}

.res-option-call   { border-radius: 14px; }
.res-option-online { border-radius: 0 14px 14px 0; }

.res-option-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #0e0b08;
  flex-shrink: 0;
  transition: background 220ms, border-color 220ms;
}

.res-option-card:hover .res-option-icon {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.12);
}

.res-option-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0e0b08;
  margin: 0 0 3px;
}

.res-option-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 6px;
  line-height: 1.4;
}

.res-option-text strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0e0b08;
}

.res-option-arrow {
  color: rgba(0, 0, 0, 0.28);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 220ms, color 220ms;
}

.res-option-card:hover .res-option-arrow {
  transform: translateX(4px);
  color: rgba(0, 0, 0, 0.5);
}

.res-options-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  flex-shrink: 0;
}

.res-options-divider span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(240,232,216,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.09);
  padding: 6px 10px;
  border-radius: 4px;
}

/* ── ÖFFNUNGSZEITEN ──────────────────────────────────────── */
.res-hours-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 11px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(240,232,216,0.45);
}

.res-hours-note i { color: rgba(255,255,255,0.3); flex-shrink: 0; }

/* ── FORM SECTION ────────────────────────────────────────── */
.res-form-section {
  padding: 40px 0 110px;
  scroll-margin-top: 100px;
}

/* ── GOOGLE MAPS ─────────────────────────────────────────── */
.res-map-section {
  padding: 0 0 96px;
}

.res-map-wrap {
  max-width: 1020px;
}

.res-map-head {
  margin: 0 0 14px;
}

.res-map-head h2 {
  margin: 0 0 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #101010;
}

.res-map-head p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: rgba(0, 0, 0, 0.62);
}

.res-map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--res-border);
  box-shadow: var(--res-shadow);
  background: #fff;
}

.res-map-embed iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 46vw, 430px);
  border: 0;
}

.res-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 42px 36px 48px;
  background: white;
  border: 1px solid var(--res-border);
  border-radius: 16px;
  box-shadow: var(--res-shadow);
  color: #1a1a1a;
  position: relative;
  box-sizing: border-box;
}

/* Leichte Trennung Schritte ↔ Inhalt */
.res-form-wrap .res-steps {
  display: flex;
  align-items: center;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.res-form-wrap .res-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.res-form-wrap .step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  color: rgba(0, 0, 0, 0.35);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 300ms, border-color 300ms, color 300ms;
}

.res-form-wrap .step-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.38);
  transition: color 300ms;
  white-space: nowrap;
}

.res-form-wrap .res-step.active .step-num {
  background: #0e0b08;
  border-color: #0e0b08;
  color: #ffffff;
}
.res-form-wrap .res-step.active .step-label { color: #1a1a1a; }
.res-form-wrap .res-step.done .step-num {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.22);
  color: rgba(0, 0, 0, 0.55);
}
.res-form-wrap .res-step.done .step-label { color: rgba(0, 0, 0, 0.45); }

.res-form-wrap .res-step-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 12px;
}

/* ── SCHRITT-INHALT ──────────────────────────────────────── */
.res-form-wrap .res-step-content {
  display: none;
  animation: fadeInUp 260ms cubic-bezier(0.22,1,0.36,1);
}

.res-form-wrap .res-step-content.active { display: block; }

/* Schritt 1 (Personen/Datum/Uhrzeit) zentral ausrichten */
.res-form-wrap #step1 {
  max-width: 820px;
  margin-inline: auto;
}

.res-form-wrap #step1 .res-field-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.res-form-wrap #step1 .res-field-group:last-of-type {
  margin-bottom: 30px;
}

/* Leichte Trennlinien: Personen | Datum | Uhrzeit */
.res-form-wrap #step1 .res-field-group + .res-field-group {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  padding-top: 28px;
}

.res-form-wrap #step1 .res-label,
.res-form-wrap #step1 .res-hint {
  text-align: center;
  justify-content: center;
}

.res-form-wrap #step1 .date-shortcuts {
  justify-content: center;
}

.res-form-wrap #step1 .calendar-wrap,
.res-form-wrap #step1 .time-slots-wrap,
.res-form-wrap #step1 .time-closed-msg,
.res-form-wrap #step1 .selected-date-display {
  width: 100%;
}

.res-form-wrap #step1 .res-cta-wrap {
  align-items: center;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FELDER ──────────────────────────────────────────────── */
.res-form-wrap .res-field-group { margin-bottom: 28px; }

.res-form-wrap .res-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 14px;
}

.res-form-wrap .res-label i { color: rgba(0, 0, 0, 0.4); font-size: 0.82rem; }

.res-form-wrap .res-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: rgba(0, 0, 0, 0.45);
  margin: 10px 0 0;
  line-height: 1.5;
}

/* ── PERSONEN STEPPER ────────────────────────────────────── */
.res-form-wrap .person-stepper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #afafaf;
  border-radius: 10px;
  width: fit-content;
  overflow: hidden;
}

.res-form-wrap .stepper-btn {
  width: 54px;
  height: 60px;
  background: transparent;
  border: none;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms, color 180ms;
}

.res-form-wrap .stepper-btn:hover { background: rgba(0, 0, 0, 0.06); color: #0e0b08; }
.res-form-wrap .stepper-btn:disabled { opacity: 0.2; cursor: not-allowed; }

.res-form-wrap .stepper-display {
  min-width: 110px;
  height: 60px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.res-form-wrap .stepper-display span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #0e0b08;
  line-height: 1;
}

.res-form-wrap .stepper-unit {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.06em;
}

/* ── DATUM SHORTCUTS ─────────────────────────────────────── */
.res-form-wrap .date-shortcuts {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.res-form-wrap .date-shortcut {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 200ms, border-color 200ms, color 200ms;
}

.res-form-wrap .date-shortcut:hover {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.18);
  color: #0e0b08;
}

.res-form-wrap .date-shortcut.active {
  background: #ffffff;
  border-color: #afafaf;
  color: #1a1a1a;
  font-weight: 700;
}

/* "Anderes Datum" Toggle-Button */
.res-form-wrap .date-picker-toggle {
  background: transparent;
  border: 1px dashed rgba(0, 0, 0, 0.22);
  color: rgba(0, 0, 0, 0.55);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 200ms, color 200ms, background 200ms;
}

.res-form-wrap .date-picker-toggle:hover {
  border-color: rgba(0, 0, 0, 0.35);
  color: #0e0b08;
  background: rgba(0, 0, 0, 0.03);
}

.res-form-wrap .date-picker-toggle.open {
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.25);
  color: #0e0b08;
}

.res-form-wrap .date-picker-toggle i {
  font-size: 0.75rem;
  transition: transform 250ms ease;
}

.res-form-wrap .date-picker-toggle.open i { transform: rotate(180deg); }

/* ── KALENDER ────────────────────────────────────────────── */
.res-form-wrap .calendar-wrap {
  background: #ffffff;
  border: 1px solid #afafaf;;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 360ms cubic-bezier(0.22,1,0.36,1),
              opacity 280ms ease,
              padding 300ms ease;
  padding-top: 0;
  padding-bottom: 0;
}

/* Genug Höhe für 6 Wochenzeilen + Kopf (380px war zu wenig → untere Tage abgeschnitten) */
.res-form-wrap .calendar-wrap.open {
  max-height: min(72vh, 640px);
  opacity: 1;
  padding: 18px;
  overflow: visible;
}

.res-form-wrap .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.res-form-wrap .cal-month-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0e0b08;
  letter-spacing: 0.02em;
}

.res-form-wrap .cal-nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.72rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, color 150ms;
}

.res-form-wrap .cal-nav:hover { background: #eeeeee; color: #0e0b08; }

.res-form-wrap .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.res-form-wrap .calendar-weekdays span {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 0;
}

.res-form-wrap .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.res-form-wrap .cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.88);
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 150ms, color 150ms, border-color 150ms;
}

.res-form-wrap .cal-day:hover:not(.disabled):not(.empty):not(.selected) {
  background: #f3f3f3;
  color: #0e0b08;
}

.res-form-wrap .cal-day.today   { border-color: rgba(0, 0, 0, 0.22); color: #0e0b08; }
.res-form-wrap .cal-day.selected { background: #ffffff; color: #1a1a1a; font-weight: 700; border-color: #afafaf; }
.res-form-wrap .cal-day.disabled { color: rgba(0, 0, 0, 0.2); cursor: not-allowed; }
.res-form-wrap .cal-day.empty    { cursor: default; }

/* Gewähltes Datum Anzeige */
.res-form-wrap .selected-date-display {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #afafaf;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0e0b08;
  margin-top: 10px;
}

.res-form-wrap .selected-date-display i { color: rgba(0, 0, 0, 0.4); }

/* ── ZEITSLOTS ─── GROSS & PROMINENT ─────────────────────── */
.res-form-wrap .time-slots-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.res-form-wrap .time-period-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 4px;
}

.res-form-wrap .time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}

.res-form-wrap .time-slot {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 180ms, border-color 180ms, color 180ms, transform 150ms;
  text-align: center;
  letter-spacing: 0.02em;
}

.res-form-wrap .time-slot:hover {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.2);
  color: #0e0b08;
  transform: translateY(-1px);
}

.res-form-wrap .time-slot.selected {
  background: #ffffff;
  border-color: #afafaf;
  color: #1a1a1a;
  font-weight: 800;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.res-form-wrap .time-closed-msg {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.65);
  padding: 16px;
  background: #fff8e8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}
.res-form-wrap .time-closed-msg i {
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.35);
}
.res-form-wrap .time-closed-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.res-form-wrap .time-closed-cta {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
}
.res-form-wrap .time-closed-cta a {
  color: #0e0b08;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s;
}
.res-form-wrap .time-closed-cta a:hover {
  border-color: #0e0b08;
}

/* ── CTA — PSYCHOLOGISCH ─────────────────────────────────── */
.res-form-wrap .res-cta-wrap {
  margin-top: 22px;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.res-form-wrap .btn-res-next {
  position: relative;
  background: #0e0b08;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  transition: background 200ms, transform 200ms, box-shadow 200ms;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.res-form-wrap .btn-res-next:hover:not(:disabled) {
  background: #1f1818;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.res-form-wrap .btn-res-next:disabled {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.35);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.res-form-wrap .btn-res-next i { font-size: 0.85rem; }

/* Globales .btn-secondary (weiss) überschreiben, wenn mit .btn-res-next kombiniert */
.res-form-wrap .btn.btn-secondary.btn-res-next {
  background: #0e0b08;
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}
.res-form-wrap .btn.btn-secondary.btn-res-next:hover:not(:disabled) {
  background: #1f1818;
  color: #ffffff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.res-form-wrap .res-cta-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.res-form-wrap .res-cta-note-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(61, 143, 90, 0.12);
  border: 1px solid rgba(61, 143, 90, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d6b43;
  font-size: 1rem;
}

.res-form-wrap .res-cta-note-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.58);
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}

.res-form-wrap .res-cta-note-list li {
  position: relative;
  padding-left: 1.1rem;
}

.res-form-wrap .res-cta-note-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3d8f5a;
  opacity: 0.85;
}

/* ── KONTAKTFORMULAR ─────────────────────────────────────── */
.res-form-wrap .res-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.res-form-wrap .res-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.res-form-wrap .res-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.res-form-wrap .res-form-group--full { grid-column: 1 / -1; }

.res-form-wrap .res-form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.04em;
}

.res-form-wrap .required { color: rgba(0, 0, 0, 0.45); }
.res-form-wrap .optional { color: rgba(0, 0, 0, 0.35); font-weight: 400; }

.res-form-wrap .res-form-group input,
.res-form-wrap .res-form-group textarea {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #0e0b08;
  outline: none;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
}

.res-form-wrap .res-form-group input::placeholder,
.res-form-wrap .res-form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.res-form-wrap .res-form-group input:focus,
.res-form-wrap .res-form-group textarea:focus {
  border-color: rgba(0, 0, 0, 0.28);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Gültig ausgefüllt: leichter grüner Rand (Pflichtfelder) */
.res-form-wrap .res-form-group input[required]:valid:not(:focus),
.res-form-wrap .res-form-group textarea:not(:placeholder-shown):valid:not(:focus) {
  border-color: rgba(61, 143, 90, 0.42);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(61, 143, 90, 0.22);
}

.res-form-wrap .res-form-group input[required]:valid:focus,
.res-form-wrap .res-form-group textarea:not(:placeholder-shown):valid:focus {
  border-color: rgba(61, 143, 90, 0.55);
  box-shadow: 0 0 0 3px rgba(61, 143, 90, 0.14);
}

.res-form-wrap .res-form-group textarea { resize: vertical; min-height: 80px; }

/* ── NAV BUTTONS ─────────────────────────────────────────── */
.res-form-wrap .res-nav-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.res-form-wrap .btn-res-back {
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.45);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  transition: color 150ms;
}

.res-form-wrap .btn-res-back:hover { color: #0e0b08; }

/* ── ZUSAMMENFASSUNG ─────────────────────────────────────── */
.res-form-wrap .res-summary {
  background: var(--res-raised);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 28px 26px;
  margin-bottom: 20px;
}

.res-form-wrap .res-summary-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #0e0b08;
  margin: 0 0 22px;
}

.res-form-wrap .res-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.res-form-wrap .res-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.res-form-wrap .res-summary-item > i {
  color: rgba(0, 0, 0, 0.35);
  font-size: 0.88rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.res-form-wrap .res-summary-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.res-form-wrap .sum-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

.res-form-wrap .sum-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0e0b08;
}

.res-form-wrap .res-summary-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: rgba(0, 0, 0, 0.55);
  font-style: italic;
}

.res-form-wrap .res-summary-note i { color: rgba(0, 0, 0, 0.3); flex-shrink: 0; margin-top: 2px; }

.res-form-wrap .res-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── ERFOLG OVERLAY ──────────────────────────────────────── */
.res-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.res-success-modal {
  background: var(--res-surface, #f1f1f1);
  border: 1px solid var(--res-border, rgba(0, 0, 0, 0.09));
  border-radius: 16px;
  padding: 52px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  animation: fadeInUp 320ms cubic-bezier(0.22,1,0.36,1);
  color: #1a1a1a;
}

.res-success-icon { font-size: 3.5rem; color: #3d8f5a; margin-bottom: 22px; }

.res-success-modal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #0e0b08;
  margin: 0 0 14px;
  line-height: 1.15;
  padding-inline: 4px;
}

.res-success-modal p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  margin: 0 0 8px;
}

.res-success-modal p strong {
  color: #0e0b08;
}

.res-success-details {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.65);
  background: var(--res-raised, #e8e8e8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0 0;
  line-height: 1.6;
}

.res-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.res-success-modal .btn.btn-secondary {
  border: 1px solid #afafaf;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.btn-res-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  border: 1.5px solid rgba(0, 0, 0, 0.22);
  color: rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  transition: border-color 200ms, color 200ms, background 200ms;
}

.btn-res-outline:hover {
  border-color: rgba(0, 0, 0, 0.45);
  color: #0e0b08;
  background: rgba(0, 0, 0, 0.05);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 700px) {
  .res-hero { min-height: 280px; height: 44vh; padding-bottom: 40px; }
  .res-options-inner { flex-direction: column; gap: 10px; padding: 0 16px; }
  .res-option-call, .res-option-online { border-radius: 10px; border: 1px solid var(--res-border); }
  .res-options-divider { padding: 4px 0; }
  .res-hours-note { margin: 14px 16px 0; }
  .res-form-section { padding: 32px 0 88px; }
  .res-form-wrap {
    padding: 30px 20px 36px;
    border-radius: 10px;
    box-sizing: border-box;
  }
  .res-form-wrap .res-steps {
    padding-bottom: 22px;
    margin-bottom: 26px;
  }
  .res-form-wrap .step-label { display: none; }
  .res-form-wrap .res-form-row { grid-template-columns: 1fr; }
  .res-form-wrap .res-summary-grid { grid-template-columns: 1fr; gap: 14px; }
  .res-form-wrap .time-slots { grid-template-columns: repeat(auto-fill, minmax(68px, 1fr)); gap: 8px; }
  .res-form-wrap .time-slot { font-size: 0.9rem; padding: 12px 6px; }
  .res-success-overlay {
    padding: max(16px, env(safe-area-inset-top, 0px)) max(18px, env(safe-area-inset-right, 0px)) max(20px, env(safe-area-inset-bottom, 0px)) max(18px, env(safe-area-inset-left, 0px));
  }
  .res-success-modal {
    padding: 30px 26px 34px;
  }
  .res-success-modal h2 {
    font-size: clamp(1.45rem, 5.2vw, 1.85rem);
    font-weight: 500;
    padding-inline: 10px;
    margin-bottom: 12px;
  }
  .res-success-icon {
    font-size: 2.85rem;
    margin-bottom: 18px;
  }
  .res-success-actions { flex-direction: column; }
  .res-form-wrap .btn-res-next { width: 100%; justify-content: center; }
}
