/* ==========================================================================
   Kleintierpraxis Meiningen - Designsystem
   Warm Modern. Farbwelt der Praxis (Grün / Teal / Ziegelrot) beibehalten.
   Reines CSS3, keine Frameworks, keine externen Requests.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Markenfarben - direkt aus der Bestandsseite entnommen */
  --gruen-500: #80c26e;   /* Kopfleiste der Bestandsseite */
  --gruen-600: #6aad58;
  --gruen-700: #538f43;
  --gruen-300: #b0dda1;   /* heller Akzent auf dunklem Grund, AA-tauglich */
  --gruen-100: #e8f3e3;
  --gruen-050: #f3f8f0;

  --teal-600: #43977c;    /* Sprechzeiten-Badge der Bestandsseite */
  --teal-700: #337561;
  --teal-800: #24523f;
  --teal-900: #1a3a2c;
  --teal-100: #dceee7;

  --ziegel-600: #9a302a;  /* Hinweis-Überschrift der Bestandsseite */
  --ziegel-700: #7c241f;
  --ziegel-100: #f7e5e3;
  --signal-500: #e83324;  /* Logo-Rot, nur als Akzent */

  /* Warme Neutraltöne - eine Temperatur, konsequent durchgehalten */
  --sand-050: #fbf8f3;
  --sand-100: #f5f0e8;
  --sand-200: #e9e1d4;
  --sand-300: #d8ccb9;
  --nuss-700: #4a4238;
  --nuss-800: #332e27;
  --nuss-900: #211d18;

  /* Semantische Rollen */
  --bg:            var(--sand-050);
  --bg-alt:        var(--sand-100);
  --surface:       #ffffff;
  --surface-warm:  var(--gruen-050);
  --text:          var(--nuss-900);
  --text-muted:    #6b6357;
  --border:        var(--sand-200);
  --border-strong: var(--sand-300);
  --accent:        var(--teal-700);
  --accent-hover:  var(--teal-800);
  --on-accent:     #ffffff;
  --focus:         #1d6b8c;
  --erfolg:        #2f7d51;
  --warnung:       #a86813;
  --fehler:        var(--ziegel-700);

  /* Typografie */
  --ff-sans: 'Figtree', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --ff-serif: 'Fraunces', ui-serif, Georgia, 'Times New Roman', serif;

  --fs-display: clamp(2.25rem, 1.45rem + 3.4vw, 4.25rem);
  --fs-h1:      clamp(2rem, 1.35rem + 2.9vw, 3.75rem);
  --fs-h2:      clamp(1.625rem, 1.2rem + 1.9vw, 2.75rem);
  --fs-h3:      clamp(1.25rem, 1.08rem + 0.75vw, 1.625rem);
  --fs-lead:    clamp(1.0625rem, 1rem + 0.42vw, 1.3125rem);
  --fs-body:    clamp(1rem, 0.97rem + 0.16vw, 1.0625rem);
  --fs-small:   0.9375rem;
  --fs-label:   0.8125rem;

  /* Raster & Rhythmus */
  --breite-max: 1240px;
  --breite-schmal: 68ch;
  --gutter: clamp(1.25rem, 0.85rem + 1.9vw, 2.5rem);
  --sp-1: 0.375rem; --sp-2: 0.625rem; --sp-3: 1rem;   --sp-4: 1.5rem;
  --sp-5: 2.25rem; --sp-6: 3.25rem;  --sp-7: 4.5rem;  --sp-8: 6.5rem;
  --sektion-y: clamp(3.5rem, 2.2rem + 5.5vw, 7rem);

  /* Material */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 32px; --r-pill: 999px;
  /* Schatten warm getönt, nicht neutralschwarz */
  --schatten-1: 0 1px 2px rgba(74, 66, 56, .06), 0 2px 6px rgba(74, 66, 56, .05);
  --schatten-2: 0 2px 4px rgba(74, 66, 56, .06), 0 10px 26px rgba(74, 66, 56, .09);
  --schatten-3: 0 6px 14px rgba(74, 66, 56, .09), 0 26px 60px rgba(74, 66, 56, .13);

  /* Bewegung */
  --dur-schnell: 140ms;
  --dur: 260ms;
  --dur-lang: 620ms;
  --ease: cubic-bezier(.22, .68, .32, 1);
  --ease-weich: cubic-bezier(.33, 1, .68, 1);

  /* Ebenen */
  --z-basis: 1; --z-sticky: 100; --z-nav: 200; --z-overlay: 300; --z-consent: 400;
}

/* --------------------------------------------------------------------------
   2. Reset & Grundlagen
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0 0 .5em; font-family: var(--ff-serif); font-weight: 600; line-height: 1.12; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
p  { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: .18em; transition: color var(--dur-schnell) var(--ease); }
a:hover { color: var(--accent-hover); }
strong, b { font-weight: 650; }
ul, ol { padding-left: 1.25em; }
li { margin-bottom: .35em; }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--sp-5) 0; }
table { border-collapse: collapse; width: 100%; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

::selection { background: var(--gruen-100); color: var(--nuss-900); }

.screen-reader-text, .sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--sp-3); top: -100px; z-index: 500;
  background: var(--teal-800); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-md) var(--r-md); font-weight: 600; text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout-Primitive
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--breite-max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--eng { max-width: 860px; }
.sektion { padding-block: var(--sektion-y); position: relative; }
.sektion--sand { background: var(--bg-alt); }
.sektion--weiss { background: var(--surface); }
.sektion--gruen { background: var(--gruen-050); }
.fliess > * + * { margin-top: var(--sp-4); }
.mass { max-width: var(--breite-schmal); }

/* Kapitel-Marke: kleine Auszeichnung über Überschriften */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--fs-label); font-weight: 650; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal-700); margin-bottom: var(--sp-2);
}
.eyebrow::before {
  content: ""; inline-size: 1.75rem; block-size: 2px; background: var(--gruen-500); border-radius: 2px;
}
.eyebrow--hell { color: var(--gruen-300); }
.eyebrow--hell::before { background: var(--gruen-500); }

