/* ============================================================
   Pflegediener24h — Editorial-Variante V3 (Tiefe & Finesse)
   Aufbauend auf V2 (Rundungen + Tint-Flächen), ergänzt um:
   – Tiefe: Glows, Bild-Scrims, gestaffelte Schatten, Inset-Lichtkanten
   – Dynamik: Bild-Zoom, Hover-Akzentbalken, Scroll-Fortschritt
   – Details: Icon-Chips, Checklisten, Glas-Infokarte, Stadt-Pills
   Farben & Fonts kommen aus tokens.css.
   ============================================================ */

:root {
  --tint-blue:   var(--navy-a04);
  --tint-blue-h: var(--navy-a06);
  --tint-gray:   rgba(27, 42, 58, 0.05);
  --tint-gray-h: rgba(27, 42, 58, 0.08);
  --tint-warm:   var(--amber-a06);
  --edln-blue:   rgba(79, 147, 207, 0.22);
  --radius-band: 28px;
  --shadow-card: 0 1px 2px rgba(27, 42, 58, 0.04), 0 10px 28px -14px rgba(27, 42, 58, 0.16);
  --shadow-card-h: 0 2px 4px rgba(27, 42, 58, 0.05), 0 18px 40px -16px rgba(27, 42, 58, 0.22);
  --inset-light: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--text-strong);
  line-height: var(--leading-normal);
  font-size: var(--text-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: var(--leading-tight); color: var(--ink-900); text-wrap: balance; }
p { text-wrap: pretty; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--amber-a30); }
[id] { scroll-margin-top: 96px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; border-radius: 6px; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }

/* Highlight-Wort: Orange + zarter Marker-Unterstrich */
.hl { color: var(--highlight); font-weight: 700; }
h1 .hl, h2 .hl, blockquote .hl {
  background: linear-gradient(180deg, transparent 70%, var(--amber-a20) 70%, var(--amber-a20) 96%, transparent 96%);
  padding: 0 2px; margin: 0 -2px;
}

/* ── Reveal ── */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
html.js figure.reveal { transform: translateY(18px) scale(0.985); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js figure.reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Kicker (Eyebrow) ── */
.kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: var(--label-size); font-weight: var(--label-weight);
  text-transform: uppercase; letter-spacing: var(--tracking-wider); color: var(--highlight);
}
.kicker.on-dark { color: var(--highlight-soft); }

/* ── Buttons & Links ── */
.ebtn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.98rem;
  padding: 15px 26px; border-radius: var(--radius-lg); border: 1px solid transparent;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base);
  white-space: nowrap;
}
.ebtn i, .ebtn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.25s var(--ease-out); }
.ebtn-primary { background: var(--accent); color: var(--text-on-accent); box-shadow: 0 8px 20px -8px rgba(42, 106, 172, 0.5); }
.ebtn-primary:hover { background: var(--accent-hover); transform: var(--lift); box-shadow: 0 14px 28px -10px rgba(42, 106, 172, 0.55); }
.ebtn:hover > svg:last-child:not(:first-child) { transform: translateX(3px); }
.ebtn-lg { padding: 17px 30px; font-size: 1.04rem; border-radius: var(--radius-xl); }
.ebtn-block { width: 100%; justify-content: center; }
.elink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.98rem; color: var(--navy-900); white-space: nowrap;
  transition: color var(--dur-fast);
}
.elink i, .elink svg { width: 18px; height: 18px; color: var(--navy-700); transition: transform 0.25s var(--ease-out); }
.elink:hover { color: var(--navy-800); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; text-decoration-color: var(--navy-500); }
.elink:hover svg { transform: translate(2px, 2px); }

