/* =========================================================================
   Kita Bärlis — Konzept B "Klarheit"
   Design-Entwurf. Eine Datei, keine Frameworks, keine Build-Kette.

   Aufbau:  1 Tokens · 2 Reset · 3 Typografie · 4 Layout/Grid · 5 Komponenten
            6 Navigation · 7 Sektionen · 8 Formulare · 9 Footer · 10 Utilities

   Kontrast: jede Text-/Hintergrund-Kombination liegt bei ≥ 4.5:1.
   Das helle Marken-Teal #3CB09C trägt weissen Text nur mit 2.66:1 und wird
   deshalb NICHT als Textuntergrund benutzt — es bleibt Akzentfarbe (Badges,
   Icons, Ränder, Punkte). Farbflächen mit weissem Text nutzen --teal-deep
   (#15796A, 5.28:1).
   ========================================================================= */

/* ---------- 0 · Schriften (selbst gehostet, keine Fremd-Requests) --------
   Inter und Outfit als Variable Fonts: je eine Datei deckt alle benutzten
   Schnitte ab (Inter 400/500/600, Outfit 500/600). latin-ext lädt nur nach,
   wenn ein Zeichen daraus vorkommt. DSGVO: kein Aufruf an Google. */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-ext.woff2") format("woff2");
  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: Outfit;
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../assets/fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("../assets/fonts/outfit-latin-ext.woff2") format("woff2");
  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;
}

/* ---------- 1 · Tokens --------------------------------------------------- */
:root {
  /* Marke */
  --teal:        #3CB09C;   /* Akzent: Badges, Icons, Ränder, Punkte        */
  --teal-deep:   #15796A;   /* Farbflächen + Buttons mit weissem Text 5.3:1 */
  --teal-600:    #12695C;   /* Hover auf --teal-deep                        */
  --teal-700:    #1F6C61;   /* Links und Fokusring auf hellem Grund  6.2:1  */
  --teal-800:    #14453E;   /* Badge-Text auf --teal-050            9.8:1   */
  --teal-050:    #EAF7F4;
  --teal-100:    #CFEAE4;

  --navy:        #324A6D;   /* Farbfläche mit weissem Text          9.0:1   */
  --navy-700:    #263A56;
  --navy-800:    #1B2A40;
  --navy-050:    #EFF3F9;

  --peach:       #FFBC7D;   /* warmer Akzent, nie als Textuntergrund        */
  --peach-050:   #FFF4E7;
  --peach-700:   #8A5620;   /* auf --peach-050                      5.6:1   */

  /* Neutral */
  --ink:         #141827;   /* auf Weiss 17.7:1, auf --teal 6.6:1           */
  --ink-70:      #4B5265;   /* auf Weiss  7.8:1                             */
  --ink-50:      #666E80;   /* auf Weiss  5.2:1, auf --paper 4.8:1          */
  --line:        #E4EAF1;
  --line-strong: #CFD8E4;
  --paper:       #F6F9FB;
  --white:       #FFFFFF;

  /* Radien */
  --r-xs:  6px;
  --r-sm:  10px;
  --r:     12px;
  --r-lg:  16px;
  --r-pill: 999px;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(20, 24, 39, .05);
  --shadow:    0 1px 2px rgba(20, 24, 39, .05), 0 10px 26px -14px rgba(20, 24, 39, .22);
  --shadow-lg: 0 2px 4px rgba(20, 24, 39, .06), 0 24px 48px -22px rgba(20, 24, 39, .30);

  /* Raster */
  --wrap:   1200px;
  --wrap-narrow: 820px;
  --gutter: clamp(20px, 4vw, 32px);
  --gap:    clamp(20px, 2.2vw, 28px);
  --nav-h:  72px;

  /* Bewegung: 150–300ms, ease-out, zurückhaltend */
  --t-fast: 160ms;
  --t:      220ms;
  --t-slow: 300ms;
  --ease:   cubic-bezier(.2, .7, .3, 1);
}

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

/* [hidden] muss auch gegen display:grid/flex der Komponenten gewinnen. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; border: 0; }

figure, blockquote { margin: 0; }

/* Basisgrösse für alle Inline-Icons; Kontexte dürfen sie überschreiben. */
.ico { flex: none; width: 1.25em; height: 1.25em; }

