/* ==========================================================================
   Informations Zentrale – Regionale Reisen & deutsche Kultur
   style.css  ·  Reines CSS3, keine externen Ressourcen, keine Web-Fonts.
   --------------------------------------------------------------------------
   Aufbau:
     1. Design-Tokens (CSS-Variablen)
     2. Reset & Basis
     3. Layout-Helfer (Container, Sektionen, Section-Header)
     4. Buttons & Links
     5. Header / Navigation / Mobile-Menü
     6. Hero
     7. Karten (Regionen, Artikel)
     8. Kultur-Kacheln
     9. Über uns / Kontakt / Newsletter
    10. Footer
    11. Dialog (Cookie-Einstellungen)
    12. Rechtstexte (Impressum/Datenschutz/Haftung)
    13. Zugänglichkeit, Utilities, Responsivität
   ========================================================================== */

/* ------------------------------ 1. Tokens ------------------------------- */
:root {
  /* Warme, natürliche Farbwelt */
  --bg: #faf7f1;          /* warmes Papier */
  --bg-alt: #f3ecdf;      /* etwas tiefere Sektionen */
  --surface: #ffffff;
  --surface-2: #fbf8f2;

  --text: #2a2622;        /* warmes Fast-Schwarz */
  --text-muted: #625a4e;  /* gedämpft, AA-konform auf --bg */
  --border: #e6ddcd;
  --border-strong: #d6c9b2;

  --primary: #3f5c47;     /* Waldgrün */
  --primary-600: #34503d;
  --primary-700: #2a4131; /* dunkles Grün (Footer) */
  --primary-050: #e7efe6;

  --accent: #a85f38;      /* Terrakotta (sparsam) */
  --accent-text: #8c4e2c; /* dunkler für Textkontrast */
  --accent-050: #f3e6da;

  /* Fokus-Ring (dunkel auf hell); in dunklen Bereichen überschrieben) */
  --ring: #1f6feb;
  --ring-dark: #1c3a2a;

  /* Schrift: System- und lokale Fallbacks – datenschutzfreundlich */
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
  --font-serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman",
    serif;

  --maxw: 1180px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(42, 38, 34, 0.06),
    0 2px 8px rgba(42, 38, 34, 0.05);
  --shadow-md: 0 6px 22px rgba(42, 38, 34, 0.10);

  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  /* Sticky-Header-Offset für Anker-Sprünge */
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--text);
  margin: 0 0 0.4em;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.15rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.25rem); }
h3 { font-size: 1.28rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--primary-600);
  text-underline-offset: 2px;
}
a:hover { color: var(--primary-700); }

ul { margin: 0; padding: 0; }

/* --------------------------- 3. Layout-Helfer --------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.25rem);
}

.section {
  padding-block: clamp(3.25rem, 8vw, 6rem);
}
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 0.6rem;
  transform: translateY(-2px);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 60ch;
}

/* --------------------------- 4. Buttons/Links --------------------------- */
.btn {
  --_bg: var(--primary);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  font: inherit;
  font-weight: 600;
  line-height: 1;
  color: var(--_fg);
  background: var(--_bg);
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease, color 0.18s ease;
}
.btn:hover {
  background: var(--primary-600);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --_bg: transparent;
  --_fg: var(--primary-700);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  --_bg: var(--surface);
  color: var(--primary-700);
  border-color: var(--primary);
}

.btn--sm { padding: 0.55rem 1rem; font-size: 0.94rem; }

.btn--block { display: flex; width: 100%; justify-content: center; }