/* --------------------------------------------------------------------------
   4. Buttons & Pillen
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--teal-700); --btn-fg: #fff; --btn-bd: var(--teal-700);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .85rem 1.5rem; min-height: 48px;
  font-family: var(--ff-sans); font-size: 1rem; font-weight: 600; line-height: 1.2;
  color: var(--btn-fg); background: var(--btn-bg); border: 1.5px solid var(--btn-bd);
  border-radius: var(--r-pill); text-decoration: none; cursor: pointer;
  box-shadow: var(--schatten-1);
  transition: background var(--dur-schnell) var(--ease), border-color var(--dur-schnell) var(--ease),
              transform var(--dur-schnell) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur-schnell) var(--ease);
}
.btn:hover { background: var(--teal-800); border-color: var(--teal-800); color: #fff; box-shadow: var(--schatten-2); transform: translateY(-1px); }
.btn:active { transform: translateY(1px) scale(.99); box-shadow: var(--schatten-1); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--zweit { --btn-bg: transparent; --btn-fg: var(--nuss-800); --btn-bd: var(--border-strong); }
.btn--zweit:hover { background: var(--surface); border-color: var(--nuss-700); color: var(--nuss-900); }
.btn--hell { --btn-bg: #fff; --btn-fg: var(--teal-800); --btn-bd: #fff; }
.btn--hell:hover { background: var(--gruen-050); border-color: var(--gruen-050); color: var(--teal-800); }
.btn--geist { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.6); }
.btn--geist:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }
.btn--gross { padding: 1.05rem 1.9rem; font-size: 1.0625rem; }
.btn .icon { flex: none; }

.pille {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .3rem .75rem; border-radius: var(--r-pill);
  font-size: var(--fs-label); font-weight: 600; letter-spacing: .01em;
  background: var(--gruen-100); color: var(--teal-800);
}
.pille--warn { background: var(--ziegel-100); color: var(--ziegel-700); }

/* --------------------------------------------------------------------------
   5. Hinweisband (Beitragstyp „Hinweise“, drei Dringlichkeitsstufen)
   -------------------------------------------------------------------------- */
.hinweisband {
  --band-bg: var(--ziegel-600);
  --band-fg: #ffffff;
  --band-schwach: rgba(255, 255, 255, .78);
  background: var(--band-bg);
  color: var(--band-fg);
  font-size: var(--fs-small);
  font-weight: 550;
}
/* Neutral: ruhige Information */
.hinweisband--neutral { --band-bg: var(--teal-800); }
/* Hinweis: der bisherige Ziegelton */
.hinweisband--hinweis { --band-bg: var(--ziegel-600); }
/* Dringend: dunkler und damit deutlich unterscheidbar */
.hinweisband--dringend { --band-bg: #7a1d18; }

/*
 * Schmal: Raster aus Symbol, Text und Schließen – der Link bekommt eine
 * eigene Zeile unter dem Text. Breit: eine zentrierte Zeile.
 */
.hinweisband__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: .45rem .7rem;
  padding: .65rem var(--gutter); min-height: 44px;
  max-width: var(--breite-max); margin-inline: auto;
}
.hinweisband__icon { grid-column: 1; grid-row: 1; display: flex; padding-top: .12rem; opacity: .92; }
.hinweisband__text { grid-column: 2; grid-row: 1; margin: 0; min-inline-size: 0; }
.hinweisband__link { grid-column: 2; grid-row: 2; justify-self: start; }
.hinweisband__schliessen { grid-column: 3; grid-row: 1; }

@media (min-width: 720px) {
  .hinweisband__inner {
    display: flex; flex-wrap: nowrap; align-items: center; justify-content: center;
    gap: .7rem;
  }
  .hinweisband__icon { padding-top: 0; }
  .hinweisband__text { text-align: center; }
  .hinweisband__link { margin-block-start: 0; }
  .hinweisband__schliessen { margin-left: auto; }
}
.hinweisband__text a { color: var(--band-fg); text-decoration: underline; text-underline-offset: .16em; }
.hinweisband__text a:hover { color: var(--band-fg); text-decoration-thickness: 2px; }
.hinweisband__text strong, .hinweisband__text b { font-weight: 750; }

.hinweisband__link {
  flex: none; display: inline-flex; align-items: center; gap: .3rem;
  margin-block-start: .1rem;
  padding: .28rem .8rem; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .34);
  color: var(--band-fg); font-weight: 650; text-decoration: none; white-space: nowrap;
  transition: background var(--dur-schnell) var(--ease), border-color var(--dur-schnell) var(--ease);
}
.hinweisband__link::after { content: "›"; font-size: 1.05em; line-height: 1; }
.hinweisband__link:hover { background: rgba(255, 255, 255, .26); border-color: #fff; color: var(--band-fg); }

.hinweisband__schliessen {
  flex: none; background: none; border: 0; color: var(--band-schwach);
  cursor: pointer; padding: .35rem; line-height: 0; border-radius: var(--r-sm);
  transition: color var(--dur-schnell) var(--ease), background var(--dur-schnell) var(--ease);
}
.hinweisband__schliessen:hover { color: #fff; background: rgba(255, 255, 255, .18); }

/* --------------------------------------------------------------------------
   6. Kopfbereich & Navigation
   -------------------------------------------------------------------------- */
.kopf {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--gruen-500);
  border-bottom: 1px solid rgba(33, 29, 24, .07);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.kopf.ist-geheftet { box-shadow: var(--schatten-2); background: color-mix(in srgb, var(--gruen-500) 94%, var(--nuss-900)); }
.kopf__inner {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--sp-3);
  max-width: var(--breite-max); margin-inline: auto;
  padding: .7rem var(--gutter);
  transition: padding var(--dur) var(--ease);
}
.kopf.ist-geheftet .kopf__inner { padding-block: .45rem; }

.marke { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--nuss-900); }
.marke__logo { inline-size: clamp(46px, 4.4vw, 62px); block-size: auto; transition: inline-size var(--dur) var(--ease); filter: drop-shadow(0 1px 2px rgba(33,29,24,.18)); }
.kopf.ist-geheftet .marke__logo { inline-size: clamp(40px, 3.4vw, 50px); }
.marke__text { display: none; line-height: 1.15; }
.marke__name { display: block; font-family: var(--ff-serif); font-weight: 650; font-size: 1.0625rem; letter-spacing: -.01em; color: var(--nuss-900); }
.marke__ort { display: block; font-size: .8125rem; font-weight: 600; color: var(--teal-900); letter-spacing: .04em; text-transform: uppercase; }
@media (min-width: 560px) { .marke__text { display: block; } }

