/* ==========================================================================
   EntrümpelBlitz — Klassisch & Seriös (STANDARDS.md Design-System 2)
   Akzent: gedämpftes Gold #A9822E. Headline: Newsreader. Body: Source Sans 3.
   Radius 2px, dünne Navy-Hairlines, editorialer Deckblatt-Hero.
   ========================================================================== */

/* ---------- Self-hosted Fonts (DSGVO, kein Google-CDN) ---------- */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/newsreader-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/newsreader-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/newsreader-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/newsreader-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-sans-3-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/source-sans-3-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/source-sans-3-latin-700-normal.woff2') format('woff2');
}

/* ---------- Design Tokens ---------- */
:root {
  color-scheme: light;

  --bg: #F5F1E8;          /* Creme */
  --surface: #FBF8F1;     /* leicht hellere Karte auf Creme */
  --surface-2: #EFE9DB;   /* abgesetzte Fläche */
  --ink: #1B2A41;         /* Navy — Text & Headlines */
  --muted: #4C566A;       /* Sekundärtext auf Creme (~6:1) */
  --hairline: rgba(27, 42, 65, .14);   /* dünne Navy-Trennlinie */
  --hairline-strong: rgba(27, 42, 65, .30);

  --accent: #A9822E;      /* gedämpftes Gold — Flächen/Deko */
  --accent-deep: #8C6A22; /* dunkleres Gold für Hover-Flächen */
  --accent-ink: #6F5518;  /* Gold als Text/Link auf Creme (~5:1) */
  --accent-wash: #EFE6D2; /* sehr helle Goldfläche */
  --accent-line: rgba(169, 130, 46, .38);
  --accent-on-dark: #D9B25E;  /* Gold auf Navy */

  --footer-bg: #16223A;   /* tiefes Navy */
  --footer-ink: #E7E3D8;
  --footer-muted: #A6AEBF;

  --danger: #9E2B16;
  --danger-wash: #F7E7E2;
  --danger-line: #D8A99D;

  --radius: 2px;
  --radius-img: 3px;
  --container: 1320px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  /* Schatten nur für schwebende Ebenen (Menüs/Dialoge): echter Offset + Blur */
  --shadow-pop: 0 12px 34px rgba(22, 34, 58, .18);
  --shadow-card: 0 1px 0 rgba(27, 42, 65, .04);

  --step--1: clamp(0.84rem, 0.81rem + 0.14vw, 0.92rem);
  --step-0: clamp(1.02rem, 0.98rem + 0.2vw, 1.1rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.42rem);
  --step-2: clamp(1.5rem, 1.32rem + 0.85vw, 2rem);
  --step-3: clamp(1.95rem, 1.6rem + 1.6vw, 2.95rem);
  --step-4: clamp(2.5rem, 1.85rem + 3.1vw, 4.5rem);

  --ease: cubic-bezier(.22, .61, .3, 1);
  --dur: .5s;
}

/* ---------- Kontrast-Modus (a11y-Menü) ---------- */
html[data-contrast='high'] {
  --bg: #FFFDF7;
  --surface: #FFFFFF;
  --surface-2: #F1ECDF;
  --ink: #10192B;
  --muted: #2C3547;
  --hairline: rgba(16, 25, 43, .34);
  --hairline-strong: rgba(16, 25, 43, .55);
  --accent-ink: #5A4310;
  --accent-wash: #EDE1C6;
}

/* ---------- Schriftgröße-Stufen (a11y-Menü) ---------- */
html[data-fontscale='1'] { font-size: 112.5%; }
html[data-fontscale='2'] { font-size: 125%; }

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

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--step-0);
  line-height: 1.68;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p { text-wrap: pretty; overflow-wrap: anywhere; }

em, .accent-italic { font-style: italic; }

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

a { color: var(--accent-ink); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { text-decoration-color: var(--accent); }

ul, ol { padding: 0; list-style: none; }

/* ---------- Focus (WCAG) ---------- */
:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Helpers ---------- */
.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;
}
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 68ch; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.text-muted { color: var(--muted); }
.lead { font-size: var(--step-1); color: var(--muted); line-height: 1.6; max-width: 70ch; }

/* Eyebrow mit dünner Linie darüber (editorialer Stil) */
.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: var(--step--1);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-block;
}
.section-head { max-width: 52rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: .2rem; }

