/* Variante A · Sanft
   Creme, Salbeigrün und Violett aus dem Logo. Fraunces + Nunito Sans, lokal eingebunden. */

@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-latin-wght-italic.woff2") format("woff2");
  font-weight: 100 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/nunito-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 1000; font-style: normal; font-display: swap;
}

:root {
  --bg: #faf7f1;
  --bg-deep: #f1ece1;
  --surface: #ffffff;
  --sage-50: #eef2e6;
  --sage-100: #e0e9d3;
  --sage: #88a868;
  --sage-700: #4e6a39;
  --sage-800: #3b5229;
  --plum: #7f5fa0;
  --plum-700: #5e4380;
  --plum-50: #f3eef8;
  --ink: #2d2a26;
  --muted: #625d55;
  --line: #e4ded2;
  --radius: 22px;
  --radius-lg: 36px;
  --shadow: 0 1px 2px rgba(45, 42, 38, .05), 0 14px 36px -16px rgba(45, 42, 38, .22);
  --shadow-hover: 0 2px 4px rgba(45, 42, 38, .06), 0 22px 44px -18px rgba(45, 42, 38, .3);
  --wrap: 1180px;
  --header-h: 84px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
a { color: var(--sage-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--plum-700); }
:focus-visible { outline: 3px solid var(--plum); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 420; line-height: 1.14; letter-spacing: -.012em; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 1.6rem + 3.2vw, 4.1rem); }
h2 { font-size: clamp(1.75rem, 1.35rem + 1.5vw, 2.5rem); }
h3 { font-size: 1.38rem; }
p { margin: 0 0 1em; }
address { font-style: normal; }
.muted { color: var(--muted); }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 8px; }
.skip:focus { top: 1rem; color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem; margin: 0 0 1rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--plum-700);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: var(--sage); }
.welle { display: block; width: min(250px, 70%); height: 16px; color: var(--sage); margin: .15rem 0 1.4rem; }
.icon { width: 1.25em; height: 1.25em; flex: none; }
.zitat-icon path { fill: currentColor; stroke: none; }

