/*
  Mobile Tierheilpraxis an der Eider – Stylesheet
  Thorsten Ollermann, blueRoom-media
*/

/* Design-Tokens */
:root {
  /* Grüntöne */
  --green-900: #20382a;
  --green-800: #2c4a36;
  --green-700: #385945;
  --green-600: #4a6e55;

  /* Salbeigrün */
  --sage: #9aab80;
  --sage-light: #bcc8a6;
  --sage-pale: #d6dec7;
  --sage-dark: #7d9066;

  /* Creme / Papier */
  --cream: #f3efe4;
  --cream-2: #ebe4d3;
  --paper: #faf8f1;
  --paper-2: #fdfcf7;

  /* Gold */
  --gold: #8a6530;
  --gold-light: #cdab78;
  --gold-pale: #e3d3b4;

  /* Text */
  --ink: #2a2c26;
  --muted: #5c6755;
  --muted-2: #5f6b53;
  --on-green: #f0ede2;
  --on-green-muted: #b7c4a6;

  /* Akzent (Tweaks-Panel) */
  --accent: var(--green-800);
  --accent-soft: var(--sage);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(32, 56, 42, 0.06), 0 6px 18px rgba(32, 56, 42, 0.05);
  --shadow-md: 0 8px 30px rgba(32, 56, 42, 0.10);

  --font-sans: "Mulish", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-script: "Parisienne", "Mulish", cursive;
}


/* Basis / Reset */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 126px; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 1.125rem;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--green-900);
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
  text-align: justify;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
a { color: inherit; text-decoration: none; }

/* Ausnahmen vom Blocksatz: kurze Labels, Eyebrows, Status-/Hinweistexte */
.eyebrow,
.hero-badge small,
.form-status,
.form-required-note,
.field .err,
.form-success p,
.footer-disclaimer,
.sig,
.sig small,
p.cap,
p.sub,
.map-consent p,
.cookie-text,
.svc p,
.dropdown a small,
.philo .script-line,
.script-line,
.hours-note small,
/* Schmale Spalten: Blocksatz wirkt hier mit zu großen Lücken — daher Flattersatz */
.lead,
.hero-badge,
.philo-card p,
.philo .checks li,
.form-card .sub,
.form-card .field,
.hours-note,
.hours-note b,
.info-list,
.info-list span,
.legal-toc,
.legal-toc li {
  text-align: initial;
  hyphens: manual;
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Layout-Helfer */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1.2rem;
  display: flex; align-items: center; gap: 0.85rem;
}
.eyebrow::after { content: ""; height: 1px; flex: 1; max-width: 56px; background: var(--gold); opacity: 0.5; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { content: ""; height: 1px; flex: 1; max-width: 56px; background: var(--gold); opacity: 0.5; }

.rule { width: 64px; height: 2px; background: var(--green-800); border: 0; margin: 1.6rem 0; }
.rule.gold { background: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-sans); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 1.7rem; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--green-800); color: var(--on-green); }
.btn-primary:hover { background: var(--green-900); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--green-900); border-color: rgba(44,74,54,.3); }
.btn-ghost:hover { border-color: var(--green-800); background: rgba(44,74,54,.04); }
.btn-light { background: var(--paper); color: var(--green-900); }
.btn-light:hover { background: #fff; box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: var(--on-green); border-color: rgba(240,237,226,.4); }
.btn-outline-light:hover { border-color: var(--on-green); background: rgba(240,237,226,.08); }

/* Header & Navigation */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid rgba(44, 74, 54, 0.10);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(32,56,42,.07); }
.header-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 0.85rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; flex-shrink: 0; }
.brand-mark {
  width: 100px; height: auto;
  flex-shrink: 0; line-height: 0;
}
.brand-mark img { width: 100px; height: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.18; }
.brand-text .b1 { font-weight: 800; letter-spacing: 0.04em; font-size: 1.02rem; color: var(--green-900); text-transform: uppercase; white-space: nowrap; }
.brand-text .b2 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: 0.35rem; }
.nav-link {
  position: relative; text-decoration: none; color: var(--green-900);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.7rem 0.85rem; border-radius: var(--radius); white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.45rem; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-link:hover { color: var(--green-700); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--green-700); }