a { color: var(--teal-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-800); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

a, button, label, summary, input, select, textarea { touch-action: manipulation; }

/* Sprungziele unter der klebenden Navigation freihalten */
section[id], [id] { scroll-margin-top: calc(var(--nav-h) + 24px); }

/* Fokusring: Markenfarbe, 2px + Versatz, mit hellem Halo für dunkle Kanten */
:focus-visible {
  outline: 2px solid var(--teal-700);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .6);
  border-radius: 4px;
}
/* Auf farbigen Flächen kehrt sich der Ring um */
.on-dark :focus-visible,
.hero :focus-visible,
.pagehead :focus-visible,
.footer :focus-visible,
.trust-strip :focus-visible,
.calc__result :focus-visible {
  outline-color: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 20, 32, .45);
}

/* Sämtliche Bewegung degradiert zu statisch */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 3 · Typografie ----------------------------------------------- */
h1, h2, h3, h4, .display {
  font-family: Outfit, Inter, sans-serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.022em;
  line-height: 1.12;
  margin: 0 0 .5em;
  text-wrap: balance;
}

.display  { font-size: clamp(2.4rem, 5.2vw, 4rem); line-height: 1.03; letter-spacing: -.035em; }
h1, .h1   { font-size: clamp(2.1rem, 4.2vw, 3.15rem); letter-spacing: -.03em; }
h2, .h2   { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3, .h3   { font-size: clamp(1.15rem, 1.5vw, 1.375rem); line-height: 1.25; }
h4, .h4   { font-size: 1.0625rem; line-height: 1.35; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.075rem, 1.35vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-70);
}

.muted  { color: var(--ink-50); }
.small  { font-size: .9375rem; line-height: 1.6; }
.xsmall { font-size: .8125rem; line-height: 1.55; }

.eyebrow {
  display: block;
  font-family: Inter, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin: 0 0 .85rem;
}

.prose > * + * { margin-top: 1.05em; }
.prose h2 { margin-top: 1.9em; }
.prose h3 { margin-top: 1.6em; margin-bottom: .35em; }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0; }
.prose li + li { margin-top: .45em; }
.prose strong { font-weight: 600; }

/* Farbumkehr auf Navy-Flächen (weisser Text, 9.0:1) */
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark .lead, .on-dark .muted { color: rgba(255, 255, 255, .82); }
.on-dark .eyebrow { color: rgba(255, 255, 255, .72); }
.on-dark a:not([class*="btn"]) { color: var(--white); }
.on-dark .small, .on-dark .xsmall { color: rgba(255, 255, 255, .82); }

/* Auf Teal-Flächen braucht Text mehr Deckkraft, um über 4.5:1 zu bleiben */
.section--teal .lead,
.section--teal .muted,
.section--teal .small,
.section--teal .xsmall,
.section--teal .eyebrow { color: rgba(255, 255, 255, .92); }

/* ---------- 4 · Layout / Grid -------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(56px, 7.5vw, 108px); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.section--tint  { background: var(--paper); }
.section--teal  { background: var(--teal-deep); }
.section--navy  { background: var(--navy); }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head p:last-child { margin-bottom: 0; }

/* Zeilenlänge deckeln: auch wenn die Spalte breiter wird, bleibt der Text
   unter ~70 Zeichen pro Zeile. */
.lead { max-width: 68ch; }
.prose p, .prose li { max-width: 70ch; }
.card__text { max-width: 62ch; }

/* Grosse Schirme: die zusätzliche Fläche wird bewusst genutzt — breiterer
   Satzspiegel, grösserer Hero, mehr Luft zwischen den Sektionen. Ohne diese
   Stufen stünde ab 1600px nur eine 1200px-Insel in viel Weiss. */
@media (min-width: 1560px) {
  :root { --wrap: 1340px; --gutter: 40px; --gap: 32px; }
  .display { font-size: 4.4rem; }
  .section { padding-block: 124px; }
  .hero { min-height: min(86vh, 820px); }
}
@media (min-width: 2000px) {
  :root { --wrap: 1480px; --gutter: 48px; }
  body { font-size: 1.125rem; }
  .display { font-size: 4.9rem; }
  h2, .h2 { font-size: 2.6rem; }
  .section { padding-block: 144px; }
  .hero { min-height: min(84vh, 900px); }
  .section-head { max-width: 820px; }
}

/* 12-Spalten-Raster, ab 900px aktiv.
   Start und Ende getrennt setzen, damit .start-* die Spannweite nicht kappt. */
.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
}
.grid > * { grid-column-start: auto; grid-column-end: span 12; }

@media (min-width: 900px) {
  .col-3  { grid-column-end: span 3; }
  .col-4  { grid-column-end: span 4; }
  .col-5  { grid-column-end: span 5; }
  .col-6  { grid-column-end: span 6; }
  .col-7  { grid-column-end: span 7; }
  .col-8  { grid-column-end: span 8; }
  .col-9  { grid-column-end: span 9; }
  .col-12 { grid-column-end: span 12; }
  .start-7 { grid-column-start: 7; }
  .start-9 { grid-column-start: 9; }
}
@media (min-width: 620px) and (max-width: 899.98px) {
  .col-4, .col-3, .col-6 { grid-column-end: span 6; }
}

