/* ==========================================================================
   OPTIK GLÖCKNER – Design-System
   Farben aus dem Logo: Orange #FE6A00 · Blau #0241AA
   Schrift: Manrope – via Bunny Fonts (EU/DSGVO)
   ========================================================================== */

:root {
  --orange: #FE6A00;
  --orange-deep: #E05C00;
  --orange-soft: #FFF1E5;
  --blue: #0241AA;
  --blue-soft: #EAF0FC;
  --ink: #1C1B1A;
  --body: #52504C;
  --muted: #6E6961;
  --paper: #FFFFFF;
  --cream: #FAF6F0;
  --line: #ECE4D9;
  --footer-bg: #171614;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 10px 40px rgba(28, 27, 26, .08);
  --shadow-lift: 0 18px 60px rgba(28, 27, 26, .13);
  --font-display: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --wrap: 1140px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 1.1em; }
a { color: var(--orange-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--ink); }
::selection { background: var(--orange); color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
section.tight { padding: 72px 0; }
.bg-cream { background: var(--cream); }

/* ------- Skip-Link (Tastatur-Navigation) ------- */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--ink); color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 12px 0;
  font-weight: 800;
  z-index: 300;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ------- Eyebrow / Section-Intro ------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::after {
  content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px;
}
.lead { font-size: 1.15rem; }

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none !important;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--orange); color: #fff !important; box-shadow: 0 8px 24px rgba(254, 106, 0, .35); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(254, 106, 0, .42); }
.btn-ghost { border-color: var(--line); color: var(--ink) !important; background: transparent; }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--ink) !important; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff !important; background: transparent; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: .92rem; }

/* ------- Header ------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(28,27,26,.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none !important; }
.brand img { height: 42px; width: auto; }
.brand-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .08em;
  color: var(--ink);
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--orange-deep);
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink);
  text-decoration: none !important;
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover { background: var(--orange-soft); color: var(--orange-deep); }
.main-nav a.active { background: var(--ink); color: #fff; }
.header-cta { display: flex; align-items: center; gap: 14px; }

.burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center;
}
.burger:hover { background: var(--orange-soft); }
.burger svg { width: 26px; height: 26px; color: var(--ink); }

/* Mobile-Menü */
.mobile-menu {
  display: none;
  position: fixed; inset: 78px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
  padding: 12px 24px 28px;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 15px 6px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none !important;
  border-bottom: 1px solid var(--cream);
}
.mobile-menu a.active { color: var(--orange-deep); }
.mobile-menu .btn { margin-top: 18px; width: 100%; justify-content: center; }

/* ------- Hero ------- */
.hero {
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(254,106,0,.10), transparent 65%),
    radial-gradient(700px 420px at -10% 110%, rgba(2,65,170,.06), transparent 60%),
    var(--cream);
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 .accent { color: var(--orange); }
.hero .lead { font-size: 1.2rem; max-width: 34em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: .93rem; font-weight: 700; color: var(--ink); }
.trust-item svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.stars { color: var(--orange); letter-spacing: 1px; }

.hero-media { position: relative; z-index: 0; }
.hero-media .photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 100%;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange), #FF9A4D);
  opacity: .9;
  z-index: -1;
}
.float-badge {
  position: absolute;
  left: -26px; bottom: 26px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
}
.float-badge .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--ink); line-height: 1; }
.float-badge .lbl { font-size: .78rem; font-weight: 700; color: var(--muted); line-height: 1.35; }
.float-badge .lbl .stars { display: block; font-size: .85rem; }