.nav-item { position: relative; }
.nav-item.has-drop > .nav-link { display: inline-flex; align-items: center; gap: 0.35rem; }
.caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-1px,-1px); transition: transform .25s; }
.nav-item.has-drop:hover .caret, .nav-item.has-drop:focus-within .caret { transform: rotate(225deg) translate(-2px,-2px); }
.dropdown {
  position: absolute; top: calc(100% - 2px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 270px; background: var(--paper-2); border: 1px solid rgba(44,74,54,.10);
  border-radius: 8px; box-shadow: var(--shadow-md); padding: 0.5rem;
  opacity: 0; visibility: hidden; transition: opacity .22s ease, transform .22s ease;
}
.nav-item.has-drop:hover .dropdown, .nav-item.has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block; text-decoration: none; color: var(--green-900);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.7rem 0.9rem; border-radius: 5px; transition: background .18s, color .18s;
}
.dropdown a small { display: block; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted-2); font-size: 0.76rem; margin-top: 2px; }
.dropdown a:hover { background: var(--cream); color: var(--green-700); }

.header-cta { display: inline-flex; align-items: center; gap: .9rem; width: 350px; }
.header-phone { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none; text-align: right; }
.header-phone small { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; width: 200px; }
.header-phone b { font-weight: 800; color: var(--green-900); font-size: 0.95rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--green-900); margin: 5px 0; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Icons & Drawer-Elemente nur im Mobilmenü sichtbar */
.nav-ic { display: none; }
.nav-only-mobile { display: none; }