/* ── Logo ── */
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.5px; color: var(--ink-900); display: inline-flex; align-items: baseline; gap: 2px; }
.logo .lo-24 { font-family: var(--font-body); font-weight: 800; font-size: 0.92rem; letter-spacing: 0.5px; color: #fff; background: var(--highlight); padding: 3px 8px; border-radius: var(--radius-sm); transform: translateY(-2px); box-shadow: 0 4px 10px -4px rgba(224, 116, 42, 0.55); }

/* ── Masthead ── */
.mast-util { background: var(--tint-blue); }
.mu-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: 9px 0; font-size: var(--text-xs); color: var(--text-muted); }
.mu-item, .mu-links a { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.mu-links { display: flex; align-items: center; gap: 20px; }
.mu-links a:hover { color: var(--navy-900); }
.mast-util i, .mast-util svg { width: 13px; height: 13px; color: var(--navy-700); flex-shrink: 0; }

.masthead {
  position: sticky; top: 0; z-index: 100; background: #fff;
  transition: background var(--dur-base), box-shadow var(--dur-base);
}
.masthead.scrolled {
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(var(--blur-nav)); backdrop-filter: blur(var(--blur-nav));
  box-shadow: 0 12px 32px -20px rgba(27, 42, 58, 0.35);
}
.scroll-progress { position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--highlight); z-index: 2; }
.mast-inner { height: var(--nav-height); display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); }
.mast-nav { display: flex; align-items: center; gap: 8px; }
.mnav {
  position: relative; display: inline-flex; align-items: baseline; gap: 7px;
  padding: 8px 12px; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.4px; color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.mnav:hover { color: var(--ink-900); background: var(--tint-gray); }
.mnav.active { color: var(--ink-900); background: var(--amber-a08); }
.mast-cta { display: flex; align-items: center; gap: var(--space-4); }
.mast-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: var(--text-sm); color: var(--ink-900); white-space: nowrap; }
.mast-phone i, .mast-phone svg { width: 15px; height: 15px; color: var(--navy-700); }
.mast-phone:hover { color: var(--navy-900); }
.nav-burger { display: none; background: none; border: 1px solid var(--line-300); border-radius: var(--radius-md); width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; color: var(--ink-900); }
.nav-burger i, .nav-burger svg { width: 22px; height: 22px; }

.mobile-menu { display: none; flex-direction: column; padding: var(--space-4) var(--container-pad) var(--space-6); border-top: 1px solid var(--line-200); background: #fff; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 12px; border-radius: var(--radius-md); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ink-900); border-bottom: 1px solid var(--line-200); }
.mobile-menu a:hover { color: var(--navy-900); background: var(--tint-gray); }
.mobile-menu .ebtn { margin-top: var(--space-4); border-bottom: none; text-transform: none; letter-spacing: 0; font-size: 0.98rem; }

/* ── Offset-Rahmen + Medienfläche (Scrim & Zoom) ── */
.ed-frame { position: relative; margin: 0 16px 16px 0; }
.ed-frame::after { content: ''; position: absolute; inset: 0; transform: translate(16px, 16px); border: 1.5px solid var(--navy-600); border-radius: var(--radius-3xl); pointer-events: none; z-index: -1; }
.ed-media { position: relative; overflow: hidden; border-radius: var(--radius-3xl); box-shadow: var(--shadow-card); }
.ed-media img, .ed-media image-slot { width: 100%; display: block; }
.ed-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 35, 56, 0) 58%, rgba(16, 35, 56, 0.18) 100%); pointer-events: none; z-index: 1; }
@media (prefers-reduced-motion: no-preference) {
  .ed-media img, .ed-media image-slot { transition: transform 0.9s var(--ease-out); transform-origin: center; }
  .ed-frame:hover .ed-media img, .ed-frame:hover .ed-media image-slot { transform: scale(1.035); }
}
/* Schwebende Glas-Infokarte auf Bildern */
.float-card {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.65); border-radius: var(--radius-2xl);
  padding: 11px 18px 11px 11px; box-shadow: var(--shadow-float);
}
.float-card .fc-ic { width: 42px; height: 42px; border-radius: var(--radius-xl); background: var(--navy-a10); color: var(--navy-800); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-card .fc-ic i, .float-card .fc-ic svg { width: 20px; height: 20px; }
.float-card strong { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--ink-900); line-height: 1.2; }
.float-card .fc-sub { font-size: var(--text-xs); font-weight: 600; color: var(--text-muted); }

