/* ==========================================================================
   SEK – Schellenberg Energie Kompetenz und Beratung
   Stylesheet. Farbkonzept vollständig aus dem Logo abgeleitet.
   ========================================================================== */

:root {
  /* Farben */
  --navy:        #112032;
  --navy-800:    #1a2f47;
  --navy-700:    #24405c;
  --green:       #4C8E39;
  --green-700:   #3d7530;
  --green-100:   #eaf2e6;
  --white:       #ffffff;
  --gray-50:     #F4F6F7;
  --gray-100:    #e8ecee;
  --border:      #dfe5e8;
  --text:        #454f59;
  --text-strong: #223040;
  --muted:       #6b757e;

  /* Typografie */
  --font-display: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Maße */
  --container: 1180px;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(17, 32, 50, .05), 0 2px 8px rgba(17, 32, 50, .04);
  --shadow-md: 0 4px 12px rgba(17, 32, 50, .07), 0 12px 32px rgba(17, 32, 50, .06);
  --shadow-lg: 0 10px 30px rgba(17, 32, 50, .10), 0 30px 60px rgba(17, 32, 50, .08);
  --header-h:  84px;
}

/* --------------------------------------------------------------- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;      /* 17px – bewusst gut lesbar */
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 .6em;
  font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 1.3rem + 3.1vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 1.15rem + 1.9vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.01em; }
p  { margin: 0 0 1.15em; max-width: 68ch; }
ul { margin: 0 0 1.15em; padding-left: 1.15em; }
li { margin-bottom: .35em; }
strong { color: var(--text-strong); font-weight: 650; }

