/* =========================================================
   Angela Thieme Bestattungen – style.css
   Editorial, ruhig, hochwertig. Marke: Himmelblau #90B0CF,
   Salbei, warmes Papier, Anthrazit statt Schwarz.
   Display: Fraunces · Fließtext: Mulish
   ========================================================= */

:root {
  --himmelblau: #90b0cf;
  --blau-tief:  #3c5f82;
  --blau-wash:  #e9f0f6;
  --sage:       #a7bfa3;
  --sage-deep:  #6f8a6b;

  --paper:   #f6f3ee;   /* Grundfläche, warm */
  --paper-2: #fffdfa;   /* helle Wechselfläche */
  --white:   #ffffff;
  --ink:     #2b3138;   /* Display-Überschriften */
  --anthrazit:   #3a4149;
  --anthrazit-2: #5d646c;
  --line:    rgba(43, 49, 56, 0.14);
  --line-2:  rgba(43, 49, 56, 0.09);
  --marienkaefer: #c0392b;

  /* Fibonacci-Abstände (goldener-Schnitt-Anmutung) */
  --s1: 8px; --s2: 13px; --s3: 21px; --s4: 34px;
  --s5: 55px; --s6: 89px; --s7: 144px;

  --maxw: 1180px;
  --header-h: 84px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--s2));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--anthrazit);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 var(--s3);
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.005em; }
p { margin: 0 0 var(--s3); }

a { color: var(--blau-tief); text-underline-offset: 3px; }
a:hover { color: var(--ink); }

.wrap { width: min(100% - 2 * var(--s4), var(--maxw)); margin-inline: auto; }
.muted { color: var(--anthrazit-2); font-size: 0.92em; }

/* ---------- Fokus / Skip-Link ---------- */
:focus-visible { outline: 3px solid var(--blau-tief); outline-offset: 3px; border-radius: 3px; }
.skip-link {
  position: absolute; left: var(--s3); top: -120px; z-index: 1000;
  background: var(--white); color: var(--ink);
  padding: var(--s2) var(--s3); border-radius: 8px;
  box-shadow: 0 12px 30px -16px rgba(43,49,56,.45);
  transition: top .2s ease;
}
.skip-link:focus { top: var(--s2); }

/* ---------- Eyebrow / Section-Köpfe ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 var(--s2);
  display: inline-flex; align-items: center; gap: var(--s2);
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--himmelblau);
  display: inline-block;
}
.eyebrow-light { color: rgba(255,255,255,.85); }
.eyebrow-light::before { background: rgba(255,255,255,.7); }

.section { padding-block: clamp(var(--s5), 9vw, var(--s7)); }
.section-paper { background: var(--paper-2); border-block: 1px solid var(--line-2); }
.section-head { max-width: 58ch; margin-bottom: clamp(var(--s4), 5vw, var(--s6)); }
.section-intro { color: var(--anthrazit-2); font-size: 1.15rem; margin: 0; max-width: 52ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--s1);
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; line-height: 1;
  text-decoration: none; border: 1px solid transparent; border-radius: 2px;
  padding: 0.95em 1.7em; cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 1.05em 1.9em; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary { background: var(--blau-tief); color: var(--white); }
.btn-primary:hover { background: var(--ink); color: var(--white); }

.btn-onlight { background: rgba(255,255,255,.96); color: var(--ink); }
.btn-onlight:hover { background: var(--white); color: var(--ink); }

.btn-phone { background: transparent; color: var(--blau-tief); border-color: var(--line); }
.btn-phone:hover { background: var(--blau-wash); color: var(--blau-tief); border-color: var(--himmelblau); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 243, 238, 0.86);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(246, 243, 238, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -22px rgba(43,49,56,.5);
}
.header-inner {
  display: flex; align-items: center; gap: var(--s4);
  min-height: var(--header-h); padding-block: var(--s2);
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo { height: 46px; width: auto; }

.main-nav { margin-left: auto; }
.nav-list { list-style: none; display: flex; gap: var(--s4); margin: 0; padding: 0; }
.nav-list a {
  text-decoration: none; color: var(--anthrazit); font-weight: 600; font-size: 0.95rem;
  padding: 6px 1px; border-bottom: 1.5px solid transparent; transition: border-color .2s, color .2s;
}
.nav-list a:hover { color: var(--blau-tief); border-bottom-color: var(--himmelblau); }
.header-phone { margin-left: var(--s2); white-space: nowrap; }

.nav-toggle { display: none; }
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle-bar { position: relative; }
.nav-toggle-bar::before { content: ""; position: absolute; top: -7px; }
.nav-toggle-bar::after  { content: ""; position: absolute; top: 7px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(560px, 86vh, 820px);
  display: flex; align-items: center;
  padding-block: var(--s6);
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden;
  background: linear-gradient(160deg, #6f93b5, #9fb6a8 70%, var(--paper)); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(28,36,44,.72) 0%, rgba(28,36,44,.45) 42%, rgba(28,36,44,.12) 78%),
    linear-gradient(0deg, rgba(28,36,44,.55), rgba(28,36,44,0) 55%);
}
.hero-inner { max-width: 44rem; }
.hero h1 { color: var(--white); margin-bottom: var(--s3); text-wrap: balance; }
.hero-lead { font-size: 1.28rem; line-height: 1.55; color: rgba(255,255,255,.94); max-width: 38rem; margin-bottom: var(--s4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s4); }

.hero-availability {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: rgba(20,28,36,.42);
  border: 1px solid rgba(255,255,255,.28);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border-radius: 999px; padding: 0.6em 1.1em; margin: 0;
  font-size: 0.98rem; color: rgba(255,255,255,.95);
}
.hero-availability strong { color: #fff; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--sage); flex: none;
  box-shadow: 0 0 0 0 rgba(167,191,163,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(167,191,163,.6); } 70% { box-shadow: 0 0 0 9px rgba(167,191,163,0); } 100% { box-shadow: 0 0 0 0 rgba(167,191,163,0); } }

/* ---------- Vertrauensleiste ---------- */
.trust-strip { background: var(--ink); }
.trust-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--s3) var(--s4); padding-block: var(--s3);
  color: #d6dce1; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; text-align: center;
}
.trust-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--himmelblau); flex: none; }