/* Text-Link mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-700);
}
.link-arrow svg { transition: transform 0.18s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ------------------------- 5. Header / Navigation ----------------------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--primary-700);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top 0.16s ease;
}
.skip-link:focus { top: 0; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.16rem;
  line-height: 1.05;
}
.brand__name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

/* Primär-Navigation */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}
.primary-nav a {
  display: inline-block;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
}
.primary-nav a:hover { background: var(--primary-050); color: var(--primary-700); }
.primary-nav a[aria-current="true"] { color: var(--primary-700); }

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -6px; }
.nav-toggle__bars::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------- 6. Hero -------------------------------- */
.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background:
    radial-gradient(1200px 500px at 85% -10%, var(--primary-050), transparent 60%),
    var(--bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
}
.hero__title { margin-bottom: 0.5rem; }
.hero__sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 1.6rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.hero__note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__note svg { flex: none; color: var(--primary); }

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.hero__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.media-tag {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(42, 38, 34, 0.55);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

/* --------------------------- 7. Karten/Grids ---------------------------- */
.card-grid {
  display: grid;
  gap: clamp(1.1rem, 2.5vw, 1.6rem);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.card__media {
  position: relative;
  background: var(--bg-alt);
}
.card__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
}
.card__title { margin: 0; font-size: 1.24rem; }
.card__text { color: var(--text-muted); font-size: 0.98rem; margin: 0; }
.card__foot { margin-top: auto; padding-top: 0.4rem; }

/* Meta-Zeile & Badges (Artikel) */
.card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
}
.badge--cat { color: var(--primary-700); background: var(--primary-050); }
.badge--sample {
  color: var(--accent-text);
  background: var(--accent-050);
  border: 1px solid #e7cdb8;
}
.card__date { white-space: nowrap; }

/* --------------------------- 8. Kultur-Kacheln -------------------------- */
.topic-grid {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.4rem);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.topic {
  display: flex;
  gap: 0.95rem;
  padding: 1.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.topic:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.topic__icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary-050);
  color: var(--primary-700);
}
.topic__icon svg { width: 24px; height: 24px; }
.topic h3 { font-size: 1.12rem; margin: 0 0 0.25rem; }
.topic p { font-size: 0.94rem; color: var(--text-muted); margin: 0; }

/* ----------------------- 9. Über uns / Kontakt -------------------------- */
.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.notice {
  display: flex;
  gap: 0.8rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 0.96rem;
  color: var(--text-muted);
}
.notice svg { flex: none; color: var(--primary); margin-top: 2px; }
.notice--inline { margin-top: 1.4rem; }

.about__aside {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.about__aside h3 { font-size: 1.15rem; }
.facts { list-style: none; display: grid; gap: 0.75rem; }
.facts li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.96rem; }
.facts svg { flex: none; color: var(--primary); margin-top: 3px; }

/* Kontakt */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}
.contact-card address {
  font-style: normal;
  line-height: 1.7;
  color: var(--text);
}
.contact-list { list-style: none; display: grid; gap: 0.9rem; margin-top: 1.1rem; }
.contact-list li { display: flex; align-items: center; gap: 0.75rem; }
.contact-list .ic {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--primary-050);
  color: var(--primary-700);
}
.contact-list a { color: var(--text); text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--primary-700); text-decoration: underline; }
.contact-list small { display: block; color: var(--text-muted); font-weight: 400; }

/* Newsletter (Demonstrationsformular) */
.newsletter {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.form-field { flex: 1 1 240px; display: grid; gap: 0.35rem; }
.form-field label { font-size: 0.9rem; font-weight: 600; }
.input {
  font: inherit;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--text);
}
.input:disabled { cursor: not-allowed; opacity: 0.75; }
.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.consent input { margin-top: 0.25rem; }
.field-opt { color: var(--text-muted); font-weight: 400; font-size: 0.85em; }