/* ------- USP-Band ------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.usp {
  display: flex; flex-direction: column; gap: 12px;
}
.usp .icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  display: flex; align-items: center; justify-content: center;
}
.usp .icon svg { width: 26px; height: 26px; }
.usp h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.05rem; margin: 0; }
.usp p { font-size: .95rem; margin: 0; }

/* ------- Karten ------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card img { aspect-ratio: 16 / 11; object-fit: cover; width: 100%; }
.card-body { padding: 26px 28px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { margin: 0; }
.card-body p { font-size: .98rem; margin: 0; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; color: var(--orange-deep); text-decoration: none !important;
  margin-top: 14px; font-size: .98rem;
}
.card-link svg { width: 17px; height: 17px; transition: transform .18s ease; }
.card:hover .card-link svg, .card-link:hover svg { transform: translateX(4px); }

/* ------- Marken ------- */
.brand-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.brand-chip {
  padding: 13px 26px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
  background: #fff;
  text-decoration: none !important;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.brand-chip:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-chip.more { border-style: dashed; color: var(--muted); font-weight: 700; }

/* ------- Split-Layout ------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split .photo-frame { position: relative; z-index: 0; }
.split .photo-frame img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}
.split .photo-frame::after {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  right: -20px; top: -20px;
  border-radius: 26px;
  background: var(--orange);
  opacity: .12;
  z-index: -1;
}
.check-list { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.check-list li svg { width: 21px; height: 21px; color: var(--orange); flex: none; margin-top: 3px; }
.check-list li > div { flex: 1; }
.check-list li small { display: block; font-weight: 500; color: var(--body); font-size: .93rem; }

/* ------- Team ------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-card img, .team-card .avatar-fallback {
  width: 100%;
  aspect-ratio: 3 / 3.3;
  object-fit: cover;
  object-position: top center;
}
.avatar-fallback {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--orange-soft), #fff);
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 800; color: var(--orange);
}
.team-body { padding: 24px 26px 28px; }
.team-body h3 { margin-bottom: 2px; }
.team-role { color: var(--orange-deep); font-weight: 800; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; display: block; margin-bottom: 12px; }
.team-body p { font-size: .96rem; margin: 0; }

/* ------- Versprechen & Werte (Kacheln) ------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.value-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-item .vicon {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: #fff;
  color: var(--orange-deep);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.value-item .vicon svg { width: 22px; height: 22px; }
.value-item strong { color: var(--ink); font-weight: 800; font-size: 1.04rem; line-height: 1.35; }
.value-item > span:not(.vicon) { font-size: .93rem; color: var(--body); }
.value-item.compact { padding: 22px 24px; gap: 10px; }
.value-item.compact .vicon { width: 38px; height: 38px; }
.value-item.compact strong { font-size: .97rem; }

/* ------- Bewertungen ------- */
.rating-hero { text-align: center; margin-bottom: 46px; }
.rating-hero .big {
  font-family: var(--font-display);
  font-size: 4.4rem; font-weight: 800; color: var(--ink); line-height: 1;
}
.rating-hero .stars { font-size: 1.5rem; display: block; margin: 8px 0 4px; }
.rating-hero .sub { color: var(--muted); font-weight: 600; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex; flex-direction: column; gap: 14px;
}
.review .stars { font-size: 1.05rem; }
.review blockquote { margin: 0; font-size: 1.02rem; color: var(--ink); font-weight: 500; flex: 1; }
.review cite { font-style: normal; font-weight: 800; font-size: .9rem; color: var(--muted); }

/* ------- CTA-Band ------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(120deg, var(--orange-deep), var(--orange) 55%, #FF8A33);
  border-radius: calc(var(--radius) + 6px);
  padding: 64px 60px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
  box-shadow: 0 24px 70px rgba(254,106,0,.35);
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { margin: 0; opacity: .93; font-weight: 600; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ------- Kontakt ------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
.info-list { list-style: none; margin: 26px 0 30px; padding: 0; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: var(--orange-soft); color: var(--orange-deep);
  display: flex; align-items: center; justify-content: center;
}
.info-list .icon svg { width: 22px; height: 22px; }
.info-list strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 2px; }
.info-list a { color: var(--ink); font-weight: 700; }
.info-list a:hover { color: var(--orange-deep); }

.hours-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 36px;
  box-shadow: var(--shadow);
}
.hours-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hours-card h3 svg { width: 22px; height: 22px; color: var(--orange); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--cream); font-size: .98rem; }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table td:first-child { font-weight: 800; color: var(--ink); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.today td { color: var(--orange-deep); }
.hours-table tr.today td:first-child::after {
  content: "Heute";
  margin-left: 8px;
  font-size: .68rem;
  background: var(--orange);
  color: #fff;
  padding: 2px 9px;
  border-radius: 999px;
  vertical-align: 2px;
  letter-spacing: .05em;
}
.hours-note { margin-top: 16px; font-size: .9rem; color: var(--muted); }

/* ------- Termin-Seite ------- */
.page-hero {
  background:
    radial-gradient(800px 400px at 80% -20%, rgba(254,106,0,.10), transparent 60%),
    var(--cream);
  padding: 72px 0 64px;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.page-hero .lead { max-width: 640px; }

.booking-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.booking-consent { padding: 56px 40px; text-align: center; }
.booking-consent p { max-width: 560px; margin: 0 auto 24px; font-size: .98rem; }
.booking-box iframe { width: 100%; height: 920px; border: 0; display: block; }

/* ------- Neuigkeiten ------- */
.news-article {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.news-article:last-of-type { border-bottom: 0; }
.news-article.flip { grid-template-columns: 1.15fr .85fr; }
.news-article.flip .news-media { order: 2; }
.news-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
}
.news-tag {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.arrow-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.arrow-list li { display: flex; gap: 11px; align-items: flex-start; }
.arrow-list li svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 5px; }
.note-box {
  background: var(--blue-soft);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: .95rem;
  margin: 20px 0;
}
.note-box strong { color: var(--blue); }
.benefit-line {
  display: flex; gap: 12px; align-items: flex-start;
  font-weight: 700; color: var(--ink);
  background: var(--orange-soft);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 20px;
}
.benefit-line svg { width: 20px; height: 20px; color: var(--orange-deep); flex: none; margin-top: 4px; }

/* ------- Rechtstexte ------- */
.legal { max-width: 780px; }
.legal h1 { margin-bottom: 40px; }
.legal h2 { font-size: 1.35rem; margin-top: 44px; }
.legal p, .legal li { font-size: .98rem; }

/* ------- Footer ------- */
.site-footer { background: var(--footer-bg); color: #B9B4AC; padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1.3fr .7fr;
  gap: 44px;
  padding-bottom: 56px;
}
.site-footer .brand img {
  height: 42px;
  background: #fff;
  padding: 8px 10px;
  border-radius: 13px;
}
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name small { color: var(--orange); }
.footer-about { margin-top: 18px; font-size: .95rem; max-width: 30em; }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; font-size: .95rem; }
.site-footer a { color: #B9B4AC; }
.site-footer a:hover { color: var(--orange); text-decoration: none; }
.footer-hours { width: 100%; border-collapse: collapse; }
.footer-hours td { padding: 8px 0; font-size: .88rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-hours tr:last-child td { border-bottom: 0; }
.footer-hours td:first-child { padding-right: 14px; font-weight: 700; color: #E8E4DD; white-space: nowrap; }
.footer-hours td:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-size: .88rem;
}
.footer-bottom nav { display: flex; gap: 24px; }

/* ------- Schwebender Termin-Button + Buchungs-Overlay ------- */
.booking-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 95;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .98rem;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(254, 106, 0, .45);
  transition: transform .18s ease, background .18s ease;
}
.booking-fab:hover { background: var(--orange-deep); transform: translateY(-2px); }
.booking-fab svg { width: 19px; height: 19px; }

.booking-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(23, 22, 20, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.booking-modal.open { display: flex; }
.booking-modal-panel {
  background: #fff;
  border-radius: 20px;
  width: min(960px, 100%);
  height: min(88vh, 900px);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .35);
}
.booking-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  flex: none;
}
.booking-modal-head strong { font-size: 1.05rem; color: var(--ink); }
.booking-modal-close {
  background: none; border: 0; cursor: pointer;
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.booking-modal-close:hover { background: var(--orange-soft); color: var(--orange-deep); }
.booking-modal-close svg { width: 20px; height: 20px; }
.booking-modal-body { flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; }
.booking-modal-body iframe { width: 100%; height: 100%; border: 0; }
.booking-modal-consent { max-width: 540px; padding: 40px 28px; text-align: center; }
.booking-modal-consent p { font-size: .95rem; }

/* ------- Reveal-Animation ------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------- Responsive ------- */
@media (max-width: 1020px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .card-grid, .review-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .value-grid, .value-grid.cols-4 { grid-template-columns: 1fr 1fr; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .split .photo-frame img { aspect-ratio: 4/3; }
  .news-article, .news-article.flip { grid-template-columns: 1fr; gap: 30px; }
  .news-article.flip .news-media { order: 0; }
  .news-media img { aspect-ratio: 16/10; }
  .main-nav { display: none; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-band { grid-template-columns: 1fr; padding: 48px 36px; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .card-grid, .review-grid, .team-grid, .usp-grid { grid-template-columns: 1fr; }
  .value-grid, .value-grid.cols-4 { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 72px; }
  .hero-media::before { inset: 14px -14px -14px 14px; }
  .float-badge { left: 10px; bottom: 14px; padding: 11px 16px; }
  .header-cta .btn { padding: 11px 18px; font-size: .9rem; }
  .brand-name { font-size: .92rem; }
  .booking-box iframe { height: 1040px; }
  .booking-fab { right: 14px; bottom: 14px; padding: 14px 20px; font-size: .92rem; }
  .booking-modal { padding: 0; }
  .booking-modal-panel { border-radius: 0; height: 100%; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ------- FAQ-Akkordeon ------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
}
.faq summary {
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--orange);
  font-weight: 700;
  flex: none;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 12px 0 0; font-size: .97rem; }