/* Desktop-Navigation */
.nav-haupt { display: none; }
.nav-haupt ul { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav-haupt li { margin: 0; }
.nav-haupt a {
  position: relative; display: block; padding: .55rem .8rem; border-radius: var(--r-pill);
  color: var(--nuss-900); font-weight: 600; font-size: .9375rem; text-decoration: none;
  transition: background var(--dur-schnell) var(--ease), color var(--dur-schnell) var(--ease);
}
.nav-haupt a::after {
  content: ""; position: absolute; left: 50%; bottom: .3rem; translate: -50% 0;
  inline-size: 0; block-size: 2px; background: var(--teal-800); border-radius: 2px;
  transition: inline-size var(--dur) var(--ease);
}
.nav-haupt a:hover { background: rgba(255,255,255,.42); color: var(--nuss-900); }
.nav-haupt a:hover::after { inline-size: 1.25rem; }
.nav-haupt .current-menu-item > a,
.nav-haupt .current_page_item > a { background: var(--surface); color: var(--teal-800); box-shadow: var(--schatten-1); }
.nav-haupt .current-menu-item > a::after,
.nav-haupt .current_page_item > a::after { inline-size: 0; }

.kopf__aktionen { display: flex; align-items: center; gap: .5rem; }
.kopf__tel {
  display: none; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: var(--r-pill);
  background: var(--teal-700); color: #fff; font-weight: 650; font-size: .9375rem; text-decoration: none;
  box-shadow: var(--schatten-1);
  transition: background var(--dur-schnell) var(--ease), transform var(--dur-schnell) var(--ease);
}
.kopf__tel:hover { background: var(--teal-800); color: #fff; transform: translateY(-1px); }

@media (min-width: 1024px) {
  .nav-haupt { display: block; }
  .kopf__tel { display: inline-flex; }
}

/* Menüschalter (nur mobil) */
@media (min-width: 1024px) { .kopf .nav-schalter { display: none; } }
.nav-schalter {
  display: inline-flex; align-items: center; gap: .55rem;
  min-height: 46px; padding: .5rem .9rem;
  background: var(--surface); color: var(--nuss-900);
  border: 1px solid rgba(33,29,24,.1); border-radius: var(--r-pill);
  font-family: inherit; font-size: .9375rem; font-weight: 650; cursor: pointer;
  box-shadow: var(--schatten-1);
  transition: background var(--dur-schnell) var(--ease), transform var(--dur-schnell) var(--ease);
}
.nav-schalter:hover { background: var(--gruen-050); }
.nav-schalter:active { transform: scale(.97); }
.nav-schalter__balken { position: relative; inline-size: 18px; block-size: 12px; flex: none; }
.nav-schalter__balken span {
  position: absolute; left: 0; inline-size: 100%; block-size: 2px; border-radius: 2px;
  background: currentColor; transition: transform var(--dur) var(--ease), opacity var(--dur-schnell) var(--ease);
}
.nav-schalter__balken span:nth-child(1) { top: 0; }
.nav-schalter__balken span:nth-child(2) { top: 5px; }
.nav-schalter__balken span:nth-child(3) { top: 10px; }
.nav-schalter[aria-expanded="true"] .nav-schalter__balken span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-schalter[aria-expanded="true"] .nav-schalter__balken span:nth-child(2) { opacity: 0; }
.nav-schalter[aria-expanded="true"] .nav-schalter__balken span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobiles Menü als warmes Paneel */
.nav-panel {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  display: grid; grid-template-rows: auto 1fr auto;
  background: var(--sand-050);
  visibility: hidden; opacity: 0;
  transition: opacity var(--dur) var(--ease), visibility 0s linear var(--dur);
}
.nav-panel.ist-offen { visibility: visible; opacity: 1; transition-delay: 0s; }
.nav-panel__kopf { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); padding: .7rem var(--gutter); background: var(--gruen-500); }
.nav-panel__body { overflow-y: auto; padding: var(--sp-5) var(--gutter); -webkit-overflow-scrolling: touch; }
.nav-panel ul { list-style: none; margin: 0; padding: 0; }
.nav-panel li { margin: 0; border-bottom: 1px solid var(--border); }
.nav-panel li:last-child { border-bottom: 0; }
.nav-panel a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem .25rem; font-family: var(--ff-serif); font-size: 1.375rem; font-weight: 600;
  color: var(--nuss-900); text-decoration: none;
  opacity: 0; transform: translateY(10px);
}
.nav-panel.ist-offen a { animation: nav-ein var(--dur-lang) var(--ease-weich) forwards; }
.nav-panel li:nth-child(1) a { animation-delay: 40ms; }
.nav-panel li:nth-child(2) a { animation-delay: 80ms; }
.nav-panel li:nth-child(3) a { animation-delay: 120ms; }
.nav-panel li:nth-child(4) a { animation-delay: 160ms; }
.nav-panel li:nth-child(5) a { animation-delay: 200ms; }
.nav-panel li:nth-child(6) a { animation-delay: 240ms; }
.nav-panel li:nth-child(7) a { animation-delay: 280ms; }
.nav-panel a::after { content: "›"; color: var(--gruen-600); font-size: 1.5rem; line-height: 1; transition: transform var(--dur) var(--ease); }
.nav-panel a:hover { color: var(--teal-800); }
.nav-panel a:hover::after { transform: translateX(4px); }
.nav-panel .current-menu-item > a, .nav-panel .current_page_item > a { color: var(--teal-800); }
.nav-panel__fuss { padding: var(--sp-4) var(--gutter) var(--sp-5); background: var(--gruen-050); border-top: 1px solid var(--border); display: grid; gap: .75rem; }
@keyframes nav-ein { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .nav-panel a { opacity: 1; transform: none; animation: none !important; } }
body.nav-fixiert { overflow: hidden; }
@media (min-width: 1024px) { .nav-panel { display: none; } }

