/* ============================================================
   WENDLER DESIGN SYSTEM
   Gemeinsame CSS-Basis für alle Wendler-Websites
   ============================================================
   Wird IMMER geladen. Theme-Dateien (wendler-cmyk.css oder
   wendler-grau.css) werden zusätzlich eingebunden.
   ============================================================ */

/* ── WEBFONTS (Self-hosted) ─────────────────────────────────── */
@font-face { font-family: 'Archivo'; src: url('/fonts/archivo-latin-800-normal.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('/fonts/archivo-latin-900-normal.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('/fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('/fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Cormorant Garamond'; src: url('/fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('/fonts/source-sans-3-latin-300-normal.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('/fonts/source-sans-3-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('/fonts/source-sans-3-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Brand: Grün-Skala (CI #A1C738) */
  --green-50:     #F4F8E6;
  --green-100:    #E6EFC4;
  --green-200:    #C8DC83;
  --green-300:    #B5D45B;
  --green:        #A1C738;  /* = 500, Primärfarbe */
  --green-600:    #8DAE2E;
  --green-700:    #6F8923;
  --green-900:    #41501A;
  --green-dark:   #6F8923;  /* Alias für Hover */

  /* Brand: Orange-Skala (CI #DB9C24) */
  --orange-50:    #FBF1DC;
  --orange-100:   #F6DFAE;
  --orange-300:   #EBBC65;
  --orange:       #DB9C24;  /* = 500, CTA-Farbe */
  --orange-600:   #C18217;
  --orange-900:   #6E4A0D;
  --orange-dark:  #C18217;  /* Alias für Hover */

  /* Semantische Farben */
  --success:      #8DAE2E;  /* green-600 */
  --warning:      #DB9C24;  /* orange-500 */
  --danger:       #B23A2A;  /* warm rust */
  --info:         #5B7E8A;  /* dusty teal */

  /* Warme Neutrals: Paper & Bark */
  --paper:        #FAF6EE;
  --paper-warm:   #F3ECDE;
  --paper-tan:    #E7DEC9;
  --bark-200:     #C9BFA8;
  --bark-400:     #8A7F66;
  --bark-600:     #5B5340;
  --bark-800:     #2E2A20;
  --ink:          #1F1D1A;

  /* Kompatibilitäts-Aliase (für bestehende Klassen) */
  --fg:           var(--bark-800);
  --fg-muted:     var(--bark-400);
  --bg:           var(--paper);
  --bg-section:   var(--paper-warm);
  --white:        #ffffff;
  --border:       var(--paper-tan);

  /* Grabpflege / Grau-Variante */
  --gray-accent:  #7a8c82;
  --gray-light:   #e8e4df;
  --gray-bg:      #f5f3f0;
  --gray-bg-2:    #edeae6;
  --gray-text:    #4a4a4a;

  /* Layout */
  --max:          1100px;
  --pad:          30px;

  /* Radii */
  --radius-xs:    4px;
  --radius-sm:    6px;
  --radius-md:    8px;
  --radius:       12px;   /* = lg, Standard */
  --radius-xl:    18px;
  --radius-pill:  999px;

  /* Shadows (warm, kein reines Schwarz) */
  --shadow-xs:    0 1px 3px rgba(46,42,32,0.06);
  --shadow-sm:    0 2px 8px rgba(46,42,32,0.07);
  --shadow:       0 4px 16px rgba(46,42,32,0.08);  /* = md */
  --shadow-lg:    0 8px 32px rgba(46,42,32,0.10);
  --shadow-xl:    0 16px 48px rgba(46,42,32,0.14);

  /* Typography */
  --font-display: 'Archivo', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;

  /* Motion */
  --duration:     0.22s;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  text-decoration: none; border: 2px solid transparent;
  transition: all var(--duration) var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn svg {
  width: 16px; height: 16px; fill: none;
  stroke: currentColor; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}

.btn-primary   { background: var(--green);  color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }

.btn-orange    { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }

.btn-outline   { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-ghost     { background: rgba(255,255,255,0.9); color: var(--ink); border-color: transparent; }
.btn-ghost:hover { background: #fff; }

.btn-ghost-gray { background: transparent; color: var(--gray-accent); border-color: var(--gray-accent); }
.btn-ghost-gray:hover { background: var(--gray-accent); color: #fff; }

.btn-gray      { background: var(--gray-accent); color: #fff; border-color: var(--gray-accent); }
.btn-gray:hover { background: #5a6b61; border-color: #5a6b61; transform: translateY(-1px); }

/* ── EYEBROW ─────────────────────────────────────────────────── */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
}
.eyebrow-gray { color: var(--gray-accent); }

/* ── NAV (shared base) ──────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--duration) var(--ease);
}
nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; display: block; }

.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-size: 15px; font-weight: 600;
  transition: opacity var(--duration);
}
.nav-phone:hover { opacity: 0.7; }
.nav-phone svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ── SECTION LABELS ─────────────────────────────────────────── */
.section-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.05; letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400; line-height: 1.2;
  margin-bottom: 16px;
}
.divider {
  width: 44px; height: 2px;
  margin: 14px 0 32px;
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

/* ── KARTE (Leaflet) ─────────────────────────────────────────── */
.map-wrap {
  height: 420px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
#map { width: 100%; height: 100%; }

.leaflet-popup-content-wrapper {
  border-radius: 8px !important;
  font-family: var(--font-body) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
}
.leaflet-popup-content { margin: 16px 18px !important; font-size: 14px !important; line-height: 1.6 !important; }
.popup-name { font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.popup-tel a { text-decoration: none; }
.popup-route { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 600; text-decoration: none; }
.popup-route:hover { text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  padding: 48px var(--pad);
  background: var(--ink); color: #fff;
  text-align: center;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }

.footer-social {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 24px;
}
.footer-social a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  font-size: 14px; text-decoration: none;
  transition: all var(--duration);
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.footer-social a svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.footer-meta { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 16px; }

.footer-links {
  display: flex; gap: 20px; justify-content: center;
  margin-top: 10px; flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color var(--duration);
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ── HOURS TABLE ─────────────────────────────────────────────── */
.hours-table { border-collapse: collapse; font-size: 14px; }
.hours-table td:first-child { padding-right: 20px; color: var(--fg-muted); }

/* ── STANDORT (shared) ───────────────────────────────────────── */
.standort-row { display: flex; gap: 14px; align-items: flex-start; }
.standort-row svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  fill: none; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.standort-phone {
  font-size: 15px; font-weight: 600; color: var(--fg);
  text-decoration: none; transition: color var(--duration);
}

/* ── ICON ALIGNMENT ──────────────────────────────────────────── */
.w-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr !important; }
  .grid-3 { grid-template-columns: 1fr 1fr !important; }
  .grid-4 { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  :root { --pad: 20px; }
  .nav-inner { height: 56px; }
  .nav-logo img { height: 30px; }
  .map-wrap { height: 280px; }
  .btn { justify-content: center; }
  .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .footer-links { flex-direction: column; gap: 8px; align-items: center; }
}

/* ── LEGAL / TEXTSEITEN (Impressum, Datenschutz) ─────────────── */
.legal { padding: 120px var(--pad) 80px; background: var(--bg); }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 5vw, 48px); line-height: 1.05;
  letter-spacing: -0.01em; margin: 12px 0 32px; color: var(--ink);
}
.legal h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; color: var(--ink);
  margin: 36px 0 10px;
}
.legal p { font-size: 16px; line-height: 1.75; color: var(--fg); margin-bottom: 14px; }
.legal a { color: var(--green-dark); }
.legal-list { margin: 8px 0 14px 22px; }
.legal-list li { font-size: 16px; line-height: 1.7; color: var(--fg); }
.legal-note {
  margin-top: 28px; padding: 14px 18px;
  background: var(--paper-warm); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--fg-muted);
}

/* ============================================================
   NAVIGATION – Menü (Desktop-Dropdowns + Mobile-Overlay)
   Erweitert die bestehende .nav-Basis. Global für alle Seiten.
   ============================================================ */

/* Nav-Inner bekommt jetzt 3 Zonen: Logo · Menü · Aktion */
.nav-inner { gap: 20px; }

/* ── DESKTOP-MENÜ ───────────────────────────────────────────── */
.nav-menu {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto; margin-right: 8px;
  list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--fg); text-decoration: none; white-space: nowrap;
  transition: color var(--duration), background var(--duration);
}
.nav-menu > li > a:hover,
.nav-menu > li.is-open > a { color: var(--green-dark); background: var(--green-50); }

/* Dropdown-Pfeil */
.nav-caret { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.2; fill: none; transition: transform var(--duration); }
.nav-menu > li.is-open .nav-caret { transform: rotate(180deg); }

/* ── DROPDOWN-PANEL ─────────────────────────────────────────── */
.nav-sub {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 240px; padding: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--duration), transform var(--duration), visibility var(--duration);
  z-index: 120;
}
.nav-menu > li:hover .nav-sub,
.nav-menu > li.is-open .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-sub a {
  display: block; padding: 11px 14px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; color: var(--fg); text-decoration: none;
  transition: background var(--duration), color var(--duration);
}
.nav-sub a:hover { background: var(--green-50); color: var(--green-dark); }
.nav-sub .nav-sub-desc { display: block; font-size: 12px; font-weight: 400; color: var(--fg-muted); margin-top: 2px; }

/* ── BURGER-BUTTON (nur mobil sichtbar) ─────────────────────── */
.nav-burger {
  display: none;
  width: 44px; height: 44px; margin-left: auto;
  border: none; background: transparent; cursor: pointer;
  padding: 10px; border-radius: var(--radius-sm);
}
.nav-burger span {
  display: block; width: 100%; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-burger span + span { margin-top: 5px; }
body.nav-active .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-active .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-active .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE-OVERLAY ─────────────────────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  padding: 88px var(--pad) 40px;
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
body.nav-active .nav-overlay { opacity: 1; visibility: visible; transform: translateY(0); }
body.nav-active { overflow: hidden; }

.nav-overlay-menu { list-style: none; max-width: 520px; margin: 0 auto; }
.nav-overlay-menu > li { border-bottom: 1px solid var(--border); }
.nav-overlay-menu > li > a,
.nav-ov-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 18px 4px; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  color: var(--ink); text-decoration: none; text-align: left;
}
.nav-ov-toggle .nav-caret { width: 18px; height: 18px; stroke: var(--green); stroke-width: 2.5; }
.nav-ov-toggle[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }

.nav-ov-sub {
  list-style: none;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.nav-ov-sub.is-open { max-height: 360px; }
.nav-ov-sub a {
  display: block; padding: 12px 4px 12px 16px;
  font-size: 17px; font-weight: 500; color: var(--fg); text-decoration: none;
  border-left: 2px solid var(--green-100); margin-bottom: 2px;
}
.nav-ov-sub a:hover { color: var(--green-dark); border-left-color: var(--green); }
.nav-ov-sub li:last-child a { margin-bottom: 14px; }

.nav-overlay-actions { max-width: 520px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 12px; }
.nav-overlay-actions .btn { width: 100%; justify-content: center; }

/* ── UMSCHALTPUNKT DESKTOP↔MOBIL ────────────────────────────── */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-phone.nav-phone--desktop { display: none; }
  .nav-burger { display: block; }
}
@media (min-width: 901px) {
  .nav-overlay { display: none; }
}

/* ============================================================
   ÜBER-UNS-KOMPONENTEN (global, wiederverwendbar)
   Seiten-Hero (schlank), Zeitstrahl, Werte-Grid, Zitat
   ============================================================ */

/* ── SCHLANKER SEITEN-HERO (für Unterseiten) ────────────────── */
.page-hero {
  position: relative;
  padding: 140px var(--pad) 72px;
  background: linear-gradient(160deg, #1a2e10 0%, #2d4a1a 45%, #1f3a14 100%);
  color: #fff; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(161,199,56,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--green-200); display: inline-block; margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 6vw, 66px); line-height: 1.04;
  letter-spacing: -0.01em; max-width: 20ch; margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--green-200); }
.page-hero-sub {
  font-size: 18px; font-weight: 300; line-height: 1.65;
  color: rgba(255,255,255,0.85); max-width: 56ch;
}

/* ── INTRO-BLOCK ────────────────────────────────────────────── */
.prose-section { padding: 88px var(--pad); background: var(--bg); }
.prose-inner { max-width: 760px; margin: 0 auto; }
.prose-inner .section-tag { display: block; margin-bottom: 12px; }
.prose-inner h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 42px); line-height: 1.08;
  letter-spacing: -0.01em; margin-bottom: 20px; color: var(--ink);
}
.prose-inner h2 em { font-style: normal; color: var(--green); }
.prose-inner p { font-size: 17px; line-height: 1.8; color: var(--fg); margin-bottom: 18px; }
.prose-inner p strong { color: var(--ink); font-weight: 600; }

/* ── ZEITSTRAHL (Generationen) ──────────────────────────────── */
.timeline-section { padding: 88px var(--pad); background: var(--bg-section); }
.timeline-inner { max-width: 820px; margin: 0 auto; }
.timeline-head { text-align: center; margin-bottom: 56px; }
.timeline-head .section-tag { display: block; margin-bottom: 12px; }
.timeline-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05; color: var(--ink);
}
.timeline-head h2 em { font-style: normal; color: var(--green); }

.timeline { position: relative; padding-left: 0; }
.timeline::before {
  content: ''; position: absolute; left: 27px; top: 8px; bottom: 8px;
  width: 2px; background: var(--green-200);
}
.tl-item { position: relative; padding: 0 0 40px 76px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 12px; top: 2px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--green);
  display: flex; align-items: center; justify-content: center;
}
.tl-dot span { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
.tl-year {
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  color: var(--green-dark); line-height: 1; margin-bottom: 4px;
}
.tl-gen {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 8px;
}
.tl-item h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  color: var(--ink); margin-bottom: 6px;
}
.tl-item p { font-size: 15.5px; line-height: 1.7; color: var(--fg-muted); font-weight: 300; }

/* ── WERTE-GRID ─────────────────────────────────────────────── */
.werte-section { padding: 88px var(--pad); background: var(--bg); }
.werte-inner { max-width: var(--max); margin: 0 auto; }
.werte-head { max-width: 620px; margin-bottom: 48px; }
.werte-head .section-tag { display: block; margin-bottom: 12px; }
.werte-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05; color: var(--ink);
}
.werte-head h2 em { font-style: normal; color: var(--green); }
.werte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wert-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all var(--duration) var(--ease);
}
.wert-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.wert-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--green-50);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.wert-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--green-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.wert-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--ink); margin-bottom: 8px; }
.wert-card p { font-size: 15px; line-height: 1.7; color: var(--fg-muted); font-weight: 300; }