/* ------------------------------------------------------------ Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.35rem;
  border: 1.5px solid transparent; border-radius: 999px;
  font-weight: 750; font-size: 1rem; line-height: 1.2; text-decoration: none; white-space: nowrap;
  transition: background-color .2s, color .2s, transform .2s, box-shadow .2s, border-color .2s;
}
.btn-primary { background: var(--plum-700); color: #fff; }
.btn-primary:hover { background: var(--plum); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 26px -12px rgba(94, 67, 128, .7); }
.btn-ghost { border-color: var(--sage); color: var(--sage-800); }
.btn-ghost:hover { background: var(--sage-50); color: var(--sage-800); }
.btn-soft { background: var(--sage-50); color: var(--sage-800); }
.btn-soft:hover { background: var(--sage-100); color: var(--sage-800); }
.btn-light { background: #fff; color: var(--plum-700); }
.btn-light:hover { background: var(--plum-50); color: var(--plum-700); }
.btn-outline-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

/* ------------------------------------------------------------ Kopfzeile */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, .9); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
.is-scrolled .site-header { border-bottom-color: var(--line); box-shadow: 0 8px 24px -20px rgba(45, 42, 38, .5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.brand img { width: 172px; }
.hauptnav { display: flex; align-items: center; gap: 1rem; }
.hauptnav ul { display: flex; gap: .15rem; margin: 0; padding: 0; list-style: none; }
.hauptnav ul a {
  display: block; padding: .5rem .8rem; border-radius: 999px;
  color: var(--ink); font-weight: 650; font-size: .97rem; text-decoration: none;
}
.hauptnav ul a:hover { background: var(--sage-50); color: var(--sage-800); }
.hauptnav ul a[aria-current="page"] { background: var(--sage-100); color: var(--sage-800); }
.nav-tel { padding: .6rem 1.05rem; font-size: .95rem; }
.nav-toggle { display: none; }

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem;
    border: 0; border-radius: 999px; background: var(--sage-50); color: var(--sage-800);
    font: inherit; font-weight: 750; cursor: pointer;
  }
  .nav-toggle .icon-close, .nav-open .nav-toggle .icon-open { display: none; }
  .nav-open .nav-toggle .icon-close { display: block; }
  .hauptnav {
    position: fixed; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 1rem; padding: 1rem 1.25rem 1.5rem;
    background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: 0 30px 40px -30px rgba(45, 42, 38, .35);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav-open .hauptnav { opacity: 1; visibility: visible; transform: none; }
  .hauptnav ul { flex-direction: column; }
  .hauptnav ul a { padding: .8rem 1rem; font-size: 1.1rem; }
  .nav-tel { justify-content: center; }
}
@media (max-width: 480px) {
  :root { --header-h: 72px; }
  .brand img { width: 140px; }
  .nav-toggle span { display: none; }
}

/* ------------------------------------------------------------ Abschnitte */
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-tight { padding-top: clamp(1rem, 3vw, 2.5rem); }
.soft { background: var(--sage-50); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.big-text { font-family: var(--serif); font-size: clamp(1.35rem, 1.1rem + .9vw, 1.8rem); line-height: 1.45; color: var(--ink); }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 40ch; }

/* ------------------------------------------------------------ Start: Hero */
.hero { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(3.5rem, 7vw, 6.5rem); }
.hero::before {
  content: ""; position: absolute; z-index: -1; right: -15vw; top: -25vw; width: 70vw; height: 70vw;
  background: radial-gradient(closest-side, var(--sage-50), rgba(238, 242, 230, 0));
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { font-size: clamp(2.9rem, 1.8rem + 4.2vw, 5.2rem); line-height: 1.02; margin-bottom: .15em; }
.hero h1 span { display: block; color: var(--plum-700); font-style: italic; font-weight: 380; }
.hero-sub { font-family: var(--serif); font-size: 1.3rem; color: var(--sage-800); margin-bottom: .8rem; }
.hero-media { position: relative; }
.blob {
  overflow: hidden; aspect-ratio: 1 / 1.02; box-shadow: var(--shadow);
  border-radius: 58% 42% 48% 52% / 46% 52% 48% 54%;
}
.blob picture, .blob img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; left: -1.5rem; bottom: 9%; display: flex; align-items: center; gap: .9rem;
  max-width: 260px; padding: 1rem 1.25rem; border-radius: 18px;
  background: var(--surface); box-shadow: var(--shadow); font-size: .95rem; line-height: 1.35; color: var(--muted);
}
.float-card .icon { width: 2.2rem; height: 2.2rem; color: var(--sage); }
.float-card strong { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--ink); }

/* ------------------------------------------------------------ Start: Willkommen */
.welcome { background: var(--surface); }
.welcome-grid { display: grid; grid-template-columns: minmax(220px, 380px) 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.portrait { position: relative; margin: 0; }
.portrait::before {
  content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem; z-index: 0;
  border: 2px solid var(--sage-100); border-radius: 220px 220px 32px 32px;
}
.portrait img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 35%; border-radius: 220px 220px 32px 32px; }
.letter .anrede { font-family: var(--serif); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin-bottom: .6em; }
.letter p { font-size: 1.14rem; max-width: 60ch; }
.signatur { font-family: var(--serif); font-style: italic; font-size: 1.9rem; color: var(--plum-700); margin-top: 1.6rem; }

/* ------------------------------------------------------------ Karten */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow); color: inherit; text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); color: inherit; }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s; }
.card:hover img { transform: scale(1.04); }
.card picture { overflow: hidden; }
.card-body { display: flex; flex: 1; flex-direction: column; gap: .45rem; padding: 1.4rem 1.5rem 1.6rem; }
.card-body h3 { margin: 0; }
.card-body p { margin: 0; color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: auto; padding-top: .9rem; font-weight: 750; color: var(--sage-700); text-decoration: none; }
.card:hover .card-link .icon { transform: translateX(3px); }
.card-link .icon { transition: transform .2s; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tile { display: flex; flex-direction: column; gap: .3rem; padding: 1.8rem; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.tile h3 { margin: .4rem 0 .2rem; }
.tile p { margin: 0; color: var(--muted); }
.tile .card-link { margin-top: auto; padding-top: 1rem; }
.tile .num { font-family: var(--serif); font-size: 2.3rem; line-height: 1; color: var(--sage); }

/* ------------------------------------------------------------ Zitat */
.quote-band { position: relative; overflow: hidden; padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--sage-50); text-align: center; }
.quote-band figure { max-width: 880px; margin: 0 auto; }
.quote-band .zitat-icon { width: 46px; height: 46px; margin: 0 auto 1.2rem; color: var(--plum); }
.quote-band blockquote { margin: 0; }
.quote-band blockquote p { font-family: var(--serif); font-style: italic; font-weight: 360; font-size: clamp(1.35rem, 1rem + 1.5vw, 2.1rem); line-height: 1.45; }
.quote-band figcaption { font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-700); }