/* --------------------------------------------------------------------------
   7. Hero – warmer Split: Textfeld links, Bildplatte rechts
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--teal-800);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(90% 70% at 6% 92%, rgba(128,194,110,.26) 0%, rgba(128,194,110,0) 60%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-block-size: min(78svh, 660px);
  }
}

/* Linke Spalte: Text */
.hero__text {
  padding: clamp(2.5rem, 1.8rem + 3.2vw, 4.5rem) var(--gutter) clamp(2.5rem, 2rem + 2.4vw, 4rem);
  display: grid; align-content: center; gap: 0;
}
@media (min-width: 900px) {
  .hero__text {
    /* Text bleibt am zentralen Raster, das Bild läuft bis zum Rand. */
    padding-left: max(var(--gutter), calc((100vw - var(--breite-max)) / 2 + var(--gutter)));
    padding-right: clamp(2rem, 3.5vw, 4rem);
  }
}

.hero__kicker {
  display: block; font-family: var(--ff-sans);
  font-size: clamp(.8125rem, .76rem + .3vw, .9375rem); font-weight: 650;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--gruen-300); margin-bottom: .95rem;
}
.hero__titel {
  font-size: var(--fs-display); font-weight: 600; color: #fff; line-height: 1.02;
  letter-spacing: -.028em; margin-bottom: .38em; max-width: 13ch;
}
.hero__titel em { font-style: normal; display: block; }
.hero__unter {
  font-size: var(--fs-lead); color: rgba(255,255,255,.92);
  max-width: 40ch; margin-bottom: var(--sp-4);
}
.hero__aktionen { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Rechte Spalte: Bildplatte, das Tier bleibt frei */
.hero__media { position: relative; min-block-size: clamp(300px, 58vw, 480px); }
@media (min-width: 900px) { .hero__media { min-block-size: 0; } }
.hero__media img {
  position: absolute; inset: 0;
  inline-size: 100%; block-size: 100%;
  object-fit: cover; object-position: 62% 42%;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(36,82,63,.55) 0%, rgba(36,82,63,.06) 26%, rgba(36,82,63,0) 55%);
}
@media (max-width: 899px) {
  .hero__media::after { background: linear-gradient(to bottom, rgba(36,82,63,0) 55%, rgba(36,82,63,.35) 100%); }
}