/* ── GROSSES ZITAT ──────────────────────────────────────────── */
.pull-quote { padding: 80px var(--pad); background: var(--green-900); color: #fff; text-align: center; }
.pull-quote-inner { max-width: 780px; margin: 0 auto; }
.pull-quote blockquote {
  font-family: var(--font-serif); font-size: clamp(26px, 4vw, 40px);
  font-weight: 500; font-style: italic; line-height: 1.3; margin-bottom: 24px;
}
.pull-quote cite { font-style: normal; font-size: 15px; font-weight: 600; color: var(--green-200); letter-spacing: 0.02em; }

/* Responsive Über-uns */
@media (max-width: 860px) {
  .werte-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero { padding: 110px var(--pad) 56px; }
  .tl-item { padding-left: 64px; }
  .timeline::before { left: 21px; }
  .tl-dot { left: 6px; width: 30px; height: 30px; }
}

/* ============================================================
   KARTE – Pins & Standort-Seite (global)
   Ergänzt die bestehende .map-wrap / .popup-*-Basis
   ============================================================ */
:root { --pin-bg: var(--green); }   /* Theme kann überschreiben */

/* ── PIN (divIcon, kein Bild) ───────────────────────────────── */
.wendler-pin { background: none; border: none; }
.wendler-pin-dot {
  display: block; width: 26px; height: 26px; border-radius: 50%;
  background: var(--pin-bg); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  position: relative;
}
.wendler-pin-dot::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
}