.stack   { display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start; }
.cluster { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* Ruhige Scroll-Einblendung: einmal, 10px Drift, keine Verzögerung beim Lesen.
   Rein in CSS über eine scroll-gesteuerte Animation. Wichtig: .reveal hat
   KEINEN versteckten Grundzustand. Fehlt die Unterstützung, ist JS aus oder
   wünscht die Person keine Bewegung, steht der Inhalt einfach sofort da —
   unsichtbar hängen bleiben kann nichts. */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: reveal-in linear forwards;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }
    @keyframes reveal-in {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: none; }
    }
  }
}

/* ---------- 5 · Komponenten ---------------------------------------------- */

/* 5.1 Buttons — EINE Familie, fünf Füllungen, identische Geometrie */
.btn {
  --btn-bg: var(--teal-deep);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .9rem 1.5rem;
  min-height: 48px;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.005em;
  text-align: center;
  text-decoration: none;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r-sm);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease),
              background-color var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--btn-fg); }
.btn:active { transform: scale(.98); box-shadow: none; }

.btn--primary { --btn-bg: var(--teal-deep); }
.btn--primary:hover { --btn-bg: var(--teal-600); }

.btn--dark { --btn-bg: var(--navy); }
.btn--dark:hover { --btn-bg: var(--navy-700); }

.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-strong); }
.btn--outline:hover { --btn-bd: var(--teal-deep); --btn-fg: var(--teal-800); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--teal-800); }
.btn--light:hover { --btn-bg: #fff; --btn-fg: var(--teal-700); }

.btn--onDark { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .68); }
.btn--onDark:hover { --btn-bd: #fff; --btn-bg: rgba(255, 255, 255, .14); }

.btn--sm    { padding: .6rem 1.05rem; min-height: 44px; font-size: .9375rem; border-radius: var(--r-xs); }
.btn--lg    { padding: 1.05rem 1.9rem; min-height: 58px; font-size: 1.0625rem; }
.btn--block { width: 100%; }

.btn .ico { width: 1.15em; height: 1.15em; }

/* Textlink mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  min-height: 44px;
  font-weight: 600;
  text-decoration: none;
  color: var(--teal-700);
}
.link-arrow::after { content: "→"; transition: transform var(--t) var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }
.on-dark .link-arrow, .section--teal .link-arrow { color: #fff; }

/* 5.2 Badges — EINE Familie */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .45rem .85rem;
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--teal-800);
  background: var(--teal-050);
  border: 1px solid var(--teal-100);
  border-radius: var(--r-pill);
  text-align: left;
}
@media (min-width: 560px) { .badge { white-space: nowrap; } }

