/* =========================================================================
   WERRES Sonnenschutz — Design-System
   Leitidee "Licht & Schatten": warme Sonne (Gold) + Marken-Rot, geerdet in
   warmen Neutraltönen; helle Sektionen wechseln mit tiefen Schatten-Sektionen.
   ========================================================================= */

:root {
  /* Farben */
  --red: #E2001A;
  --red-deep: #B00E16;
  --gold: #FBBA00;
  --gold-deep: #E3A200;
  --ink: #1C1815;
  --body: #4A423C;
  --muted: #8A7F76;
  --paper: #FDFCFA;
  --sand: #F6F1E9;
  --sand-2: #EFE6D7;
  --line: #E8DFD1;
  --shade: #1E1A17;
  --shade-2: #2A241F;
  --white: #ffffff;

  /* Typo */
  --font-display: 'Archivo', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Maße */
  --container: 1200px;
  --container-narrow: 820px;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(28,24,21,.06);
  --shadow: 0 10px 30px rgba(28,24,21,.10);
  --shadow-lg: 0 24px 60px rgba(28,24,21,.18);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.08; margin: 0 0 .5em; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.35rem, 1.7rem + 2.9vw, 4rem); }
h2 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem); font-weight: 700; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.15rem; }
strong { color: var(--ink); font-weight: 700; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.narrow { max-width: var(--container-narrow); margin-inline: auto; }
.section { padding-block: clamp(60px, 4vw + 42px, 112px); position: relative; }
.section--tint { background: var(--sand); }
.section--tint2 { background: var(--sand-2); }
.section--dark { background: var(--shade); color: #D9CFC4; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--flush-top { padding-top: clamp(40px, 3vw + 20px, 64px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; font-size: .78rem; color: var(--red);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--red); border-radius: 3px; }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: var(--gold); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lead { font-size: clamp(1.12rem, 1rem + .5vw, 1.3rem); color: var(--body); }
.section--dark .lead { color: #C9BEB2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  padding: .92em 1.5em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s;
  line-height: 1; text-align: center;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 8px 22px rgba(251,186,0,.30); }
.btn-primary:hover { background: var(--gold-deep); color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(251,186,0,.42); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; transform: translateY(-2px); }
.btn-lg { font-size: 1.1rem; padding: 1.05em 1.8em; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* ---------- Header ---------- */
.topbar { background: var(--shade); color: #C9BEB2; font-size: .86rem; }
.topbar .container { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; align-items: center; justify-content: space-between; padding-block: 8px; }
.topbar a { color: #E7DED3; display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: var(--gold); }
.topbar .topbar-meta { display: flex; flex-wrap: wrap; gap: .3rem 1.3rem; }
.topbar b { color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(253,252,250,.92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.4rem; padding-block: 12px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand img { height: 50px; width: auto; }
.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .55rem .7rem; border-radius: 8px; position: relative; white-space: nowrap;
}
.nav-links a:hover { color: var(--red); background: var(--sand); }
.nav-links a[aria-current="page"] { color: var(--red); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .2rem; height: 2px; background: var(--red); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.nav-phone:hover { color: var(--red); }
.nav-phone svg { color: var(--red); }
.nav-toggle { display: none; background: var(--ink); border: 0; color: #fff; width: 46px; height: 42px; border-radius: 10px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--shade); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(20,17,15,.90) 0%, rgba(20,17,15,.66) 42%, rgba(20,17,15,.18) 78%, rgba(20,17,15,.05) 100%),
    linear-gradient(0deg, rgba(20,17,15,.55), rgba(20,17,15,0) 40%);
}
.hero .container { position: relative; z-index: 3; }
.hero-inner { max-width: 660px; padding-block: clamp(70px, 9vw, 128px); }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero h1 .accent { color: var(--gold); }
.hero-lead { color: #EBE3D8; font-size: clamp(1.12rem, 1rem + .6vw, 1.35rem); max-width: 34em; margin-bottom: 1.6rem; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero-cta { margin-bottom: 1.9rem; }

/* Sunburst-Signatur */
.sunburst { position: absolute; z-index: 2; pointer-events: none; aspect-ratio: 1; width: 620px;
  background: repeating-conic-gradient(from 0deg, rgba(251,186,0,.16) 0deg 1.3deg, rgba(251,186,0,0) 1.3deg 9deg);
  -webkit-mask: radial-gradient(closest-side, #000 0%, #000 62%, transparent 72%);
          mask: radial-gradient(closest-side, #000 0%, #000 62%, transparent 72%);
  opacity: .8;
}
.hero .sunburst { top: -220px; right: -140px; }

/* Trust-Strip */
.trust-strip { display: flex; flex-wrap: wrap; gap: 1.1rem 1.8rem; align-items: center; }
.trust-item { display: inline-flex; align-items: center; gap: .55rem; font-size: .96rem; color: #EBE3D8; }
.trust-item .stars { color: var(--gold); letter-spacing: .05em; font-size: 1.05rem; }
.trust-item svg { width: 1.2em; height: 1.2em; color: var(--gold); flex: none; }
.trust-item b { color: #fff; }

/* Trust bar (hell, unter Hero) */
.badgebar { border-bottom: 1px solid var(--line); background: var(--paper); }
.badgebar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem; padding-block: 18px; }
.badgebar .badge { display: inline-flex; align-items: center; gap: .6rem; font-size: .95rem; color: var(--body); font-weight: 600; }
.badgebar .badge svg { width: 1.3em; height: 1.3em; color: var(--red); flex: none; }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: clamp(18px, 2vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Kategorie-Karte (bildgeführt) */
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm); isolation: isolate; color: #fff; }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(20,17,15,.86) 4%, rgba(20,17,15,.28) 52%, rgba(20,17,15,.06) 100%); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cat-body { padding: 1.5rem 1.5rem 1.4rem; position: relative; z-index: 1; }
.cat-card h3 { color: #fff; margin-bottom: .3rem; }
.cat-card p { color: #E7DED3; margin: 0; font-size: .98rem; }
.cat-card .cat-more { display: inline-flex; align-items: center; gap: .45rem; margin-top: .9rem; color: var(--gold); font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.cat-card:hover .cat-more { gap: .75rem; }

/* Feature-Karte (Icon + Text, hell) */
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease); height: 100%; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .ic { width: 52px; height: 52px; border-radius: 12px; background: var(--sand); color: var(--red);
  display: grid; place-items: center; margin-bottom: 1rem; }
.feature .ic svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: .4rem; }
.feature p { margin: 0; font-size: .98rem; }
.section--dark .feature { background: var(--shade-2); border-color: rgba(255,255,255,.08); }
.section--dark .feature p { color: #C9BEB2; }
.section--dark .feature .ic { background: rgba(251,186,0,.14); color: var(--gold); }

/* Chip-Liste */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: 0; }
.chips li { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1rem; font-weight: 600; color: var(--ink); font-size: .95rem; }
.section--tint .chips li { background: var(--white); }

/* Checkliste */
.checks { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .7rem; }
.checks li { position: relative; padding-left: 2rem; }
.checks li::before { content: ""; position: absolute; left: 0; top: .15em; width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--red); color: #fff;
  -webkit-mask: no-repeat center/0.8rem url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
          mask: no-repeat center/0.8rem url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.section--dark .checks li::before { background: var(--gold); }

/* ---------- Split (Bild + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-media .tag { position: absolute; left: 1rem; bottom: 1rem; background: var(--white); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: .82rem; padding: .5rem .9rem; border-radius: 8px; box-shadow: var(--shadow-sm); display: inline-flex; gap: .4rem; align-items: center; }
.split-media .tag svg { width: 1.05em; height: 1.05em; color: var(--red); }

/* ---------- Steps (echte Sequenz) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); counter-reset: step; }
.step { position: relative; }
.step .num { width: 54px; height: 54px; border-radius: 50%; background: var(--gold); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; display: grid; place-items: center; margin-bottom: 1rem; box-shadow: 0 6px 16px rgba(251,186,0,.3); }
.step h3 { margin-bottom: .35rem; }
.step p { margin: 0; font-size: .98rem; }
.steps.on-dark .step p { color: #C9BEB2; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2vw,28px); }
.stat { text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 1.4rem + 2vw, 3rem); color: var(--red); line-height: 1; }
.section--dark .stat .n { color: var(--gold); }
.stat .l { font-size: .95rem; color: var(--muted); margin-top: .4rem; }
.section--dark .stat .l { color: #B7AC9F; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2vw,26px); }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review .stars { color: var(--gold); font-size: 1.15rem; letter-spacing: .08em; margin-bottom: .7rem; }
.review blockquote { margin: 0 0 1rem; font-size: 1.05rem; color: var(--ink); line-height: 1.55; }
.review .who { margin-top: auto; font-size: .92rem; color: var(--muted); }
.review .who b { color: var(--ink); display: block; font-family: var(--font-display); }

/* ---------- Logos / Fachpartner ---------- */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.6rem; }
.logos span { font-family: var(--font-display); font-weight: 800; letter-spacing: .04em; color: var(--muted); font-size: 1.15rem; opacity: .85; }

/* ---------- Local / Einzugsgebiet ---------- */
.area-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,4vw,56px); align-items: center; }
.area-list { display: flex; flex-wrap: wrap; gap: .7rem; list-style: none; padding: 0; margin: 1.2rem 0 0; }
.area-list a { display: inline-flex; align-items: center; gap: .45rem; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.05rem; color: var(--ink); font-weight: 600; font-size: .96rem; }
.area-list a:hover { border-color: var(--red); color: var(--red); }
.area-list a svg { width: 1em; height: 1em; color: var(--red); }
.contact-direct { display: grid; gap: .75rem; }
.contact-direct .btn svg { width: 1.2em; height: 1.2em; margin-right: .5rem; flex: none; }
.area-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.area-map { position: relative; }
.area-map-link { display: block; height: 100%; min-height: 340px; }
.area-map-link img { display: block; width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.area-map-credit { position: absolute; right: 0; bottom: 0; margin: 0; padding: .25rem .6rem; font-size: .72rem; color: var(--body); background: rgba(253,252,250,.9); border-top-left-radius: var(--radius-sm); }
.area-map-credit a { color: inherit; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--gold); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(30px,4vw,52px); position: relative; overflow: hidden; }
.cta-band.dark { background: var(--shade); color: #fff; }
.cta-band .cta-inner { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center; justify-content: space-between; }
.cta-band h2 { color: var(--ink); margin: 0 0 .3rem; }
.cta-band.dark h2 { color: #fff; }
.cta-band p { margin: 0; font-size: 1.1rem; max-width: 40ch; }
.cta-band .sunburst { top: -260px; left: -120px; opacity: .5; }
.cta-band.dark .sunburst { opacity: .55; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.15rem 2.4rem 1.15rem 0; position: relative;
  font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.12rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--red); font-family: var(--font-body); transition: transform .2s; }
.faq details[open] summary::after { content: "–"; }
.faq details > *:not(summary) { margin-bottom: 1.15rem; }
.faq p { color: var(--body); }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero { background: var(--shade); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(226,0,26,.16), rgba(20,17,15,0) 55%); }
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(48px, 6vw, 84px); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .lead { color: #D9CFC4; max-width: 52ch; }
.page-hero .sunburst { top: -240px; right: -120px; opacity: .55; }
.breadcrumb { font-size: .9rem; color: #B7AC9F; margin-bottom: 1rem; }
.breadcrumb a { color: #D9CFC4; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: #7E756B; margin: 0 .4rem; }

/* Prose (Rechtstexte / Fließtext-Seiten) */
.prose { max-width: 780px; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose a { text-decoration: underline; }

/* ---------- Formular ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,3vw,40px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--ink); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line); border-radius: 10px; padding: .8rem .9rem; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,0,26,.12); }
.field .hint { font-size: .82rem; color: var(--muted); }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.form-consent input { width: 1.1rem; height: 1.1rem; margin-top: .2rem; flex: none; accent-color: var(--red); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .8rem; }
.form-success { display: none; background: #EEF7EE; border: 1.5px solid #BFE3BF; color: #2C5E2C; border-radius: 12px; padding: 1rem 1.2rem; font-weight: 600; }
.form-success.show { display: block; }

.contact-aside { display: grid; gap: 1.2rem; }
.contact-card { background: var(--sand); border-radius: var(--radius); padding: 1.4rem; }
.contact-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.contact-card p { margin: 0 0 .3rem; font-size: .98rem; }
.contact-card .big { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.contact-card a.big:hover { color: var(--red); }

/* Info-Zeilen (Öffnungszeiten etc.) */
.info-rows { list-style: none; padding: 0; margin: 0; }
.info-rows li { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); font-size: .98rem; }
.info-rows li:last-child { border-bottom: 0; }
.info-rows .muted { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--shade); color: #B7AC9F; padding-top: clamp(50px,5vw,80px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(24px,3vw,40px); padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.09); }
.site-footer img.flogo { height: 46px; width: auto; margin-bottom: 1.1rem; background: #fff; padding: 9px 13px; border-radius: 10px; display: inline-block; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin: 0 0 1rem; font-family: var(--font-display); letter-spacing: .02em; }
.site-footer a { color: #C9BEB2; }
.site-footer a:hover { color: var(--gold); }
.footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-loc { margin-bottom: 1.1rem; font-size: .96rem; line-height: 1.5; }
.footer-loc b { color: #fff; display: block; font-family: var(--font-display); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; padding-block: 22px; font-size: .88rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* ---------- Divider (Lamellen-Schatten) ---------- */
.slat-divider { height: 8px; background: repeating-linear-gradient(90deg, var(--gold) 0 34px, var(--red) 34px 44px, var(--gold) 44px 78px); opacity: .9; }
.slat-thin { height: 4px; background: linear-gradient(90deg, var(--red), var(--gold)); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.4rem; } .mt-3 { margin-top: 2rem; }
.stack > * + * { margin-top: 1rem; }
.hide { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-phone.desk { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.open .nav-links {
    display: flex; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px clamp(20px,5vw,40px) 20px; gap: .2rem; box-shadow: var(--shadow);
  }
  .site-header.open .nav-links a { padding: .8rem .4rem; font-size: 1.08rem; border-bottom: 1px solid var(--line); }
  .site-header.open .nav-links a[aria-current="page"]::after { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .steps { grid-template-columns: 1fr; gap: 1.6rem; }
  .grid-3, .reviews, .grid-2 { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-4, .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band .cta-inner { flex-direction: column; align-items: flex-start; }
  .topbar .topbar-meta { display: none; }
  .btn-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .cat-card img { transition: none; }
}

/* Bildergalerie (Detailseiten) */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.gallery figure{margin:0;border-radius:var(--radius,14px);overflow:hidden;background:#f3f1ec;box-shadow:0 8px 24px rgba(20,20,20,.08)}
.gallery img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover}
.gallery figcaption{padding:10px 14px;font-size:.92rem;color:#555}
.gallery--contain img{object-fit:contain;background:#fff}
@media (max-width:900px){.gallery{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.gallery{grid-template-columns:1fr}}
.prose h2{margin-top:2rem}
.prose p,.prose li{max-width:72ch}

/* Footer-Baum (5 Spalten) */
.footer-grid--tree{grid-template-columns:1.5fr 1fr 1fr 1fr 1fr}
.footer-grid--tree .footer-nav{gap:.45rem;font-size:.94rem}
.footer-grid--tree .footer-nav li:first-child a{color:#fff;font-weight:600}
@media (max-width:1080px){.footer-grid--tree{grid-template-columns:1fr 1fr 1fr}.footer-grid--tree>div:first-child{grid-column:1/-1}}
@media (max-width:560px){.footer-grid--tree{grid-template-columns:1fr}}