/* ---------- Erste Schritte (Hilfe) ---------- */
#hilfe .wrap { width: min(100% - 2 * var(--s4), 1480px); }

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--s3);
  align-items: stretch;
}

.tl-row {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  min-height: 100%;
  padding: clamp(var(--s3), 2.4vw, var(--s4));
  border: 1px solid var(--line);
  background: var(--paper-2);
  box-shadow: 0 18px 45px -34px rgba(43,49,56,.45);
}

.tl-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  color: var(--himmelblau);
  line-height: 1;
  font-variant-numeric: lining-nums;
}

.tl-body h3 { margin-bottom: var(--s1); color: var(--ink); }
.tl-body p { margin: 0; color: var(--anthrazit-2); max-width: none; font-size: 0.98rem; line-height: 1.62; }

/* ---------- Bild-Interlude ---------- */
.interlude, .values-media { background: linear-gradient(150deg, #7e9ec0, var(--sage)); }
.interlude {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(280px, 38vw, 440px);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.interlude img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.interlude-scrim { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(28,36,44,.5), rgba(28,36,44,.32)); }
.interlude-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  color: #fff; font-size: clamp(1.4rem, 3.2vw, 2.3rem); line-height: 1.35;
  margin: 0; padding: var(--s5) var(--s4); max-width: 24ch; text-wrap: balance;
  text-shadow: 0 2px 24px rgba(20,28,36,.4);
}

/* ---------- Leistungen ---------- */
.services { display: grid; gap: var(--s3) var(--s5); grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); }
.service { padding-top: var(--s3); border-top: 1px solid var(--line); }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: var(--blau-tief); margin-bottom: var(--s2);
}
.service-icon svg { width: 28px; height: 28px; }
.service h3 { margin-bottom: 6px; color: var(--ink); }
.service p { margin: 0; color: var(--anthrazit-2); font-size: 0.98rem; }