/* Rückmeldung nach dem Absenden */
.form-status { margin-top: 1rem; font-size: 0.95rem; font-weight: 600; }
.form-status:empty { margin: 0; }
.form-status--pending { color: var(--text-muted); }
.form-status--success { color: var(--primary-700); }
.form-status--error { color: #a12d2d; }

/* ------------------------------ 10. Footer ------------------------------ */
.site-footer {
  --ring: #f0e9d8;
  background: var(--primary-700);
  color: #e9e2d2;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b9c4b2;
  margin: 0 0 0.9rem;
}
.site-footer .brand__name { color: #fff; }
.site-footer .brand__name small { color: #b9c4b2; }
.site-footer p { color: #cfc8b8; font-size: 0.95rem; max-width: 40ch; }
.footer-links { list-style: none; display: grid; gap: 0.55rem; }
.footer-links a { color: #dcd5c4; text-decoration: none; font-size: 0.96rem; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-links button {
  font: inherit; font-size: 0.96rem;
  color: #dcd5c4; background: none; border: 0; padding: 0; cursor: pointer;
}
.footer-links button:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #b7b0a1;
}

/* ------------------------ 11. Dialog (Cookies) -------------------------- */
dialog.modal {
  width: min(560px, calc(100vw - 2rem));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
dialog.modal::backdrop { background: rgba(42, 38, 34, 0.45); }
.modal__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.3rem;
  border-bottom: 1px solid var(--border);
}
.modal__head h2 { margin: 0; font-size: 1.28rem; }
.modal__body { padding: 1.2rem 1.3rem; }
.modal__body p { color: var(--text-muted); font-size: 0.97rem; }
.modal__foot { padding: 0 1.3rem 1.3rem; display: flex; justify-content: flex-end; gap: 0.6rem; }
.modal__close {
  width: 40px; height: 40px; flex: none;
  border: 1px solid var(--border-strong); background: var(--surface-2);
  border-radius: 10px; cursor: pointer; font-size: 1.2rem; line-height: 1;
  color: var(--text);
}
.status-row { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.9rem; font-size: 0.92rem; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); flex: none; }
.status-dot--muted { background: var(--border-strong); }

/* ------------------------- 12. Rechtstexte ------------------------------ */
.legal {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.legal__wrap { max-width: 780px; margin-inline: auto; }
.legal h1 { margin-bottom: 0.4rem; }
.legal .updated { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 2rem; }
.legal h2 {
  font-size: 1.4rem;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.legal h3 { font-size: 1.1rem; margin-top: 1.6rem; }
.legal p, .legal li { color: #3a352f; }
.legal ul { padding-left: 1.2rem; list-style: disc; display: grid; gap: 0.35rem; margin: 0 0 1rem; }
.legal address { font-style: normal; line-height: 1.7; }
.placeholder-chip {
  background: var(--accent-050);
  border: 1px dashed #d9b79c;
  color: var(--accent-text);
  padding: 0.05rem 0.4rem;
  border-radius: 6px;
  font-size: 0.92em;
  font-weight: 600;
}
.dev-note {
  margin: 1.5rem 0;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-050);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  color: #5a4433;
}
.dev-note strong { color: var(--accent-text); }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.5rem; font-weight: 600; text-decoration: none; }

.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(1.75rem, 4vw, 2.5rem);
}

/* ----------------- 13. Zugänglichkeit / Utilities ----------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Deutlich sichtbare Fokuszustände (Tastaturbedienung) */
:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 3px; }

/* Bewegung reduzieren, wenn vom System gewünscht */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ------------------------- Artikel-Einzelseite -------------------------- */
.article__wrap { max-width: 760px; margin-inline: auto; padding-block: clamp(1.75rem, 5vw, 3rem); }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.breadcrumb li::after { content: "/"; margin-left: 0.35rem; color: var(--border-strong); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary-700); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text); }

.article__head { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.75rem; margin-bottom: 0.85rem; }
.article__meta { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.5rem; }
.article__meta time { font-weight: 600; color: var(--text); }

.article__figure { margin: 1.75rem 0; }
.article__figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article__figure figcaption { margin-top: 0.5rem; font-size: 0.8rem; color: var(--text-muted); }

.article__body { font-size: 1.08rem; line-height: 1.75; }
.article__body > * + * { margin-top: 1.15rem; }
.article__body h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.article__body h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.article__body ul { padding-left: 1.25rem; list-style: disc; display: grid; gap: 0.4rem; }
.article__body blockquote {
  margin: 1.5rem 0;
  padding: 0.6rem 0 0.6rem 1.2rem;
  border-left: 4px solid var(--primary);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
}

.sample-note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 1.5rem 0;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--accent-050);
  border: 1px solid #e7cdb8;
  font-size: 0.92rem;
  color: #5a4433;
}
.sample-note svg { flex: none; color: var(--accent); margin-top: 2px; }