/* Popup-Ergänzungen */
.popup-addr { color: var(--fg-muted); font-size: 13px; margin-bottom: 4px; }

/* ── STANDORT-SEITE: Übersichtskarte (edge-to-edge) ─────────── */
.map-overview-wrap { height: 440px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
#map-overview { width: 100%; height: 100%; }

/* ── STANDORT-DETAIL-KARTEN (Info + Mini-Map nebeneinander) ─── */
.standorte-detail { padding: 88px var(--pad); background: var(--bg); }
.standorte-detail-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }

.standort-block {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.standort-block:nth-child(even) { grid-template-columns: 1.1fr 1fr; }
.standort-block:nth-child(even) .standort-info { order: 2; }
.standort-block:nth-child(even) .standort-mini-map { order: 1; }

.standort-info { padding: 40px; display: flex; flex-direction: column; }
.standort-info .standort-tag { align-self: flex-start; margin-bottom: 14px; }
.standort-info .standort-city {
  font-family: var(--font-display); font-weight: 800; font-size: 34px;
  color: var(--ink); margin-bottom: 6px; letter-spacing: -0.01em;
}
.standort-info .standort-role { font-size: 15px; color: var(--fg-muted); margin-bottom: 24px; }
.standort-info .standort-rows { gap: 16px; margin-bottom: 26px; }
.standort-info .standort-footer { display: flex; gap: 10px; margin-top: auto; padding-top: 4px; border: none; }
.standort-info .standort-footer .btn { flex: 1; justify-content: center; font-size: 14px; }

.standort-mini-map { min-height: 340px; position: relative; background: var(--paper-warm); }
.standort-mini-map > div { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── KARTEN-KOPF ────────────────────────────────────────────── */
.map-head { max-width: var(--max); margin: 0 auto 0; padding: 88px var(--pad) 32px; }
.map-head .section-tag { display: block; margin-bottom: 12px; }
.map-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05; color: var(--ink);
}
.map-head h2 em { font-style: normal; color: var(--green); }
.map-head p { margin-top: 14px; font-size: 17px; font-weight: 300; color: var(--fg-muted); line-height: 1.65; max-width: 60ch; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .standort-block,
  .standort-block:nth-child(even) { grid-template-columns: 1fr; }
  .standort-block:nth-child(even) .standort-info { order: 2; }
  .standort-block:nth-child(even) .standort-mini-map { order: 1; }
  .standort-mini-map { min-height: 260px; order: 1; }
  .standort-info { order: 2; padding: 32px 24px; }
  .map-overview-wrap { height: 320px; }
}
@media (max-width: 600px) {
  .standort-info .standort-city { font-size: 28px; }
  .standort-info { padding: 28px 20px; }
  .map-head { padding: 64px var(--pad) 24px; }
}

/* ============================================================
   ÖFFNUNGSZEITEN (global, wiederverwendbar)
   Ersetzt die Mini-Karte im Standort-Detailblock
   ============================================================ */
.oeffnung {
  background: var(--paper-warm);
  padding: 40px; display: flex; flex-direction: column;
  min-height: 340px;
}
.oeffnung-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.oeffnung-head svg {
  width: 22px; height: 22px; flex-shrink: 0;
  fill: none; stroke: var(--green-dark); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.oeffnung-head h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  color: var(--ink); letter-spacing: -0.01em;
}
.oeffnung-table { width: 100%; border-collapse: collapse; }
.oeffnung-table tr { border-bottom: 1px dashed var(--border); }
.oeffnung-table tr:last-child { border-bottom: none; }
.oeffnung-table td { padding: 12px 0; font-size: 15.5px; }
.oeffnung-table td:first-child { color: var(--fg-muted); }
.oeffnung-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.oeffnung-table tr.is-closed td:last-child { color: var(--fg-muted); font-weight: 400; }

/* „Heute geöffnet / geschlossen" Status-Chip */
.oeffnung-status {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start; margin-top: 20px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
}
.oeffnung-status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; }
.oeffnung-status.is-open   { background: var(--green-50); color: var(--green-900); }
.oeffnung-status.is-open::before { background: var(--green); box-shadow: 0 0 0 3px var(--green-100); }
.oeffnung-status.is-closed { background: var(--paper-tan); color: var(--bark-600); }
.oeffnung-status.is-closed::before { background: var(--bark-400); }

