@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/quicksand-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Zahnarztpraxis Lutz Feser – Gestaltung
   Eine Schrift (Quicksand), ruhige Flächen, zentriertes Layout.
   ============================================================ */

:root {
  --blue-dark: #2b3d58;
  --blue-light: #7791c9;
  --accent: #5377c4;
  --accent-soft: #eaf0fb;
  --sky: #f2f6fc;
  --sky-2: #f8fafd;
  --text: #26334a;
  --muted: #64718a;
  --line: #e2e8f2;
  --white: #fff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(43, 61, 88, 0.06);
  --shadow: 0 14px 38px rgba(43, 61, 88, 0.10);
  --font: "Quicksand", "Segoe UI", system-ui, -apple-system, sans-serif;
  --wide: 1160px;   /* volle Breite: Karten, Galerie */
  --page: 940px;    /* Standardbreite der Inhalte */
  --read: 680px;    /* Lesebreite für Fließtext */
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@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;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.22;
  margin: 0 0 0.5em;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.08rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
strong { font-weight: 700; color: var(--blue-dark); }
address { font-style: normal; }

.container { width: min(100% - 2.5rem, var(--page)); margin-inline: auto; }
.container-wide { width: min(100% - 2.5rem, var(--wide)); margin-inline: auto; }
.lead { font-size: 1.18rem; color: var(--muted); font-weight: 500; }
.eyebrow {
  display: block; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 0.7rem;
}
.muted { color: var(--muted); }
.center { text-align: center; }
.ico { width: 1.15em; height: 1.15em; vertical-align: -0.2em; margin-right: 0.45em; flex: none; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--blue-dark); color: #fff; padding: 0.6rem 1rem; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; top: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35em;
  padding: 0.85rem 1.6rem; border-radius: 999px; font-weight: 700; text-decoration: none;
  font-family: var(--font); font-size: 1rem; line-height: 1.2; border: 2px solid transparent;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(83, 119, 196, 0.32); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; box-shadow: 0 12px 26px rgba(83, 119, 196, 0.38); }
