/* ==========================================================================
   FüsioFit – Stylesheet
   Farbwelt: Petrol (Ruhe/Gesundheit) + warmes Bernstein (Praxisgebäude, Honig)
   ========================================================================== */

:root {
  --c-primary: #0e5c66;
  --c-primary-dark: #0a434c;
  --c-primary-darker: #072f36;
  --c-primary-soft: #e3f0f1;
  --c-accent: #e9a83a;
  --c-accent-dark: #b97f14;
  --c-bg: #f6fafa;
  --c-surface: #ffffff;
  --c-text: #22333a;
  --c-muted: #55696f;
  --c-line: #dbe7e9;
  --c-sand: #fdf6e9;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(10, 55, 64, .08), 0 1px 2px rgba(10, 55, 64, .05);
  --shadow-md: 0 6px 20px rgba(10, 55, 64, .12);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  /* Footer bleibt bei kurzen Seiten am unteren Bildschirmrand */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
main { flex: 1 0 auto; }

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

a { color: var(--c-primary); }
a:hover { color: var(--c-primary-dark); }

h1, h2, h3, h4 { line-height: 1.25; color: var(--c-primary-darker); font-weight: 700; }

.container { max-width: 72rem; margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: 3rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--c-accent); color: var(--c-primary-darker);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: .6rem 1.35rem; border: 2px solid transparent;
  border-radius: 999px; font-weight: 600; font-size: 1rem; text-decoration: none;
  cursor: pointer; transition: background .15s ease, color .15s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: .8rem 1.8rem; font-size: 1.0625rem; }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-dark); color: #fff; }
.btn-accent { background: var(--c-accent); color: var(--c-primary-darker); }
.btn-accent:hover { background: #f0b654; color: var(--c-primary-darker); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, var(--c-primary-dark), var(--c-primary));
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 4.25rem; flex-wrap: wrap;
}
.brand {
  display: flex; align-items: center; gap: .6rem;
  color: #fff; text-decoration: none; font-size: 1.35rem; font-weight: 700;
  padding-block: .5rem;
}
.brand img { width: 44px; height: 44px; }
.brand-name em, .footer-brand em { font-style: normal; color: var(--c-accent); }