/* Sprechzeiten-Karte: sitzt unter dem Text, auf großen Schirmen an der Naht */
.zeitkarte {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--schatten-3);
  padding: var(--sp-4);
  color: var(--text);
}
.zeitkarte__kopf { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; margin-bottom: var(--sp-3); padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.zeitkarte__titel { font-family: var(--ff-serif); font-size: 1.1875rem; font-weight: 650; margin: 0; color: var(--nuss-900); }
.zeitkarte__status { font-size: var(--fs-label); font-weight: 650; letter-spacing: .02em; display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.zeitkarte__status::before { content: ""; inline-size: 8px; block-size: 8px; border-radius: 50%; background: currentColor; flex: none; }
.zeitkarte__status.ist-offen { color: var(--erfolg); }
.zeitkarte__status.ist-zu { color: var(--text-muted); }

/* Sprechzeiten-Band direkt unter dem Hero */
.zeitband { background: var(--surface); border-bottom: 1px solid var(--border); }
.zeitband__inner {
  max-width: var(--breite-max); margin-inline: auto;
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem) var(--gutter);
  display: grid; gap: var(--sp-4);
}
@media (min-width: 1000px) {
  .zeitband__inner { grid-template-columns: minmax(210px, .8fr) minmax(0, 2.4fr) minmax(200px, .9fr); align-items: start; gap: clamp(2rem, 3.5vw, 3.5rem); }
}
.zeitband__kopf { display: grid; gap: .5rem; align-content: start; }
.zeitband__kopf h2 { font-size: 1.375rem; margin: 0; }
.zeitband__tage { display: grid; gap: 0; }
@media (min-width: 620px) { .zeitband__tage { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.zeitband__tag {
  display: grid; gap: .2rem; padding: .6rem 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 620px) {
  .zeitband__tag { border-top: 0; border-left: 1px solid var(--border); padding: .1rem 0 .1rem 1.1rem; }
  .zeitband__tag:first-child { border-left: 0; padding-left: 0; }
}
.zeitband__tag dt { font-size: var(--fs-label); font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); margin: 0; }
.zeitband__tag dd { margin: 0; font-variant-numeric: tabular-nums; font-size: .9375rem; line-height: 1.5; color: var(--nuss-800); }
.zeitband__tag small { display: block; color: var(--text-muted); font-size: var(--fs-label); }
.zeitband__tag.ist-heute dt { color: var(--teal-700); }
.zeitband__tag.ist-heute dd { font-weight: 700; color: var(--teal-800); }
.zeitband__notiz { font-size: var(--fs-label); color: var(--text-muted); line-height: 1.55; margin: 0; }

/* --------------------------------------------------------------------------
   8. Sprechzeiten-Tabelle
   -------------------------------------------------------------------------- */
.zeiten { width: 100%; max-width: 100%; table-layout: auto; font-size: var(--fs-small); }
.zeiten th, .zeiten td { padding: .5rem 0; text-align: left; vertical-align: baseline; }
.zeiten thead th { font-size: var(--fs-label); text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-weight: 650; padding-bottom: .35rem; border-bottom: 1px solid var(--border); }
.zeiten tbody tr + tr th, .zeiten tbody tr + tr td { border-top: 1px solid var(--border); }
.zeiten tbody th { font-weight: 600; padding-right: 1rem; hyphens: auto; }
.zeiten td { font-variant-numeric: tabular-nums; text-align: right; color: var(--nuss-700); text-wrap: balance; }
/* Auf schmalen Displays darf umbrochen werden, sonst schiebt die Tabelle die Seite auf. */
@media (min-width: 480px) { .zeiten tbody th, .zeiten td { white-space: nowrap; } }
.zeiten .ist-heute th, .zeiten .ist-heute td { background: var(--gruen-050); font-weight: 700; color: var(--teal-800); }
.zeiten .ist-heute th { border-radius: var(--r-sm) 0 0 var(--r-sm); padding-left: .5rem; }
.zeiten .ist-heute td { border-radius: 0 var(--r-sm) var(--r-sm) 0; padding-right: .5rem; }
.zeiten .ist-zu td { color: var(--text-muted); }
.zeiten__fuss { margin-top: var(--sp-3); font-size: var(--fs-label); color: var(--text-muted); line-height: 1.5; }
.zeiten--gross { font-size: 1.0625rem; }
.zeiten--gross th, .zeiten--gross td { padding: .85rem .25rem; }
@media (max-width: 420px) {
  .zeiten--gross { font-size: .9375rem; }
  /* Auf sehr schmalen Displays wird aus der Tabelle eine Liste. */
  .zeiten--gross, .zeiten--gross tbody { display: block; inline-size: 100%; max-inline-size: 100%; }
  .zeiten--gross thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); }
  .zeiten--gross tbody tr { display: grid; gap: .1rem; padding: .7rem 0; border-top: 1px solid var(--border); min-inline-size: 0; }
  .zeiten--gross th, .zeiten--gross td { display: block; min-inline-size: 0; overflow-wrap: break-word; }
  .zeiten--gross tbody tr:first-child { border-top: 0; }
  .zeiten--gross tbody tr + tr th, .zeiten--gross tbody tr + tr td { border-top: 0; }
  .zeiten--gross th, .zeiten--gross td { padding: 0; text-align: left; white-space: normal; }
  .zeiten--gross .ist-heute th, .zeiten--gross .ist-heute td { background: none; padding-inline: 0; }
  .zeiten--gross .ist-heute { background: var(--gruen-050); border-radius: var(--r-sm); padding-inline: .5rem; }
}

/* --------------------------------------------------------------------------
   9. Seitenkopf (Unterseiten)
   -------------------------------------------------------------------------- */
.seitenkopf {
  position: relative; isolation: isolate;
  background: var(--teal-800); color: #fff;
  padding-block: clamp(3rem, 2rem + 5vw, 5.5rem);
  overflow: hidden;
}
.seitenkopf::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 88% 8%, rgba(128,194,110,.30) 0%, rgba(128,194,110,0) 62%);
}
.seitenkopf__media { position: absolute; inset: 0; z-index: -2; }
.seitenkopf__media img { inline-size: 100%; block-size: 100%; object-fit: cover; object-position: center 42%; opacity: .5; }
.seitenkopf--bild::after { background: linear-gradient(100deg, rgba(28,64,49,.95) 0%, rgba(30,70,53,.82) 42%, rgba(36,82,63,.5) 100%); }
.seitenkopf h1 { color: #fff; margin-bottom: .25em; max-width: 18ch; }
.seitenkopf__unter { color: rgba(255,255,255,.93); font-size: var(--fs-lead); max-width: 52ch; margin: 0; }

/* Brotkrumen */
.krumen { font-size: var(--fs-label); margin-bottom: var(--sp-3); color: rgba(255,255,255,.85); }
.krumen ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.krumen li { margin: 0; display: flex; align-items: center; gap: .4rem; }
.krumen li + li::before { content: "/"; opacity: .5; }
.krumen a { color: rgba(255,255,255,.95); text-decoration: none; }
.krumen a:hover { color: #fff; text-decoration: underline; }
.krumen [aria-current="page"] { color: #fff; font-weight: 600; }

/* --------------------------------------------------------------------------
   10. Inhaltsbausteine
   -------------------------------------------------------------------------- */
/* Geteilter Abschnitt: Text + Bildplatte, leicht asymmetrisch */
/* Rasterkinder dürfen unter ihre Inhaltsbreite schrumpfen – sonst schiebt
   ein langes Wort oder eine breite Tabelle die ganze Seite auf. */
.split > *, .hero__grid > *, .team > *, .rail > *, .kontaktrail > *,
.zeitband__inner > *, .rechtslayout > *, .fuss__grid > * { min-inline-size: 0; }

.split { display: grid; gap: var(--sp-5); align-items: center; }
@media (min-width: 880px) {
  .split { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2.5rem, 1.5rem + 4vw, 5rem); }
  .split--umgekehrt > :first-child { order: 2; }
  .split--medienbreit { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .split--oben { align-items: start; }
}
.bildplatte { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--schatten-2); background: var(--sand-200); }
.bildplatte img { inline-size: 100%; block-size: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform var(--dur-lang) var(--ease-weich); }
.bildplatte:hover img { transform: scale(1.025); }
.bildplatte--hoch img { aspect-ratio: 3 / 4; }
.bildplatte--breit img { aspect-ratio: 16 / 10; }
.bildplatte__marke {
  position: absolute; left: var(--sp-3); bottom: var(--sp-3);
  background: rgba(251,248,243,.95); color: var(--nuss-800);
  padding: .5rem .9rem; border-radius: var(--r-pill);
  font-size: var(--fs-label); font-weight: 600; box-shadow: var(--schatten-1);
}

/* Leistungsliste als Rail, keine Kartenflut */
.rail { display: grid; gap: 0; border-top: 1px solid var(--border); }
.rail__eintrag {
  display: grid; grid-template-columns: auto 1fr; gap: var(--sp-3);
  align-items: start; padding: 1.05rem .5rem; border-bottom: 1px solid var(--border);
  transition: background var(--dur-schnell) var(--ease), padding-left var(--dur) var(--ease);
}
.rail__eintrag:hover { background: var(--surface-warm); padding-left: 1rem; }
.rail__marke {
  inline-size: 2rem; block-size: 2rem; flex: none; border-radius: 50%;
  background: var(--gruen-100); color: var(--teal-800);
  display: grid; place-items: center; font-size: .8125rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.rail__titel { font-family: var(--ff-sans); font-size: 1.0625rem; font-weight: 600; margin: 0; line-height: 1.45; }
.rail__text { font-size: var(--fs-small); color: var(--text-muted); margin: .2rem 0 0; }
@media (min-width: 760px) { .rail--zwei { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 4vw, 3.5rem); } .rail--zwei .rail__eintrag:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); } }