.badge--peach { color: var(--peach-700); background: var(--peach-050); border-color: #F0D2AE; }
.badge--navy  { color: var(--navy);      background: var(--navy-050);  border-color: #D1DCEC; }
.badge--glass { color: #fff; background: rgba(9, 16, 26, .55); border-color: rgba(255, 255, 255, .5); backdrop-filter: blur(6px); }
.badge--ghost { color: var(--ink-50); background: transparent; border-color: var(--line-strong); }

.badge .dot { width: .5rem; height: .5rem; border-radius: 50%; background: currentColor; flex: none; }
.badge--live .dot { background: #4FE3B4; box-shadow: 0 0 0 0 rgba(79, 227, 180, .7); animation: pulse 2.6s infinite; }
@keyframes pulse {
  70%  { box-shadow: 0 0 0 8px rgba(79, 227, 180, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 227, 180, 0); }
}

/* Platzhalter, die Andy noch füllen muss — bleiben sichtbar markiert */
.placeholder-tag {
  display: inline-flex;
  align-items: center;
  padding: .3rem .6rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--peach-700);
  background: var(--peach-050);
  border: 1px dashed #C98B3F;
  border-radius: var(--r-xs);
}
.ph {
  padding: .05em .35em;
  font-weight: 600;
  color: var(--peach-700);
  background: var(--peach-050);
  border-bottom: 1px dashed #C98B3F;
  border-radius: 3px;
}
.badge--glass .ph, .on-dark .ph, .section--teal .ph {
  color: #fff; background: rgba(255, 188, 125, .28); border-bottom-color: var(--peach);
}

/* 5.3 Karten — EINE Familie */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.card__media--wide { aspect-ratio: 16 / 10; }

.card__body { display: flex; flex-direction: column; flex: 1; padding: clamp(20px, 2.2vw, 28px); }
.card__body > * + * { margin-top: .7rem; }
.card__body > .badge { align-self: flex-start; }
.card__body > .badge + * { margin-top: .9rem; }
.card__q     { margin: 0; font-size: .9375rem; font-style: italic; color: var(--teal-700); }
.card__title { margin: 0; }
.card__text  { margin: 0; color: var(--ink-70); font-size: .9875rem; }
.card__foot  { margin-top: auto; padding-top: 1.25rem; }

a.card { text-decoration: none; color: inherit; }
a.card:hover, .card--hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}
a.card:hover .card__media img, .card--hover:hover .card__media img { transform: scale(1.03); }

.card--tint  { background: var(--paper); }
.card--teal  { background: var(--teal-deep); border-color: transparent; color: #fff; }
.card--navy  { background: var(--navy);      border-color: transparent; color: #fff; }
.card--teal .card__text, .card--navy .card__text { color: rgba(255, 255, 255, .92); }
.card--teal .card__title, .card--navy .card__title,
.card--teal .card__q,     .card--navy .card__q { color: #fff; }
.card--flat  { border-color: transparent; box-shadow: none; }
.card--pad   { padding: clamp(24px, 2.6vw, 36px); }
.card--pad > * + * { margin-top: .8rem; }

.card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  font-family: Outfit, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-800);
  background: var(--teal-050);
  border-radius: var(--r-sm);
}
.card--navy .card__num, .card--teal .card__num { color: #fff; background: rgba(255, 255, 255, .2); }

/* 5.4 Fakten / grosse Zahlen */
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 3vw, 40px); }
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stat { border-left: 2px solid rgba(255, 255, 255, .35); padding-left: clamp(16px, 1.6vw, 22px); }
.stat__value {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
}
.stat__label { display: block; margin-top: .55rem; font-size: .9375rem; line-height: 1.45; color: rgba(255, 255, 255, .82); }

/* 5.5 Zitate */
.quote { display: flex; flex-direction: column; }
.quote__mark { font-family: Outfit, sans-serif; font-size: 2.75rem; font-weight: 600; line-height: .8; color: var(--teal-deep); margin-bottom: .5rem; }
.quote__text { font-size: 1.0625rem; line-height: 1.6; color: var(--ink); margin: 0; }
.quote__foot { margin-top: auto; padding-top: 1.4rem; display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.quote__who  { font-size: .9375rem; font-weight: 600; color: var(--ink-70); }

/* 5.6 Medien-Split */
.split { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wideText { grid-template-columns: 5fr 7fr; }
  .split--wideMedia { grid-template-columns: 7fr 5fr; }
  .split--reverse > :first-child { order: 2; }
}
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--paper); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--tall { aspect-ratio: 4 / 3; }

/* 5.7 Merkmal-Liste mit Häkchen */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.checklist li { position: relative; padding-left: 1.9rem; line-height: 1.55; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .38em;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50%;
  background: var(--teal-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2314453E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.4l3 3 6-6.5'/%3E%3C/svg%3E") center / .8rem no-repeat;
}
.on-dark .checklist li::before, .section--teal .checklist li::before { background-color: rgba(255, 255, 255, .92); }

/* 5.7b Öffnungszeiten */
.hours { display: grid; gap: .5rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; }
.hours .d { color: var(--ink-50); }
.hours .t { font-variant-numeric: tabular-nums; }
.hours .t--late { color: var(--teal-800); font-weight: 600; }

/* 5.8 Kontaktzeile */
.factlist { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.factlist li { display: grid; grid-template-columns: auto 1fr; gap: .85rem; align-items: start; line-height: 1.5; }
.factlist .ico { width: 1.25rem; height: 1.25rem; margin-top: .18rem; color: var(--teal-deep); }
.factlist .k { font-size: .8125rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-50); }

/* 5.9 Tabelle */
.table-wrap { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
table.table { width: 100%; border-collapse: collapse; font-size: .975rem; }
.table thead th {
  background: var(--navy);
  color: #fff;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  text-align: left;
  padding: 14px 18px;
  white-space: nowrap;
}
.table th[scope="row"] { font-weight: 600; color: var(--ink); text-align: left; }
.table td, .table th { padding: 14px 18px; border-top: 1px solid var(--line); vertical-align: middle; }
.table tbody tr:nth-child(even) { background: var(--paper); }
.table .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.table caption { caption-side: bottom; padding: 14px 18px; font-size: .8125rem; color: var(--ink-50); text-align: left; }

@media (max-width: 719.98px) {
  .table, .table tbody, .table tr, .table td { display: block; width: 100%; }
  .table thead { display: none; }
  .table caption { display: block; }
  .table tr { border-top: 1px solid var(--line); padding: 14px 16px; }
  .table tbody tr:nth-child(even) { background: var(--paper); }
  .table td, .table th { border: 0; padding: 4px 0; display: flex; justify-content: space-between; gap: 1rem; }
  .table th[scope="row"] { display: block; padding: 0 0 6px; font-family: Outfit, sans-serif; font-size: 1.05rem; }
  .table td::before { content: attr(data-label); font-size: .875rem; color: var(--ink-50); }
  .table .num { text-align: right; }
}

/* 5.10 Akkordeon (natives <details>) */
.acc { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; }
.acc + .acc { margin-top: .75rem; }
.acc > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: 16px 20px;
  font-family: Outfit, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.acc > summary::-webkit-details-marker { display: none; }
.acc > summary::after {
  content: "";
  flex: none;
  width: 1rem; height: 1rem;
  border-right: 2px solid var(--teal-deep);
  border-bottom: 2px solid var(--teal-deep);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--t) var(--ease);
}
.acc[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.acc > summary:hover { background: var(--paper); }
.acc__body { padding: 0 20px 20px; }
.acc__body > :first-child { margin-top: 0; }

/* 5.11 Bild-Galerie */
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gap); }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); }