.btn-ghost { background: var(--accent-soft); color: var(--blue-dark); }
.btn-ghost:hover { background: #dde7f8; color: var(--blue-dark); }
.btn-outline { border-color: var(--line); color: var(--blue-dark); background: #fff; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: #fff; }
.btn-light { background: #fff; color: var(--blue-dark); }
.btn-light:hover { background: var(--accent-soft); color: var(--blue-dark); }
.btn-outline-light { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-row.center { justify-content: center; }

/* ---------- Kopfzeile ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.header-inner {
  width: min(100% - 2.5rem, var(--wide)); margin-inline: auto;
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "brand actions" "nav nav";
  align-items: center; column-gap: 1rem; padding-top: 0.95rem;
}
.brand { grid-area: brand; }
.brand img { width: 342px; height: auto; }
.site-nav { display: contents; }
.site-nav ul {
  grid-area: nav; list-style: none; margin: 0.7rem 0 0; padding: 0;
  display: flex; gap: 0.15rem; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 0.15rem;
}
.site-nav a:not(.btn) {
  display: block; padding: 0.7rem 0.95rem; color: var(--blue-dark); text-decoration: none;
  font-weight: 600; white-space: nowrap; border-radius: 10px 10px 0 0; position: relative;
  transition: background 0.16s, color 0.16s;
}
.site-nav a:not(.btn):hover { color: var(--accent); background: var(--sky-2); }
.site-nav a[aria-current="page"] { color: #fff; background: var(--accent); }
.site-nav a[aria-current="page"]:hover { color: #fff; background: var(--accent); }
.nav-actions { grid-area: actions; display: flex; gap: 0.5rem; align-items: center; }
.nav-actions .btn { padding: 0.7rem 1.25rem; font-size: 0.97rem; }
.nav-toggle { display: none; }

@media (max-width: 940px) {
  .header-inner { grid-template-columns: 1fr auto; grid-template-areas: "brand toggle"; min-height: 68px; padding: 0.5rem 0; position: relative; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 0.5rem 1.25rem 1.4rem;
    flex-direction: column; gap: 0.6rem; max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0; margin: 0; border: 0; padding-top: 0; }
  .site-nav a:not(.btn) { padding: 0.85rem 0.9rem; border-bottom: 1px solid var(--line); border-radius: 10px; }
  .site-nav a[aria-current="page"] { border-radius: 10px; }
  .nav-actions { flex-direction: column; align-items: stretch; margin-top: 0.9rem; }
  .nav-actions .btn { width: 100%; padding: 0.9rem; font-size: 1rem; }
  .nav-toggle {
    grid-area: toggle; display: inline-flex; align-items: center; gap: 0.6rem; background: none;
    border: 2px solid var(--line); border-radius: 999px; padding: 0.5rem 1rem;
    font: 700 0.95rem var(--font); color: var(--blue-dark); cursor: pointer;
  }
  .nav-toggle-bar { position: relative; width: 20px; height: 2px; background: currentColor; border-radius: 2px; }
  .nav-toggle-bar::before, .nav-toggle-bar::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.2s; }
  .nav-toggle-bar::before { top: -6px; } .nav-toggle-bar::after { top: 6px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-6px) rotate(-45deg); }
}
@media (max-width: 420px) { .brand img { width: 205px; } }

/* ---------- Startbereich: Bilder-Slider mit festem Textfeld ---------- */
/* Ein Block statt zwei getrennter (Text oben, Bild unten): Ueberschrift und
   Buttons liegen als festes Feld links auf dem rotierenden Foto, wie beim
   Vorbild. Der Slider bleibt innerhalb der Seitenbreite (max. 1160px) und
   wird dadurch nie ueber seine Quellaufloesung (1920px) hinaus vergroessert. */
.hero { padding: clamp(1.6rem, 3vw, 2.4rem) 0 clamp(2.6rem, 5vw, 3.6rem); background: #fff; }
.hero-slider {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 1920 / 660; background: #dfe6f2;
}
.hero-slider-media { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 42%; }
.hero-slide[data-slide="1"] img { object-position: 50% 40%; }
.hero-slide[data-slide="2"] img { object-position: 66% 40%; }

.hero-copy {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center;
  pointer-events: none;
}
.hero-copy-inner {
  pointer-events: auto; background: rgba(43, 61, 88, 0.93); color: #fff;
  width: min(46%, 480px); min-width: 300px; height: 100%; display: flex; flex-direction: column;
  justify-content: center; gap: 0.9rem; padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.6rem, 3.4vw, 2.6rem);
}
.hero-copy .eyebrow { color: #c5d4ee; margin-bottom: 0; }
.hero-copy h1 { color: #fff; margin: 0; font-size: clamp(1.5rem, 2.7vw, 2.2rem); line-height: 1.2; }
.hero-copy p { color: rgba(255,255,255,0.92); margin: 0; font-size: 1.02rem; display: none; }
.hero-copy .btn-row { margin-top: 0.3rem; }
.hero-copy .btn { padding: 0.75rem 1.35rem; font-size: 0.96rem; }

.hero-slider-controls {
  position: absolute; right: 0.9rem; bottom: 0.9rem; z-index: 3; display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.85); border-radius: 999px; padding: 0.35rem; backdrop-filter: blur(2px);
}
.hero-slider-nav {
  width: 2.1rem; height: 2.1rem; border-radius: 50%; border: 0; background: transparent; color: var(--blue-dark);
  font-size: 1.15rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.16s;
}
.hero-slider-nav:hover { background: rgba(43,61,88,0.12); }
.hero-slider-dots { display: flex; gap: 0.4rem; padding: 0 0.15rem; }
.hero-slider-dots button {
  width: 0.5rem; height: 0.5rem; border-radius: 50%; border: 0; background: rgba(43,61,88,0.3); padding: 0; cursor: pointer;
}
.hero-slider-dots button[aria-current="true"] { background: var(--blue-dark); }

@media (max-width: 720px) {
  .hero { padding: 0 0 2.4rem; }
  .hero-slider { border-radius: 0; aspect-ratio: auto; box-shadow: none; background: none; }
  .hero-slider-media { position: relative; inset: auto; aspect-ratio: 16 / 9; overflow: hidden; background: #dfe6f2; }
  .hero-slide img { object-position: 82% 45%; }
  .hero-slide[data-slide="1"] img { object-position: 50% 45%; }
  .hero-slide[data-slide="2"] img { object-position: 58% 45%; }
  .hero-copy { position: static; display: block; }
  .hero-copy-inner {
    width: 100%; height: auto; min-width: 0; background: var(--blue-dark);
    padding: 1.6rem 1.4rem 1.8rem;
  }
  .hero-copy h1 { font-size: 1.5rem; }
  .hero-slider-controls { bottom: 0.7rem; right: 0.7rem; }
}
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } }

/* Info-Leiste */
.infobar { background: var(--blue-dark); color: #fff; }
.infobar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.infobar-item { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1.25rem 0; }
.infobar-item .ico { width: 1.5rem; height: 1.5rem; margin: 0.2rem 0 0; color: var(--blue-light); }
.infobar-item strong { display: block; font-size: 0.95rem; color: #fff; letter-spacing: 0.01em; }
.infobar-item span, .infobar-item a { color: rgba(255,255,255,0.86); font-size: 0.97rem; text-decoration: none; }
.infobar-item a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 860px) {
  .infobar-grid { grid-template-columns: 1fr; gap: 0; }
  .infobar-item { padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.13); }
  .infobar-item:last-child { border: 0; }
}

/* ---------- Abschnitte ---------- */
.section { padding: clamp(3.4rem, 7vw, 5.5rem) 0; }
.section-soft { background: var(--sky-2); }
.section-head { max-width: var(--read); margin: 0 auto 3rem; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin-bottom: 0; }
.section-head h2 { margin-bottom: 0.45rem; }

.prose { max-width: var(--read); margin-inline: auto; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.7rem; }
.prose > h2:first-child, .prose > h3:first-child, .prose > .eyebrow:first-child + h2 { margin-top: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse > :first-child { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split-media--portrait img { aspect-ratio: 4 / 5; }
.split-media--landscape img { aspect-ratio: 3 / 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .split-media { max-width: 460px; margin-inline: auto; }
}

/* Karten */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem 1.7rem;
  display: flex; flex-direction: column; gap: 0.5rem; text-decoration: none; color: var(--text);
  text-align: center; align-items: center; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #cfdcf1; color: var(--text); }
.card-icon { width: 72px; height: 72px; margin-bottom: 0.4rem; color: var(--accent); }
.card h3 { margin: 0; }
.card p { margin: 0; color: var(--muted); font-size: 1rem; }
.card-more { margin-top: auto; padding-top: 1rem; color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: 0.3em; }
.card-more .ico { margin: 0; transition: transform 0.2s; }
a.card:hover .card-more .ico { transform: translateX(5px); }

/* Vorteils-Listen */
.checklist { list-style: none; padding: 0; margin: 0 0 1.3em; display: grid; gap: 0.7rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; }
.checklist .ico { color: var(--accent); width: 1.3rem; height: 1.3rem; margin: 0.25rem 0 0; }

/* Vertrauens-Spalten */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.8rem; box-shadow: var(--shadow-sm); }
.feature h3 { color: var(--blue-dark); }
.feature-num { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 0.9rem; }
.feature p, .feature li { font-size: 1rem; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

.vita { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.vita li { padding-left: 1.15rem; position: relative; color: var(--muted); }
.vita li::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); }

/* Galerie */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.2rem; }
.gallery a { display: block; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 3 / 4; background: var(--sky); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery a:hover img { transform: scale(1.05); }
.gallery a:focus-visible { outline-offset: 4px; }
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1100px); max-height: 96vh; }
.lightbox::backdrop { background: rgba(20, 28, 42, 0.9); }
.lightbox img { max-width: 96vw; max-height: 86vh; width: auto; height: auto; border-radius: 10px; margin: 0 auto; }
.lightbox-caption { color: #fff; text-align: center; margin: 0.7rem 0 0; font-size: 0.95rem; }
.lightbox-close { position: absolute; top: 0.3rem; right: 0.3rem; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.94); color: var(--blue-dark); font-size: 1.6rem; line-height: 1; cursor: pointer; z-index: 2; }

/* Patientenstimme */
.quote { max-width: 820px; margin-inline: auto; text-align: center; }
.quote-rating { color: #f0b429; letter-spacing: 0.22em; font-size: 1.25rem; margin-bottom: 1rem; }
.quote blockquote { margin: 0; font-size: 1.22rem; line-height: 1.65; color: var(--blue-dark); font-weight: 500; }
.quote figcaption { margin-top: 1.2rem; color: var(--muted); font-size: 0.97rem; }

/* Abschluss-Band + Fußzeile */
.cta-band { background: linear-gradient(120deg, var(--blue-dark) 0%, var(--accent) 100%); color: #fff; padding: clamp(3rem, 6vw, 4.2rem) 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-band p { margin: 0 auto; color: rgba(255,255,255,0.92); max-width: 520px; }
.cta-band .btn-row { margin-top: 1.7rem; }

.site-footer { background: var(--blue-dark); color: rgba(255,255,255,0.8); padding: 3.5rem 0 1.5rem; font-size: 0.98rem; }
.site-footer a { color: #fff; }
.site-footer h3 { color: #fff; font-size: 0.86rem; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.2rem; }
.footer-logo { display: block; background: #fff; border-radius: 10px; padding: 0.6rem 0.9rem; margin-bottom: 1.2rem; width: 190px; height: auto; box-shadow: var(--shadow-sm); }
.footer-claim { color: var(--blue-light); font-weight: 700; letter-spacing: 0.02em; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.footer-links a, .footer-legal a { text-decoration: none; }
.footer-links a:hover, .footer-legal a:hover { text-decoration: underline; }
.hours { border-collapse: collapse; }
.hours th { text-align: left; font-weight: 600; padding: 0.12rem 1.1rem 0.12rem 0; color: #fff; }
.hours td { padding: 0.12rem 0; white-space: nowrap; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 2.6rem; padding-top: 1.3rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem 2rem; font-size: 0.92rem; }
.footer-bottom p { margin: 0; }
.footer-legal { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.4rem; flex-wrap: wrap; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { justify-content: flex-start; } }

/* ---------- Unterseiten ---------- */
.page-header { background: linear-gradient(180deg, var(--sky) 0%, #fff 100%); padding: clamp(2.6rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem); text-align: center; }
.page-header h1 { margin-bottom: 0.5rem; }
.page-header .lead { max-width: var(--read); margin: 0 auto; }
.breadcrumb { list-style: none; padding: 0; margin: 0 0 1.1rem; display: flex; gap: 0.5rem; font-size: 0.9rem; color: var(--muted); flex-wrap: wrap; justify-content: center; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li + li::before { content: "›"; margin-right: 0.5rem; }

.subnav { border-bottom: 1px solid var(--line); background: #fff; }
.subnav-inner { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1.1rem 0; justify-content: center; }
.subnav a { text-decoration: none; padding: 0.45rem 1.05rem; border-radius: 999px; background: var(--sky); color: var(--blue-dark); font-weight: 600; font-size: 0.95rem; transition: background 0.16s, color 0.16s; }
.subnav a:hover { background: var(--accent); color: #fff; }

.topic { padding: clamp(2.8rem, 5.5vw, 4.2rem) 0; }
.topic + .topic { border-top: 1px solid var(--line); }
.section-soft + .topic, .topic.section-soft { border-top: 0; }
.topic { scroll-margin-top: 80px; }
.topic-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 4.5vw, 3.5rem); align-items: start; }
.topic-grid.reverse > :first-child { order: 2; }
.topic-grid .prose { max-width: none; margin: 0; }
.topic-grid figure { margin: 0; }
.topic-grid figure img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.topic-grid figcaption { font-size: 0.9rem; color: var(--muted); margin-top: 0.6rem; text-align: center; }
@media (max-width: 860px) {
  .topic-grid { grid-template-columns: 1fr; }
  .topic-grid.reverse > :first-child { order: 0; }
  .topic-grid figure { max-width: 460px; margin-inline: auto; }
}

.callout { background: var(--accent-soft); border-radius: var(--radius-sm); padding: 1.3rem 1.5rem; margin: 1.6rem 0; }
.callout p:last-child { margin: 0; }
.steps { list-style: none; padding: 0; margin: 0 0 1.3em; counter-reset: step; display: grid; gap: 1rem; }
.steps li { position: relative; padding-left: 3.1rem; counter-increment: step; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0.05rem; width: 2.2rem; height: 2.2rem;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 0.98rem;
}
.image-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.1rem; margin: 2rem auto 0; max-width: var(--wide); }
.image-row img { border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* Kontakt */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.7rem; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-sm); }
.contact-card h2 { font-size: 1.3rem; }
.contact-card h3 { font-size: 1.05rem; }
.contact-card .hours th, .contact-card .hours td { color: var(--text); padding: 0.3rem 1.5rem 0.3rem 0; }
.contact-card .hours th { color: var(--blue-dark); }
.contact-card .hours tr + tr th, .contact-card .hours tr + tr td { border-top: 1px solid var(--line); }
.contact-big { font-size: 1.35rem; font-weight: 700; text-decoration: none; color: var(--blue-dark); display: inline-flex; align-items: center; }
.contact-big:hover { color: var(--accent); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* Rechtstexte */
.legal { text-align: left; }
.legal h2 { font-size: 1.3rem; margin-top: 2.4rem; }
.legal h3 { font-size: 1.06rem; margin-top: 1.6rem; }
.legal dl { display: grid; grid-template-columns: max-content 1fr; gap: 0.5rem 1.6rem; }
.legal dt { font-weight: 700; color: var(--blue-dark); }
.legal dd { margin: 0; }
@media (max-width: 560px) { .legal dl { grid-template-columns: 1fr; } .legal dd { margin-bottom: 0.7rem; } }

/* 404 */
.error-page { text-align: center; padding: 6rem 0; }
.error-page h1 { font-size: clamp(3.5rem, 12vw, 6rem); color: var(--blue-light); margin-bottom: 0.2rem; }

@media print {
  .site-header, .cta-band, .site-footer .footer-links, .nav-toggle, .subnav, .hero-band { display: none !important; }
  body { font-size: 11pt; }
  a::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #555; }
  .site-nav a::after, .btn::after { content: none; }
}