/* Team als Personenreihe */
.team { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team { grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); } }
.person {
  display: grid; gap: .35rem; align-content: start; padding: var(--sp-4) var(--sp-3);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.person:hover { transform: translateY(-3px); box-shadow: var(--schatten-2); border-color: var(--gruen-500); }
.person__initial {
  inline-size: 3rem; block-size: 3rem; border-radius: 50%; margin-bottom: .5rem;
  background: linear-gradient(145deg, var(--gruen-100), var(--teal-100));
  color: var(--teal-800); display: grid; place-items: center;
  font-family: var(--ff-serif); font-size: 1.25rem; font-weight: 650;
}
.person__name { font-family: var(--ff-serif); font-size: 1.0625rem; font-weight: 650; margin: 0; line-height: 1.3; }
.person__rolle { font-size: var(--fs-small); color: var(--text-muted); margin: 0; }

/* Kontaktzeile - Telefon, Mobil, E-Mail als Rail statt Karten */
.kontaktrail { display: grid; gap: 0; grid-template-columns: 1fr; }
@media (min-width: 560px) { .kontaktrail { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); } }
.kontaktrail__eintrag {
  display: grid; gap: .2rem; padding: var(--sp-4) 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 560px) {
  .kontaktrail__eintrag { padding: var(--sp-3) var(--sp-4) var(--sp-3) var(--sp-4); border-top: 0; border-left: 1px solid var(--border); }
  .kontaktrail__eintrag:first-child { border-left: 0; padding-left: 0; }
}
.kontaktrail__label { font-size: var(--fs-label); font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.kontaktrail__wert { font-family: var(--ff-serif); font-size: clamp(1rem, .92rem + .35vw, 1.25rem); font-weight: 600; color: var(--nuss-900); text-decoration: none; word-break: normal; overflow-wrap: break-word; hyphens: none; }
a.kontaktrail__wert:hover { color: var(--teal-700); }

/* Notfallband - hoher Kontrast, klar abgesetzt */
.notband {
  background: var(--ziegel-600); color: #fff;
  border-radius: var(--r-xl); padding: clamp(1.75rem, 1.2rem + 2.4vw, 3rem);
  display: grid; gap: var(--sp-4); box-shadow: var(--schatten-2);
}
@media (min-width: 820px) { .notband { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: var(--sp-5); } }
.notband h2, .notband h3 { color: #fff; margin-bottom: .3em; }
.notband p { color: rgba(255,255,255,.94); margin-bottom: 0; }
.notband__nummer {
  font-family: var(--ff-serif); font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.75rem); font-weight: 650;
  color: #fff; text-decoration: none; letter-spacing: -.01em; font-variant-numeric: tabular-nums;
  display: inline-block; white-space: nowrap;
}
.notband__nummer:hover { color: #fff; text-decoration: underline; text-decoration-thickness: 2px; }
@media (max-width: 420px) { .notband__nummer { white-space: normal; word-break: break-word; font-size: clamp(1.5rem, 6.5vw, 1.9rem); } }

/* Hinweiskasten */
.notiz {
  border-left: 3px solid var(--gruen-500);
  background: var(--surface-warm);
  padding: var(--sp-4);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.notiz--warn { border-left-color: var(--ziegel-600); background: var(--ziegel-100); }
.notiz__titel { font-family: var(--ff-sans); font-size: 1rem; font-weight: 700; margin: 0 0 .35em; color: var(--nuss-900); }
.notiz p:last-child { margin-bottom: 0; }

/* Rechtstext (Datenschutz / Impressum) */
.rechtstext { max-width: 74ch; }
.rechtstext h2 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.625rem); margin-top: var(--sp-6); padding-top: var(--sp-4); border-top: 1px solid var(--border); }
.rechtstext h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.rechtstext h3 { font-family: var(--ff-sans); font-size: 1.0625rem; font-weight: 700; margin-top: var(--sp-4); }
.rechtstext p, .rechtstext li { font-size: var(--fs-small); line-height: 1.75; color: var(--nuss-700); }
.rechtstext a { word-break: break-word; }
.rechtstext address { font-style: normal; }

/* Inhaltsverzeichnis für Rechtstexte */
.inhaltsnav {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--sp-4); position: sticky; top: 96px;
}
.inhaltsnav h2 { font-family: var(--ff-sans); font-size: .8125rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 .75rem; border: 0; padding: 0; }
.inhaltsnav ol { list-style: none; margin: 0; padding: 0; counter-reset: iv; }
.inhaltsnav li { margin: 0; }
.inhaltsnav a { display: block; padding: .4rem 0; font-size: .875rem; color: var(--nuss-700); text-decoration: none; border-bottom: 1px solid var(--border); line-height: 1.4; }
.inhaltsnav li:last-child a { border-bottom: 0; }
.inhaltsnav a:hover { color: var(--teal-700); padding-left: .35rem; transition: padding-left var(--dur-schnell) var(--ease); }
.rechtslayout { display: grid; gap: var(--sp-5); }
@media (min-width: 1000px) { .rechtslayout { grid-template-columns: 250px minmax(0, 1fr); gap: clamp(2.5rem, 4vw, 4.5rem); align-items: start; } }