/* 5.12 Karte / Map */
.map { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--paper); aspect-ratio: 16 / 10; }
.map iframe { width: 100%; height: 100%; border: 0; }

/* 5.13 Prototyp-Banner */
.proto-banner { position: relative; background: var(--navy-800); color: rgba(255, 255, 255, .88); font-size: .8125rem; line-height: 1.45; }
.proto-banner__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 9px 0;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.proto-banner p { margin: 0; flex: 1; }
.proto-banner__close {
  flex: none;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: var(--r-xs);
  font-size: 1.25rem;
  line-height: 1;
}
.proto-banner__close:hover { background: rgba(255, 255, 255, .18); }

/* ---------- 6 · Navigation ----------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--navy-800);
  color: #fff;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; top: 0; color: #fff; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(16px) saturate(1.7);
  -webkit-backdrop-filter: blur(16px) saturate(1.7);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--nav-h);
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand img { width: 44px; height: 44px; border-radius: 10px; }
.brand__name { font-family: Outfit, sans-serif; font-size: 1.15rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.05; }
.brand__sub  { display: block; font-size: .6875rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-50); }

.nav__list { display: none; list-style: none; margin: 0; padding: 0; align-items: center; gap: .15rem; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 44px;
  padding: .55rem .7rem;
  font-size: .96rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  border-radius: var(--r-xs);
  white-space: nowrap;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav__link:hover { background: var(--teal-050); color: var(--teal-800); }
.nav__link[aria-current="page"], .nav__link--active { color: var(--teal-800); font-weight: 600; }
.nav__link[aria-current="page"]::after, .nav__link--active::after {
  content: "";
  position: absolute;
  left: .7rem; right: .7rem;
  bottom: -1px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.nav__caret { width: .55rem; height: .55rem; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor; transform: rotate(45deg) translate(-1px, -1px); opacity: .6; }

.nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 244px;
  padding: 8px;
  list-style: none;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
}
.nav__item:hover > .nav__menu,
.nav__item:focus-within > .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: .5rem .75rem;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  border-radius: var(--r-xs);
}
.nav__menu a:hover { background: var(--teal-050); color: var(--teal-800); }
.nav__menu a[aria-current="page"] { color: var(--teal-800); font-weight: 600; }

.nav__actions { display: none; align-items: center; gap: .5rem; }
.nav__login {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .55rem .7rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink-70);
  text-decoration: none;
  border-radius: var(--r-xs);
}
.nav__login:hover { color: var(--teal-800); background: var(--teal-050); }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 11px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
}
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Liegt als Geschwister von <header class="nav"> im Body, nicht darin:
   der backdrop-filter des Headers wäre sonst der Containing Block und das
   Panel würde auf Headerhöhe zusammenfallen. --panel-top setzt das Skript
   beim Öffnen auf die Unterkante der Navigation. */