/* Heutiger Tag in der Tabelle hervorheben */
.oeffnung-table tr.is-today td { color: var(--ink); }
.oeffnung-table tr.is-today td:first-child { font-weight: 700; }
.oeffnung-table tr.is-today { background: rgba(161,199,56,0.10); }

@media (max-width: 600px) {
  .oeffnung { padding: 28px 20px; min-height: 0; }
}

/* ============================================================
   FEATURE-BLÖCKE (Text + Bild, alternierend) – global
   Für Gewerk-Seiten: Floristik-Bereiche, Gärtnerei-Themen
   ============================================================ */
.features { padding: 88px var(--pad); background: var(--bg); }
.features-inner { max-width: var(--max); margin: 0 auto; }
.features-head { max-width: 640px; margin-bottom: 56px; }
.features-head .section-tag { display: block; margin-bottom: 12px; }
.features-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05; color: var(--ink);
}
.features-head h2 em { font-style: normal; color: var(--green); }
.features-head p { margin-top: 14px; font-size: 17px; font-weight: 300; color: var(--fg-muted); line-height: 1.65; }

.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 64px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row:nth-child(even) .feature-text { order: 2; }
.feature-row:nth-child(even) .feature-media { order: 1; }

.feature-text .feature-num {
  font-family: var(--font-display); font-weight: 900; font-size: 15px;
  color: var(--green); opacity: 0.6; letter-spacing: 0.04em;
}
.feature-text h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 3vw, 30px); color: var(--ink);
  margin: 6px 0 14px; letter-spacing: -0.01em;
}
.feature-text p { font-size: 16px; line-height: 1.75; color: var(--fg-muted); font-weight: 300; margin-bottom: 20px; }
.feature-text .feature-list { list-style: none; margin-bottom: 24px; }
.feature-text .feature-list li {
  position: relative; padding-left: 26px; margin-bottom: 10px;
  font-size: 15.5px; color: var(--fg);
}
.feature-text .feature-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 14px; height: 8px; border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green); transform: rotate(-45deg);
}