/* ── Hero ── */
.ed-hero {
  position: relative; padding: var(--space-16) 0 0; overflow: hidden;
  background:
    radial-gradient(52rem 30rem at 88% -12%, var(--navy-a10), transparent 62%),
    radial-gradient(38rem 24rem at -8% 32%, var(--amber-a06), transparent 60%),
    linear-gradient(180deg, var(--tint-blue-h) 0%, rgba(79, 147, 207, 0) 58%);
}
.ed-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(40px, 5vw, 80px); align-items: center; }
.ed-hero h1 { font-size: clamp(2.9rem, 6vw, 5rem); letter-spacing: -0.01em; margin: 22px 0 24px; }
.ed-lead { font-size: var(--text-lead); color: var(--text-muted); line-height: var(--leading-relaxed); max-width: 54ch; margin-bottom: var(--space-8); }
.ed-hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.ed-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.ed-hero-note {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--line-200);
  box-shadow: var(--shadow-xs); font-size: var(--text-sm); font-weight: 600; color: var(--text-muted);
  white-space: nowrap;
}
.ed-hero-note i, .ed-hero-note svg { width: 15px; height: 15px; color: var(--navy-700); flex-shrink: 0; }
.ed-hero-fig img { height: clamp(400px, 44vw, 540px); object-fit: cover; }

/* ── Sektionen & Kapitel ── */
.ed-section { padding: var(--space-30) 0 0; }
.chap-head { margin-bottom: var(--space-12); display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.chap-kicker { display: flex; align-items: center; gap: 12px; font-size: var(--label-size); font-weight: var(--label-weight); text-transform: uppercase; letter-spacing: var(--tracking-wider); color: var(--highlight); margin-bottom: 18px; }
.chap-head h2 { font-size: clamp(2rem, 3.5vw, 2.85rem); letter-spacing: var(--tracking-tight); }
.chap-desc { color: var(--text-muted); font-size: var(--text-lead); line-height: var(--leading-relaxed); }

/* ── Ablauf: Timeline links, Text rechts ── */
.ablauf-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 5vw, 80px); align-items: start; }
.ablauf-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.ablauf-copy .chap-kicker { margin-bottom: 0; }
.ablauf-copy h2 { font-size: clamp(2rem, 3.5vw, 2.85rem); letter-spacing: var(--tracking-tight); }
.ablauf-copy .elink { margin-top: 10px; }
.pr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 22px); }
.pr-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 30px 28px 28px; border-radius: var(--radius-3xl);
  background: var(--tint-gray);
  transition: background var(--dur-base), transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.pr-card:first-child, .pr-card:last-child { background: var(--tint-blue); }
.pr-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); background: var(--tint-gray-h); }
.pr-card:first-child:hover, .pr-card:last-child:hover { background: var(--tint-blue-h); }
.pr-num {
  position: absolute; top: 6px; right: 20px;
  font-family: var(--font-heading); font-weight: 700; font-size: clamp(4.2rem, 5.5vw, 5.4rem); line-height: 1;
  color: rgba(42, 106, 172, 0.13); font-variant-numeric: tabular-nums; user-select: none; pointer-events: none;
}
.pr-ic {
  width: 46px; height: 46px; border-radius: var(--radius-xl); flex-shrink: 0;
  background: #fff; border: 1px solid var(--edln-blue); color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -8px rgba(42, 106, 172, 0.3);
  transition: background var(--dur-base), color var(--dur-base), border-color var(--dur-base);
}
.pr-ic i, .pr-ic svg { width: 21px; height: 21px; }
.pr-card:hover .pr-ic { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.pr-card h3 { font-size: 1.28rem; margin-top: 4px; }
.pr-card p { position: relative; color: var(--text-muted); font-size: var(--text-sm); line-height: var(--leading-relaxed); }
.step-ic {
  width: 46px; height: 46px; border-radius: var(--radius-xl); flex-shrink: 0;
  background: #fff; border: 1px solid var(--edln-blue); color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -8px rgba(42, 106, 172, 0.3);
  transition: background var(--dur-base), color var(--dur-base);
}
.step-ic i, .step-ic svg { width: 21px; height: 21px; }
.ed-svc-row:hover .step-ic { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

/* ── Dunkles Band (Über uns) ── */
.ed-band {
  position: relative; overflow: hidden;
  background: var(--surface-footer); color: var(--ink-300);
  padding: var(--space-20) 0 calc(var(--space-20) + 64px); margin: var(--space-30) clamp(12px, 2.5vw, 28px) 0;
  border-radius: var(--radius-band);
  box-shadow: 0 30px 60px -40px rgba(1, 42, 79, 0.5);
}
.ed-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46rem 30rem at 8% -10%, rgba(79, 147, 207, 0.32), transparent 60%),
    radial-gradient(30rem 22rem at 96% 110%, rgba(255, 140, 75, 0.12), transparent 60%);
}
.ed-band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 55%);
  mask-image: linear-gradient(180deg, #000, transparent 55%);
}
.ed-band > .container { position: relative; z-index: 1; }
.ed-band-grid { display: grid; grid-template-columns: minmax(0, 6.5fr) minmax(0, 5.5fr); gap: clamp(40px, 5vw, 72px); align-items: center; }
.ed-band h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 2.85rem); margin: 20px 0 18px; }
.band-text { color: var(--ink-300); line-height: var(--leading-relaxed); max-width: 56ch; }
.band-cities { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 26px; font-size: var(--text-sm); }
.band-cities .bc-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; color: rgba(210, 224, 239, 0.65); margin-right: 4px; }
.city-pill {
  display: inline-flex; align-items: center; padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: var(--text-sm); font-weight: 600; color: var(--ink-300);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.city-pill:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); }