/* Skip-Link */
.skip-link {
  position: fixed; top: .6rem; left: .6rem; z-index: 200;
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: var(--radius);
  transform: translateY(-160%); transition: transform .2s var(--ease); text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: 'Source Sans 3', sans-serif; font-weight: 600; font-size: var(--step-0);
  line-height: 1; padding: .92rem 1.5rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  min-height: 48px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), transform .15s var(--ease);
}
.btn svg { width: 1.2em; height: 1.2em; flex: none; }
.btn-primary { background: var(--accent); color: #211a08; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.btn-secondary:hover { border-color: var(--ink); background: var(--surface); }
.btn-ghost { background: transparent; color: var(--accent-ink); padding-inline: .2rem; min-height: 0; }
.btn-ghost:hover { color: var(--ink); }
.btn-block { width: 100%; }
@media (hover: hover) { .btn:active { transform: translateY(1px); } }

/* Textlink mit Pfeil */
.link-arrow {
  font-family: 'Source Sans 3', sans-serif; font-weight: 600;
  color: var(--accent-ink); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem;
}
.link-arrow svg { width: 1em; height: 1em; transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: saturate(1.2) blur(7px);
  border-bottom: 1px solid var(--hairline);
}
@supports not (backdrop-filter: blur(1px)) { .site-header { background: var(--bg); } }
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; text-decoration: none; }
/* Logo-Tafel: dunkles Original-Logo bewusst als gerahmte Marke auf Creme */
.brand img {
  height: 46px; width: auto; border-radius: var(--radius);
  border: 1px solid var(--hairline-strong);
}
.primary-nav ul { display: flex; align-items: center; gap: .1rem; }
.primary-nav a {
  display: inline-block; padding: .55rem .78rem; border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif; font-weight: 600; font-size: .98rem;
  color: var(--ink); text-decoration: none; position: relative;
}
.primary-nav a:hover { background: var(--surface-2); }
.primary-nav a[aria-current='page'] { color: var(--accent-ink); }
.primary-nav a[aria-current='page']::after {
  content: ''; position: absolute; left: .78rem; right: .78rem; bottom: .3rem; height: 2px; background: var(--accent);
}
.header-cta { display: flex; align-items: center; gap: .5rem; margin-left: .3rem; }
.tel-btn { white-space: nowrap; }
.tel-btn svg { width: 1.3em; height: 1.3em; }

/* Mobile nav */
.nav-toggle { display: none; }
.primary-nav .nav-cta, .primary-nav .nav-contact { display: none; }
@media (max-width: 920px) {
  .header-cta .btn-text { display: none; }
  .site-header { background: var(--bg); backdrop-filter: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
    width: 48px; height: 48px; padding: 0 12px; background: transparent;
    border: 1px solid var(--hairline-strong); border-radius: var(--radius); cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
  .nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed; inset: 74px 0 auto 0; background: var(--bg);
    border-bottom: 1px solid var(--hairline);
    max-height: calc(100dvh - 74px); overflow: auto;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s var(--ease);
  }
  .primary-nav.open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem var(--gutter) 1.5rem; }
  .primary-nav a { display: block; padding: .98rem .4rem; border-bottom: 1px solid var(--hairline); border-radius: 0; }
  .primary-nav a[aria-current='page']::after { display: none; }
  .primary-nav .nav-cta { display: flex; align-items: center; justify-content: center; gap: .55rem; margin: 1.1rem var(--gutter) .2rem; padding: .95rem 1.2rem; min-height: 50px; background: var(--accent); color: #211a08; font-weight: 700; text-decoration: none; }
  .primary-nav .nav-cta svg { width: 1.2em; height: 1.2em; flex: none; }
  .primary-nav .nav-contact { display: block; text-align: center; margin: .2rem var(--gutter) .4rem; font-size: var(--step--1); color: var(--muted); }
  .primary-nav .nav-contact a { color: var(--accent-ink); font-weight: 600; }
}
@media (max-width: 460px) {
  .header-inner { gap: .55rem; }
  .brand img { height: 38px; }
  .nav-toggle { width: 44px; height: 44px; padding: 0 11px; }
  .tel-btn { font-size: .95rem; padding: .62rem .95rem; }
  .tel-btn .tel-ico { display: none; }
}