.feature-media {
  border-radius: var(--radius); overflow: hidden;
  background: var(--green-50); aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-media-placeholder {
  color: var(--green-dark); opacity: 0.5; font-size: 14px;
  font-weight: 600; text-align: center; padding: 20px;
}
.feature-media-placeholder svg { width: 48px; height: 48px; display: block; margin: 0 auto 10px; fill: none; stroke: currentColor; stroke-width: 1.4; }

/* ── IMPRESSIONEN (Bild-Galerie) ────────────────────────────── */
.impressionen { padding: 88px 0; background: var(--bg-section); }
.impressionen-head { max-width: var(--max); margin: 0 auto 40px; padding: 0 var(--pad); }
.impressionen-head .section-tag { display: block; margin-bottom: 12px; }
.impressionen-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05; color: var(--ink);
}
.impressionen-head h2 em { font-style: normal; color: var(--green); }
.impressionen-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.impressionen-grid .imp-tile {
  aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--green-50); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.impressionen-grid .imp-tile.imp-wide { grid-column: span 2; aspect-ratio: 2; }
.impressionen-grid .imp-tile img { width: 100%; height: 100%; object-fit: cover; }
.imp-placeholder { color: var(--green-dark); opacity: 0.4; }
.imp-placeholder svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.4; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .feature-row,
  .feature-row:nth-child(even) { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .feature-row:nth-child(even) .feature-text { order: 2; }
  .feature-row:nth-child(even) .feature-media { order: 1; }
  .feature-media { order: 1; }
  .feature-text { order: 2; }
  .impressionen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .impressionen-grid { grid-template-columns: 1fr 1fr; }
  .impressionen-grid .imp-tile.imp-wide { grid-column: span 2; }
}