/* ---------- Bestattungsarten ---------- */
.arten { display: grid; gap: 0 var(--s5); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border-top: 1px solid var(--line); }
.art { padding: var(--s4) 0; border-bottom: 1px solid var(--line); }
.art h3 {
  margin-bottom: 6px; color: var(--ink);
  display: flex; align-items: baseline; gap: var(--s2);
}
.art p { margin: 0; color: var(--anthrazit-2); font-size: 0.98rem; max-width: 46ch; }
.art-note h3 { color: var(--blau-tief); }
.text-link { display: inline-block; margin-top: var(--s2); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

/* ---------- Über uns ---------- */
.about { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(var(--s4), 5vw, var(--s6)); align-items: center; }
.about-media {
  border-radius: 3px; overflow: hidden;
  background: linear-gradient(160deg, var(--himmelblau), var(--sage));
  aspect-ratio: 16 / 13;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: var(--s3); }
.about-text p { color: var(--anthrazit); }
.badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4);
  padding: var(--s3) 0 0; margin: var(--s2) 0 0; border-top: 1px solid var(--line);
}
.badges li {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.badges li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--himmelblau); }

/* ---------- Werte / Zitat (Bildband) ---------- */
.values { position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center; min-height: clamp(440px, 64vh, 660px); color: #fff; text-align: center; }
.values-media { position: absolute; inset: 0; z-index: -2; }
.values-media img { width: 100%; height: 100%; object-fit: cover; }
.values-scrim { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(24,32,40,.66), rgba(24,32,40,.5)); }
.values-inner { max-width: 60rem; padding-block: var(--s6); }
.wings { color: rgba(255,255,255,.9); display: inline-block; margin-bottom: var(--s3); }
.values-quote {
  font-family: var(--font-display); font-weight: 400; color: #fff;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.32; margin: 0 0 var(--s3);
  text-wrap: balance; text-shadow: 0 2px 30px rgba(20,28,36,.4);
}
.values-note { letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.82rem; font-weight: 700;
  color: rgba(255,255,255,.82); margin: 0; }

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--s4), 5vw, var(--s6)); align-items: start; }
.phone-display {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--blau-tief); text-decoration: none;
  line-height: 1.1; margin: var(--s2) 0 var(--s4);
}
.phone-display:hover { color: var(--ink); }
.phone-label { display: block; font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 6px; }

.contact-list { margin: 0; display: grid; gap: var(--s3); }
.contact-list div { display: grid; grid-template-columns: 130px 1fr; gap: var(--s3);
  padding-top: var(--s3); border-top: 1px solid var(--line); }
.contact-list dt { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--anthrazit-2); margin: 0; }
.contact-list dd { margin: 0; color: var(--anthrazit); }
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.contact-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: 3px; padding: clamp(var(--s4), 4vw, var(--s5)); }
.form-lead { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--ink); margin: 0 0 var(--s4); }
.field { margin-bottom: var(--s4); }
.field label { display: block; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--anthrazit-2); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1.5px solid var(--line);
  padding: 0.5em 0.1em; transition: border-color .2s ease;
}
.field textarea { resize: vertical; border: 1.5px solid var(--line); border-radius: 3px; padding: 0.6em 0.7em; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blau-tief); }
.privacy-note { font-size: 0.86rem; color: var(--anthrazit-2);
  border-left: 2px solid var(--himmelblau); padding: 4px 0 4px var(--s2); margin: 0 0 var(--s4); }
.form-fallback { margin: var(--s2) 0 0; font-size: 0.92rem; color: var(--sage-deep); }
.form-fallback a { font-weight: 700; }



/* ---------- Standorte ---------- */
.locations-section { padding-block: clamp(var(--s5), 6vw, var(--s6)); }
.wrap-wide { width: min(100% - 2 * var(--s4), 1240px); margin-inline: auto; }
.locations-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.locations-head .eyebrow { justify-content: center; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(var(--s2), 1.6vw, var(--s3));
  align-items: stretch;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 34px -30px rgba(43,49,56,.5);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}
.location-card img {
  width: 100%;
  height: clamp(118px, 11vw, 150px);
  object-fit: cover;
  background: linear-gradient(145deg, var(--blau-wash), var(--paper));
}
.location-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: var(--s3);
}
.location-body h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.location-body address {
  font-style: normal;
  color: var(--anthrazit-2);
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: var(--s2);
}
.location-body .text-link { margin-top: auto; align-self: flex-start; }
.text-link {
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  border-bottom: 1.5px solid var(--himmelblau);
}
.text-link:hover { border-bottom-color: currentColor; }