.nav__panel {
  position: fixed;
  top: var(--panel-top, var(--nav-h));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 98;
  /* Auf Tablets wird der Inhalt in einer Spalte zentriert statt breitgezogen. */
  padding: 24px max(var(--gutter), calc((100% - 660px) / 2)) 40px;
  background: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
}
.nav__panel[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
.nav__panel ul { list-style: none; margin: 0; padding: 0; }
.nav__panel > nav > ul > li + li { border-top: 1px solid var(--line); }
.nav__panel a {
  display: block;
  min-height: 52px;
  padding: 1rem .25rem;
  font-family: Outfit, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}
.nav__panel a[aria-current="page"] { color: var(--teal-800); }
.nav__panel .sub { padding: 0 0 .9rem .9rem; border-left: 2px solid var(--teal-100); margin-left: .25rem; }
.nav__panel .sub a { min-height: 44px; font-size: 1rem; font-weight: 400; padding: .5rem 0; color: var(--ink-70); }
.nav__panel .panel-cta { margin-top: 1.75rem; display: grid; gap: .75rem; }
.nav__panel .panel-cta a { padding: 0; }
.nav__panel .panel-contact { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

body.is-locked { overflow: hidden; }

@media (min-width: 1060px) {
  .nav__list, .nav__actions { display: flex; }
  .burger, .nav__panel { display: none; }
}

/* ---------- 7 · Sektionen ------------------------------------------------ */

/* 7.1 Hero */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(78vh, 720px);
  background: var(--navy-800);
  overflow: hidden;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 68% 42%; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 28, .92) 0%, rgba(11, 18, 28, .68) 42%, rgba(11, 18, 28, .18) 78%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(36px, 6vw, 72px); }
.hero__content { max-width: 680px; }
.hero__kicker {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
  color: var(--peach);
  margin-bottom: .6rem;
}
.hero .display { color: #fff; margin-bottom: .3em; }
.hero__sub2 {
  font-family: Inter, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 1rem;
}
.hero__sub { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.55; color: rgba(255, 255, 255, .94); margin-bottom: 1.75rem; max-width: 52ch; }
.hero__badges { margin-bottom: 1.4rem; }
.hero__cta { gap: .85rem; }

@media (min-width: 1000px) {
  .hero { align-items: center; min-height: min(86vh, 760px); }
  .hero::after {
    background: linear-gradient(100deg, rgba(11, 18, 28, .94) 0%, rgba(11, 18, 28, .84) 34%, rgba(11, 18, 28, .42) 58%, rgba(11, 18, 28, 0) 82%);
  }
}

/* Seitenkopf für Unterseiten */
.pagehead { position: relative; background: var(--navy); overflow: hidden; }
.pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 88% 10%, rgba(60, 176, 156, .45) 0%, rgba(60, 176, 156, 0) 58%);
}
.pagehead__inner { position: relative; z-index: 2; padding-block: clamp(44px, 6.5vw, 88px); }
.pagehead h1 { color: #fff; max-width: 20ch; }
.pagehead .lead { color: rgba(255, 255, 255, .88); max-width: 60ch; }
.pagehead__sub {
  font-family: Inter, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  margin: 0 0 1.1rem;
}
.pagehead .badge { margin-bottom: 1.1rem; }

.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 1rem; padding: 0; list-style: none; font-size: .8125rem; color: rgba(255, 255, 255, .78); }
.crumbs a { color: rgba(255, 255, 255, .88); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; opacity: .6; }

/* 7.2 Trust-Strip direkt unter dem Hero */
.trust-strip { background: var(--teal-deep); color: #fff; }
.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .24);
}
@media (min-width: 600px)  { .trust-strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .trust-strip__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .trust-strip__grid { grid-template-columns: repeat(6, 1fr); } }

.trust-strip__item {
  display: flex;
  gap: .75rem;
  padding: 20px clamp(14px, 1.6vw, 20px);
  background: var(--teal-deep);
}
.trust-strip__item .ico { width: 1.35rem; height: 1.35rem; margin-top: .1rem; color: #fff; opacity: .95; }
.trust-strip__k { display: block; font-family: Outfit, sans-serif; font-size: .975rem; font-weight: 600; line-height: 1.25; }
.trust-strip__v { display: block; margin-top: .25rem; font-size: .8125rem; line-height: 1.4; color: rgba(255, 255, 255, .92); }

/* 7.3 Vertrauens-/Logo-Zeile */
.trustrow { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px, 2vw, 28px); }
.trustrow img { width: 84px; height: 84px; border-radius: var(--r); flex: none; }
.trustrow p { flex: 1 1 220px; }