/* ============================================================
   KONTAKT-SEITE (global)
   Ansprechpartner-Karte + Kontaktweg-Kacheln
   ============================================================ */
.kontakt-wege { padding: 88px var(--pad); background: var(--bg); }
.kontakt-wege-inner { max-width: var(--max); margin: 0 auto; }
.kontakt-wege-head { max-width: 640px; margin-bottom: 48px; }
.kontakt-wege-head .section-tag { display: block; margin-bottom: 12px; }
.kontakt-wege-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05; color: var(--ink);
}
.kontakt-wege-head h2 em { font-style: normal; color: var(--green); }

/* Zwei Standort-Kontaktkarten nebeneinander */
.kontakt-standorte { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.kontakt-karte {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.kontakt-karte .kontakt-ort {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em;
}
.kontakt-karte .kontakt-rolle { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; }
.kontakt-zeile { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.kontakt-zeile svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px;
  fill: none; stroke: var(--green-dark); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.kontakt-zeile a { color: var(--fg); text-decoration: none; font-weight: 600; }
.kontakt-zeile a:hover { color: var(--green-dark); }
.kontakt-zeile span { color: var(--fg); }
.kontakt-karte .kontakt-cta-row { display: flex; gap: 10px; margin-top: 24px; }
.kontakt-karte .kontakt-cta-row .btn { flex: 1; justify-content: center; font-size: 14px; }

/* Ansprechpartner-Hinweis (persönlich, Familienbetrieb) */
.ansprech {
  background: var(--green-50); border: 1px solid var(--green-100);
  border-radius: var(--radius); padding: 28px 32px;
  display: flex; gap: 20px; align-items: center;
}
.ansprech-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
}
.ansprech-icon svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ansprech-text h3 { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.ansprech-text p { font-size: 15px; color: var(--fg-muted); font-weight: 300; }

@media (max-width: 860px) {
  .kontakt-standorte { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .kontakt-karte { padding: 28px 24px; }
  .ansprech { flex-direction: column; text-align: center; padding: 24px; }
}

/* ── STANDORTE: einspaltig ohne Öffnungszeiten-Kasten ───────── */
/* Der frühere rechte .oeffnung-Kasten entfällt – Karten einspaltig */
.standort-block,
.standort-block:nth-child(even) { grid-template-columns: 1fr; }
.standort-block .standort-info { padding: 40px; }

/* Live-Status-Chip inline in der Öffnungszeiten-Zeile */
.oeffnung-inline .oeffnung-status {
  margin-top: 10px;
  padding: 5px 12px;
  font-size: 12px;
}
@media (max-width: 600px) {
  .standort-block .standort-info { padding: 28px 24px; }
}

/* ============================================================
   ANLASS-KACHELN (Startseite – Herzstück der Kundenreise)
   6 große Kacheln nach Anlässen, nicht nach Gewerken
   ============================================================ */
.anlaesse { padding: 96px var(--pad); background: var(--bg); }
.anlaesse-inner { max-width: var(--max); margin: 0 auto; }
.anlaesse-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.anlaesse-head .section-tag { display: inline-block; margin-bottom: 14px; }
.anlaesse-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4.5vw, 48px); line-height: 1.05;
  letter-spacing: -0.01em; color: var(--ink);
}
.anlaesse-head h2 em { font-style: normal; color: var(--green); }
.anlaesse-head p { margin-top: 16px; font-size: 18px; font-weight: 300; color: var(--fg-muted); line-height: 1.6; }

.anlaesse-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.anlass-card {
  position: relative; display: flex; flex-direction: column;
  min-height: 220px; padding: 32px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration);
}
.anlass-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}
.anlass-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background var(--duration);
}
.anlass-card:hover .anlass-icon { background: var(--green-100); }
.anlass-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--green-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.anlass-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em;
}
.anlass-card p { font-size: 15px; line-height: 1.6; color: var(--fg-muted); font-weight: 300; margin-bottom: 18px; }
.anlass-arrow {
  margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--green-dark);
}
.anlass-arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform var(--duration); }
.anlass-card:hover .anlass-arrow svg { transform: translateX(4px); }

