/* ==========================================================================
   Physio Plus AW – Stylesheet
   Reines CSS, keine Frameworks. Aufbau:
   01 Schriften · 02 Design-Tokens · 03 Basis · 04 Layout · 05 Typografie
   06 Buttons · 07 Kopfbereich · 08 Hero · 09 Karten & Bausteine
   10 Sektionen · 11 Formulare & Werkzeuge · 12 Galerie & Einbettungen
   13 FAQ & Kontakt · 14 Karriere · 15 Rechtstexte · 16 Fußbereich
   17 Mobile Aktionsleiste · 18 Animationen · 19 Druck
   ========================================================================== */

/* 01 Schriften (lokal eingebunden – keine Verbindung zu Google, DSGVO-freundlich) */
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("../fonts/plus-jakarta-sans-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("../fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2-variations");
  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;
}

/* 02 Design-Tokens */
:root {
  /* Markenfarben (aus dem Logo) */
  --brand: #a4c61a;          /* Limettengrün – nur als Fläche mit dunkler Schrift */
  --brand-light: #dcebb0;
  --brand-tint: #f2f6e4;
  --brand-ink: #4a6400;      /* Grün für Text & Links (Kontrast 6,7:1) */
  --forest: #18241a;         /* dunkle Flächen */
  --forest-2: #223224;
  --grey-logo: #686669;

  /* Neutrale Farben */
  --ink: #1f2420;
  --ink-soft: #4a4f4b;
  --bg: #fbfbf7;
  --surface: #ffffff;
  --line: #e3e6dc;
  --line-strong: #c9cfc0;

  /* Status */
  --ok: #2f7d32;
  --ok-bg: #e7f4e4;
  --warn: #a4400f;
  --warn-bg: #fdeee6;

  /* Typografie */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --fs-base: 1.125rem;
  --fs-sm: 1rem;
  --fs-lg: clamp(1.1875rem, 1.1rem + 0.35vw, 1.3125rem);
  --fs-h1: clamp(2.25rem, 1.55rem + 3.1vw, 4rem);
  --fs-h2: clamp(1.875rem, 1.45rem + 1.9vw, 3rem);
  --fs-h3: clamp(1.25rem, 1.15rem + 0.45vw, 1.5rem);

  /* Abstände & Formen */
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --container: 76rem;
  --section: clamp(3.5rem, 2.5rem + 4vw, 6.25rem);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgb(24 36 26 / 0.06), 0 2px 6px rgb(24 36 26 / 0.04);
  --shadow: 0 2px 4px rgb(24 36 26 / 0.04), 0 12px 32px -8px rgb(24 36 26 / 0.12);
  --shadow-lg: 0 4px 8px rgb(24 36 26 / 0.05), 0 28px 60px -12px rgb(24 36 26 / 0.22);
  --header-h: 5rem;
  --tap: 3.25rem;            /* Mindestgröße für Schaltflächen (52px) */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Schriftgrößen-Stufen (Schaltflächen „A / A+ / A++“ – nur in der mobilen Ansicht) */
@media (max-width: 67.99rem) {
  html[data-font="1"] { font-size: 112.5%; }
  html[data-font="2"] { font-size: 125%; }
}

/* 03 Basis */
*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
a { color: var(--brand-ink); text-underline-offset: 0.18em; text-decoration-thickness: 0.08em; }
a:hover { color: var(--ink); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
strong, b { font-weight: 700; }
[hidden] { display: none !important; }
::selection { background: var(--brand-light); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow: 0 0 0 6px var(--brand);
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -10rem;
  z-index: 1000;
  padding: 0.875rem 1.25rem;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* 04 Layout */
.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: calc(52rem + 2 * var(--gutter)); }

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: calc(var(--section) * 0.6); }
.section--tint { background: var(--brand-tint); }
.section--white { background: var(--surface); }
.section--dark { background: var(--forest); color: #e9eee7; }
.section--dark :where(h1, h2, h3) { color: #fff; }
.section--dark a:not(.btn) { color: var(--brand); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--split {
  max-width: none;
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem;
}
.section-head--split > div { max-width: 46rem; }

.stack > * + * { margin-top: var(--stack, 1.25rem); }

.grid { display: grid; gap: clamp(1rem, 0.75rem + 1vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
@media (min-width: 62rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 1.15fr 0.85fr; }
  .split--reverse > :first-child { order: 2; }
}

/* 05 Typografie */
h1, h2, h3, h4 {
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); letter-spacing: -0.035em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; letter-spacing: -0.015em; }
h4 { font-size: 1.125rem; letter-spacing: -0.01em; }
p { text-wrap: pretty; }

.lead { font-size: var(--fs-lg); color: var(--ink-soft); line-height: 1.6; }
.section--dark .lead { color: #c9d1ca; }
.muted { color: var(--ink-soft); }
.small { font-size: var(--fs-sm); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.625rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-ink);
}
.eyebrow::before {
  content: "";
  width: 0.625rem; height: 0.625rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgb(164 198 26 / 0.25);
}
.section--dark .eyebrow { color: var(--brand); }

.highlight {
  background: linear-gradient(transparent 58%, var(--brand-light) 58%, var(--brand-light) 92%, transparent 92%);
  padding-inline: 0.08em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.check-list { list-style: none; padding: 0; display: grid; gap: 0.75rem; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.check-list li::before {
  content: "";
  flex: none;
  width: 1.625rem; height: 1.625rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2420' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 60% no-repeat;
}

/* 06 Buttons */
.btn {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  --btn-bd: var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  min-height: var(--tap);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--btn-bd);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s var(--ease), background-color 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 1.3em; height: 1.3em; }
.btn--primary { --btn-bg: var(--brand); --btn-bd: var(--brand); --btn-fg: var(--ink); }
.btn--primary:hover { --btn-bg: #b3d52c; --btn-bd: #b3d52c; }
.btn--dark { --btn-bg: var(--ink); --btn-bd: var(--ink); --btn-fg: #fff; }
.btn--dark:hover { --btn-bg: #000; --btn-bd: #000; }
.btn--outline { --btn-bg: transparent; --btn-bd: var(--ink); }
.btn--outline:hover { --btn-bg: var(--ink); --btn-fg: #fff; }
.section--dark .btn--outline, .callout .btn--outline, .btn--outline-light { --btn-bd: rgb(255 255 255 / 0.55); --btn-fg: #fff; --btn-bg: transparent; }
.section--dark .btn--outline:hover, .callout .btn--outline:hover, .btn--outline-light:hover { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--lg { min-height: 3.75rem; padding: 0.875rem 1.875rem; font-size: 1.1875rem; }
.btn--sm { min-height: 2.75rem; padding: 0.5rem 1rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.875rem; align-items: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700;
  color: var(--brand-ink);
  text-decoration: none;
  min-height: 2.75rem;
}
.link-arrow .icon { transition: transform 0.2s var(--ease); }
.link-arrow:hover { color: var(--ink); }
.link-arrow:hover .icon { transform: translateX(4px); }
.link-arrow span { text-decoration: underline; text-decoration-color: var(--brand); text-decoration-thickness: 2px; text-underline-offset: 0.25em; }

/* 07 Kopfbereich ---------------------------------------------------------- */
@media (min-width: 68rem) {
  .a11y__fontsize { display: none !important; }
}

/* Barrierefreiheit-Leiste */
.a11y { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.a11y__group { display: inline-flex; align-items: center; gap: 0.25rem; }
.a11y__label { margin-right: 0.25rem; }
.a11y__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem;
  min-width: 2.75rem; min-height: 2.5rem;
  padding: 0.25rem 0.625rem;
  border: 1.5px solid rgb(255 255 255 / 0.35);
  border-radius: 0.625rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.a11y__btn:hover { background: rgb(255 255 255 / 0.12); }
.a11y__btn[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); color: var(--ink); }
.a11y__btn .icon { width: 1.125rem; height: 1.125rem; }
.a11y__btn--a1 { font-size: 0.9375rem; }
.a11y__btn--a2 { font-size: 1.0625rem; }
.a11y__btn--a3 { font-size: 1.1875rem; }
/* Variante auf hellem Grund (mobiles Menü) */
.a11y--light .a11y__btn { border-color: var(--line-strong); color: var(--ink); min-height: var(--tap); min-width: var(--tap); }
.a11y--light .a11y__btn:hover { background: var(--brand-tint); }
.a11y--light .a11y__btn[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); }

/* Öffnungsstatus */
.status { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.status__dot {
  width: 0.625rem; height: 0.625rem; border-radius: 50%;
  background: var(--grey-logo);
  flex: none;
}
.status[data-state="open"] .status__dot { background: #5fd35f; box-shadow: 0 0 0 0 rgb(95 211 95 / 0.6); animation: pulse 2.4s infinite; }
.status[data-state="closed"] .status__dot { background: #f08a5d; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgb(95 211 95 / 0.55); }
  70% { box-shadow: 0 0 0 8px rgb(95 211 95 / 0); }
  100% { box-shadow: 0 0 0 0 rgb(95 211 95 / 0); }
}

/* Hauptnavigation */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgb(251 251 247 / 0.86);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -12px rgb(24 36 26 / 0.18); background: rgb(255 255 255 / 0.92); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex: none; border-radius: 0.5rem; }
.brand img { width: auto; height: 3.25rem; }
@media (min-width: 62rem) { .brand img { height: 3.75rem; } }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}
.nav__link:hover { background: var(--brand-tint); color: var(--ink); }
.nav__link[aria-current="page"] { background: var(--brand-tint); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 50%; bottom: 0.3rem;
  width: 1.25rem; height: 3px; border-radius: 3px;
  background: var(--brand); transform: translateX(-50%);
}
.header-cta { display: none; align-items: center; gap: 0.625rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--ink); text-decoration: none; min-height: 2.75rem; padding-inline: 0.5rem; white-space: nowrap; }
.header-phone:hover { color: var(--brand-ink); }
.header-phone .icon { color: var(--brand-ink); }

@media (min-width: 68rem) {
  .nav { display: block; }
  .header-cta { display: flex; }
  .menu-toggle { display: none !important; }
}
@media (min-width: 68rem) and (max-width: 79.99rem) {
  .header-phone span { display: none; }
}

.menu-toggle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: var(--tap);
  padding: 0.5rem 1rem 0.5rem 0.875rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-weight: 700;
}
.menu-toggle .icon { width: 1.5rem; height: 1.5rem; }
.menu-toggle .icon--close { display: none; }
.menu-toggle[aria-expanded="true"] { background: var(--ink); color: #fff; }
.menu-toggle[aria-expanded="true"] .icon--open { display: none; }
.menu-toggle[aria-expanded="true"] .icon--close { display: block; }

/* Mobiles Menü */
.mobile-nav {
  position: fixed; inset: var(--menu-top, var(--header-h)) 0 0 0;
  z-index: 99;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--surface);
  padding: 1.25rem var(--gutter) 7rem;
  animation: slide-down 0.28s var(--ease);
}
@keyframes slide-down { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
.mobile-nav__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.mobile-nav__list a {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 4rem;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.375rem;
  font-weight: 700;
  text-decoration: none;
}
.mobile-nav__list a[aria-current="page"] { color: var(--brand-ink); }
.mobile-nav__list a[aria-current="page"]::before { content: ""; width: 0.5rem; height: 1.75rem; border-radius: 4px; background: var(--brand); margin-right: 0.75rem; }
.mobile-nav__list a[aria-current="page"] span { margin-right: auto; }
.mobile-nav__list .icon { color: var(--grey-logo); }
.mobile-nav__actions { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
.mobile-nav__a11y { margin-top: 1.75rem; padding: 1.25rem; border-radius: var(--radius); background: var(--brand-tint); }
.mobile-nav__a11y h2 { font-size: 1.125rem; margin-bottom: 0.75rem; }
body.menu-open { overflow: hidden; }

/* 08 Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 5.5rem) clamp(3.5rem, 2rem + 5vw, 6.5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; z-index: -1;
  inset: -20% -10% auto auto;
  width: min(60rem, 90vw); aspect-ratio: 1;
  background: radial-gradient(closest-side, rgb(164 198 26 / 0.22), transparent 70%);
}
.hero::after {
  content: "";
  position: absolute; z-index: -1;
  inset: auto auto -30% -15%;
  width: min(44rem, 80vw); aspect-ratio: 1;
  background: radial-gradient(closest-side, rgb(220 235 176 / 0.55), transparent 70%);
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2.5rem, 1rem + 4vw, 4.5rem); align-items: center; }
.hero__grid > *, .split > *, .grid > * { min-width: 0; }
@media (min-width: 62rem) { .hero__grid { grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr); } }
.hero h1 { margin-bottom: 1.25rem; }
.hero .lead { max-width: 36rem; margin-bottom: 2rem; }
.hero__status {
  display: flex; width: fit-content; align-items: center; gap: 0.625rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
}
.hero__status .status__text a { font-weight: 700; }
.trust-list {
  list-style: none; padding: 0; margin: 2.25rem 0 0;
  display: grid; gap: 0.875rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  max-width: 40rem;
}
.trust-list li { display: flex; gap: 0.75rem; align-items: center; font-weight: 600; font-size: 1.0625rem; line-height: 1.35; }
.trust-list .icon-badge { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; }
.trust-list .icon-badge .icon { width: 1.25rem; height: 1.25rem; }

.hero__media { position: relative; }
.hero__media::before {
  content: "";
  position: absolute; z-index: -1;
  inset: 8% -4% -5% 12%;
  border-radius: var(--radius-lg);
  background: var(--brand);
  transform: rotate(3deg);
}
.hero__img {
  width: 100%;
  aspect-ratio: 5 / 4.4;
  object-fit: cover;
  object-position: 62% center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  line-height: 1.3;
}
.float-card strong { display: block; font-size: 1.5rem; letter-spacing: -0.02em; }
.float-card span { font-size: 0.9375rem; color: var(--ink-soft); }
.float-card--top { top: 1.25rem; left: -1rem; }
.float-card--bottom { bottom: 1.5rem; right: -0.75rem; }
@media (max-width: 34rem) {
  .float-card { position: static; margin-top: 0.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
  .hero__floats { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0.75rem; margin-top: 0.75rem; }
  .hero__floats .float-card { margin: 0; }
  .hero__media::before { inset: 6% -3% 30% 20%; }
}

/* Seiten-Hero (Unterseiten) */
.page-hero {
  position: relative;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem) clamp(2.5rem, 1.5rem + 3vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; z-index: -1;
  inset: -40% -10% auto auto;
  width: min(50rem, 90vw); aspect-ratio: 1;
  background: radial-gradient(closest-side, rgb(164 198 26 / 0.2), transparent 70%);
}
.page-hero h1 { margin-bottom: 1rem; max-width: 22ch; }
.page-hero .lead { max-width: 44rem; }
.page-hero .btn-row { margin-top: 2rem; }

.breadcrumb { margin-bottom: 1.25rem; font-size: 0.9375rem; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.375rem; align-items: center; }
.breadcrumb li + li::before { content: "›"; margin-right: 0.375rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* 09 Karten & Bausteine --------------------------------------------------- */
.card {
  position: relative;
  padding: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.card--tint { background: var(--brand-tint); border-color: transparent; box-shadow: none; }
.card--dark { background: var(--forest); color: #dfe6dc; border-color: transparent; }
.card--dark :where(h2, h3, h4) { color: #fff; }
.card--lime { background: var(--brand); border-color: transparent; color: var(--ink); }
.card h3 { margin-bottom: 0.625rem; }
.card p + p { margin-top: 0.75rem; }

.icon-badge {
  display: inline-grid; place-items: center;
  width: 3.5rem; height: 3.5rem;
  flex: none;
  border-radius: 1rem;
  background: var(--brand-tint);
  color: var(--brand-ink);
}
.icon-badge .icon { width: 1.75rem; height: 1.75rem; }
.icon-badge--lime { background: var(--brand); color: var(--ink); }
.icon-badge--dark { background: var(--forest); color: var(--brand); }

/* Wegweiser-Kacheln („Wie können wir helfen?“) */
.path-card {
  display: flex; flex-direction: column; gap: 1rem;
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.path-card:hover { color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.path-card h3 { font-size: 1.3125rem; }
.path-card p { color: var(--ink-soft); flex: 1; }
.path-card__more { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--brand-ink); }
.path-card:hover .path-card__more .icon { transform: translateX(4px); }
.path-card__more .icon { transition: transform 0.2s var(--ease); }
.path-card--accent { background: var(--forest); border-color: var(--forest); color: #fff; }
.path-card--accent:hover { color: #fff; border-color: var(--brand); }
.path-card--accent h3 { color: #fff; }
.path-card--accent p { color: #c9d1ca; }
.path-card--accent .path-card__more { color: var(--brand); }
.path-card--accent .icon-badge { background: var(--brand); color: var(--ink); }

/* Kennzahlen */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat:last-child { grid-column: 1 / -1; }
@media (min-width: 48rem) { .stats { grid-template-columns: repeat(5, minmax(0, 1fr)); } .stat:last-child { grid-column: auto; } }
.stat { background: var(--surface); padding: clamp(1.5rem, 1rem + 1.5vw, 2.25rem) 1.5rem; text-align: center; }
.stat__value {
  display: block;
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat__value::after { content: "+"; color: var(--brand); margin-left: 0.05em; }
.stat__label { display: block; margin-top: 0.625rem; color: var(--ink-soft); font-weight: 600; line-height: 1.35; }

/* Leistungskarten */
.service-card {
  display: flex; flex-direction: column; gap: 1rem;
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s, opacity 0.25s;
  scroll-margin-top: calc(var(--header-h) + 2rem);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card h3 { font-size: 1.3125rem; }
.service-card p { color: var(--ink-soft); }
.service-card .tag-list { margin-top: auto; }
.service-card:target { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-light), var(--shadow); }
.service-card.is-match { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand), var(--shadow); }
.service-card.is-dimmed { opacity: 0.38; }
.service-card.is-dimmed:hover { opacity: 0.8; }

.tag-list { display: flex; flex-wrap: wrap; gap: 0.375rem; list-style: none; padding: 0; margin: 0; }
.tag {
  display: inline-flex; align-items: center;
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-pill);
  background: var(--brand-tint);
  color: var(--brand-ink);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Hinweis-/Callout-Band */
.callout {
  position: relative;
  display: grid; gap: 2rem;
  padding: clamp(2rem, 1.25rem + 3vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: #dfe6dc;
  overflow: hidden;
  isolation: isolate;
}
.callout::after {
  content: "";
  position: absolute; z-index: -1;
  right: -8rem; top: -8rem;
  width: 26rem; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgb(164 198 26 / 0.35), transparent 70%);
}
.callout h2 { color: #fff; margin-bottom: 1rem; }
.callout .eyebrow { color: var(--brand); }
.callout p { color: #c9d1ca; max-width: 44rem; }
@media (min-width: 62rem) { .callout { grid-template-columns: 1.4fr 1fr; align-items: center; } }
.callout__side { display: grid; gap: 1rem; }
.callout__phone {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s var(--ease), background-color 0.2s;
}
.callout__phone:hover { color: var(--ink); transform: translateY(-2px); background: #b3d52c; }
.callout__phone .icon { width: 2rem; height: 2rem; }
.callout__phone small { display: block; font-size: 0.9375rem; font-weight: 600; }
.callout__phone strong { display: block; font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem); letter-spacing: -0.02em; line-height: 1.15; }
.pill-list { display: flex; flex-wrap: wrap; gap: 0.625rem; list-style: none; padding: 0; margin: 1.5rem 0 0; }
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.18);
  color: #fff;
  font-weight: 600;
}
.pill .icon { color: var(--brand); }

/* Zitat */
.quote-card {
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--ink);
}
.quote-card blockquote p { font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.625rem); font-weight: 700; line-height: 1.35; letter-spacing: -0.015em; }
.quote-card figcaption { margin-top: 1rem; font-weight: 600; }

/* Bild-Collage */
.media-stack { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.media-stack img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.media-stack__a { grid-column: 1 / 13; grid-row: 1; aspect-ratio: 4 / 3; }
.media-stack__quote { grid-column: 1 / 7; grid-row: 2; align-self: start; margin-top: -3.5rem; margin-left: 1.25rem; position: relative; z-index: 1; box-shadow: var(--shadow); }
.media-stack__b { grid-column: 7 / 13; grid-row: 2; aspect-ratio: 1 / 1; margin-top: -5rem; border: 6px solid var(--bg); position: relative; }
.media-stack .quote-card { padding: 1.5rem; }
.media-stack .quote-card blockquote p { font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem); }
@media (max-width: 30rem) {
  .media-stack__quote { grid-column: 1 / 13; grid-row: 3; margin: 0; }
  .media-stack__b { grid-column: 4 / 13; margin-top: -3rem; }
}

/* Schritte */
.steps { counter-reset: step; display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); list-style: none; padding: 0; margin: 0; }
.step { position: relative; padding: 2rem 1.75rem 1.75rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid; place-items: center;
  width: 3rem; height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--brand);
  font-size: 1.375rem; font-weight: 800;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); }

/* Kurse */
.course-card { display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.course-card .btn-row { margin-top: auto; padding-top: 0.5rem; }
.course-card__label { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand-ink); }
.card--dark .course-card__label { color: var(--brand); }

/* Partner / Weiterbildung */
.partner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.partner img { width: 7.5rem; height: auto; background: #fff; border-radius: var(--radius-sm); padding: 0.5rem; }

/* Patientenstimmen (Karussell mit Scroll-Snap) */
.carousel { position: relative; }
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(88%, 24rem);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  padding: 0.5rem var(--gutter) 1.5rem;
  margin-inline: calc(var(--gutter) * -1);
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
  list-style: none;
}
.carousel__track > * { scroll-snap-align: start; }
@media (min-width: 75rem) {
  .carousel__track { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); grid-auto-columns: auto; overflow: visible; margin-inline: 0; padding-inline: 0; }
  .carousel__controls { display: none !important; }
}
.carousel__controls { display: flex; gap: 0.625rem; }
.icon-btn {
  display: inline-grid; place-items: center;
  width: var(--tap); height: var(--tap);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  transition: background-color 0.2s, color 0.2s;
}
.icon-btn:hover { background: var(--ink); color: #fff; }
.icon-btn:disabled { opacity: 0.35; cursor: default; background: var(--surface); color: var(--ink); }
.icon-btn .icon { width: 1.5rem; height: 1.5rem; }

.testimonial {
  display: flex; flex-direction: column; gap: 1.25rem;
  height: 100%;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.testimonial__mark { width: 2.5rem; height: 2.5rem; color: var(--brand); fill: currentColor; stroke: none; }
.testimonial blockquote { flex: 1; }
.testimonial blockquote p { font-size: 1.0625rem; line-height: 1.6; }
.testimonial figcaption { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; }
.avatar {
  display: grid; place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.02em;
  flex: none;
}
.testimonial figcaption small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.875rem; }

/* 10 Sektionen ------------------------------------------------------------ */
.values { counter-reset: value; }
.value-card { position: relative; padding-top: 4.5rem; }
.value-card::before {
  counter-increment: value;
  content: counter(value, decimal-leading-zero);
  position: absolute; top: 1.5rem; left: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  font-size: 2.25rem; font-weight: 800; letter-spacing: -0.04em;
  color: var(--brand-ink);
  line-height: 1;
}

/* 11 Formulare & Werkzeuge ------------------------------------------------ */
.tool { display: flex; flex-direction: column; gap: 1.25rem; height: 100%; }
.tool__head { display: flex; align-items: center; gap: 1rem; }
.tool__head h3 { margin: 0; }
.tool__note { font-size: 0.9375rem; color: var(--ink-soft); }

.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.field { display: grid; gap: 0.5rem; }
.field > label, .field > .field__label, fieldset > legend { font-weight: 700; font-size: 1.0625rem; }
.field__hint { font-size: 0.9375rem; color: var(--ink-soft); margin-top: -0.25rem; }
.req { color: var(--warn); margin-left: 0.125rem; }
.input, .select, .textarea {
  width: 100%;
  min-height: var(--tap);
  padding: 0.75rem 1rem;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 1.0625rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.textarea { min-height: 8rem; resize: vertical; line-height: 1.5; }
.select {
  appearance: none;
  padding-right: 3rem;
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2420' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 1rem center / 1.25rem no-repeat;
}
.input:hover, .select:hover, .textarea:hover { border-color: var(--grey-logo); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px var(--brand-light); }
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--warn); }
.field__error { color: var(--warn); font-weight: 600; font-size: 0.9375rem; }

fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
fieldset > legend { padding: 0; margin-bottom: 0.625rem; }
.choices { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 3rem;
  padding: 0.5rem 1.125rem;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.choice label::before {
  content: ""; width: 1.25rem; height: 1.25rem;
  border: 2px solid var(--grey-logo); border-radius: 0.375rem;
  background: var(--surface) center / 80% no-repeat;
  flex: none;
}
.choice input[type="radio"] + label::before { border-radius: 50%; }
.choice label:hover { border-color: var(--grey-logo); }
.choice input:checked + label { border-color: var(--ink); background: var(--brand-tint); }
.choice input:checked + label::before {
  border-color: var(--ink);
  background-color: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2420' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.choice input:focus-visible + label { outline: 3px solid var(--ink); outline-offset: 3px; box-shadow: 0 0 0 6px var(--brand); }

.checkbox { display: flex; gap: 0.875rem; align-items: flex-start; cursor: pointer; }
.checkbox input {
  appearance: none;
  flex: none;
  width: 1.75rem; height: 1.75rem;
  margin: 0.05rem 0 0;
  border: 2px solid var(--grey-logo);
  border-radius: 0.5rem;
  background: var(--surface) center / 75% no-repeat;
  cursor: pointer;
}
.checkbox input:checked {
  border-color: var(--ink);
  background-color: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2420' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* Checkliste */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.625rem; }
.checklist label {
  display: flex; align-items: center; gap: 0.875rem;
  min-height: 3.5rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.checklist label:hover { border-color: var(--line-strong); }
.checklist input {
  appearance: none; flex: none;
  width: 1.75rem; height: 1.75rem; margin: 0;
  border: 2px solid var(--grey-logo); border-radius: 50%;
  background: var(--surface) center / 70% no-repeat;
  cursor: pointer;
}
.checklist input:checked {
  border-color: var(--brand); background-color: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2420' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.checklist input:checked + span { text-decoration: line-through; text-decoration-color: var(--brand-ink); color: var(--ink-soft); }
.checklist label:has(input:checked) { background: var(--brand-tint); border-color: transparent; }

/* Ergebnis-Box */
.result {
  padding: 1.25rem 1.375rem;
  border-radius: var(--radius-sm);
  border-left: 6px solid var(--brand);
  background: var(--brand-tint);
  font-size: 1.0625rem;
}
.result strong { font-size: 1.1875rem; }
.result--warn { background: var(--warn-bg); border-left-color: var(--warn); }
.result p + p { margin-top: 0.5rem; }

.notice {
  display: flex; gap: 0.875rem; align-items: flex-start;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--brand-tint);
  font-size: 1rem;
}
.notice .icon { color: var(--brand-ink); margin-top: 0.2rem; }

/* Beschwerde-Finder (Filter-Chips) */
.finder { padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-bottom: 2.5rem; }
.finder h2 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); margin-bottom: 0.5rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.25rem; list-style: none; padding: 0; }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 3rem;
  padding: 0.5rem 1.125rem;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-weight: 600;
  transition: background-color 0.2s, border-color 0.2s;
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip[aria-pressed="true"] .icon { color: var(--brand); }
.finder__status { margin-top: 1rem; font-weight: 600; min-height: 1.65em; }

/* 12 Galerie & Einbettungen ---------------------------------------------- */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  list-style: none; padding: 0; margin: 0;
}
@media (min-width: 48rem) {
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 13rem; }
  .gallery li:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}
.gallery li { min-height: 10rem; }
.gallery button, .gallery a {
  display: block; width: 100%; height: 100%;
  padding: 0; border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  position: relative;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery button:hover img { transform: scale(1.04); }
.gallery__zoom {
  position: absolute; right: 0.75rem; bottom: 0.75rem;
  display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.92);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.lightbox {
  width: min(92vw, 80rem);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #0e1510;
  color: #fff;
  overflow: visible;
}
.lightbox::backdrop { background: rgb(8 12 9 / 0.88); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lightbox figure { position: relative; }
.lightbox img { width: 100%; max-height: calc(92vh - 5rem); object-fit: contain; border-radius: var(--radius) var(--radius) 0 0; background: #0e1510; }
.lightbox figcaption { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.875rem 1.25rem; min-height: 5rem; }
.lightbox__nav { display: flex; gap: 0.5rem; flex: none; }
.lightbox .icon-btn { border-color: rgb(255 255 255 / 0.6); background: transparent; color: #fff; }
.lightbox .icon-btn:hover { background: #fff; color: var(--ink); }
.lightbox__close { position: absolute; top: -1.25rem; right: -0.75rem; background: #fff !important; color: var(--ink) !important; border-color: #fff !important; box-shadow: var(--shadow); }
@media (max-width: 40rem) { .lightbox__close { top: 0.5rem; right: 0.5rem; } }

.consent-embed {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest) center / cover no-repeat;
  color: #fff;
  isolation: isolate;
}
.consent-embed--map { aspect-ratio: auto; min-height: 24rem; height: 100%; background-image: linear-gradient(rgb(255 255 255 / 0.06) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 0.06) 1px, transparent 1px); background-size: 2.5rem 2.5rem; }
.consent-embed::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgb(24 36 26 / 0.55), rgb(24 36 26 / 0.9)); }
.consent-embed__box { max-width: 30rem; padding: 1.5rem; text-align: center; display: grid; gap: 1rem; justify-items: center; }
.consent-embed__box h3 { color: #fff; font-size: 1.3125rem; }
.consent-embed__box p { color: #dfe6dc; font-size: 0.9375rem; }
.consent-embed__box a { color: var(--brand); }
.consent-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.consent-embed.is-loaded::before { display: none; }
.play-badge { display: grid; place-items: center; width: 4.5rem; height: 4.5rem; border-radius: 50%; background: var(--brand); color: var(--ink); }
.play-badge .icon { width: 2rem; height: 2rem; fill: currentColor; margin-left: 0.25rem; }

/* 13 FAQ & Kontakt -------------------------------------------------------- */
.faq { display: grid; gap: 0.75rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.faq details[open] { border-color: var(--brand); box-shadow: var(--shadow); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 4.25rem;
  padding: 1rem 1.25rem 1rem 1.5rem;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  border-radius: var(--radius);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a6400' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 1.25rem no-repeat;
  transition: transform 0.3s var(--ease), background-color 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--brand); }
.faq summary:hover::after { background-color: var(--brand-light); }
.faq__answer { padding: 0 1.5rem 1.5rem; color: var(--ink-soft); max-width: 48rem; }
.faq__answer p + p { margin-top: 0.75rem; }
.faq-more { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; padding: 1.5rem; border-radius: var(--radius); background: var(--brand-tint); }
.faq-more p { font-weight: 700; flex: 1 1 16rem; }

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.875rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
a.contact-item:hover { color: var(--ink); border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-item small { display: block; font-size: 0.9375rem; color: var(--ink-soft); font-weight: 600; }
.contact-item strong { display: block; font-size: 1.1875rem; line-height: 1.35; word-break: break-word; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 1.0625rem; }
.hours-table caption { text-align: left; font-weight: 700; font-size: 1.1875rem; margin-bottom: 0.75rem; }
.hours-table th, .hours-table td { padding: 0.75rem 0.875rem; text-align: left; border-bottom: 1px solid var(--line); }
.hours-table th { font-weight: 600; }
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table tr.is-today { background: var(--brand-tint); }
.hours-table tr.is-today th, .hours-table tr.is-today td { font-weight: 800; }
.hours-table tr.is-today th::after { content: " · heute"; font-weight: 600; color: var(--brand-ink); }
.hours-table .closed { color: var(--ink-soft); }

.route-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }

/* 14 Karriere -------------------------------------------------------------- */
.job-card { display: grid; gap: 1.25rem; align-items: center; }
@media (min-width: 48rem) { .job-card { grid-template-columns: 1fr auto; } }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.job-card h3 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); }

.sticker {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}
.sticker--dark { background: var(--forest); color: #fff; transform: rotate(2deg); }

/* 15 Rechtstexte ------------------------------------------------------------ */
.prose { max-width: 48rem; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); margin-top: 2.25em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.75em; }
.prose h2 + *, .prose h3 + * { margin-top: 0.6em; }
.prose ul { padding-left: 1.25rem; }
.prose li + li { margin-top: 0.35rem; }
.prose address { font-style: normal; }
.prose a { word-break: break-word; }

/* 16 Fußbereich ------------------------------------------------------------ */
.site-footer { background: var(--forest); color: #c9d1ca; padding-top: clamp(3.5rem, 2.5rem + 4vw, 6rem); }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--brand); text-decoration: underline; }
.footer-cta {
  display: grid; gap: 1.5rem; align-items: center;
  padding-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}
@media (min-width: 62rem) { .footer-cta { grid-template-columns: 1fr auto; } }
.site-footer .footer-cta h2 { color: #fff; font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.75rem); letter-spacing: -0.025em; text-transform: none; margin: 0; }
.footer-cta p { font-size: var(--fs-lg); margin-top: 0.5rem; }
.footer-cta .btn--outline-light { --btn-fg: #fff; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.footer-brand img { height: 3.5rem; width: auto; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); background: #fff; }
.footer-brand p { margin-top: 1.25rem; font-style: italic; color: #dfe6dc; max-width: 22rem; }
.site-footer h2 { font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.25rem; }
.footer-links a { display: inline-flex; align-items: center; gap: 0.625rem; min-height: 2.5rem; }
.footer-links .icon { color: var(--brand); }
.social { display: flex; gap: 0.625rem; margin-top: 1rem; }
.social a { display: grid; place-items: center; width: var(--tap); height: var(--tap); border-radius: 50%; border: 1.5px solid rgb(255 255 255 / 0.25); }
.social a:hover { background: var(--brand); border-color: var(--brand); color: var(--ink); text-decoration: none; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  padding-block: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  font-size: 0.9375rem;
}
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin: 0; padding: 0; }
.footer-bottom a { display: inline-flex; min-height: 2.75rem; align-items: center; }

/* 17 Mobile Aktionsleiste & Nach-oben ------------------------------------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.375rem;
  padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
  background: rgb(255 255 255 / 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -12px rgb(24 36 26 / 0.2);
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  min-height: 3.75rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
}
.action-bar a .icon { width: 1.5rem; height: 1.5rem; }
.action-bar a:first-child { background: var(--brand); }
.action-bar a:not(:first-child):hover { background: var(--brand-tint); }
body { padding-bottom: calc(4.75rem + env(safe-area-inset-bottom)); }
@media (min-width: 68rem) {
  .action-bar { display: none; }
  body { padding-bottom: 0; }
}

.to-top {
  position: fixed; right: 1rem; bottom: calc(5.75rem + env(safe-area-inset-bottom)); z-index: 80;
  display: grid; place-items: center;
  width: var(--tap); height: var(--tap);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s var(--ease), visibility 0.25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--ink); color: #fff; }
@media (min-width: 68rem) { .to-top { bottom: 1.5rem; right: 1.5rem; } }


/* 18 Animationen ------------------------------------------------------------ */
@view-transition { navigation: auto; }

.reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
.reveal-ready .reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal-ready .reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal-ready .reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal-ready .reveal { opacity: 1; transform: none; }
  @view-transition { navigation: none; }
}

/* 19 Druck ------------------------------------------------------------------ */
@media print {
  .site-header, .action-bar, .to-top, .mobile-nav, .consent-embed, .gallery, .carousel__controls, .btn, .footer-cta, .skip-link, .no-print { display: none !important; }
  body { background: #fff; color: #000; padding: 0; font-size: 12pt; }
  .section { padding-block: 1.25rem; }
  .section--dark, .site-footer, .callout, .card--dark { background: #fff !important; color: #000 !important; }
  .section--dark *, .site-footer *, .callout * { color: #000 !important; }
  .reveal-ready .reveal { opacity: 1 !important; transform: none !important; }
  a { color: #000; }
  .card, .service-card, .testimonial { box-shadow: none; break-inside: avoid; }
  body.print-checklist main > *:not(.print-target) { display: none !important; }
}


.nav__link, .header-cta .btn, .header-phone { white-space: nowrap; }

/* Große Schriftstufen (mobil): Kennzahl-Karten im Hero untereinander */
@media (max-width: 67.99rem) {
  html[data-font] .float-card { position: static; margin-top: 0.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
  html[data-font] .hero__floats { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 0.75rem; margin-top: 0.75rem; }
  html[data-font] .hero__floats .float-card { margin: 0; }
}

/* ==========================================================================
   Bausteine für Unterseiten
   ========================================================================== */

/* Sprungmarken („Auf dieser Seite“) */
.jump-nav { margin-top: 2rem; }
.jump-nav__title { font-size: 0.9375rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 0.625rem; }
.jump-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.jump-nav a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.375rem 1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s;
}
.jump-nav a:hover { border-color: var(--ink); background: var(--brand-tint); color: var(--ink); }
.jump-nav .icon { color: var(--brand-ink); width: 1.125rem; height: 1.125rem; }

/* Seiten-Hero mit Bild */
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
.page-hero__grid > * { min-width: 0; }
@media (min-width: 62rem) { .page-hero__grid { grid-template-columns: 1.1fr 0.9fr; } }
.page-hero__media { position: relative; }
.page-hero__media img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }
.page-hero__media--cutout { display: grid; justify-items: center; }
.page-hero__media--cutout::before {
  content: ""; position: absolute; z-index: -1;
  left: 8%; right: 8%; bottom: 0; top: 18%;
  border-radius: var(--radius-lg) var(--radius-lg) 50% 50%;
  background: var(--brand);
}
.page-hero__media--cutout img { width: min(100%, 26rem); border-radius: 0; filter: drop-shadow(0 24px 32px rgb(24 36 26 / 0.18)); }
.stickers { position: absolute; inset: 0; pointer-events: none; }
.stickers .sticker { position: absolute; font-size: clamp(0.9375rem, 0.85rem + 0.4vw, 1.125rem); }
.stickers .sticker:nth-child(1) { top: 10%; left: 0; }
.stickers .sticker:nth-child(2) { top: 42%; right: 0; }
.stickers .sticker:nth-child(3) { bottom: 10%; left: 4%; }

/* Kontaktkarten im Seitenkopf */
.contact-cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); margin-top: 2.5rem; }
.contact-cards .contact-item { height: 100%; padding: 1.25rem 1.5rem; }

/* Formular-Karte */
.form-card { padding: clamp(1.5rem, 1rem + 2.5vw, 3rem); border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-card h2 { margin-bottom: 0.75rem; }
.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form__legal { font-size: 0.9375rem; color: var(--ink-soft); }

/* Vorschau des E-Mail-Textes */
.preview-text {
  margin: 0;
  padding: 1rem 1.25rem;
  max-height: 18rem;
  overflow: auto;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Hinweisbox (Erfolg) */
.success-box { display: grid; gap: 1rem; padding: clamp(1.25rem, 1rem + 1vw, 2rem); border-radius: var(--radius); background: var(--brand-tint); border: 2px solid var(--brand); }
.success-box h3 { display: flex; align-items: center; gap: 0.625rem; }
.success-box h3 .icon { color: var(--brand-ink); }

/* Einfache Liste mit Icons (z. B. Zusatzangebote) */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.feature { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); height: 100%; }
.feature h3 { font-size: 1.1875rem; margin-bottom: 0.25rem; }
.feature p { color: var(--ink-soft); font-size: 1rem; }

/* Rechtstexte: Kopf */
.legal-meta { margin-top: 1rem; color: var(--ink-soft); font-size: 0.9375rem; }

/* Formular: unsichtbares Fangfeld gegen Spam & Sendezustand */
.hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
button[aria-busy="true"] { cursor: progress; opacity: 0.75; }