.site-nav { margin-left: auto; }
.site-nav > ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .1rem; flex-wrap: wrap; }
.site-nav > ul > li { position: relative; display: flex; align-items: center; }
.site-nav a {
  display: block; color: #eaf4f5; text-decoration: none; font-weight: 500;
  padding: .55rem .7rem; border-radius: var(--radius-sm); font-size: .98rem;
}
.site-nav > ul > li > a:hover { background: rgba(255,255,255,.12); color: #fff; }
.site-nav > ul > li.active > a { background: rgba(255,255,255,.16); color: #fff; }

.sub-toggle {
  background: none; border: 0; color: #eaf4f5; padding: .3rem .35rem; margin-left: -.4rem;
  cursor: pointer; border-radius: var(--radius-sm); line-height: 0;
}
.sub-toggle:hover { background: rgba(255,255,255,.12); }
.sub-toggle svg { transition: transform .2s ease; }
.has-sub.open > .sub-toggle svg { transform: rotate(180deg); }

.submenu {
  list-style: none; margin: 0; padding: .5rem;
  position: absolute; top: 100%; left: 0; min-width: 15rem;
  background: var(--c-surface); border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid var(--c-line);
  display: none; z-index: 50;
}
.submenu-wide { min-width: 30rem; column-count: 2; column-gap: .25rem; }
.submenu li { break-inside: avoid; }
.submenu a { color: var(--c-text); padding: .5rem .75rem; border-radius: var(--radius-sm); }
.submenu a:hover { background: var(--c-primary-soft); color: var(--c-primary-dark); }

/* Desktop: Dropdown per Hover/Fokus */
@media (min-width: 64.01em) {
  .has-sub:hover > .submenu,
  .has-sub:focus-within > .submenu,
  .has-sub.open > .submenu { display: block; }

  /* Ruhige Link-Optik: Unterstreichungs-Indikator statt Kästen */
  .site-nav > ul > li > a {
    padding: 1.35rem .7rem;
    border-radius: 0;
    position: relative;
  }
  .site-nav > ul > li > a::after {
    content: "";
    position: absolute; left: .7rem; right: .7rem; bottom: .95rem;
    height: 3px; border-radius: 2px; background: transparent;
    transition: background .15s ease;
  }
  .site-nav > ul > li > a:hover { background: none; color: #fff; }
  .site-nav > ul > li > a:hover::after { background: rgba(255,255,255,.45); }
  .site-nav > ul > li.active > a { background: none; color: #fff; }
  .site-nav > ul > li.active > a::after { background: var(--c-accent); }

  /* Pfeil-Buttons ausblenden – der Chevron ist Teil des Links.
     Dropdown öffnet per Hover/Fokus; ohne Maus übernimmt JS (erster Tap öffnet). */
  .sub-toggle { display: none; }
  .site-nav .has-sub > a { padding-right: 1.55rem; }
  .site-nav .has-sub > a::before {
    content: ""; position: absolute; right: .55rem; top: 50%; margin-top: -2px;
    border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 5px solid rgba(255,255,255,.6);
    transition: border-top-color .15s ease;
  }
  .site-nav .has-sub > a::after { right: 1.45rem; }
  .site-nav .has-sub:hover > a::before,
  .site-nav .has-sub.open > a::before { border-top-color: var(--c-accent); }

  /* Breite Untermenüs mittig unter dem Menüpunkt ausrichten */
  .submenu-wide { left: 50%; transform: translateX(-50%); }
}

.nav-toggle {
  display: none; margin-left: auto; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3);
  padding: .5rem .9rem; border-radius: 999px; font-size: 1rem; font-weight: 600; cursor: pointer;
}
.nav-toggle-bars { display: inline-flex; flex-direction: column; gap: 4px; }
.nav-toggle-bars span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }

/* Mobile Navigation */
@media (max-width: 64em) {
  /* Reihenfolge: Logo, Menü-Knopf, dann die (aufgeklappte) Navigation darunter –
     sonst rutscht der Knopf beim Öffnen unter das Menü (DOM: brand, nav, button). */
  .nav-toggle { display: inline-flex; order: 2; }
  .site-nav { display: none; width: 100%; margin: 0; padding-bottom: .75rem; order: 3; }
  .site-nav.open { display: block; }
  .site-nav > ul { flex-direction: column; gap: .15rem; }
  .site-nav > ul > li { flex-wrap: wrap; }
  .site-nav > ul > li > a { flex: 1; }
  .submenu {
    position: static; display: none; width: 100%;
    background: rgba(255,255,255,.08); border: 0; box-shadow: none;
  }
  .submenu-wide { column-count: 1; min-width: 0; }
  .submenu a { color: #eaf4f5; }
  .submenu a:hover { background: rgba(255,255,255,.12); color: #fff; }
  .has-sub.open > .submenu { display: block; }
  .sub-toggle { margin-left: 0; padding: .55rem .8rem; }
}

/* ---------- Hero (Startseite) ---------- */
.hero {
  background:
    radial-gradient(70rem 30rem at 85% -10%, rgba(233,168,58,.22), transparent 60%),
    linear-gradient(160deg, var(--c-primary-dark) 0%, var(--c-primary) 55%, #16707c 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; align-items: center;
  padding-block: 4rem 4.5rem;
}
.hero-kicker {
  text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; font-weight: 600;
  color: var(--c-accent); margin: 0 0 .75rem;
}
.hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 1rem; }
.hero h1 em { font-style: normal; color: var(--c-accent); }
.hero-lead { font-size: 1.125rem; max-width: 38rem; color: #e8f3f4; }
.hero-actions { display: flex; gap: .9rem; margin-top: 1.75rem; flex-wrap: wrap; }
.hero-figure { margin: 0; justify-self: center; text-align: center; }
.hero-figure img {
  border-radius: 120px; box-shadow: var(--shadow-md);
  border: 4px solid rgba(255,255,255,.35);
  width: min(230px, 60vw);
}
.hero-figure figcaption { margin-top: .75rem; font-size: .9rem; color: #cfe4e6; }

@media (max-width: 48em) {
  .hero-inner { grid-template-columns: 1fr; padding-block: 2.75rem 3rem; }
  .hero-figure { order: -1; }
  .hero-figure img { width: min(180px, 50vw); }
}

/* ---------- Seiten-Hero ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--c-primary-dark), var(--c-primary));
  color: #fff; padding-block: 2rem 2.25rem;
}
.page-hero h1 { color: #fff; margin: .35rem 0 0; font-size: clamp(1.7rem, 3.5vw, 2.4rem); }

.breadcrumb { font-size: .875rem; color: #bcd7da; }
.breadcrumb a { color: #dcecee; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb .sep { margin-inline: .5rem; opacity: .6; }
.breadcrumb [aria-current] { color: var(--c-accent); font-weight: 600; }

/* ---------- Inhalt / Prose ---------- */
.prose { max-width: 46rem; }
.prose-narrow { max-width: 44rem; margin-inline: auto; }
.prose h2 { margin-top: 2rem; font-size: 1.5rem; }
.prose h3 { margin-top: 1.6rem; font-size: 1.2rem; }
.prose .lead { font-size: 1.15rem; }
.prose a { text-decoration-thickness: 1.5px; text-underline-offset: 2px; }

.checklist { list-style: none; padding: 0; margin: 1rem 0; }
.checklist li { padding-left: 1.75rem; position: relative; margin-bottom: .45rem; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--c-primary); font-weight: 700;
}

.terms { padding-left: 1.25rem; }
.terms li { margin-bottom: 1rem; }

.notice {
  background: #fff4e2; border-left: 4px solid var(--c-accent);
  padding: .7rem 1rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600; color: #7a5410;
}

.info-box {
  background: var(--c-sand); border: 1px solid #f0dfba;
  border-radius: var(--radius); padding: 1.1rem 1.35rem; margin-block: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.info-box h2 { margin-top: 0; font-size: 1.25rem; }
.info-box p { margin: .5rem 0; }
.info-box .price { font-size: 1.6rem; font-weight: 700; color: var(--c-primary-dark); }

/* ---------- Seiten-Layout mit Bild ---------- */
.page-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 17rem; gap: 2.5rem;
  align-items: start;
}
.page-grid.no-aside { grid-template-columns: minmax(0, 1fr); }
.page-aside figure {
  margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  position: sticky; top: 5.5rem;
}
.page-aside img { width: 100%; }
.page-banner { margin: 0 0 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.page-banner img { width: 100%; object-fit: cover; }

@media (max-width: 48em) {
  .page-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .page-aside figure { position: static; max-width: 20rem; }
}

/* ---------- Karten ---------- */
.grid-heading { margin-top: 3rem; }
.card-grid, .feature-grid, .gift-grid {
  display: grid; gap: 1.25rem; margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
}
.card {
  display: flex; flex-direction: column; gap: .4rem;
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.25rem 1.35rem; text-decoration: none; color: var(--c-text);
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--c-text); }
.card h3 { margin: 0; font-size: 1.1rem; color: var(--c-primary-dark); }
.card p { margin: 0; font-size: .95rem; color: var(--c-muted); flex: 1; }
.card-more { font-size: .9rem; font-weight: 600; color: var(--c-accent-dark); margin-top: .35rem; }
.card:hover .card-more { color: var(--c-primary); }

/* Feature-Karten (Startseite) */
.feature-grid { grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); }
.feature-card {
  display: flex; flex-direction: column; background: var(--c-surface);
  border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--c-text);
  border: 1px solid var(--c-line); box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--c-text); }
.feature-card > img { height: 11rem; width: 100%; object-fit: cover; object-position: center 30%; }
.feature-body { padding: 1.1rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.feature-body h3 { margin: 0; color: var(--c-primary-dark); }
.feature-body p { margin: 0; font-size: .95rem; color: var(--c-muted); flex: 1; }

.section-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .25rem; }
.section-sub { color: var(--c-muted); margin-top: 0; }

/* ---------- Geschenk-Banner & -Seite ---------- */
.gift-banner { background: var(--c-sand); border-block: 1px solid #f0dfba; }
.gift-banner-inner {
  display: flex; align-items: center; gap: 2rem; padding-block: 2.25rem; flex-wrap: wrap;
}
.gift-banner img { transform: rotate(-4deg); filter: drop-shadow(0 6px 8px rgba(0,0,0,.18)); }
.gift-note { display: block; border-radius: var(--radius-sm); }
.gift-note img { transition: transform .18s ease; }
.gift-note:hover img, .gift-note:focus-visible img { transform: rotate(-1deg) scale(1.06); }
.gift-banner-inner > div { flex: 1 1 20rem; }
.gift-banner h2 { margin: 0 0 .3rem; }
.gift-banner p { margin: 0; color: var(--c-muted); }
.gift-banner .btn { margin-left: auto; }
@media (max-width: 48em) { .gift-banner .btn { margin-left: 0; } }

.gift-intro { display: flex; gap: 2rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.gift-intro img { transform: rotate(-4deg); filter: drop-shadow(0 6px 8px rgba(0,0,0,.18)); }
.gift-grid { grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr)); margin-bottom: 2rem; }
.gift-card {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.35rem 1.5rem; box-shadow: var(--shadow-sm);
}
.gift-card h3 { margin: 0 0 .5rem; }
.gift-card h3 a { color: var(--c-primary-dark); text-decoration: none; }
.gift-card h3 a:hover { text-decoration: underline; }
.gift-card p { margin: 0; color: var(--c-muted); }

/* ---------- Galerie ---------- */
.gallery-grid {
  display: grid; gap: 1rem; margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
}
.gallery-item {
  display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  background: rgba(7, 47, 54, .94);
  padding: 4rem 4.75rem;
}
.lightbox.open { display: flex; animation: lb-fade .2s ease; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
body.lb-noscroll { overflow: hidden; }
.lightbox figure { margin: 0; text-align: center; max-width: 100%; }
.lightbox img {
  max-width: 100%; max-height: calc(100vh - 10rem);
  width: auto; height: auto; margin-inline: auto;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.lightbox figcaption { color: #cde2e4; margin-top: .8rem; font-size: .95rem; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  font-size: 1.15rem; line-height: 1; cursor: pointer;
  transition: background .15s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 1rem; right: 1rem; font-size: 1.6rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute; top: 1.7rem; left: 50%; transform: translateX(-50%);
  color: #cde2e4; font-size: .9rem; letter-spacing: .05em;
}
@media (max-width: 36em) {
  .lightbox { padding: 3.5rem .75rem; }
  .lb-prev { left: .4rem; }
  .lb-next { right: .4rem; }
  .lightbox img { max-height: calc(100vh - 8rem); }
}

/* ---------- Karte (OSM) ---------- */
.map-wrap { margin-block: 1.25rem; }
.map-wrap iframe {
  width: 100%; height: 20rem; border: 1px solid var(--c-line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); display: block;
}
.map-link { font-size: .95rem; margin-top: .5rem; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: start;
  margin-bottom: 2.5rem;
}
@media (max-width: 56em) { .contact-grid { grid-template-columns: 1fr; } }

.contact-cards { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .85rem; }
.contact-cards li {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: .9rem 1.15rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .15rem;
}
.contact-label {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--c-muted); font-weight: 600;
}
.contact-cards a { text-decoration: none; }

/* ---------- Formulare ---------- */
.form {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.form h2 { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 36em) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: .3rem; font-size: .95rem; }
.req { color: #c0392b; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field input[type="password"],
.form-field select,
.form-field textarea {
  width: 100%; padding: .65rem .8rem; font: inherit;
  border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
  background: var(--c-bg); color: var(--c-text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--c-primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 92, 102, .15);
}
.form-check { display: flex; gap: .6rem; align-items: flex-start; }
.form-check input { width: 1.15rem; height: 1.15rem; margin-top: .2rem; flex-shrink: 0; }
.form-check label { font-weight: 400; margin: 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { min-height: 1.5rem; font-weight: 600; margin: .85rem 0 0; }
.form-status.ok { color: #1e7d32; }
.form-status.err { color: #c0392b; }
.aside-links { margin-top: 1.25rem; line-height: 2; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(160deg, var(--c-primary-dark), var(--c-primary));
  color: #fff; margin-top: 1rem;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding-block: 2.25rem; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0 0 .3rem; }
.cta-band p { margin: 0; color: #dcecee; }
.cta-band p a { color: var(--c-accent); }
.cta-band .btn-accent { color: var(--c-primary-darker); }

/* ---------- Startseite: Kontakt ---------- */
.home-contact-inner {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; align-items: center;
}
@media (max-width: 56em) { .home-contact-inner { grid-template-columns: 1fr; } }
.home-contact .map-wrap { margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-primary-darker); color: #b9d2d5; margin-top: 3rem;
}
/* Folgt der Footer direkt auf ein CTA-Band, schließen beide bündig aneinander an */
.cta-band + .site-footer { margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
  padding-block: 2.75rem 1.5rem;
}
@media (max-width: 48em) { .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; } }
.footer-brand {
  display: flex; align-items: center; gap: .6rem;
  color: #fff; font-size: 1.25rem; font-weight: 700; margin: 0 0 .5rem;
}
.site-footer h3 {
  color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .1em;
  margin: 0 0 .75rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .45rem; }
.site-footer a { color: #cde2e4; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer address { font-style: normal; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.15); padding-block: 1.15rem; font-size: .9rem;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; }
.to-top { font-weight: 600; }
.credit { font-size: .75rem; opacity: .65; }
.credit a { color: inherit; text-decoration: underline; }
.credit:hover { opacity: 1; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .map-wrap iframe { display: none; }
  body { background: #fff; }
}