/* Dezente Variante für Trauer & Grabpflege (zurückhaltender) */
.anlass-card.is-quiet { background: var(--bg-section); }
.anlass-card.is-quiet .anlass-icon { background: var(--paper-tan); }
.anlass-card.is-quiet .anlass-icon svg { stroke: var(--bark-600); }
.anlass-card.is-quiet .anlass-arrow { color: var(--bark-600); }

/* Kacheln mit Absprung auf Subdomain bekommen einen kleinen Hinweis */
.anlass-extern {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--green); opacity: 0.7;
}
.anlass-card.is-quiet .anlass-extern { color: var(--bark-400); }

@media (max-width: 900px) {
  .anlaesse-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .anlaesse-grid { grid-template-columns: 1fr; }
  .anlass-card { min-height: 0; padding: 28px 24px; }
  .anlaesse { padding: 72px var(--pad); }
}

/* ============================================================
   FEATURE-CARD-SIMPLE (einfache Textkacheln im 3er-Grid)
   Für Übersichten ohne Bild (Heiraten, Trauer-Leistungen)
   ============================================================ */
.feature-card-simple {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration);
}
.feature-card-simple:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-card-simple h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em;
}
.feature-card-simple p { font-size: 15px; line-height: 1.65; color: var(--fg-muted); font-weight: 300; }

/* ============================================================
   THEME-QUIET (gedämpfte Optik für /trauer)
   Du-Form bleibt, aber ruhiger: weniger kräftiges Grün,
   mehr Weißraum, sanftere Akzente. KEIN Theme-Wechsel.
   ============================================================ */