/* 7.4 Designte Momente für die Alleinstellungsmerkmale */
.moment { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.moment__media { position: relative; aspect-ratio: 16 / 10; }
.moment__media img { width: 100%; height: 100%; object-fit: cover; }
.moment--peach { background: var(--peach-050); border: 1px solid #F5DCBE; }
.moment__body { padding: clamp(24px, 3vw, 40px); }
.moment__time {
  font-family: Outfit, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--peach-700);
}

/* 7.5 Team-Raster */
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 24px); list-style: none; margin: 0; padding: 0; }
@media (min-width: 620px)  { .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px)  { .team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1180px) { .team-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
@media (min-width: 1560px) { .team-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.team-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(12px, 1.4vw, 18px); list-style: none; margin: 0; padding: 0; }
@media (min-width: 520px) { .team-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.member p { margin: 0; }
.member__photo {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal-050), var(--navy-050));
  margin-bottom: .7rem;
}
.member__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  transition: transform var(--t-slow) var(--ease);
}
.member:hover .member__photo img { transform: scale(1.03); }

/* Kachel für Teammitglieder ohne Foto: bewusst gestaltet, nicht leer.
   Zwei Initialen, weicher Teal-Verlauf, dezentes Punktraster. */
.member__photo--tile {
  background:
    radial-gradient(circle at 1px 1px, rgba(20, 69, 62, .13) 1px, transparent 1.6px) 0 0 / 12px 12px,
    linear-gradient(155deg, var(--teal-050), var(--teal-100));
  border: 1px solid var(--teal-100);
}
.member:nth-child(3n+2) .member__photo--tile {
  background:
    radial-gradient(circle at 1px 1px, rgba(31, 56, 86, .12) 1px, transparent 1.6px) 0 0 / 12px 12px,
    linear-gradient(155deg, var(--navy-050), #DCE6F3);
}
.member:nth-child(3n+3) .member__photo--tile {
  background:
    radial-gradient(circle at 1px 1px, rgba(138, 86, 32, .12) 1px, transparent 1.6px) 0 0 / 12px 12px,
    linear-gradient(155deg, var(--peach-050), #F9E3CA);
}
.member__initial {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--teal-800);
  transition: transform var(--t-slow) var(--ease);
}
.member:nth-child(3n+2) .member__photo--tile .member__initial { color: var(--navy); }
.member:nth-child(3n+3) .member__photo--tile .member__initial { color: var(--peach-700); }
.member:hover .member__initial { transform: scale(1.06); }
.member__name { font-family: Outfit, sans-serif; font-size: 1rem; font-weight: 600; line-height: 1.2; }
.member__role { font-size: .8125rem; line-height: 1.35; color: var(--ink-50); margin-top: .15rem; overflow-wrap: anywhere; }

.filterbar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(24px, 3vw, 36px); }
.filterbar button {
  min-height: 44px;
  padding: .5rem 1.05rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-70);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  transition: background-color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.filterbar button:hover { border-color: var(--teal-deep); color: var(--teal-800); }
.filterbar button[aria-pressed="true"] { background: var(--teal-deep); border-color: var(--teal-deep); color: #fff; }

/* 7.6 Ablauf-Schritte */
.steps { display: grid; gap: var(--gap); }
@media (min-width: 900px) { .steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .steps--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* 7.7 Kostenrechner */
.calc { display: grid; gap: var(--gap); }
@media (min-width: 900px) { .calc { grid-template-columns: 7fr 5fr; align-items: start; } }

.calc__panel { padding: clamp(22px, 2.6vw, 32px); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.calc__row { display: grid; gap: .75rem; }
@media (min-width: 560px) { .calc__row { grid-template-columns: 1fr 1fr; } }

.segmented { display: inline-flex; justify-self: start; padding: 4px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-sm); gap: 4px; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .5rem 1.15rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink-70);
  border-radius: var(--r-xs);
  cursor: pointer;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.segmented input:checked + label { background: var(--teal-deep); color: #fff; box-shadow: var(--shadow-sm); }
.segmented input:focus-visible + label { outline: 2px solid var(--teal-700); outline-offset: 2px; }

.weekgrid { display: grid; gap: .75rem; }
@media (min-width: 560px) { .weekgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .weekgrid { grid-template-columns: 1fr; } }
.weekgrid .field { display: grid; grid-template-columns: 5.5rem 1fr; align-items: center; gap: .75rem; }
.weekgrid .label { margin: 0; }

.calc__result {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  padding: clamp(24px, 2.8vw, 34px);
  background: var(--navy);
  border-radius: var(--r-lg);
  color: #fff;
}
.calc__figure { font-family: Outfit, sans-serif; font-size: clamp(2.4rem, 4.4vw, 3.2rem); font-weight: 600; line-height: 1; letter-spacing: -.03em; }
.calc__figure span { font-size: .42em; font-weight: 500; letter-spacing: 0; color: rgba(255, 255, 255, .85); }
.calc__k { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .8); }
.calc__divider { height: 1px; background: rgba(255, 255, 255, .28); margin-block: 1.4rem; }

/* 7.8 Abschluss-CTA */
.cta-panel { position: relative; overflow: hidden; }
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 96% 8%, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, 0) 55%);
}
.cta-panel > * { position: relative; z-index: 2; }