.article__foot { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.article__more { margin-top: 1.25rem; }
.article__more h2 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.article__more ul { list-style: none; display: grid; gap: 0.5rem; }
.article__more a { color: var(--primary-700); text-decoration: none; font-weight: 600; }
.article__more a:hover { text-decoration: underline; }

/* -------------------- Interaktive Deutschlandkarte ---------------------- */
.hero__map { display: flex; flex-direction: column; align-items: center; }
.de-map {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
/* Feste Beschriftung: zeigt „Deutschland“ bzw. das aktive Bundesland */
.de-map__label {
  margin: 0;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 600;
  color: var(--primary-700);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1.3rem;
  max-width: 100%;
  transition: color 0.15s ease;
}
.de-map__stage { width: 100%; display: flex; justify-content: center; }
.de-map__svg {
  display: block;
  width: auto;
  height: clamp(300px, 42vh, 460px);
  max-width: 100%;
  overflow: visible;
  filter: drop-shadow(0 6px 16px rgba(42, 38, 34, 0.12));
}
.de-map__svg path {
  fill: #dfe4d6;
  stroke: #faf7f1;
  stroke-width: 2.4;
  stroke-linejoin: round;
  cursor: pointer;
  transition: fill 0.15s ease;
}
.de-map__svg path:hover,
.de-map__svg path:focus-visible,
.de-map__svg path.is-active {
  fill: var(--primary);
}
/* Kein blaues Standard-Rechteck beim Klick/Fokus … */
.de-map__svg path:focus {
  outline: none;
}
/* … für Tastaturnutzung stattdessen eine dezente, formfolgende Hervorhebung */
.de-map__svg path:focus-visible {
  outline: none;
  stroke: var(--primary-700);
  stroke-width: 3.2;
}
.de-map__source {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .de-map__svg path { transition: none; }
}

/* --------------------- Cookie-/Einwilligungs-Banner --------------------- */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: var(--surface);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -6px 24px rgba(42, 38, 34, 0.12);
  padding: clamp(1rem, 2.5vw, 1.4rem) 0;
}
.consent__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.25rem);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
}
.consent__body { flex: 1 1 420px; }
.consent__title { font-size: 1.1rem; margin: 0 0 0.35rem; }
.consent__text { font-size: 0.92rem; color: var(--text-muted); margin: 0; max-width: 68ch; }
.consent__options { margin-top: 0.9rem; display: grid; gap: 0.5rem; }
/* [hidden] muss die display-Regeln oben schlagen (sonst immer sichtbar) */
.consent__options[hidden],
.consent__save[hidden] { display: none; }
.consent__opt {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.9rem; color: var(--text);
}
.consent__opt input { margin-top: 0.2rem; }
.consent__opt span strong { font-weight: 600; }

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}
/* „Akzeptieren“ und „Ablehnen“ optisch gleichwertig: gleiche Größe & Farbe */
.consent__btn {
  width: 156px;               /* „Akzeptieren“ und „Ablehnen“ exakt gleich groß */
  justify-content: center;
}
.consent__link {
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-700);
  background: none;
  border: 0;
  padding: 0.5rem 0.4rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent__link:hover { color: var(--primary); }
.consent__save { flex-basis: 100%; }

@media (max-width: 720px) {
  .consent__inner { flex-direction: column; align-items: stretch; }
  .consent__actions { justify-content: stretch; }
  .consent__btn { flex: 1 1 auto; }
  .consent__save { order: 5; }
}

/* ---------------------------- Responsivität ----------------------------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .about,
  .contact { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  /* Mobile Navigation: Panel unter dem Header */
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.25s ease, visibility 0s linear 0.25s;
  }
  .primary-nav.is-open {
    max-height: 70vh;
    visibility: visible;
    transition: max-height 0.28s ease;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem clamp(1.1rem, 4vw, 2.25rem) 1rem;
  }
  .primary-nav a {
    padding: 0.85rem 0.6rem;
    border-radius: 8px;
    border-bottom: 1px solid var(--border);
  }
  .primary-nav li:last-child a { border-bottom: 0; }
  .header-inner { position: relative; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .card__body { padding: 1rem 1.05rem 1.2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}