.theme-quiet .page-hero { background: linear-gradient(160deg, #4a5340 0%, #3a4232 100%); }
.theme-quiet .section-tag { color: var(--bark-600); }
.theme-quiet h2 em { color: var(--bark-600); }
.theme-quiet .feature-list li::before { border-color: var(--bark-400); }
.theme-quiet .prose-section { padding-top: 72px; padding-bottom: 72px; }
.theme-quiet .contact-banner { background: linear-gradient(160deg, #4a5340 0%, #3a4232 100%); }
.theme-quiet .btn-primary { background: var(--bark-600); border-color: var(--bark-600); }
.theme-quiet .btn-primary:hover { background: var(--bark-700, #4a3f2e); border-color: var(--bark-700, #4a3f2e); }

/* ── STANDORTE: zweispaltig mit Bildplatz rechts ────────────── */
.standort-block,
.standort-block:nth-child(even) { grid-template-columns: 1fr 1fr; }
.standort-block .standort-info { padding: 40px; }

.standort-media {
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  min-height: 340px; overflow: hidden;
}
.standort-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.standort-media-placeholder {
  color: var(--green-dark); opacity: 0.5; font-size: 14px;
  font-weight: 600; text-align: center; padding: 24px;
}
.standort-media-placeholder svg {
  width: 44px; height: 44px; display: block; margin: 0 auto 12px;
  fill: none; stroke: currentColor; stroke-width: 1.4;
}

/* Öffnungsstatus in eigener Zeile (ohne Icon-Einrückung) */
.oeffnung-status-row { padding-left: 32px; margin-top: -6px; }
.oeffnung-status-row .oeffnung-status { margin-top: 0; }

@media (max-width: 860px) {
  .standort-block,
  .standort-block:nth-child(even) { grid-template-columns: 1fr; }
  /* Reihenfolge mobil: Info zuerst, Bild darunter (pro Standort).
     KEIN order:-1 – sonst entsteht Hersbruck/Bild/Bild/Lauf. */
  .standort-media { min-height: 220px; }
}
@media (max-width: 600px) {
  .standort-block .standort-info { padding: 28px 24px; }
  .oeffnung-status-row { padding-left: 32px; }
}

/* Öffnungszeiten-Gruppe: Zeile + Status-Chip darunter */
.oeffnung-gruppe { display: flex; flex-direction: column; gap: 12px; }
.oeffnung-gruppe .oeffnung-status-row { padding-left: 32px; }
.oeffnung-gruppe .oeffnung-status { margin-top: 0; }

/* ── STANDORTE mobil: Reihenfolge korrigieren ────────────────
   Ältere Regeln (aus der Zeit mit Mini-Karten) setzten
   .standort-info auf order:2 und schoben so den Text unter das
   Bild. Ergebnis auf dem Handy: Bild, Info, Bild, Info.
   Gewünscht ist aber: Info, Bild, Info, Bild.
   Diese Regel hebt die alten order-Werte wieder auf.          */
@media (max-width: 860px) {
  .standort-block .standort-info,
  .standort-block:nth-child(even) .standort-info { order: 0; }
  .standort-block .standort-media,
  .standort-block:nth-child(even) .standort-media { order: 1; }
}

/* Desktop: bei BEIDEN Standorten Info links, Bild rechts
   (alte nth-child(even)-Regel aus der Mini-Karten-Zeit aufheben) */
.standort-block .standort-info,
.standort-block:nth-child(even) .standort-info { order: 0; }
.standort-block .standort-media,
.standort-block:nth-child(even) .standort-media { order: 1; }

/* Bewertungen: einheitliche Quellenangabe unter dem Namen */
.testimonial-source {
  font-size: 12px; color: var(--fg-muted); font-weight: 400;
  letter-spacing: 0.02em; margin-top: 2px;
}

/* Untertitel in der Bewertungs-Sektion (Sterne-Hinweis) */
.testimonials-sub {
  margin-top: 12px; font-size: 16px; font-weight: 300;
  color: var(--fg-muted);
}

/* ── STANDORT-ANRISS (Startseite): ohne Pille, mit Rollenzeile ──
   Der Kopf war auf zwei Elemente ausgelegt (Text links, Pille rechts).
   Ohne Pille braucht es kein space-between mehr.                    */
.standort-card .standort-top { display: block; }
.standort-card .standort-role {
  font-size: 15px; color: var(--fg-muted);
  font-weight: 300; margin-top: 4px;
}