/* ---------- Hero (editorial / Deckblatt) ---------- */
.hero { padding-block: clamp(2.5rem, 5vw, 4.2rem) clamp(2.5rem, 5vw, 4rem); }
.hero-head { max-width: 22ch; }
.hero .eyebrow { margin-bottom: 1.4rem; }
.hero h1 { margin-bottom: 0; }
.hero h1 .soft { color: var(--accent-ink); font-style: italic; font-weight: 400; }
.hero-lede {
  display: grid; gap: 1.6rem; align-items: end; margin-top: 1.6rem;
  border-top: 1px solid var(--hairline); padding-top: 1.6rem;
}
@media (min-width: 820px) { .hero-lede { grid-template-columns: 1.15fr .85fr; gap: 3rem; } }
.hero-lede .lead { margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-actions .btn { flex: 1 1 auto; }
@media (min-width: 560px) { .hero-actions .btn { flex: 0 0 auto; } }
.hero-media { position: relative; margin-top: clamp(2rem, 4vw, 3rem); }
.hero-media img {
  width: 100%; aspect-ratio: 16 / 8; object-fit: cover;
  border-radius: var(--radius-img); filter: saturate(.92) contrast(1.02);
}
.hero-caption {
  position: absolute; left: 0; bottom: 0; max-width: min(90%, 32rem);
  background: var(--bg); border-top: 2px solid var(--accent);
  padding: 1rem 1.3rem; display: flex; align-items: center; gap: .8rem;
}
.hero-caption svg { width: 1.5rem; height: 1.5rem; color: var(--accent-ink); flex: none; }
.hero-caption b { font-family: 'Newsreader', serif; font-weight: 600; display: block; font-size: 1.02rem; }
.hero-caption span { font-size: var(--step--1); color: var(--muted); }
@media (max-width: 560px) {
  .hero-media img { aspect-ratio: 3 / 2; }
  .hero-caption { position: static; max-width: none; border-top: none; border-left: 2px solid var(--accent); }
}

/* Vertrauens-Reihe */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; margin-top: 2rem;
  padding-top: 1.6rem; border-top: 1px solid var(--hairline);
}
.trust-row div { display: flex; align-items: center; gap: .6rem; font-size: .98rem; color: var(--ink); }
.trust-row svg { width: 1.3rem; height: 1.3rem; color: var(--accent-ink); flex: none; }
.trust-row b { font-family: 'Source Sans 3', sans-serif; font-weight: 700; }

/* ---------- Fotografischer Hero auf Mobil (Transporter + Team, helle Variante) ---------- */
@media (max-width: 839px) {
  .hero { position: relative; overflow: hidden; background-color: var(--bg);
    padding-block: clamp(2.2rem, 6vw, 3rem) clamp(2.6rem, 8vw, 3.6rem); margin-top: 0; }
  .hero::before { content: ''; position: absolute; inset: 0; z-index: 0;
    background-image: url('../img/hero-bg-1080.jpg');
    background-image: -webkit-image-set(url('../img/hero-bg-1080.webp') type('image/webp'), url('../img/hero-bg-1080.jpg') type('image/jpeg'));
    background-image: image-set(url('../img/hero-bg-1080.webp') type('image/webp'), url('../img/hero-bg-1080.jpg') type('image/jpeg'));
    background-size: cover; background-position: 50% 30%; }
  .hero::after { content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(245,241,232,.93) 0%, rgba(245,241,232,.82) 50%, rgba(245,241,232,.9) 100%); }
  .hero > .container { position: relative; z-index: 2; }
  .hero-media { display: none; }
}

/* ---------- Leistungs-Index (Startseite) ---------- */
.svc-index { display: grid; border-top: 1px solid var(--hairline); }
@media (min-width: 700px) { .svc-index { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 4vw, 3.5rem); } }
.svc-index-item {
  display: block; padding: 1.6rem .2rem 1.5rem; border-bottom: 1px solid var(--hairline);
  text-decoration: none; color: inherit;
}
.svc-index-top { display: flex; align-items: center; gap: .8rem; margin-bottom: .5rem; }
.svc-index-ico { width: 1.7rem; height: 1.7rem; color: var(--accent-ink); flex: none; }
.svc-index-ico svg { width: 100%; height: 100%; }
.svc-index-item h3 { font-size: var(--step-1); }
.svc-index-item:hover h3 { color: var(--accent-ink); }
.svc-index-item p { color: var(--muted); font-size: .98rem; max-width: 48ch; }
.svc-index-more { display: inline-flex; align-items: center; gap: .4rem; margin-top: .9rem; font-weight: 600; font-size: .93rem; color: var(--accent-ink); }
.svc-index-more svg { width: 1em; height: 1em; transition: transform var(--dur) var(--ease); }
.svc-index-item:hover .svc-index-more svg { transform: translateX(3px); }