.city-pill.is-hq { color: var(--highlight-soft); border-color: rgba(255, 179, 128, 0.45); background: rgba(255, 140, 75, 0.1); }
.ed-band .ed-frame::after { border-color: rgba(255, 255, 255, 0.4); }
.ed-band .ed-media { box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.5); }
.ed-band-fig image-slot { height: 380px; }
.band-stats-pull { position: relative; z-index: 5; margin-top: -64px; }
.band-stats {
  background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-3xl); padding: 8px;
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.bstat { padding: 24px 32px; border-left: 1px solid var(--line-200); }
.bstat:first-child { border-left: none; }
.bstat .num { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 2.5rem; line-height: 1.1; color: var(--navy-900); font-variant-numeric: tabular-nums; }
.bstat .cap { font-size: var(--text-sm); color: var(--text-muted); }

/* ── Leistungen ── */
.ed-svc-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(40px, 5vw, 72px); align-items: start; }
.ed-svc-media { order: 2; display: flex; flex-direction: column; gap: 24px; }
.owner-box { background: var(--tint-gray); border-radius: var(--radius-2xl); padding: 22px 24px; align-self: center; flex-grow: 1; width: 100%; }
.ob-title { font-family: var(--font-heading); font-weight: 600; font-size: 1.4rem; line-height: 1.3; color: var(--ink-900); text-align: center; }
.ob-phone { display: inline-flex; align-items: center; justify-content: center; width: 100%; gap: 10px; margin-top: 14px; font-family: var(--font-heading); font-weight: 700; font-size: 1.7rem; color: var(--ink-900); transition: color var(--dur-fast); }
.ob-phone i, .ob-phone svg { width: 22px; height: 22px; color: var(--navy-700); }
.ob-phone:hover { color: var(--navy-800); }
.ob-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 12px; }
.owner-avatar { width: 32px; height: 32px; display: block; flex-shrink: 0; }
.ob-owner { font-size: var(--text-xs); font-weight: 600; color: var(--text-muted); }
.ed-svc-media .ed-frame image-slot { height: 430px; }
.ed-svc-masonry { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.2vw, 26px); align-items: start; }
.svc-col { display: grid; gap: clamp(18px, 2.2vw, 26px); }
.svc-col-offset { margin-top: 72px; }
.ed-svc-row {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 26px 28px 28px;
  background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-xs);
  transition: background var(--dur-base), border-color var(--dur-base), transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.svc-head { display: flex; width: 100%; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ed-svc-row::before { content: ''; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px; border-radius: 3px; background: var(--navy-600); transform: scaleY(0); transform-origin: top; transition: transform 0.35s var(--ease-out); }
.ed-svc-row:hover { background: var(--tint-blue); border-color: var(--edln-blue); transform: translateY(-2px); box-shadow: var(--shadow-card-h); }
.ed-svc-row:hover::before { transform: scaleY(1); }
.ed-svc-row h3 { font-size: 1.32rem; margin-bottom: 10px; transition: color var(--dur-fast); }
.ed-svc-row:hover h3 { color: var(--navy-800); }
.ed-svc-row p { color: var(--text-muted); font-size: 0.98rem; line-height: var(--leading-relaxed); max-width: 56ch; }
.svc-arr { width: 22px; height: 22px; color: var(--navy-700); transition: transform 0.25s var(--ease-out), color var(--dur-fast); }
.ed-svc-row:hover .svc-arr { transform: translate(4px, -4px); color: var(--navy-900); }

/* ── Szenarien ── */
.ed-scen-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 36px); }
.ed-scen {
  position: relative; background: #fff; border: 1px solid var(--line-200); border-radius: var(--radius-3xl); overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-base);
}
.ed-scen:hover { transform: var(--lift-lg); box-shadow: var(--shadow-card-h); border-color: var(--edln-blue); }
.ed-scen .scen-media { position: relative; overflow: hidden; }
.ed-scen image-slot { width: 100%; height: 225px; display: block; }
.ed-scen .scen-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 35, 56, 0) 55%, rgba(16, 35, 56, 0.22) 100%); pointer-events: none; }
@media (prefers-reduced-motion: no-preference) {
  .ed-scen image-slot { transition: transform 0.9s var(--ease-out); }
  .ed-scen:hover image-slot { transform: scale(1.05); }
}
.scen-body { padding: 20px 26px 26px; }
.scen-kicker { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 1.6px; color: var(--highlight); }
.ed-scen h4 { font-size: 1.22rem; margin: 10px 0 8px; }
.ed-scen p { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-relaxed); }
.scen-meta { list-style: none; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-200); display: grid; gap: 8px; }
.scen-meta li { display: flex; align-items: center; gap: 9px; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--navy-800); }
.scen-meta i, .scen-meta svg { width: 17px; height: 17px; padding: 3px; flex-shrink: 0; color: var(--navy-700); background: var(--navy-a10); border-radius: var(--radius-full); }