/* ---------- 8 · Formulare ------------------------------------------------ */
.form { display: grid; gap: 1.1rem; }
.form__grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form__grid--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.label .req { color: var(--teal-800); }
.hint { font-size: .8125rem; color: var(--ink-50); }

.input, select.input, textarea.input {
  width: 100%;
  min-height: 48px;
  padding: .8rem 1rem;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  appearance: none;
}
textarea.input { min-height: 130px; resize: vertical; }
select.input {
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23666E80' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
.input:focus {
  outline: 2px solid var(--teal-700);
  outline-offset: 1px;
  border-color: var(--teal-deep);
  box-shadow: none;
}
.input::placeholder { color: #737B8C; }

.choice { display: flex; align-items: flex-start; gap: .65rem; min-height: 44px; padding-block: .5rem; font-size: .975rem; line-height: 1.45; cursor: pointer; }
.choice input { width: 1.25rem; height: 1.25rem; margin: .15rem 0 0; accent-color: var(--teal-deep); flex: none; }

.radiocards { display: grid; gap: .6rem; }
@media (min-width: 560px) { .radiocards--3 { grid-template-columns: repeat(3, 1fr); } .radiocards--2 { grid-template-columns: repeat(2, 1fr); } }
.radiocards label {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-height: 48px;
  padding: .8rem 1rem;
  font-size: .95rem;
  font-weight: 500;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.radiocards label:hover { border-color: var(--teal-deep); }
.radiocards input { width: 1.15rem; height: 1.15rem; accent-color: var(--teal-deep); flex: none; }
.radiocards label:has(input:checked) { border-color: var(--teal-deep); background: var(--teal-050); }
.radiocards label:has(input:checked) span { font-weight: 600; color: var(--teal-800); }

.form__aside { padding: clamp(22px, 2.6vw, 30px); background: var(--teal-050); border: 1px solid var(--teal-100); border-radius: var(--r-lg); }
.form__promise { display: flex; align-items: center; gap: .5rem; font-size: .95rem; font-weight: 600; color: var(--teal-800); }
.section--teal .form__promise, .on-dark .form__promise { color: #fff; }

.form__msg {
  display: none;
  align-items: flex-start;
  gap: .7rem;
  padding: 1rem 1.15rem;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--navy-700);
  background: var(--navy-050);
  border: 1px solid #D1DCEC;
  border-left: 4px solid var(--navy);
  border-radius: var(--r-sm);
}
.form__msg[data-shown="true"] { display: flex; }

fieldset { margin: 0; padding: 0; border: 0; }
legend { padding: 0; font-family: Outfit, sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: .8rem; }

/* ---------- 9 · Footer --------------------------------------------------- */
.footer { background: var(--navy-800); color: rgba(255, 255, 255, .82); font-size: .9375rem; }
.footer a { color: rgba(255, 255, 255, .9); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer h3 {
  font-family: Inter, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .66);
  margin-bottom: 1.1rem;
}
.footer__top { padding-block: clamp(48px, 6vw, 80px); }
.footer__grid { display: grid; gap: clamp(32px, 4vw, 48px); }
@media (min-width: 700px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }

.footer__brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; text-decoration: none; }
.footer__brand img { width: 48px; height: 48px; border-radius: 10px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: rgba(255, 255, 255, .66); }

.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.footer .factlist .ico { color: var(--teal); }
.footer .factlist .k { color: rgba(255, 255, 255, .66); }
.footer .hours .d { color: rgba(255, 255, 255, .66); }
.footer .hours .t--late { color: var(--peach); }
.footer li a { display: inline-flex; align-items: center; min-height: 44px; }

.footer__social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--r-sm);
  transition: background-color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.footer__social a:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.footer__social svg { width: 20px; height: 20px; }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .16); padding-block: 20px; font-size: .8125rem; }
.footer__bottom .wrap { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; justify-content: space-between; }
.footer .footer__legal { display: flex; flex-wrap: wrap; gap: .2rem 1.25rem; margin: 0; padding: 0; list-style: none; }
.footer__bottom .wrap > p { flex: 1 1 320px; margin: 0; }

/* ---------- 10 · Utilities ----------------------------------------------- */
.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;
}
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1.5rem; }
.full { width: 100%; }
.nowrap { white-space: nowrap; }