/* --------------------------------------------------------------------------
   11. Formular
   -------------------------------------------------------------------------- */
.formular { display: grid; gap: var(--sp-4); }
.feld { display: grid; gap: .35rem; }
.feld > label { font-size: var(--fs-small); font-weight: 650; color: var(--nuss-800); }
.feld__pflicht { color: var(--ziegel-600); margin-left: .15em; }
.feld__hilfe { font-size: var(--fs-label); color: var(--text-muted); }
.feld input[type="text"], .feld input[type="email"], .feld input[type="tel"], .feld textarea, .feld select {
  inline-size: 100%; padding: .8rem .95rem; min-height: 48px;
  font-family: inherit; font-size: 1rem; color: var(--nuss-900);
  background: var(--surface); border: 1.5px solid var(--border-strong); border-radius: var(--r-md);
  transition: border-color var(--dur-schnell) var(--ease), box-shadow var(--dur-schnell) var(--ease), background var(--dur-schnell) var(--ease);
}
.feld textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.feld input::placeholder, .feld textarea::placeholder { color: #7d7365; }
.feld input:hover, .feld textarea:hover { border-color: var(--nuss-700); }
.feld input:focus, .feld textarea:focus { outline: none; border-color: var(--teal-700); box-shadow: 0 0 0 3px rgba(67,151,124,.18); }
.feld.hat-fehler input, .feld.hat-fehler textarea { border-color: var(--fehler); background: #fdf6f5; }
.feld__fehler { font-size: var(--fs-label); font-weight: 600; color: var(--fehler); display: flex; align-items: flex-start; gap: .35rem; }
@media (min-width: 640px) { .formular__reihe { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); } }

.zustimmung { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; font-size: var(--fs-small); line-height: 1.55; }
.zustimmung input[type="checkbox"] { inline-size: 1.25rem; block-size: 1.25rem; margin-top: .15rem; accent-color: var(--teal-700); cursor: pointer; }
.zustimmung label { color: var(--nuss-700); cursor: pointer; }
.honigtopf { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.meldung { padding: var(--sp-4); border-radius: var(--r-md); font-size: var(--fs-small); display: grid; gap: .35rem; }
.meldung--erfolg { background: #eaf5ee; border-left: 3px solid var(--erfolg); color: #1d5436; }
.meldung--fehler { background: var(--ziegel-100); border-left: 3px solid var(--fehler); color: var(--ziegel-700); }
.meldung strong { display: block; }
.btn.ist-ladend { pointer-events: none; opacity: .8; }
.btn.ist-ladend::before {
  content: ""; inline-size: 1rem; block-size: 1rem; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; animation: dreh .7s linear infinite;
}
@keyframes dreh { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .btn.ist-ladend::before { animation-duration: 2s; } }

/* --------------------------------------------------------------------------
   12. Karte mit Einwilligung (Zwei-Klick-Lösung)
   -------------------------------------------------------------------------- */
.karte { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--sand-200); min-block-size: 340px; box-shadow: var(--schatten-2); }
.karte iframe { inline-size: 100%; block-size: 100%; min-block-size: 340px; border: 0; display: block; }
.karte__sperre {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: var(--sp-3);
  padding: var(--sp-5) var(--gutter); text-align: center;
  background:
    linear-gradient(rgba(36,82,63,.86), rgba(36,82,63,.9)),
    repeating-linear-gradient(45deg, var(--sand-200) 0 14px, var(--sand-100) 14px 28px);
  color: #fff;
}
.karte__sperre h3 { color: #fff; font-size: 1.25rem; margin-bottom: .25em; }
.karte__sperre p { color: rgba(255,255,255,.94); font-size: var(--fs-small); max-width: 46ch; margin: 0; }
.karte__sperre small { font-size: var(--fs-label); color: rgba(255,255,255,.86); }

/* --------------------------------------------------------------------------
   13. Einwilligungsbanner
   -------------------------------------------------------------------------- */
.consent {
  position: fixed; inset-inline: 0; bottom: 0; z-index: var(--z-consent);
  padding: var(--gutter);
  transform: translateY(115%);
  transition: transform var(--dur-lang) var(--ease-weich);
}
.consent.ist-sichtbar { transform: none; }
.consent[hidden] { display: none; }
.consent__box {
  max-width: 760px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-lg); box-shadow: var(--schatten-3);
  padding: var(--sp-4);
  display: grid; gap: var(--sp-3);
}
.consent__titel { font-family: var(--ff-serif); font-size: 1.125rem; font-weight: 650; margin: 0; }
.consent__text { font-size: var(--fs-small); color: var(--nuss-700); margin: 0; }
.consent__aktionen { display: grid; gap: .6rem; }
@media (min-width: 620px) { .consent__aktionen { grid-auto-flow: column; justify-content: start; align-items: center; } }
.consent__aktionen .btn { inline-size: 100%; }
@media (min-width: 620px) { .consent__aktionen .btn { inline-size: auto; } }
.consent__links { font-size: var(--fs-label); color: var(--text-muted); display: flex; flex-wrap: wrap; gap: .9rem; }
@media (prefers-reduced-motion: reduce) { .consent { transition-duration: 1ms; } }

/* --------------------------------------------------------------------------
   14. Fußbereich
   -------------------------------------------------------------------------- */
.fuss { background: var(--teal-800); color: rgba(255,255,255,.88); padding-block: var(--sp-7) var(--sp-4); font-size: var(--fs-small); }
.fuss__grid { display: grid; gap: var(--sp-5); }
@media (min-width: 760px) { .fuss__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-5); } }
@media (min-width: 1040px) { .fuss__grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }
.fuss h2 { font-family: var(--ff-sans); font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gruen-300); margin-bottom: var(--sp-3); }
.fuss a { color: #fff; text-decoration: none; }
.fuss a:hover { color: var(--gruen-100); text-decoration: underline; }
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { margin-bottom: .5rem; }
.fuss address { font-style: normal; line-height: 1.75; }
.fuss__marke { display: flex; align-items: center; gap: .85rem; margin-bottom: var(--sp-3); }
.fuss__marke img { inline-size: 54px; }
.fuss__name { font-family: var(--ff-serif); font-size: 1.125rem; font-weight: 650; color: #fff; line-height: 1.25; }
.fuss__zeiten { font-variant-numeric: tabular-nums; }
.fuss__zeiten div { display: flex; justify-content: space-between; gap: 1rem; padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.fuss__zeiten div span:first-child { white-space: nowrap; }
.fuss__zeiten div span:last-child { text-align: right; }
.fuss__zeiten div:last-child { border-bottom: 0; }
.fuss__unten {
  margin-top: var(--sp-6); padding-top: var(--sp-4); border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .75rem var(--sp-4); align-items: center; justify-content: space-between;
  font-size: var(--fs-label); color: rgba(255,255,255,.78);
}
.fuss__unten nav { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }

/* Nach-oben-Knopf */
.hoch {
  position: fixed; right: var(--gutter); bottom: var(--gutter); z-index: var(--z-sticky);
  inline-size: 46px; block-size: 46px; border-radius: 50%;
  background: var(--teal-700); color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--schatten-2);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear var(--dur), background var(--dur-schnell) var(--ease);
}
.hoch.ist-sichtbar { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.hoch:hover { background: var(--teal-800); }

/* --------------------------------------------------------------------------
   15. Bewegung beim Scrollen
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur-lang) var(--ease-weich), transform var(--dur-lang) var(--ease-weich); }
.reveal.ist-sichtbar { opacity: 1; transform: none; }
.reveal[data-verzug="1"] { transition-delay: 90ms; }
.reveal[data-verzug="2"] { transition-delay: 180ms; }
.reveal[data-verzug="3"] { transition-delay: 270ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* --------------------------------------------------------------------------
   16. WordPress-Grundklassen & Editor
   -------------------------------------------------------------------------- */
.alignleft { float: left; margin: .35rem 1.5rem 1rem 0; }
.alignright { float: right; margin: .35rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin-inline: auto; }
.alignwide { max-width: min(1100px, 100%); margin-inline: auto; }
.alignfull { max-width: none; }
.wp-caption { max-width: 100%; }
.wp-caption-text, figcaption { font-size: var(--fs-label); color: var(--text-muted); margin-top: .5rem; }
.sticky, .gallery-caption, .bypostauthor { display: block; }
.eintrag-inhalt > * + * { margin-top: var(--sp-4); }
.eintrag-inhalt img { border-radius: var(--r-md); }
blockquote { margin: var(--sp-4) 0; padding-left: var(--sp-4); border-left: 3px solid var(--gruen-500); font-family: var(--ff-serif); font-size: 1.1875rem; font-style: italic; color: var(--nuss-700); }
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; background: var(--sand-100); border-radius: var(--r-sm); }
code { padding: .12em .38em; }
pre { padding: var(--sp-3); overflow-x: auto; }

/* Paginierung / Suche / 404 */
.leer-zustand { text-align: center; max-width: 52ch; margin-inline: auto; padding-block: var(--sp-6); }
.leer-zustand h1 { font-size: var(--fs-h2); }
.suchformular { display: flex; flex-wrap: wrap; gap: .6rem; max-width: 420px; width: 100%; }
.suchformular .btn { flex: none; }
@media (max-width: 360px) { .suchformular { flex-direction: column; } .suchformular .btn { width: 100%; } }
.suchformular input[type="search"] {
  flex: 1; padding: .8rem .95rem; min-height: 48px; font-family: inherit; font-size: 1rem;
  border: 1.5px solid var(--border-strong); border-radius: var(--r-md); background: var(--surface); color: var(--nuss-900);
}
.suchformular input[type="search"]:focus { outline: none; border-color: var(--teal-700); box-shadow: 0 0 0 3px rgba(67,151,124,.18); }

/* Druck */
@media print {
  .kopf, .fuss, .consent, .hoch, .nav-panel, .hinweisband, .karte, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .sektion { padding-block: 1rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}

/* Hoher Kontrast / erzwungene Farben */
@media (forced-colors: active) {
  .btn, .pille, .person, .zeitkarte { border: 1px solid ButtonBorder; }
  .hero__schleier, .seitenkopf::after { display: none; }
}