/* Footer */
.site-footer { background: var(--green-900); color: var(--on-green); }
.footer-top { padding: clamp(56px,7vw,84px) var(--gutter); max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(32px,5vw,72px); }
.footer-brand .b1 { font-weight: 800; letter-spacing: 0.04em; font-size: 1.05rem; text-transform: uppercase; }
.footer-brand .b2 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-top: 4px; }
.footer-brand p { color: var(--on-green-muted); margin-top: 1.2rem; max-width: 34ch; font-size: 0.96rem; }
.footer-col h4 { color: var(--on-green); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--on-green-muted); text-decoration: none; font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; color: var(--on-green-muted); font-size: 0.95rem; line-height: 1.9; }
.footer-bottom { border-top: 1px solid rgba(240,237,226,.14); padding: 1.4rem var(--gutter); }
.footer-bottom-inner { max-width: var(--maxw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom small { color: var(--on-green-muted); font-size: 0.82rem; }
.footer-bottom small a { color: inherit; text-decoration: none; transition: color .2s; }
.footer-bottom small a:hover { color: #fff; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--on-green-muted); text-decoration: none; font-size: 0.82rem; font-weight: 600; }
.footer-legal a:hover { color: #fff; }
.footer-disclaimer { color: var(--on-green-muted); opacity: .75; font-size: 0.78rem; max-width: 60ch; margin: 1.2rem auto 0; text-align: center; line-height: 1.6; }

/* Bild-Platzhalter (gestreift) */
.ph {
  background-color: var(--cream-2);
  background-image: repeating-linear-gradient(135deg, rgba(122,144,104,.14) 0 12px, transparent 12px 24px);
  display: grid; place-items: center; color: var(--muted-2);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: .74rem; letter-spacing: .08em;
  text-transform: uppercase; text-align: center; padding: 1rem; min-height: 200px;
}
.media { position: relative; overflow: hidden; background: var(--cream-2); }
.media img { width: 100%; height: 100%; object-fit: cover; }

/* Cards */
.card {
  background: var(--paper-2); border: 1px solid rgba(44,74,54,.09); border-radius: 10px;
  padding: 2rem; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(44,74,54,.16); }

/* Icons */
.ic { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.4; }

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Seiten-Hero (Unterseiten) */
.page-hero { background: var(--green-900); color: var(--on-green); position: relative; overflow: hidden; }
.page-hero .wrap { padding-block: clamp(72px,10vw,128px); position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.2rem); max-width: 18ch; }
.page-hero .lead { color: var(--on-green-muted); max-width: 56ch; font-size: 1.15rem; margin-top: 1.4rem; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow::after, .page-hero .eyebrow::before { background: var(--gold-light); }
.page-hero .deco { position: absolute; inset: 0; background:
  radial-gradient(700px 380px at 88% -10%, rgba(154,171,128,.22), transparent 70%),
  radial-gradient(560px 360px at -5% 110%, rgba(184,149,100,.14), transparent 70%); z-index: 1; }

.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .8rem; color: var(--on-green-muted); letter-spacing: .04em; margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--on-green-muted); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* Fließtext */
.prose { font-size: 1.08rem; color: var(--ink); }
.prose p { margin-bottom: 1.3em; }
.prose h2 { font-size: clamp(1.8rem,3.4vw,2.6rem); margin: 2.4rem 0 1rem; }
.prose h3 { font-size: 1.4rem; font-weight: 600; color: var(--green-800); margin: 2rem 0 .7rem; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: .7rem; margin: 1.4rem 0; }
.prose ul li { position: relative; padding-left: 1.9rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 9px; height: 9px; border: 1.5px solid var(--gold); border-radius: 50%; }
.prose a { color: var(--green-700); text-decoration: none; }

.disclaimer-note {
  margin-top: 2.4rem; padding: 1.1rem 1.4rem; border-left: 3px solid var(--gold);
  background: var(--cream); border-radius: 0 6px 6px 0; font-size: .92rem; color: var(--muted);
}

/* Chips */
.chip { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .9rem; border-radius: 100px;
  background: var(--sage-pale); color: var(--green-800); font-size: .78rem; font-weight: 700; letter-spacing: .04em; }

/* Utility */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Responsive */
@media (max-width: 1280px) {
  .header-phone { display: none; }
}
@media (max-width: 1200px) {
  .nav-toggle { display: block; }

  /* ── Mobiles Drawer-Menü (Stil: Menue.jpg) ────────────────── */
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(89vw, 366px);
    background: var(--paper-2); flex-direction: column; align-items: stretch;
    padding: 0 0 28px; gap: 0; transform: translateX(100%);
    transition: transform .42s cubic-bezier(.22,.61,.36,1);
    box-shadow: none;
    overflow-y: auto; -webkit-overflow-scrolling: touch; z-index: 150;
  }
  .main-nav.open { transform: none; }

  /* Drawer-Kopf mit Logo (grüne Karte oben) */
  .nav-drawer-head { display: flex; align-items: center; gap: 14px;
    padding: 22px 20px; background: var(--green-900); color: #fff;
    position: sticky; top: 0; z-index: 2; }
  .nav-drawer-brand { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
  .nav-drawer-logo { width: 48px; height: 48px; border-radius: 50%; background: #fff;
    display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
  .nav-drawer-logo img { width: 40px; height: auto; }
  .nav-drawer-name { display: flex; flex-direction: column; line-height: 1.22; min-width: 0; }
  .nav-drawer-name b { font-size: .98rem; font-weight: 800; letter-spacing: .02em; color: #fff; }
  .nav-drawer-name i { font-style: normal; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold-light); font-weight: 700; margin-top: 2px; }
  .nav-drawer-close { width: 42px; height: 42px; flex-shrink: 0; border: 0; cursor: pointer;
    background: rgba(255,255,255,.12); border-radius: 50%; color: #fff; display: grid; place-items: center; }
  .nav-drawer-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
  .nav-drawer-close:hover { background: rgba(255,255,255,.22); }

  /* Sektions-Überschriften (NAVIGATION / KONTAKT) */
  .nav-sect { display: block; font-size: .68rem; font-weight: 800; letter-spacing: .16em;
    text-transform: uppercase; color: var(--gold); padding: 20px 22px 6px; }

  /* Listeneinträge mit Icon */
  .nav-ic { display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; flex-shrink: 0; color: var(--green-700); }
  .nav-ic svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.5; }
  .nav-item { width: 100%; }
  /* Rechtliches-Einträge sind .nav-item.nav-only-mobile – müssen hier
     den globalen display:none-Default explizit aufheben. */
  .nav-item.nav-only-mobile { display: block; }
  .main-nav .nav-link { display: flex; align-items: center; gap: 14px; padding: 13px 22px;
    font-size: 1rem; font-weight: 600; text-transform: none; letter-spacing: 0;
    color: var(--green-900); border: 0; border-radius: 0; min-height: 52px; }
  .main-nav .nav-link::after { display: none; }
  .main-nav .nav-tx { flex: 1; }
  .main-nav .nav-link:hover { background: var(--cream); color: var(--green-700); }
  .main-nav .nav-link.active { background: var(--sage-pale); color: var(--green-800);
    box-shadow: inset 3px 0 0 var(--gold); }
  .main-nav .nav-link.active .nav-ic { color: var(--green-800); }
  .nav-item:not(:last-of-type) > .nav-link { border-bottom: 1px solid rgba(44,74,54,.07); }

  /* Untermenü (Leistungen) – schlicht aufklappen ohne Einrückung/Hintergrund */
  .nav-item.has-drop > .nav-link .caret { margin-left: auto; }
  .nav-item.has-drop:hover .dropdown,
  .nav-item.has-drop:focus-within .dropdown { transform: none; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; background: transparent; margin: 0; min-width: 0;
    max-height: 0; overflow: hidden; padding: 0;
    transition: max-height .32s ease, padding .32s ease; }
  .nav-item.has-drop.open-mobile .dropdown { max-height: 440px; padding: 4px 0 8px; }
  .dropdown a { padding: 10px 22px; }

  /* Kontaktzeilen im Drawer */
  .nav-contact-row { display: flex; align-items: center; gap: 14px; padding: 12px 22px;
    color: var(--green-900); min-height: 52px; }
  .nav-contact-row:hover { background: var(--cream); }
  .nav-contact-row .nav-tx { display: flex; flex-direction: column; line-height: 1.25; font-weight: 700; }
  .nav-contact-row .nav-tx small { font-weight: 700; font-size: .64rem; letter-spacing: .14em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1px; }
  .nav-drawer-cta { display: inline-flex; margin: 18px 22px 2px; justify-content: center; }

  /* Sanftes, gestaffeltes Einblenden der Einträge beim Öffnen */
  .main-nav.open > *:not(.nav-drawer-head) { animation: drawerItemIn .45s both; }
  .main-nav.open > *:nth-child(2)  { animation-delay: .04s; }
  .main-nav.open > *:nth-child(3)  { animation-delay: .08s; }
  .main-nav.open > *:nth-child(4)  { animation-delay: .12s; }
  .main-nav.open > *:nth-child(5)  { animation-delay: .16s; }
  .main-nav.open > *:nth-child(6)  { animation-delay: .20s; }
  .main-nav.open > *:nth-child(7)  { animation-delay: .24s; }
  .main-nav.open > *:nth-child(8)  { animation-delay: .28s; }
  .main-nav.open > *:nth-child(9)  { animation-delay: .31s; }
  .main-nav.open > *:nth-child(10) { animation-delay: .34s; }
  .main-nav.open > *:nth-child(11) { animation-delay: .37s; }
  @keyframes drawerItemIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }

  .nav-backdrop { position: fixed; inset: 0; background: rgba(20,40,28,.46); opacity: 0; visibility: hidden;
    transition: opacity .35s; z-index: 140; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  .header-cta { width: auto; gap: 0; margin-left: auto; }
  .header-cta .btn { display: none; }
}
@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .brand-text .b1 { font-size: 0.86rem; }
  .brand-mark, .brand-mark img { width: 88px; }
}
@media (max-width: 520px) {
  .brand-mark, .brand-mark img { width: 66px; }
  .brand-text .b1 { font-size: 0.78rem; }
  .brand-text .b2 { font-size: 0.6rem; }
}

/* Karten-Einwilligung (Google Maps, Zwei-Klick) */
.map-consent {
  position: relative; min-height: 340px; display: grid; place-items: center; text-align: center;
  padding: 2.4rem; color: var(--on-green); background: var(--green-800);
  background-image:
    linear-gradient(rgba(32,56,42,.72), rgba(32,56,42,.72)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 46px);
}
.map-consent .mc-inner { max-width: 460px; }
.map-consent .mc-pin { width: 56px; height: 56px; border-radius: 50%; background: rgba(240,237,226,.12); display: grid; place-items: center; margin: 0 auto 1.1rem; }
.map-consent .mc-pin svg { width: 28px; height: 28px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }
.map-consent h3 { color: #fff; font-size: 1.3rem; font-weight: 600; }
.map-consent p { color: var(--on-green-muted); font-size: .92rem; margin: .6rem 0 1.4rem; line-height: 1.6; }
.map-consent .mc-actions { display: flex; gap: .8rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.map-consent .mc-note { display: block; margin-top: 1rem; font-size: .76rem; color: var(--on-green-muted); opacity: .8; }
.map-consent .mc-note a { color: var(--gold-light); }
.map-frame { width: 100%; height: 340px; border: 0; display: block; filter: saturate(.9); }

/* Cookie-Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  background: var(--green-900);
  border-top: 1px solid rgba(184,149,100,.28);
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 -6px 32px rgba(20,40,28,.22);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 1.1rem var(--gutter);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(184,149,100,.18); display: grid; place-items: center;
}
.cookie-icon svg { width: 20px; height: 20px; stroke: var(--gold-light); fill: none; stroke-width: 1.5; }
.cookie-text { flex: 1; min-width: 240px; margin: 0; font-size: .9rem; color: var(--on-green-muted); line-height: 1.6; }
.cookie-text strong { color: var(--on-green); font-weight: 700; }
.cookie-actions { display: flex; align-items: center; gap: .9rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-link { color: var(--gold-light); font-size: .82rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.cookie-link:hover { color: var(--gold); }
.cookie-btn { padding: .72rem 1.5rem !important; font-size: .8rem !important; }
@media (max-width: 600px) {
  .cookie-inner { gap: .9rem; padding: 1rem var(--gutter) calc(1rem + env(safe-area-inset-bottom, 0px)); }
  .cookie-icon { display: none; }
  .cookie-text { min-width: 0; font-size: .86rem; }
  .cookie-actions { width: 100%; justify-content: space-between; gap: 1rem; }
  .cookie-link { white-space: normal; }
  .cookie-btn { flex: 0 0 auto; }
}

/* ============================================================
   BARRIEREFREIHEIT / ACCESSIBILITY
   WCAG 2.2 · EN 301 549 · BFSG
   ============================================================ */

/* Skip-Link (unsichtbar, erscheint bei Tastaturfokus) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 0.85rem 1.6rem; background: var(--green-900); color: #fff;
  font: 700 1rem/1.4 var(--font-sans); text-decoration: underline;
  text-underline-offset: 3px; white-space: nowrap;
}
.skip-link:focus { left: 0; outline: 3px solid var(--gold-light); outline-offset: 0; }

/* Sichtbarer Tastaturfokus (WCAG 2.4.7 / 2.4.11 / 2.4.12) */
:focus-visible {
  outline: 3px solid var(--green-700);
  outline-offset: 3px;
}
a:focus-visible { border-radius: 2px; }
.btn:focus-visible { outline-offset: 4px; }
.nav-link:focus-visible { border-radius: var(--radius); }
.dropdown a:focus-visible { outline-offset: -2px; }

/* Formularfelder: Fokus sichtbar statt outline:none */
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 3px solid var(--green-700);
  outline-offset: -1px;
  border-color: var(--green-700);
}

/* Mindest-Klickfläche 44 × 44 px (WCAG 2.5.8) */
.btn { min-height: 2.75rem; }
.nav-link { min-height: 2.75rem; display: inline-flex; align-items: center; }
.field input, .field textarea, .field select { min-height: 2.75rem; }
.field.consent input[type="checkbox"] { min-width: 1.25rem; min-height: 1.25rem; }

/* Pflichtfeld-Legende über dem Formular */
.form-required-note {
  font-size: 0.88rem; color: var(--muted); margin-bottom: 1.2rem;
}
.form-required-note .req { color: var(--gold); font-weight: 700; }

/* Honeypot – unsichtbares Spam-Schutz-Feld (für Menschen ausgeblendet) */
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── Modus: Schrift vergrößern ───────────────────────────── */
.a11y-large-text { font-size: 125%; }

/* ── Modus: Hoher Kontrast ───────────────────────────────── */
.a11y-high-contrast {
  --paper: #ffffff; --paper-2: #ffffff;
  --cream: #f0f0f0; --cream-2: #e5e5e5;
  --ink: #000000;
  --muted: #1a1a1a; --muted-2: #333333;
  --green-900: #000000; --green-800: #0a1a10;
  --green-700: #0f2618; --green-600: #143320;
  --sage: #4a6830; --sage-dark: #2d4418;
  --sage-pale: #c0d0a8; --sage-light: #90a870;
  --gold: #5a4200; --gold-light: #7a5a10; --gold-pale: #d0c080;
  --on-green: #ffffff; --on-green-muted: #f0f0f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,.18);
}
.a11y-high-contrast a:not(.btn):not(.brand) { text-decoration: underline; text-underline-offset: 3px; }
.a11y-high-contrast .card,
.a11y-high-contrast .field input,
.a11y-high-contrast .field textarea,
.a11y-high-contrast .field select,
.a11y-high-contrast .form-card { border-color: rgba(0,0,0,.4); }
.a11y-high-contrast .eyebrow::after { background: currentColor; }

/* ── Modus: Weniger Animationen ──────────────────────────── */
.a11y-reduced-motion *,
.a11y-reduced-motion *::before,
.a11y-reduced-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}
.a11y-reduced-motion { scroll-behavior: auto; }
.a11y-reduced-motion .reveal { opacity: 1; transform: none; transition: none; }