/* Sichtbare Fokuszustände – überall, nie entfernt */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--navy); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ----------------------------------------------------------- Grundraster --- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.section { padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem); }
.section--tint { background: var(--gray-50); }
.section--navy { background: var(--navy); color: #c7d1db; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #b9c5d1; }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }

.section-head { max-width: 62ch; margin-bottom: 2.75rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.09rem; }
.section-head--center p { margin-inline: auto; }

.lead { font-size: 1.18rem; line-height: 1.65; color: var(--text-strong); }

/* ---------------------------------------- Signatur: die drei Balken ("E") --- */
/* Wiederkehrendes Motiv, direkt aus dem Logo abgeleitet.                     */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 650; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-700);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 18px; height: 13px; flex: none;
  background:
    linear-gradient(var(--green), var(--green)) top left / 100% 3px no-repeat,
    linear-gradient(var(--green), var(--green)) center left / 100% 3px no-repeat,
    linear-gradient(var(--green), var(--green)) bottom left / 100% 3px no-repeat;
}
.section--navy .eyebrow { color: #7fc063; }
.section--navy .eyebrow::before {
  background:
    linear-gradient(#7fc063,#7fc063) top left / 100% 3px no-repeat,
    linear-gradient(#7fc063,#7fc063) center left / 100% 3px no-repeat,
    linear-gradient(#7fc063,#7fc063) bottom left / 100% 3px no-repeat;
}
.section-head--center .eyebrow { justify-content: center; }

/* ----------------------------------------------------------------- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: .95rem 1.6rem; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; line-height: 1.2;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 2px 10px rgba(76,142,57,.25); }
.btn--primary:hover { background: var(--green-700); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(76,142,57,.28); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-800); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { background: var(--gray-50); border-color: var(--navy); color: var(--navy); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color: #fff; color: #fff; }
.btn--sm { padding: .68rem 1.15rem; font-size: .93rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }

.textlink {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 700; font-size: .97rem;
  color: var(--navy); text-decoration: none;
}
.textlink svg { width: 16px; height: 16px; transition: transform .18s ease; }
.textlink:hover { color: var(--green-700); }
.textlink:hover svg { transform: translateX(3px); }

/* ------------------------------------------------------------------ Header --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: auto; height: 46px; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  position: relative; display: block; padding: .35rem 0;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  color: var(--navy); text-decoration: none;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--green); transition: right .2s ease;
}
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { right: 0; }
.nav-list a[aria-current="page"] { color: var(--green-700); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; padding: 0;
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span { position: relative; display: block; width: 20px; height: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy);
  transition: transform .2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1000px) {
  .brand img { height: 40px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: .75rem 1.5rem 1.5rem; box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { padding: .95rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--gray-100); }
  .nav-list a::after { display: none; }
  .nav .btn { margin-top: 1.1rem; width: 100%; }
}

/* -------------------------------------------------------------------- Hero --- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  background-image:
    radial-gradient(60rem 40rem at 82% 12%, rgba(76,142,57,.20), transparent 62%),
    radial-gradient(48rem 32rem at 6% 96%, rgba(76,142,57,.10), transparent 60%);
  color: #c3cedb;
  padding-block: clamp(3.5rem, 2rem + 6vw, 6.25rem);
}
.hero::after {
  /* Balkenmotiv als ruhige geometrische Struktur */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(180deg, rgba(255,255,255,.035) 0 1px, transparent 1px 88px);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.hero h1 { color: #fff; max-width: 14ch; }
.hero h1 em { font-style: normal; color: #8ecb70; display: block; }
.hero .sub { font-size: clamp(1.1rem, 1rem + .5vw, 1.32rem); color: #dbe3ea; font-weight: 500; margin-bottom: 1rem; max-width: 46ch; }
.hero .support { color: #9fadbc; max-width: 52ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; margin-top: 2.75rem; padding-top: 1.9rem; border-top: 1px solid rgba(255,255,255,.13); }
.hero-badge { display: flex; align-items: center; gap: .6rem; font-size: .93rem; color: #b3c0cd; }
.hero-badge svg { width: 20px; height: 20px; color: #7fc063; flex: none; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
}

/* Bild-/Medienfläche */
.media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--gray-50); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.media img, .media svg { width: 100%; height: 100%; object-fit: cover; }
.media--flat { box-shadow: var(--shadow-md); }
.media-note {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  background: rgba(17,32,50,.86); color: #dbe3ea;
  font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  padding: .4rem .65rem; border-radius: 6px;
}
.hero .media { aspect-ratio: 5 / 4; }

/* Freistehende Kennzahl-/Fakten-Karte über dem Hero-Bild */
.media-card {
  position: absolute; right: -12px; bottom: -18px; z-index: 3;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.35rem; max-width: 15rem; border-left: 4px solid var(--green);
}
.media-card p { margin: 0; font-size: .92rem; line-height: 1.5; color: var(--text); }
.media-card strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1rem; margin-bottom: .2rem; }
@media (max-width: 600px) { .media-card { position: static; margin-top: 1rem; max-width: none; } }

/* ------------------------------------------------------------------- Karten --- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 700px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.85rem 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before {
  /* die drei Balken als Kartenakzent */
  content: ""; position: absolute; top: 0; left: 1.85rem; width: 34px; height: 4px;
  background: var(--green); border-radius: 0 0 3px 3px;
  transition: width .22s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gray-100); }
.card:hover::before { width: 64px; }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .99rem; }
.card .card-foot { margin-top: auto; padding-top: 1.25rem; }

.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 1.35rem;
  border-radius: 12px; background: var(--green-100); color: var(--green-700);
}
.card-icon svg { width: 26px; height: 26px; }

/* Leistungsliste mit Balken-Bullet */
.ticks { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.ticks li {
  position: relative; padding-left: 1.6rem; margin-bottom: .5rem;
  font-size: .95rem; line-height: 1.55;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 10px; height: 7px;
  background:
    linear-gradient(var(--green),var(--green)) top left / 100% 2px no-repeat,
    linear-gradient(var(--green),var(--green)) center left / 100% 2px no-repeat,
    linear-gradient(var(--green),var(--green)) bottom left / 100% 2px no-repeat;
}
.ticks--tight li { margin-bottom: .3rem; }

.note {
  margin-top: 1.25rem; padding: .85rem 1rem;
  background: var(--gray-50); border-left: 3px solid var(--navy-700);
  border-radius: 0 6px 6px 0; font-size: .89rem; color: var(--muted); line-height: 1.55;
}
.note p { margin: 0; }

/* --------------------------------------------------------------- Vorteile --- */
.benefits { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.1rem 3rem; }
@media (max-width: 780px) { .benefits { grid-template-columns: 1fr; } }
.benefit { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.benefit svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: .3rem; }
.benefit h4 { margin: 0 0 .15rem; }
.benefit p { margin: 0; font-size: .93rem; color: var(--muted); }

/* ------------------------------------------------------------- Vorgehen --- */
/* Nummerierung ist hier inhaltlich richtig: es ist ein echter Ablauf. */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 1rem; }
.step { position: relative; padding: 2rem 1.5rem 0 0; }
.step::after {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--border);
}
.step:first-child::after { border-radius: 3px 0 0 3px; }
.step[data-active]::after { background: var(--green); }
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: .85rem;
  letter-spacing: .1em; color: var(--green-700); display: block; margin-bottom: .6rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { font-size: .95rem; margin: 0; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .step { padding-right: 0; } }

/* --------------------------------------------------------------- Split --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.split--wide-left { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 900px) { .split, .split--wide-left { grid-template-columns: 1fr; } }

/* ------------------------------------------------------- Leistungsblöcke --- */
.svc { padding-block: clamp(2.5rem, 1.5rem + 3vw, 3.75rem); border-top: 1px solid var(--border); }
.svc:first-of-type { border-top: 0; padding-top: 0; }
.svc-grid { display: grid; grid-template-columns: .38fr .62fr; gap: clamp(1.5rem, 3vw, 3.5rem); align-items: start; }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr; gap: 1rem; } }
.svc h2 { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.85rem); }
.svc h3 { margin-top: 1.6rem; }
.svc h3:first-child { margin-top: 0; }