/* ── Zitat & Mini-Kennzahlen ── */
.ed-quote {
  position: relative; overflow: hidden;
  margin-top: var(--space-16); background: var(--tint-warm);
  border: 1px solid var(--amber-a10); border-radius: var(--radius-band);
  box-shadow: var(--inset-light);
  padding: clamp(32px, 4.5vw, 56px); display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 12px;
}
.ed-quote::after { content: '»'; position: absolute; right: -20px; bottom: -90px; font-family: var(--font-heading); font-weight: 700; font-size: 22rem; line-height: 1; color: var(--amber-a08); pointer-events: none; user-select: none; }
.q-mark { font-family: var(--font-heading); font-weight: 700; font-size: 6.5rem; line-height: 0.75; color: var(--highlight); user-select: none; }
.ed-quote blockquote { position: relative; z-index: 1; font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.45rem, 2.4vw, 2.05rem); line-height: 1.35; color: var(--ink-900); max-width: 28ch; text-wrap: balance; }
.ed-quote cite { display: block; margin-top: 22px; font-style: normal; font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; color: var(--text-muted); }
/* ── Kontakt ── */
.ed-contact-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(40px, 5vw, 80px); align-items: start; }
/* Kontakt links: schlichte Zeilen + Karte, ohne Box */
.contact-lines { display: grid; gap: 22px; }
.cline { display: flex; align-items: flex-start; gap: 12px; }
.cline > i, .cline > svg { width: 20px; height: 20px; color: var(--navy-700); flex-shrink: 0; margin-top: 3px; }
.cl-label { display: block; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; color: var(--text-muted); margin-bottom: 3px; }
.cl-val { font-family: var(--font-heading); font-weight: 600; font-size: 1.14rem; color: var(--ink-900); overflow-wrap: anywhere; transition: color var(--dur-fast); }
a.cline:hover .cl-val { color: var(--navy-800); text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 2px; text-decoration-color: var(--navy-500); }
.contact-map { margin-top: 28px; }
.contact-map iframe { display: block; width: 100%; height: 340px; border: 0; }

/* ── Formular ── */
.ed-form {
  position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line-200);
  border-radius: var(--radius-band); padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.ed-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-amber); }
.ed-form h3 { font-size: 1.5rem; margin-bottom: 8px; }
.fc-sub { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-6); }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { display: block; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ink-900); margin-bottom: 7px; }
.field .req { color: var(--clay-500); }
.field input {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink-900);
  background: var(--tint-gray); border: 1.5px solid transparent; border-radius: var(--radius-lg);
  padding: 13px 16px; transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}