/* ---------- Dummy-Rechtsseiten ---------- */
.legal-page { background: var(--paper-2); }
.legal-main { max-width: 860px; }
.legal-placeholder {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px -34px rgba(43,49,56,.45);
  padding: clamp(var(--s4), 5vw, var(--s6));
}
.legal-placeholder h2 { font-size: clamp(1.45rem, 3vw, 2rem); }
.legal-placeholder code {
  background: var(--blau-wash);
  color: var(--ink);
  padding: 0.15em 0.35em;
  border-radius: 3px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c4cbd1; }
.footer-top { display: flex; flex-wrap: wrap; gap: var(--s5) var(--s6); justify-content: space-between; padding-block: var(--s6) var(--s5); }
.footer-logo { height: 52px; width: auto; margin-bottom: var(--s3);
  background: rgba(255,255,255,.92); padding: 10px 14px; border-radius: 4px; }
.footer-brand p { color: #aab2ba; font-size: 0.95rem; margin: 0 0 var(--s2); max-width: 38ch; }
.footer-brand a { color: #e3e8ec; text-decoration: none; }
.footer-brand a:hover { color: #fff; text-decoration: underline; }
.footer-nav { display: flex; flex-direction: column; gap: var(--s2); }
.footer-nav a { color: #c4cbd1; text-decoration: none; font-size: 0.97rem; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }

.legal { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); padding-bottom: var(--s5); }
.legal-block { border-top: 1px solid rgba(255,255,255,.16); padding-top: var(--s3); }
.legal-block h2 { color: #fff; font-size: 1.3rem; margin-bottom: var(--s2); }
.legal-block p { color: #aab2ba; font-size: 0.9rem; }
.legal-flag { display: inline-block; font-size: 0.78rem; font-weight: 700; color: #ffd9d3;
  background: rgba(192,57,43,.2); border: 1px solid rgba(192,57,43,.5); border-radius: 5px;
  padding: 4px 10px; margin-bottom: var(--s2); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: space-between; align-items: center; padding-block: var(--s3); }
.footer-bottom p { margin: 0; font-size: 0.86rem; color: #98a0a8; }
.footer-bottom a { color: #c4cbd1; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Mobiler Anruf-Balken ---------- */
.mobile-call-bar {
  display: none; position: fixed; left: 50%; transform: translateX(-50%); bottom: 14px; z-index: 200;
  align-items: center; gap: var(--s1); background: var(--blau-tief); color: #fff; font-weight: 700;
  text-decoration: none; padding: 0.9em 1.4em; border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(43,49,56,.6);
  width: calc(100% - 2 * var(--s3)); max-width: 26rem; justify-content: center;
}

/* Fehlt ein Bild, bleibt der schöne Verlauf sichtbar */
.img-failed::after { content: ""; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .timeline { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
}

@media (max-width: 980px) {
  .locations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-card img { height: 150px; }
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about-media { max-width: 360px; }
  .contact { grid-template-columns: 1fr; }
  .legal { grid-template-columns: 1fr; gap: var(--s4); }
}

@media (max-width: 768px) {
  .header-phone { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 10px; background: none; border: 0;
    cursor: pointer; font: inherit; font-weight: 600; color: var(--ink); padding: 8px; }
  .nav-list {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px -24px rgba(43,49,56,.6);
    padding: var(--s2) var(--s4) var(--s3);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-list.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-list li { width: 100%; }
  .nav-list a { display: block; padding: var(--s2) 2px; border-bottom: 1px solid var(--line-2); }
  .nav-list li:last-child a { border-bottom: 0; }
  .nav-list a:hover { border-bottom-color: var(--line-2); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-7px) rotate(-45deg); }

  .mobile-call-bar { display: flex; }
  main { padding-bottom: 78px; }
  .tl-row { grid-template-columns: 64px 1fr; gap: var(--s3); }
  .tl-num { font-size: 2rem; }
  .contact-list div { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 560px) {
  #hilfe .wrap, .wrap-wide { width: min(100% - 2 * var(--s3), 1480px); }
  .locations-grid { grid-template-columns: 1fr; }
  .location-card img { height: 170px; }
  .timeline { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .brand-logo { height: 40px; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .pulse { animation: none; }
  .btn:hover { transform: none; }
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .mobile-call-bar, .contact-form-wrap, .hero-media, .values-media, .interlude img { display: none; }
  body { background: #fff; color: #000; }
}