/* Sprungnavigation innerhalb langer Leistungsseiten */
.jump {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding: 1.15rem; background: var(--gray-50);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.jump a {
  font-size: .89rem; font-weight: 600; font-family: var(--font-display);
  color: var(--navy); background: #fff; border: 1px solid var(--border);
  padding: .5rem .85rem; border-radius: 100px; text-decoration: none;
  transition: border-color .15s ease, color .15s ease;
}
.jump a:hover { border-color: var(--green); color: var(--green-700); }

/* --------------------------------------------------------------- Kontakt --- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.info-list li:first-child { padding-top: 0; }
.info-list svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: .25rem; }
.info-list .k { display: block; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 650; margin-bottom: .15rem; }
.info-list .v { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.02rem; line-height: 1.45; }
.info-list a.v { text-decoration: none; }
.info-list a.v:hover { color: var(--green-700); text-decoration: underline; }

/* ----------------------------------------------------------------- Formular --- */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 650; font-size: .93rem; color: var(--navy); margin-bottom: .4rem; }
.req { color: var(--green-700); font-weight: 700; }
.hint { font-size: .84rem; color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text-strong);
  padding: .8rem .95rem; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23454f59' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 18px; padding-right: 2.8rem; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #c3ccd2; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(76,142,57,.16); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #c0392b; }