.field input::placeholder { color: var(--line-300); }
.field input:focus { outline: none; background: #fff; border-color: var(--navy-700); box-shadow: 0 0 0 3px var(--navy-a10); }
.field input.invalid { border-color: var(--clay-500); background: var(--clay-a08); }
.field .err { display: none; font-size: var(--text-xs); color: var(--clay-500); font-weight: 600; margin-top: 5px; }
.field.show-err .err { display: block; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: var(--text-sm); color: var(--text-muted); margin: 4px 0 24px; cursor: pointer; }
.consent input { accent-color: var(--navy-700); margin-top: 4px; width: 15px; height: 15px; flex-shrink: 0; }
.consent a { text-decoration: underline; color: var(--navy-900); }
.form-success { display: none; text-align: center; padding: 34px 10px; }
.form-success.show { display: block; }
.form-success .fs-ic { width: 64px; height: 64px; margin: 0 auto 18px; border: 2px solid var(--navy-700); border-radius: var(--radius-full); background: var(--tint-blue); display: flex; align-items: center; justify-content: center; color: var(--navy-700); box-shadow: 0 10px 24px -12px rgba(42, 106, 172, 0.45); }
.form-success .fs-ic i, .form-success .fs-ic svg { width: 28px; height: 28px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: var(--text-sm); }

/* ── Footer ── */
.ed-footer {
  margin-top: var(--space-30); background: var(--tint-blue);
  border-top: 1px solid var(--edln-blue);
  border-radius: var(--radius-band) var(--radius-band) 0 0;
  box-shadow: var(--inset-light);
  padding: var(--space-16) 0 var(--space-8);
}
.ef-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px); }
.ef-brand p { margin-top: 16px; font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-relaxed); max-width: 34ch; }
.ef-col h4 { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 1.6px; color: var(--text-muted); margin-bottom: 16px; }
.ef-col ul { list-style: none; }
.ef-col li { margin: 10px 0; }
.ef-col a { font-size: var(--text-sm); font-weight: 500; color: var(--ink-900); transition: color var(--dur-fast); }
.ef-col a:hover { color: var(--navy-800); text-decoration: underline; }
.ef-col .fitem { display: flex; align-items: center; gap: 9px; font-size: var(--text-sm); color: var(--ink-900); }
.ef-col .fitem i, .ef-col .fitem svg { width: 15px; height: 15px; color: var(--navy-700); flex-shrink: 0; }
.ef-bottom { border-top: 1px solid var(--edln-blue); margin-top: var(--space-12); padding-top: var(--space-6); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: var(--text-xs); color: var(--text-muted); }
.ef-bottom .fb-links { display: flex; gap: 20px; }
.ef-bottom a:hover { color: var(--navy-900); text-decoration: underline; }
.to-top {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--ink-900);
  padding: 8px 15px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--edln-blue);
  box-shadow: var(--shadow-xs); transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast), color var(--dur-fast);
}
.to-top i, .to-top svg { width: 15px; height: 15px; color: var(--navy-700); }
.to-top:hover { color: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow-sm); text-decoration: none !important; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .mast-phone { display: none; }
}
@media (max-width: 1020px) {
  .mast-nav { display: none; }
  .nav-burger { display: flex; }
  .ed-svc-grid { grid-template-columns: 1fr; }
  .ed-svc-media { max-width: 560px; }
  .ed-svc-media .ed-frame image-slot { height: 340px; }
}
@media (max-width: 940px) {
  .ed-hero-grid, .ed-band-grid, .ed-contact-grid, .ablauf-grid { grid-template-columns: 1fr; }
  .ed-hero-fig { max-width: 560px; }
  .ed-hero-fig img { height: 400px; }
  .ef-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .ed-scen-grid { grid-template-columns: 1fr; }
  .ed-scen { max-width: 560px; }
  .ed-scen image-slot { height: 250px; }
  .band-stats { grid-template-columns: 1fr; }
  .bstat { border-left: none; padding: 20px 26px; }
  .bstat + .bstat { border-top: 1px solid var(--line-200); }
}
@media (max-width: 760px) {
  .ed-section { padding-top: var(--space-20); }
  .mast-cta > .ebtn { display: none; }
  .mu-links { display: none; }
  .pr-grid { grid-template-columns: 1fr; }
  .ed-quote { grid-template-columns: 1fr; gap: 18px; padding: 30px 28px; }
  .q-mark { font-size: 4rem; line-height: 0.8; }
  .ed-quote::after { font-size: 14rem; bottom: -56px; }
  .ed-svc-masonry { grid-template-columns: 1fr; }
  .svc-col-offset { margin-top: 0; }
  .ed-svc-row { padding: 24px 22px; }
  .float-card { left: 12px; bottom: 12px; padding: 9px 14px 9px 9px; }
  .float-card .fc-ic { width: 36px; height: 36px; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-map iframe { height: 260px; }
}