/* ---------- Split feature (Bild + Text) ---------- */
.split { display: grid; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 840px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse .split-media { order: 2; } }
@media (max-width: 839px) { .hide-mobile { display: none; } }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-img); filter: saturate(.92); }
.split-list { display: grid; gap: .9rem; margin-top: 1.6rem; }
.split-list li { display: flex; gap: .7rem; align-items: flex-start; }
.split-list svg { width: 1.3rem; height: 1.3rem; color: var(--accent-ink); flex: none; margin-top: .2rem; }
.split-body h2 { margin-bottom: 1rem; }
.split-body .lead { margin-bottom: 1.1rem; }

/* ---------- Zahlen-/Zitat-Band (dunkel) ---------- */
.band { background: var(--footer-bg); color: var(--footer-ink); }
.band .container { padding-block: clamp(3.5rem, 8vw, 6rem); }
.band .eyebrow { color: var(--accent-on-dark); }
.band h2 { color: #fff; }
.band-top { display: grid; gap: clamp(1.4rem, 4vw, 3.5rem); }
@media (min-width: 820px) { .band-top { grid-template-columns: 0.9fr 1.1fr; align-items: center; } }
.band-quote { font-family: 'Newsreader', serif; font-style: italic; font-weight: 400; font-size: var(--step-2); line-height: 1.2; color: #fff; margin: 0; }
.band-lead { color: var(--footer-ink); font-size: var(--step-0); line-height: 1.6; max-width: 62ch; }
.band-stats { display: grid; gap: 1.6rem 2.4rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); margin-top: 2.8rem; padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,.14); }
.band-stats b { font-family: 'Newsreader', serif; font-weight: 600; font-size: var(--step-3); display: block; color: var(--accent-on-dark); line-height: 1; }
.band-stats span { color: var(--footer-muted); font-size: var(--step--1); display: block; margin-top: .5rem; }

/* ---------- Leistungen: Gruppen + Faktenblöcke ---------- */
.svc-group { border-top: 1px solid var(--hairline-strong); padding-top: clamp(2rem, 4vw, 3rem); }
.svc-group + .svc-group { margin-top: clamp(2.6rem, 5vw, 4.2rem); }
.svc-layout { display: grid; gap: clamp(1.6rem, 4vw, 3rem); }
@media (min-width: 900px) { .svc-layout { grid-template-columns: .95fr 1.05fr; align-items: start; } .svc-layout.reverse .svc-media { order: 2; } }
.svc-media { position: relative; }
.svc-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-img); filter: saturate(.9); }
.svc-num { font-family: 'Newsreader', serif; font-size: var(--step--1); color: var(--accent-ink); letter-spacing: .1em; }
.svc-body h2 { font-size: var(--step-2); margin: .5rem 0 .9rem; }
.svc-body > p { color: var(--muted); }
.fakten {
  margin-top: 1.5rem; border: 1px solid var(--hairline); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
}
.fakten dl { display: grid; }
@media (min-width: 560px) { .fakten dl { grid-template-columns: repeat(3, 1fr); } }
.fakten div { padding: 1rem 1.2rem; border-bottom: 1px solid var(--hairline); }
@media (min-width: 560px) { .fakten div { border-bottom: none; border-right: 1px solid var(--hairline); } .fakten div:last-child { border-right: none; } }
.fakten div:last-child { border-bottom: none; }
.fakten dt { font-family: 'Source Sans 3', sans-serif; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: .35rem; }
.fakten dd { font-size: .96rem; color: var(--ink); }
.svc-includes { display: grid; gap: .75rem 1.4rem; margin: 1.5rem 0 .2rem; }
@media (min-width: 480px) { .svc-includes { grid-template-columns: 1fr 1fr; } }
.svc-includes li { display: flex; gap: .6rem; align-items: flex-start; font-size: .98rem; line-height: 1.45; }
.svc-includes svg { width: 1.2rem; height: 1.2rem; color: var(--accent-ink); flex: none; margin-top: .18rem; }
.svc-cta { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }

/* Kosten-Hinweis */
.note-card {
  border: 1px solid var(--accent-line); background: var(--accent-wash); border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
.note-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.note-card p { color: var(--ink); font-size: .97rem; }
.note-card p + p { margin-top: .6rem; }

/* ---------- FAQ — Akkordeon ---------- */
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--hairline); }
@media (min-width: 760px) { .faq-list { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 4vw, 3.5rem); } }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; padding: 1.25rem .2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h2 { font-family: 'Newsreader', serif; font-weight: 600; font-size: 1.14rem; line-height: 1.3; margin: 0; }
.faq-item summary:hover h2 { color: var(--accent-ink); }
.faq-item summary:focus-visible { outline: 3px solid var(--accent-deep); outline-offset: -2px; }
.faq-chev { width: 1.3rem; height: 1.3rem; color: var(--accent-ink); flex: none; transition: transform .35s var(--ease); }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-item[open] .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { color: var(--muted); font-size: .99rem; margin: 0 0 1.15rem; max-width: 66ch; }
.faq-a p + p { margin-top: .8rem; }

/* ---------- Über uns / Werte ---------- */
.value-grid { display: grid; gap: 1.8rem 2rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.value-list { display: grid; gap: 2rem 2.4rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.value-item { border-top: 2px solid var(--accent); padding-top: 1rem; }
.value-item h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.value-item p { color: var(--muted); }
.value h3 { display: flex; align-items: center; gap: .65rem; font-size: var(--step-1); margin-bottom: .55rem; }
.value h3 svg { width: 1.55rem; height: 1.55rem; color: var(--accent-ink); flex: none; }
.value p { color: var(--muted); }

/* ---------- Ablauf: nummerierte Schritte ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 2rem 2.2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.step { border-top: 2px solid var(--accent); padding-top: 1rem; }
.step-n { display: block; font-family: 'Newsreader', serif; font-weight: 600; font-size: var(--step-3); line-height: 1; color: var(--accent-ink); margin-bottom: .55rem; }
.step h3 { font-size: var(--step-1); margin-bottom: .45rem; }
.step p { color: var(--muted); font-size: .97rem; }

.about-figure { position: relative; }
.about-figure img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius-img); filter: saturate(.9) sepia(.06); }
.about-figure figcaption { font-size: var(--step--1); color: var(--muted); margin-top: .6rem; font-style: italic; }

.stat-row { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); margin-top: 2rem; }
.stat-row .stat { border-top: 2px solid var(--accent); padding-top: .7rem; }
.stat-row b { font-family: 'Newsreader', serif; font-weight: 600; font-size: var(--step-2); display: block; line-height: 1; }
.stat-row span { font-size: var(--step--1); color: var(--muted); }

/* ---------- Galerie + Lightbox ---------- */
.gallery { display: grid; gap: .8rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 680px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  margin: 0; padding: 0; border: 1px solid var(--hairline); border-radius: var(--radius-img);
  overflow: hidden; background: var(--surface-2); cursor: zoom-in; position: relative;
  aspect-ratio: 4 / 3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem .9rem .7rem;
  font-size: var(--step--1); color: #fff;
  background: linear-gradient(to top, rgba(16,22,34,.72), rgba(16,22,34,0));
}
/* Platzhalter-Kachel (eigene Fotos folgen) */
.gallery-item.ph { cursor: default; display: grid; place-items: center; text-align: center; padding: 1.2rem;
  background: repeating-linear-gradient(45deg, var(--surface-2) 0 14px, #e7e0d0 14px 28px); }
.gallery-item.ph .ph-inner { display: grid; gap: .5rem; justify-items: center; color: var(--muted); }
.gallery-item.ph svg { width: 30px; height: 30px; color: var(--hairline-strong); }
.gallery-item.ph b { font-family: 'Newsreader', serif; font-weight: 600; color: var(--ink); font-size: .98rem; }
.gallery-item.ph span { font-size: .8rem; }

.lightbox { position: fixed; inset: 0; z-index: 190; display: none; place-items: center; padding: clamp(1rem, 4vw, 3rem); background: rgba(12, 18, 30, .88); }
.lightbox[data-open='true'] { display: grid; }
.lightbox figure { margin: 0; max-width: 1000px; width: 100%; }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius-img); }
.lightbox figcaption { color: #E7E3D8; text-align: center; margin-top: .9rem; font-size: .95rem; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(245,241,232,.12); border: 1px solid rgba(245,241,232,.3);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-close svg, .lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(245,241,232,.24); }
@media (max-width: 560px) { .lightbox-nav { top: auto; bottom: 1rem; transform: none; } .lightbox-nav.prev { left: calc(50% - 3.4rem); } .lightbox-nav.next { right: calc(50% - 3.4rem); } }

/* ---------- Kontakt / Formular ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1.1fr .9fr; align-items: start; } }
.form-card {
  background: var(--surface); border: 1px solid var(--hairline-strong); border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.3rem);
}
.form-card h2 { font-size: var(--step-2); margin-bottom: 1.3rem; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: 'Source Sans 3', sans-serif; font-weight: 600; font-size: .95rem; margin-bottom: .4rem; }
.field .req { color: var(--accent-ink); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--bg);
  border: 1px solid var(--hairline-strong); border-radius: var(--radius); padding: .8rem .9rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-deep); box-shadow: 0 0 0 3px var(--accent-wash);
}
.field input[aria-invalid='true'], .field textarea[aria-invalid='true'], .field select[aria-invalid='true'] { border-color: var(--danger); }
.field .err { color: var(--danger); font-size: var(--step--1); margin-top: .35rem; display: none; }
.field.invalid .err { display: block; }
.two-col { display: grid; gap: 1.15rem; }
@media (min-width: 560px) { .two-col { grid-template-columns: 1fr 1fr; } }
.consent { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: 1.3rem; }
.consent input { width: 1.25rem; height: 1.25rem; margin-top: .15rem; flex: none; accent-color: var(--accent-deep); }
.consent label { font-size: .93rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: var(--step--1); color: var(--muted); margin-top: 1rem; }
.form-note a { color: var(--accent-ink); font-weight: 600; }
.field-hint { font-size: var(--step--1); color: var(--muted); margin: -.5rem 0 1.15rem; }
.field-hint.hint-error { color: var(--danger); }
.form-status { border-radius: var(--radius); padding: .95rem 1.1rem; margin-bottom: 1.3rem; font-size: .97rem; display: none; }
.form-status.ok { display: block; background: var(--accent-wash); border: 1px solid var(--accent-line); color: #4a3a12; }
.form-status.bad { display: block; background: var(--danger-wash); border: 1px solid var(--danger-line); color: #6e2013; }
.form-status.pending { display: block; background: var(--surface-2); border: 1px solid var(--hairline-strong); color: var(--muted); }

/* Kontakt-Aside */
.contact-aside { display: grid; gap: 0; }
.contact-line { display: flex; gap: .9rem; align-items: flex-start; padding: 1.15rem 0; border-bottom: 1px solid var(--hairline); }
.contact-aside > .contact-line:first-child { padding-top: 0; }
.contact-line svg { width: 1.4rem; height: 1.4rem; color: var(--accent-ink); flex: none; margin-top: .15rem; }
.contact-line a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-line a:hover { color: var(--accent-ink); }
.contact-line .lbl { display: block; font-size: var(--step--1); color: var(--muted); font-weight: 400; margin-bottom: .1rem; }
.contact-line .val-lg { font-size: 1.14rem; }
.contact-line time, .contact-line .plain { font-variant-numeric: tabular-nums; }

/* ---------- Karte (Leaflet, 2-Klick-Consent) ---------- */
.map-addr-link {
  display: inline-flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  text-decoration: none; font-size: .96rem; margin-bottom: 1rem;
  padding: .3rem .1rem; border-radius: var(--radius);
}
.map-addr-link .map-addr-ico { width: 1.15rem; height: 1.15rem; color: var(--accent-ink); flex: none; }
.map-addr-link .map-addr-text { color: var(--muted); }
.map-addr-link .map-addr-hint { display: inline-flex; align-items: center; gap: .25rem; font-weight: 600; color: var(--accent-ink); }
.map-addr-link .map-addr-hint svg { width: .9rem; height: .9rem; }
.map-addr-link:hover .map-addr-text { color: var(--ink); }
.map-addr-link:hover .map-addr-hint { text-decoration: underline; text-underline-offset: 2px; }
.map-consent {
  position: relative; border: 1px solid var(--hairline-strong); border-radius: var(--radius-img);
  overflow: hidden; background: var(--surface-2); min-height: 340px;
}
.map-consent .placeholder {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center;
  gap: .9rem; text-align: center; padding: 1.6rem;
}
.map-consent .placeholder p { max-width: 36ch; color: var(--muted); font-size: .95rem; }
.map-consent .placeholder svg { color: var(--accent-ink); }
.map-consent .leaflet-map { width: 100%; height: 100%; min-height: 340px; }
.map-consent[data-loaded='true'] .placeholder { display: none; }
.leaflet-map { z-index: 0; }

/* ---------- Breadcrumb ---------- */
.crumb { padding-top: 1.4rem; }
.crumb ol { display: flex; flex-wrap: wrap; gap: .45rem; font-size: var(--step--1); color: var(--muted); }
.crumb li { display: flex; align-items: center; gap: .45rem; }
.crumb li + li::before { content: '/'; color: var(--hairline-strong); }
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--accent-ink); }
.crumb [aria-current='page'] { color: var(--ink); }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero { padding-block: clamp(1.6rem, 3vw, 2.6rem) clamp(2rem, 4vw, 3rem); }
.page-hero .eyebrow { margin-top: 1.3rem; margin-bottom: 1rem; }
.page-hero h1 { font-size: var(--step-3); margin-top: 1.2rem; }
.page-hero .eyebrow + h1 { margin-top: 0; }
.page-hero .lead { margin-top: 1.1rem; max-width: none; }

/* ---------- CTA-Streifen ---------- */
.cta-strip {
  border: 1px solid var(--hairline-strong); border-top: 3px solid var(--accent);
  background: var(--surface);
  padding: clamp(1.8rem, 4vw, 2.8rem); display: grid; gap: 1.3rem; align-items: center;
}
@media (min-width: 780px) { .cta-strip { grid-template-columns: 1fr auto; gap: 2.5rem; } }
.cta-strip h2 { font-size: var(--step-2); margin-bottom: .5rem; }
.cta-strip p { color: var(--muted); }
.cta-strip .actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-ink); margin-top: clamp(3rem, 6vw, 5rem); }
.footer-top { display: grid; gap: 2.4rem 2rem; padding-block: clamp(2.8rem, 6vw, 4rem); }
@media (min-width: 380px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr; } .footer-brand { grid-column: auto; } }
@media (min-width: 1000px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.site-footer h2 { color: #fff; font-size: .82rem; margin-bottom: 1.1rem; font-family: 'Source Sans 3', sans-serif; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-brand img { height: 52px; width: auto; margin-bottom: 1.1rem; border-radius: var(--radius); }
.footer-brand p { color: var(--footer-muted); font-size: .96rem; max-width: 34ch; }
.footer-loc { font-style: normal; font-size: .95rem; color: var(--footer-muted); line-height: 1.6; }
.footer-loc b { color: var(--footer-ink); font-weight: 600; display: block; margin-bottom: .25rem; }
.footer-loc a { color: var(--footer-muted); text-decoration: none; }
.footer-loc a:hover { color: var(--accent-on-dark); }
.footer-nav a { display: block; padding: .32rem 0; color: var(--footer-muted); text-decoration: none; font-size: .96rem; }
.footer-nav a:hover { color: var(--accent-on-dark); }
.footer-hours { color: var(--footer-muted); font-size: .93rem; line-height: 1.8; font-variant-numeric: tabular-nums; }
.footer-hours dt { color: var(--footer-ink); font-weight: 600; }
.footer-hours .row { display: flex; justify-content: space-between; gap: 1rem; max-width: 15rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: var(--step--1); color: var(--footer-muted);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; }
.footer-bottom a { color: var(--footer-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent-on-dark); }
.footer-bottom button { background: none; border: 0; color: var(--footer-muted); cursor: pointer; font: inherit; padding: 0; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom button:hover { color: var(--accent-on-dark); }
.footer-credit { order: -1; }
.footer-credit a { color: var(--footer-ink); font-weight: 600; }
.footer-credit a:hover { color: var(--accent-on-dark); }

/* ---------- Accessibility-Menü ---------- */
.a11y-fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 150;
  width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--hairline-strong);
  background: var(--surface); color: var(--ink); cursor: pointer; box-shadow: var(--shadow-pop);
  display: grid; place-items: center;
}
.a11y-fab svg { width: 27px; height: 27px; }
.a11y-panel {
  position: fixed; right: 1rem; bottom: 4.8rem; z-index: 151; width: min(300px, calc(100vw - 2rem));
  background: var(--surface); border: 1px solid var(--hairline-strong); border-radius: var(--radius);
  box-shadow: var(--shadow-pop); padding: 1.3rem; display: none;
}
.a11y-panel[data-open='true'] { display: block; }
.a11y-panel h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.a11y-row { margin-bottom: 1.1rem; }
.a11y-row > span { display: block; font-size: var(--step--1); color: var(--muted); margin-bottom: .45rem; }
.a11y-btns { display: flex; gap: .4rem; }
.a11y-btns button {
  flex: 1; padding: .55rem; border: 1px solid var(--hairline-strong); background: var(--bg);
  border-radius: var(--radius); cursor: pointer; font: inherit; font-size: .9rem; color: var(--ink); min-height: 44px;
}
.a11y-btns button[aria-pressed='true'] { background: var(--accent); border-color: var(--accent); color: #211a08; font-weight: 600; }
.a11y-reset { margin-top: .3rem; width: 100%; background: none; border: 0; color: var(--accent-ink); cursor: pointer; font: inherit; font-size: .9rem; text-decoration: underline; text-underline-offset: 3px; padding: .4rem; }

/* ---------- Cookie-Consent ---------- */
.cc-banner {
  position: fixed; inset: auto 1rem 1rem 1rem; z-index: 170; max-width: 460px; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--hairline-strong); border-radius: var(--radius);
  box-shadow: var(--shadow-pop); padding: 1.4rem; display: none;
}
@media (min-width: 560px) { .cc-banner { inset: auto 1.2rem 1.2rem auto; } }
.cc-banner[data-open='true'] { display: block; }
.cc-banner h2 { font-size: 1.15rem; margin-bottom: .5rem; }
.cc-banner p { font-size: .94rem; color: var(--muted); margin-bottom: 1.1rem; }
.cc-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cc-actions .btn { flex: 1 1 auto; padding: .75rem 1rem; font-size: .95rem; }
.cc-more { background: none; border: 0; color: var(--accent-ink); cursor: pointer; font: inherit; font-size: .9rem; text-decoration: underline; text-underline-offset: 3px; margin-top: .9rem; }
.cc-modal { position: fixed; inset: 0; z-index: 180; display: none; place-items: center; padding: 1rem; background: rgba(16, 22, 34, .55); }
.cc-modal[data-open='true'] { display: grid; }
.cc-dialog { background: var(--surface); max-width: 520px; width: 100%; max-height: 90vh; overflow: auto; padding: clamp(1.4rem, 3vw, 2rem); }
.cc-dialog h2 { font-size: var(--step-2); margin-bottom: .4rem; }
.cc-dialog > p { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; }
.cc-cat { border: 1px solid var(--hairline); border-radius: var(--radius); padding: 1.05rem 1.15rem; margin-bottom: .8rem; }
.cc-cat-top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.cc-cat h3 { font-size: 1.02rem; }
.cc-cat p { font-size: .9rem; color: var(--muted); margin-top: .35rem; }
.cc-switch input { width: 1.2rem; height: 1.2rem; accent-color: var(--accent-deep); }
.cc-switch input:disabled { accent-color: var(--hairline-strong); }
.cc-dialog-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }

/* ---------- Scroll-Reveal (ein zurückhaltender Moment) ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
html[data-motion='off'] .reveal { opacity: 1 !important; transform: none !important; transition: none; }
html[data-motion='off'] *, html[data-motion='off'] *::before { animation: none !important; transition: none !important; scroll-behavior: auto !important; }

/* ---------- Prose (Recht) ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: var(--step-1); margin-top: 2.4rem; margin-bottom: .7rem; }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 1.6rem; margin-bottom: .4rem; }
.prose p { color: var(--muted); margin-bottom: 1rem; }
.prose p strong { color: var(--ink); }
.prose a { color: var(--accent-ink); }
.prose-list { display: grid; gap: .4rem; margin: 0 0 1rem; padding-left: 1.2rem; list-style: disc; color: var(--muted); }
.prose-list li { padding-left: .2rem; }
address.prose-addr { font-style: normal; color: var(--ink); }

/* ---------- Utilities ---------- */
.rule { border: 0; border-top: 1px solid var(--hairline); }
.mt-flow > * + * { margin-top: 1.1rem; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem; align-self: flex-start;
  font-size: var(--step--1); font-weight: 600; letter-spacing: .02em;
  color: var(--accent-ink); background: var(--accent-wash); border: 1px solid var(--accent-line);
  padding: .3rem .7rem; border-radius: 100px;
}
.badge svg { width: 1rem; height: 1rem; }