.error { display: none; margin-top: .4rem; font-size: .87rem; color: #b0322a; font-weight: 500; }
.error.is-visible { display: block; }

.check { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1.15rem; }
.check input { width: 20px; height: 20px; flex: none; margin-top: .22rem; accent-color: var(--green); }
.check label { font-family: var(--font-body); font-weight: 400; font-size: .93rem; line-height: 1.55; color: var(--text); margin: 0; }
.check .error { margin-left: 0; }

.honey { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { display: none; margin-top: 1.5rem; padding: 1.1rem 1.25rem; border-radius: var(--radius); font-size: .97rem; }
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--green-100); border: 1px solid #bcd9ac; color: #2f5e23; }
.form-status--err { background: #fdeceb; border: 1px solid #f0c0bb; color: #8f2a20; }
.form-status p { margin: 0; max-width: none; }

/* ------------------------------------------------------------------ Karte --- */
.map-consent {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--gray-50);
  min-height: 380px; display: grid; place-items: center; text-align: center; padding: 2rem;
}
.map-consent__inner { max-width: 42ch; }
.map-consent h3 { margin-bottom: .5rem; }
.map-consent p { font-size: .93rem; color: var(--muted); margin-inline: auto; }
.map-consent iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-consent.is-loaded { padding: 0; min-height: 420px; }
.map-consent.is-loaded .map-consent__inner { display: none; }

/* ------------------------------------------------------------------- CTA --- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--navy);
  background-image: radial-gradient(44rem 26rem at 88% 0%, rgba(76,142,57,.22), transparent 60%);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  color: #b9c5d1;
}
.cta-band h2 { color: #fff; margin-bottom: .6rem; }
.cta-band p { max-width: 56ch; }
.cta-band .btn-row { margin-bottom: 0; }

/* --------------------------------------------------------------- Rechtstext --- */
.legal { max-width: 76ch; }
.legal h2 { font-size: 1.5rem; margin-top: 2.75rem; }
.legal h3 { font-size: 1.1rem; margin-top: 1.75rem; }
.legal p, .legal li { font-size: 1rem; }
.ph {
  display: inline-block; background: #fff5d6; border: 1px dashed #d9ba52;
  border-radius: 5px; padding: .05em .45em; color: #6b5410;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .86em; font-weight: 500;
}
.callout {
  background: var(--gray-50); border: 1px solid var(--border); border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.75rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout--warn { border-left-color: #d9ba52; background: #fffdf5; }

/* ---------------------------------------------------------------- Breadcrumb --- */
.page-head { background: var(--gray-50); border-bottom: 1px solid var(--border); padding-block: clamp(2.5rem, 1.5rem + 3vw, 4.25rem); }
.page-head h1 { max-width: 20ch; }
.page-head p { font-size: 1.13rem; max-width: 60ch; margin-bottom: 0; }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 1.4rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--green-700); text-decoration: underline; }
.crumbs span { margin-inline: .45rem; }

/* ------------------------------------------------------------------ Footer --- */
.site-footer { background: var(--navy); color: #9aa8b6; padding-block: 4rem 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { display: inline-block; background: #fff; padding: .85rem 1rem; border-radius: var(--radius); margin-bottom: 1.4rem; }
.footer-logo img { height: 38px; width: auto; }
.site-footer p { font-size: .93rem; line-height: 1.65; color: #8fa0b0; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 1.15rem; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: .65rem; }
.footer-list a, .site-footer address a { color: #b3c0cd; text-decoration: none; font-size: .95rem; font-style: normal; }
.footer-list a:hover, .site-footer address a:hover { color: #8ecb70; text-decoration: underline; }
.site-footer address { font-style: normal; font-size: .95rem; line-height: 1.8; color: #b3c0cd; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.5rem;
  font-size: .87rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.footer-legal a, .footer-legal button {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: #9aa8b6; text-decoration: none;
}
.footer-legal a:hover, .footer-legal button:hover { color: #8ecb70; text-decoration: underline; }

/* ------------------------------------------------------------- Cookie-Dialog --- */
.cookie-dialog {
  border: 0; border-radius: var(--radius-lg); padding: 0; max-width: 34rem; width: calc(100% - 2rem);
  box-shadow: var(--shadow-lg);
}
.cookie-dialog::backdrop { background: rgba(17,32,50,.55); backdrop-filter: blur(2px); }
.cookie-dialog__body { padding: 2rem; }
.cookie-dialog h2 { font-size: 1.35rem; }
.cookie-dialog p { font-size: .95rem; }
.cookie-opt { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 0; border-top: 1px solid var(--border); }
.cookie-opt input { width: 20px; height: 20px; margin-top: .2rem; accent-color: var(--green); flex: none; }
.cookie-opt label { font-family: var(--font-display); font-weight: 650; color: var(--navy); font-size: .97rem; }
.cookie-opt p { margin: .2rem 0 0; font-size: .88rem; color: var(--muted); }
.cookie-dialog .btn-row { margin-top: 1.5rem; }

/* -------------------------------------------------------------- Utilities --- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