/* ------------------------------------------------------------ Termin-CTA */
.cta {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1.35fr 1fr; gap: 2.5rem; align-items: center;
  padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-lg); background: var(--plum-700); color: #fff;
}
.cta::after {
  content: ""; position: absolute; right: -120px; bottom: -160px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(136, 168, 104, .45), rgba(136, 168, 104, 0));
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .86); max-width: 52ch; }
.cta-list { position: relative; z-index: 1; display: grid; gap: .9rem; margin: 0; padding: 0; list-style: none; }
.cta-list li { display: flex; align-items: center; gap: .9rem; padding: .95rem 1.15rem; border-radius: 16px; background: rgba(255, 255, 255, .09); }
.cta-list .icon { color: var(--sage-100); }
.cta-list a { color: #fff; text-decoration: none; }
.cta-list a:hover { text-decoration: underline; }

/* ------------------------------------------------------------ Unterseiten */
.page-hero { padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.page-hero-single { max-width: 820px; }
.page-hero-single .lead { max-width: 60ch; }
.page-hero-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.page-hero-media.arch { max-width: 420px; justify-self: center; }
.page-hero-media.arch img { aspect-ratio: 4 / 5; object-position: 50% 35%; border-radius: 240px 240px 32px 32px; }

.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.two-col > p:last-child { color: var(--muted); padding-top: .4rem; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 48% 52% 40% 60% / 38% 40% 60% 62%; box-shadow: var(--shadow); }
.prose { max-width: 68ch; }
.prose h2 { margin-top: 0; }
.note { display: flex; gap: 1rem; margin: 1.8rem 0 1.2rem; padding: 1.2rem 1.35rem; border-radius: 18px; background: var(--plum-50); }
.note .icon { width: 1.6rem; height: 1.6rem; color: var(--plum-700); margin-top: .15rem; }
.note p { margin: 0; }
.quelle { font-size: .88rem; color: var(--muted); }

/* Vita */
.vita-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); }
.vita-grid h2 { font-size: 1.8rem; margin-bottom: 1.4rem; }
.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 7px; top: .7rem; bottom: 1.4rem; width: 2px; background: var(--sage-100); }
.timeline li { position: relative; display: flex; flex-direction: column; padding: 0 0 1.7rem 2.4rem; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: .45rem; width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--sage);
}
.timeline .jahr { font-size: .9rem; font-weight: 800; letter-spacing: .05em; color: var(--plum-700); }
.timeline .was { font-family: var(--serif); font-size: 1.35rem; line-height: 1.3; }
.timeline .wo { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.chips li { padding: .45rem .95rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: .95rem; }
.verband { margin-top: 2.5rem; padding: 1.6rem; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.verband h3 { font-size: 1.2rem; }
.verband img { width: 220px; margin-top: .6rem; }

/* Icon-Listen */
.icon-list { display: grid; gap: .75rem; margin: 0; padding: 0; list-style: none; }
.icon-list li { display: flex; align-items: center; gap: 1rem; padding: .85rem 1.1rem; border-radius: 16px; background: var(--surface); }
.icon-badge {
  display: grid; place-items: center; flex: none; width: 2.7rem; height: 2.7rem; border-radius: 50%;
  background: var(--sage-50); color: var(--sage-700);
}
.icon-badge .icon { width: 1.35rem; height: 1.35rem; }
.icon-badge.plum { background: var(--plum-50); color: var(--plum-700); }
.icon-badge.big { width: 3.4rem; height: 3.4rem; }
.icon-badge.big .icon { width: 1.6rem; height: 1.6rem; }
.soft .icon-list li { box-shadow: 0 1px 2px rgba(45, 42, 38, .05); }
.two-col-lists { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.two-col-lists h2 { font-size: 1.8rem; margin-bottom: .3rem; }
.ablauf { display: flex; gap: 1.5rem; align-items: flex-start; max-width: 820px; padding: 2rem; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.ablauf h2 { font-size: 1.6rem; margin-bottom: .4rem; }
.ablauf p { margin: 0; color: var(--muted); }

/* Praxis */
.gallery { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 1.2rem; height: clamp(420px, 52vw, 640px); }
.gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); }
.gallery figure:first-child { grid-row: span 2; }
.gallery picture, .gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery figcaption {
  position: absolute; left: 1rem; bottom: 1rem; padding: .35rem .85rem; border-radius: 999px;
  background: rgba(250, 247, 241, .92); font-size: .88rem; font-weight: 700;
}
.praxis-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.fakten { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.fakten li { display: flex; align-items: center; gap: 1.1rem; padding: 1.4rem; border-radius: var(--radius); background: var(--surface); }
.fakten strong { display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.fakten span:not(.icon-badge) { color: var(--muted); }
.adresse-card { padding: 1.8rem; border-radius: var(--radius); background: var(--surface); }
.adresse-card h2 { font-size: 1.6rem; }
.adresse-card address { margin-bottom: 1.4rem; font-size: 1.1rem; }

/* Kontakt */
.kontakt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.kontakt-card {
  display: flex; flex-direction: column; gap: .35rem; padding: 1.9rem; border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--shadow); color: var(--ink); text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.kontakt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); color: var(--ink); }
.kontakt-card .icon-badge { margin-bottom: .8rem; }
.kontakt-card .label { font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--plum-700); }
.kontakt-card strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; line-height: 1.3; word-break: break-word; }
.kontakt-card .hint { display: inline-flex; align-items: center; gap: .4rem; margin-top: auto; padding-top: .6rem; color: var(--muted); font-size: .95rem; }

/* Rechtliches */
.legal h2 { font-size: 1.35rem; margin: 2rem 0 .5rem; }
.legal ul { padding-left: 1.1rem; }
.fazit { margin-top: 2rem; color: var(--plum-700); }

/* ------------------------------------------------------------ Fußzeile */
.site-footer { margin-top: 0; padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; background: var(--bg-deep); font-size: .97rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer-brand img { width: 44px; }
.footer-name { font-family: var(--serif); font-size: 1.35rem; margin: 0; }
.footer-brand p { margin: 0; color: var(--muted); }
.site-footer h2 { margin: 0 0 .8rem; font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--plum-700); }
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { color: var(--plum-700); text-decoration: underline; }
.footer-links { display: grid; gap: .3rem; margin: 0; padding: 0; list-style: none; }
.footer-note { margin-top: 1rem; color: var(--muted); font-size: .9rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.footer-welle { width: 160px; margin: 0; }

/* ------------------------------------------------------------ Responsiv */
@media (max-width: 960px) {
  .hero-grid, .page-hero-grid, .welcome-grid, .split, .two-col, .vita-grid, .two-col-lists, .praxis-info, .cta { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; }
  .float-card { left: 1rem; }
  .welcome-grid .portrait { max-width: 340px; }
  .page-hero-media { max-width: 620px; }
  .page-hero-media.arch { justify-self: start; max-width: 340px; }
  .split-media { max-width: 480px; }
  .cards-3, .grid-3, .kontakt-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .cards-3, .grid-2, .grid-3, .kontakt-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .gallery figure:first-child { grid-row: auto; }
  .gallery img { aspect-ratio: 3 / 2; height: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .ablauf { flex-direction: column; padding: 1.5rem; }
  .actions .btn { flex: 1 1 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
@media print {
  .site-header, .nav-toggle, .cta, .site-footer .footer-grid > div:nth-child(3) { display: none; }
  body { background: #fff; }
}
