/* www.symanzik.de – Gestaltung
   Farben aus dem Logo: Blau #36638a, Nachtblau #162125.
   Motiv: die sechs Balken aus dem Logo (.balken) vor Überschriften. */

:root {
  --blau: #36638a;
  --blau-dunkel: #284c6b;
  --blau-hell: #e8eff5;
  --nacht: #162125;
  --text: #1f2b31;
  --text-leise: #56666f;
  --grau: #f3f5f7;
  --linie: #d7dfe6;
  --weiss: #ffffff;
  --rund: 2px;   /* bewusst klein: Präzision statt Weichheit (Vorgabe 18.09.2026) */
  --schatten: 0 1px 2px rgba(22, 33, 37, .06), 0 8px 24px rgba(22, 33, 37, .07);
  --rahmen: 1180px;
  --schrift: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 120px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--schrift);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--weiss);
}

img { display: block; max-width: 100%; height: auto; }
address { font-style: normal; }
a { color: var(--blau); text-underline-offset: .18em; }
a:hover { color: var(--blau-dunkel); }
:focus-visible { outline: 3px solid var(--blau); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3 { line-height: 1.2; color: var(--nacht); margin: 0 0 .6em; text-wrap: balance; }
h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.5rem, 1.25rem + 1.1vw, 2.1rem); letter-spacing: -.01em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.nur-vorlesen {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.sprunglink {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--nacht); color: var(--weiss); padding: 10px 16px; border-radius: var(--rund);
}
.sprunglink:focus { top: 12px; color: var(--weiss); }

.rahmen { width: min(100% - 40px, var(--rahmen)); margin-inline: auto; }
.rahmen--text { max-width: 780px; }

/* Grafisches Element vor Überschriften: blauer Strich und dunkles Quadrat –
   der Rhythmus „breit, Lücke, schmal" aus den Logo-Balken (Variante 6, gewählt am 18.09.2026). */
.balken {
  display: block; width: 46px; height: 6px; margin: 0 0 18px;
  background:
    linear-gradient(var(--blau), var(--blau)) 0 0 / 34px 100% no-repeat,
    linear-gradient(var(--nacht), var(--nacht)) 40px 0 / 6px 100% no-repeat;
}

/* ---------------------------------------------------------------- Kopf */

.kopf { position: sticky; top: 0; z-index: 50; background: var(--weiss); box-shadow: 0 1px 0 var(--linie); }
.kopf__leiste { background: var(--nacht); color: #c9d6e0; font-size: .85rem; }
.kopf__leiste-innen { display: flex; gap: 22px; justify-content: flex-end; padding-block: 6px; }
.kopf__leiste a { color: inherit; text-decoration: none; }
.kopf__leiste a:hover { color: var(--weiss); text-decoration: underline; }

.kopf__innen { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.kopf__logo img { width: 230px; height: auto; }

.kopf__schalter { display: none; }

.nav__liste, .nav__unterliste { list-style: none; margin: 0; padding: 0; }
.nav__liste { display: flex; gap: 4px; }
.nav__punkt { position: relative; }
.nav__punkt > a {
  display: block; padding: 10px 14px; color: var(--nacht); text-decoration: none;
  font-weight: 600; font-size: .95rem; letter-spacing: .05em; text-transform: uppercase;
  border-bottom: 3px solid transparent;
}
.nav__punkt > a:hover, .nav__punkt > a.ist-aktiv, .nav__punkt > a[aria-current] { color: var(--blau); border-bottom-color: var(--blau); }

.nav__unterliste {
  position: absolute; left: 0; top: 100%; min-width: 250px; padding: 8px 0;
  background: var(--weiss); border-top: 3px solid var(--blau); box-shadow: var(--schatten);
  border-radius: 0 0 var(--rund) var(--rund);
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.nav__punkt:hover > .nav__unterliste, .nav__punkt:focus-within > .nav__unterliste { opacity: 1; visibility: visible; transform: none; }
.nav__unterliste a { display: block; padding: 9px 18px; color: var(--text); text-decoration: none; font-size: .95rem; }
.nav__unterliste a:hover, .nav__unterliste a[aria-current] { background: var(--blau-hell); color: var(--blau-dunkel); }

@media (max-width: 940px) {
  .kopf__leiste { display: none; }
  .kopf__logo img { width: 180px; }
  .kopf__schalter {
    display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
    background: none; border: 1px solid var(--linie); border-radius: var(--rund); cursor: pointer;
  }
  .kopf__schalter-symbol, .kopf__schalter-symbol::before, .kopf__schalter-symbol::after {
    display: block; width: 22px; height: 2px; background: var(--nacht); transition: transform .2s, opacity .2s;
  }
  .kopf__schalter-symbol { position: relative; }
  .kopf__schalter-symbol::before, .kopf__schalter-symbol::after { content: ""; position: absolute; left: 0; }
  .kopf__schalter-symbol::before { top: -7px; }
  .kopf__schalter-symbol::after { top: 7px; }
  .kopf__schalter[aria-expanded="true"] .kopf__schalter-symbol { background: transparent; }
  .kopf__schalter[aria-expanded="true"] .kopf__schalter-symbol::before { transform: translateY(7px) rotate(45deg); }
  .kopf__schalter[aria-expanded="true"] .kopf__schalter-symbol::after { transform: translateY(-7px) rotate(-45deg); }

  .kopf__innen { flex-wrap: wrap; }
  .nav { flex-basis: 100%; }
  /* Ohne JavaScript bleibt das Menü sichtbar; mit JavaScript klappt es ein. */
  .js .nav { display: none; }
  .js .nav.ist-offen { display: block; max-height: calc(100vh - 90px); overflow-y: auto; }
  .nav__liste { flex-direction: column; gap: 0; border-top: 1px solid var(--linie); }
  .nav__punkt > a { padding: 14px 4px; border-bottom: 1px solid var(--linie); }
  .nav__unterliste {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border-top: 0; padding: 0 0 6px; min-width: 0;
  }
  .nav__unterliste a { padding: 10px 18px; border-bottom: 1px solid var(--grau); }
}

/* ---------------------------------------------------------------- Bühne (Startseite) */

.buehne { position: relative; isolation: isolate; color: var(--weiss); background: var(--nacht); }
.buehne__bild { position: absolute; inset: 0; z-index: -1; }
.buehne__bild img { width: 100%; height: 100%; object-fit: cover; }
.buehne__bild::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(22, 33, 37, .9) 0%, rgba(22, 33, 37, .68) 45%, rgba(22, 33, 37, .2) 100%);
}
.buehne__innen { padding-block: clamp(72px, 12vw, 160px); }
.buehne__dach { text-transform: uppercase; letter-spacing: .16em; font-size: .85rem; font-weight: 600; color: #b9cfe2; margin-bottom: 14px; }
.buehne h1 { color: var(--weiss); max-width: 17ch; }
.buehne__text { max-width: 52ch; font-size: 1.15rem; color: #e3ebf1; }
.buehne__knoepfe { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }

/* ---------------------------------------------------------------- Knöpfe und Links */

.knopf {
  display: inline-block; padding: 13px 24px; border-radius: var(--rund); border: 2px solid var(--blau);
  background: var(--blau); color: var(--weiss); font-weight: 600; text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.knopf:hover { background: var(--blau-dunkel); border-color: var(--blau-dunkel); color: var(--weiss); }
.knopf--hell { background: var(--weiss); border-color: var(--weiss); color: var(--nacht); }
.knopf--hell:hover { background: var(--blau-hell); border-color: var(--blau-hell); color: var(--nacht); }
.knopf--umriss { background: transparent; border-color: rgba(255, 255, 255, .7); color: var(--weiss); }
.knopf--umriss:hover { background: rgba(255, 255, 255, .12); border-color: var(--weiss); }

.pfeillink { font-weight: 600; text-decoration: none; }
.pfeillink::after { content: " →"; transition: margin-left .15s; }
.pfeillink:hover { text-decoration: underline; }
.pfeillink:hover::after { margin-left: 4px; }

.linkliste, .fliesstext .linkliste { list-style: none; padding: 0; margin: 1.2em 0 0; display: grid; gap: 8px; }

/* ---------------------------------------------------------------- Kennzahlen */

.kennzahlen { background: var(--blau); color: var(--weiss); }
.kennzahlen__innen { display: grid; grid-template-columns: repeat(3, 1fr); }
.kennzahl { padding: 34px 24px; text-align: center; border-left: 1px solid rgba(255, 255, 255, .22); }
.kennzahl:first-child { border-left: 0; }
.kennzahl__wert { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); font-weight: 700; line-height: 1.1; margin: 0 0 6px; }
.kennzahl__text { margin: 0; color: #dbe7f1; font-size: .98rem; }
@media (max-width: 640px) {
  .kennzahlen__innen { grid-template-columns: 1fr; }
  .kennzahl { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .22); padding: 22px 12px; }
  .kennzahl:first-child { border-top: 0; }
}

/* ---------------------------------------------------------------- Abschnitte */

.abschnitt { padding-block: clamp(48px, 7vw, 96px); }
.abschnitt--grau { background: var(--grau); }
.abschnitt--blau { background: var(--blau); color: var(--weiss); }
.abschnitt--blau h2 { color: var(--weiss); }
.abschnitt + .abschnitt:not(.abschnitt--grau):not(.abschnitt--blau) { border-top: 1px solid transparent; }
.abschnitt__kopf { max-width: 720px; margin-bottom: 36px; }
.abschnitt__kopf p { color: var(--text-leise); margin: 0; }

.zweispaltig { --spalt: clamp(28px, 5vw, 72px); display: grid; grid-template-columns: 1fr 1fr; column-gap: var(--spalt); row-gap: 28px; align-items: center; }
.zweispaltig--gedreht > .zweispaltig__medien { order: 2; }
.zweispaltig__medien { min-width: 0; }
@media (max-width: 860px) {
  .zweispaltig { grid-template-columns: 1fr; }
  .zweispaltig--gedreht > .zweispaltig__medien { order: 0; }
}

.bild-rund { border-radius: var(--rund); box-shadow: var(--schatten); width: 100%; }

.fliesstext > :last-child { margin-bottom: 0; }
.fliesstext h2 { margin-top: 1.6em; }
.fliesstext h2:first-child, .fliesstext > .balken:first-child + h2 { margin-top: 0; }
.fliesstext h3 { margin-top: 1.6em; }
.fliesstext h3:first-child { margin-top: 0; }
.fliesstext h4 { font-size: 1.05rem; line-height: 1.3; color: var(--nacht); margin: 1.5em 0 .5em; }
.fliesstext ul, .fliesstext ol { padding-left: 1.2em; margin: 0 0 1.2em; }
.fliesstext li { margin-bottom: .4em; }
.fliesstext li::marker { color: var(--blau); }
.fliesstext table { border-collapse: collapse; width: 100%; margin: 0 0 1.4em; }
.fliesstext th, .fliesstext td { text-align: left; vertical-align: top; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--linie); }
.fliesstext th { width: 38%; font-weight: 600; color: var(--nacht); }
.fliesstext th:empty { padding: 0; border: 0; }
.fliesstext td { overflow-wrap: anywhere; }
.fliesstext td:first-child { width: 38%; }
@media (max-width: 600px) {
  /* Tabellen (Impressum) auf dem Handy untereinander statt nebeneinander */
  .fliesstext table, .fliesstext tbody, .fliesstext tr, .fliesstext td { display: block; width: 100%; }
  .fliesstext thead { display: none; }
  .fliesstext td:first-child { width: 100%; border-bottom: 0; padding-bottom: 0; }
}
.entwurfshinweis { background: #fff4d6; border-bottom: 1px solid #e6c65c; color: #5c4700; padding-block: 12px; font-size: .95rem; }
.vorspann { font-size: 1.2rem; line-height: 1.5; color: var(--blau-dunkel); font-weight: 600; }
.klein { font-size: .9rem; color: var(--text-leise); }

/* ---------------------------------------------------------------- Seitenkopf */

.seitenkopf { position: relative; isolation: isolate; background: var(--grau); border-bottom: 1px solid var(--linie); }
.seitenkopf__innen { padding-block: clamp(36px, 5vw, 64px); }
.seitenkopf h1 { margin: 0; }
.seitenkopf__untertitel { margin: 14px 0 0; max-width: 60ch; font-size: 1.15rem; color: var(--text-leise); }
.seitenkopf--mit-bild { color: var(--weiss); background: var(--nacht); border-bottom: 0; }
.seitenkopf--mit-bild h1 { color: var(--weiss); }
.seitenkopf--mit-bild .seitenkopf__untertitel { color: #e3ebf1; }
.seitenkopf--mit-bild .seitenkopf__innen { padding-block: clamp(64px, 10vw, 130px) clamp(36px, 5vw, 56px); }
.seitenkopf__bild { position: absolute; inset: 0; z-index: -1; }
.seitenkopf__bild img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.seitenkopf__bild--mitte img { object-position: center 50%; }
.seitenkopf__bild::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(22, 33, 37, .88) 0%, rgba(22, 33, 37, .45) 60%, rgba(22, 33, 37, .35) 100%); }

.brotkrumen ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 0; margin: 0 0 14px; padding: 0; font-size: .88rem; }
.brotkrumen li + li::before { content: "/"; margin: 0 8px; opacity: .55; }
.brotkrumen a { color: inherit; text-decoration: none; opacity: .85; }
.brotkrumen a:hover { text-decoration: underline; opacity: 1; }
.brotkrumen [aria-current] { opacity: .7; }

/* ---------------------------------------------------------------- Karten */

.kartenraster { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px; }
.kartenraster--vier { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .kartenraster--vier { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .kartenraster--vier { grid-template-columns: 1fr; } }

.karte {
  display: flex; flex-direction: column; background: var(--weiss); border: 1px solid var(--linie);
  border-radius: var(--rund); overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.karte:hover { box-shadow: var(--schatten); transform: translateY(-2px); }
.karte__bild { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--grau); }
.karte__bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.karte:hover .karte__bild img { transform: scale(1.04); }
.karte__text { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.karte__text h3 { margin-bottom: .5em; }
.karte__text h3 a { color: inherit; text-decoration: none; }
.karte__text p { color: var(--text-leise); font-size: .98rem; }
.karte__text .pfeillink { margin-top: auto; }
@media (prefers-reduced-motion: reduce) { .karte, .karte__bild img { transition: none; } .karte:hover { transform: none; } }

/* ---------------------------------------------------------------- Leistungen auf der Startseite (zweireihig) */

.leistungen { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.leistung {
  display: grid; grid-template-columns: 42% 1fr; background: var(--weiss); border: 1px solid var(--linie);
  border-radius: var(--rund); overflow: hidden; transition: box-shadow .2s;
}
.leistung:hover { box-shadow: var(--schatten); }
.leistung__bild { display: block; min-height: 230px; background: var(--grau); }
.leistung__bild img { width: 100%; height: 100%; object-fit: cover; }
.leistung__text { display: flex; flex-direction: column; padding: 24px 26px; }
.leistung__text h3 { margin-bottom: .5em; }
.leistung__text h3 a { color: inherit; text-decoration: none; }
.leistung__text p { color: var(--text-leise); font-size: .98rem; }
.leistung__text .pfeillink { margin-top: auto; padding-top: 8px; }
@media (max-width: 1000px) { .leistungen { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .leistung { grid-template-columns: 1fr; }
  .leistung__bild { min-height: 0; aspect-ratio: 3 / 2; }
}
@media (prefers-reduced-motion: reduce) { .leistung { transition: none; } }

/* ---------------------------------------------------------------- Nach oben */

.nach-oben {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  background: var(--blau); color: var(--weiss); border-radius: var(--rund); box-shadow: var(--schatten);
}
.nach-oben:hover { background: var(--blau-dunkel); color: var(--weiss); }
/* Mit Skript erst nach dem Scrollen sichtbar; das Einblenden ist weich, das Ausblenden sofort
   (so blitzt der Knopf beim Laden der Seite nicht auf). */
.js .nach-oben { opacity: 0; visibility: hidden; }
.js .nach-oben.ist-sichtbar { opacity: 1; visibility: visible; transition: opacity .2s; }
@media (prefers-reduced-motion: reduce) { .js .nach-oben.ist-sichtbar { transition: none; } }

/* ---------------------------------------------------------------- Produkte */

.produkte { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.produkte li { padding: 0; }  /* ohne Rahmen (GF, 20.09.2026) */
.produkte img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.produkte--abstand { margin-top: clamp(36px, 5vw, 64px); }
@media (max-width: 900px) { .produkte { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .produkte { grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------------------------------------------- Galerie (wischbar, ohne Skript) */

.galerie {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 12px; scrollbar-width: thin; scrollbar-color: var(--blau) var(--linie);
}
.galerie__bild { flex: 0 0 86%; margin: 0; scroll-snap-align: start; }
.galerie__bild:only-child { flex-basis: 100%; }
.galerie__bild img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--rund); background: var(--grau); }
.rahmen > .galerie, .rahmen > .galerie-rahmen { margin-top: 36px; }
.rahmen > .galerie .galerie__bild, .rahmen > .galerie-rahmen .galerie__bild { flex-basis: min(440px, 80%); }

/* Vor-/Zurück-Knöpfe: setzt site.js um jede Galerie mit mehreren Bildern */
.galerie-rahmen { position: relative; }
.galerie__knopf {
  position: absolute; top: calc(50% - 6px); transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: var(--rund); border: 1px solid var(--linie); cursor: pointer;
  background: rgba(255, 255, 255, .94); color: var(--nacht); font-size: 1.4rem; line-height: 1;
  box-shadow: var(--schatten);
}
.galerie__knopf:hover { background: var(--blau); border-color: var(--blau); color: var(--weiss); }
.galerie__knopf[disabled] { opacity: 0; pointer-events: none; }
.galerie__knopf--zurueck { left: 10px; }
.galerie__knopf--vor { right: 10px; }

/* ---------------------------------------------------------------- Aufklappbarer Bereich "Mehr erfahren" */

.mehr { grid-column: 1 / -1; order: 3; min-width: 0; }
.mehr > summary { list-style: none; cursor: pointer; display: inline-block; margin-left: calc(50% + var(--spalt) / 2); border-radius: var(--rund); }
.zweispaltig--gedreht > .mehr > summary { margin-left: 0; }
.mehr > summary::-webkit-details-marker { display: none; }
.mehr > summary .knopf::after { content: "+"; display: inline-block; margin-left: 10px; font-weight: 400; }
.mehr[open] > summary .knopf::after { content: "–"; }
.mehr[open] > summary .knopf { background: var(--blau-dunkel); border-color: var(--blau-dunkel); }
.mehr__inhalt {
  display: grid; grid-template-columns: 1fr 1fr; column-gap: var(--spalt); row-gap: 28px; align-items: start;
  margin-top: 36px; padding-top: 40px; border-top: 1px solid var(--linie);
}
.mehr__inhalt > * { min-width: 0; }
.zweispaltig--gedreht .mehr__medien { order: 2; }
@media (max-width: 860px) {
  .mehr > summary { margin-left: 0; }
  .mehr__inhalt { grid-template-columns: 1fr; }
  .zweispaltig--gedreht .mehr__medien { order: 0; }
}

/* ---------------------------------------------------------------- Akkordeon */

.akkordeon { margin: 1.6em 0; border-top: 1px solid var(--linie); }
.akkordeon details { border-bottom: 1px solid var(--linie); }
.akkordeon summary {
  cursor: pointer; list-style: none; padding: 15px 36px 15px 0; position: relative;
  font-weight: 600; color: var(--nacht);
}
.akkordeon summary::-webkit-details-marker { display: none; }
.akkordeon summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--blau); line-height: 1;
}
.akkordeon details[open] summary::after { content: "–"; }
.akkordeon summary:hover { color: var(--blau); }
.akkordeon details > div { padding: 0 0 18px; }
.akkordeon__zeile { margin: 0; padding: 15px 0; border-bottom: 1px solid var(--linie); font-weight: 600; color: var(--nacht); }

/* ---------------------------------------------------------------- Personen */

.personenraster { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 32px 28px; margin-top: 32px; }
.person__bild { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--rund); background: var(--linie); margin-bottom: 14px; }
.person__name { font-weight: 700; color: var(--nacht); margin: 0; font-size: 1.08rem; }
.person__funktion { color: var(--text-leise); margin: 0 0 8px; font-size: .95rem; }
.person__kontakt { margin: 0; font-size: .95rem; line-height: 1.7; overflow-wrap: anywhere; }
.person__kontakt a { text-decoration: none; }
.person__kontakt a:hover { text-decoration: underline; }
.person--gross { display: grid; grid-template-columns: 150px 1fr; gap: 22px; align-items: center; margin: 20px 0; }
.person--gross .person__bild { margin: 0; }
@media (max-width: 520px) {
  .personenraster { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
  .person--gross { grid-template-columns: 110px 1fr; }
}

/* ---------------------------------------------------------------- Kontaktbox, Fakten, Bewerbung */

.kontaktbox, .bewerbung, .hinweis {
  background: var(--weiss); border: 1px solid var(--linie); border-top: 4px solid var(--blau);
  border-radius: var(--rund); padding: clamp(22px, 3vw, 34px);
}
.kontaktbox h2, .bewerbung h2, .hinweis h2 { font-size: 1.3rem; }
.kontaktbox__liste { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; margin: 18px 0; }
.kontaktbox__liste dt { color: var(--text-leise); }
.kontaktbox__liste dd { margin: 0; }
.hinweis { max-width: 780px; margin-inline: auto; }

.stelle { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.stelle__rand { position: sticky; top: 130px; display: grid; gap: 22px; }
@media (max-width: 860px) { .stelle { grid-template-columns: 1fr; } .stelle__rand { position: static; } }
.fakten { margin: 0; padding: 20px 22px; background: var(--blau-hell); border-radius: var(--rund); display: grid; gap: 2px; }
.fakten dt { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--blau-dunkel); font-weight: 700; }
.fakten dd { margin: 0 0 12px; font-weight: 600; color: var(--nacht); }
.fakten dd:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- Downloads */

.downloads { list-style: none; margin: 0 0 40px; padding: 0; border-top: 1px solid var(--linie); }
.downloads a {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 20px; padding: 16px 4px;
  border-bottom: 1px solid var(--linie); text-decoration: none;
}
.downloads a:hover { background: var(--blau-hell); }
.downloads__titel { font-weight: 600; }
.downloads__titel::before { content: "↓ "; }
.downloads__info { color: var(--text-leise); font-size: .92rem; }

/* ---------------------------------------------------------------- Zeitleiste */

.zeitleiste { list-style: none; margin: 32px 0 0; padding: 0; border-left: 3px solid var(--blau); }
.zeitleiste li { position: relative; padding: 0 0 30px 30px; }
.zeitleiste li:last-child { padding-bottom: 0; }
.zeitleiste li::before {
  content: ""; position: absolute; left: -9.5px; top: 8px; width: 16px; height: 16px;
  border-radius: var(--rund); background: var(--weiss); border: 3px solid var(--blau);
}
.zeitleiste__jahr { font-size: 1.5rem; font-weight: 700; color: var(--blau-dunkel); margin: 0; line-height: 1.3; }
.zeitleiste__text { margin: 4px 0 0; }
.zeitleiste__text p { margin: 0; }
.zeitleiste__datum { font-size: .95rem; font-weight: 600; color: var(--text-leise); letter-spacing: .02em; }

/* Historie: drei Kapitel nach den Jubiläumstafeln – Text links, Stationen rechts, darunter die Fotos
   in natürlichem Seitenverhältnis (gleiche Höhe, unterschiedliche Breite; auf dem Handy untereinander). */
.kapitel__kopf { max-width: 720px; margin-bottom: 32px; }
.kapitel__zeitraum { font-size: 1.05rem; font-weight: 700; letter-spacing: .06em; color: var(--blau); margin: 0 0 8px; }
.kapitel__inhalt { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); column-gap: clamp(28px, 5vw, 72px); row-gap: 36px; align-items: start; }
.kapitel__stationen { margin-top: 0; }
@media (max-width: 900px) { .kapitel__inhalt { grid-template-columns: 1fr; } }
.kapitel__galerie { display: flex; flex-wrap: wrap; gap: 28px 24px; margin-top: clamp(36px, 5vw, 56px); }
/* Als Tabelle wird die Figur genau so breit wie das Bild; die Unterschrift (table-caption) bricht darunter um. */
.kapitel__bild { display: table; margin: 0; max-width: 100%; }
.kapitel__bild img { display: block; height: clamp(180px, 18vw, 280px); width: auto; border-radius: var(--rund); box-shadow: var(--schatten); background: var(--grau); }
.kapitel__bild figcaption { display: table-caption; caption-side: bottom; font-size: .9rem; color: var(--text-leise); padding-top: 8px; }
@media (max-width: 600px) {
  .kapitel__bild { display: block; flex-basis: 100%; width: 100%; }
  .kapitel__bild figcaption { display: block; }
  .kapitel__bild img { height: auto; width: 100%; }
}

/* ---------------------------------------------------------------- Abschlussband */

.abschluss { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.abschluss h2 { margin-bottom: .3em; }
.abschluss p { margin: 0; color: #dbe7f1; max-width: 60ch; }

/* ---------------------------------------------------------------- Fehlerseite */

.fehlerseite__code { font-size: clamp(4rem, 12vw, 8rem); font-weight: 800; line-height: 1; color: var(--blau-hell); margin: 0; }

/* ---------------------------------------------------------------- Fuß */

.fuss { background: var(--nacht); color: #b8c6d0; font-size: .95rem; }
.fuss a { color: #e1e9ef; text-decoration: none; }
.fuss a:hover { color: var(--weiss); text-decoration: underline; }
.fuss__innen { display: grid; grid-template-columns: 1.5fr 1.2fr 1fr 1fr; gap: 40px; padding-block: 64px 44px; }
.fuss__logo { width: 190px; margin-bottom: 18px; }
.fuss__titel { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--weiss); margin-bottom: 16px; }
.fuss__liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.fuss__unten {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 24px;
  border-top: 1px solid #2c3a42; padding-block: 20px 28px; font-size: .85rem; color: #8fa1ad;
}
.fuss__unten p { margin: 0; }
@media (max-width: 860px) { .fuss__innen { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fuss__innen { grid-template-columns: 1fr; gap: 30px; } }

/* ---------------------------------------------------------------- Intranet-Einstiegsseite (intranet.symanzik.de) */

.einstieg { min-height: 100vh; display: flex; flex-direction: column; }
.einstieg__kopf { background: var(--weiss); box-shadow: 0 1px 0 var(--linie); }
.einstieg__kopf-innen { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 16px; }
.einstieg__kopf img { width: 200px; height: auto; }
.einstieg__kopf-titel { margin: 0; font-size: .85rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text-leise); font-weight: 600; text-align: right; }
.einstieg__buehne { background: var(--nacht); color: var(--weiss); }
.einstieg__buehne-innen { padding-block: clamp(48px, 8vw, 96px); }
.einstieg__buehne h1 { color: var(--weiss); max-width: 20ch; }
.einstieg__buehne p { color: #e3ebf1; font-size: 1.15rem; max-width: 56ch; }
.einstieg__buehne .knopf { font-size: 1.15rem; padding: 16px 30px; }
.einstieg__hinweis { font-size: .98rem; }
.einstieg__buehne .einstieg__hinweis { color: #b9cfe2; }
.einstieg__hinweis a { color: var(--weiss); }
.einstieg__karten { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .einstieg__karten { grid-template-columns: 1fr; } }
.einstieg__karte {
  background: var(--weiss); border: 1px solid var(--linie); border-top: 4px solid var(--blau);
  border-radius: var(--rund); padding: 26px 26px 28px; scroll-margin-top: 24px;
}
.einstieg__karte h2 { font-size: 1.25rem; }
.einstieg__karte ol, .einstieg__karte ul { padding-left: 1.2em; margin: 0 0 1em; }
.einstieg__karte li { margin-bottom: .5em; }
.einstieg__karte li::marker { color: var(--blau); font-weight: 700; }
.einstieg__karte p:last-child { margin-bottom: 0; }
.einstieg__regel { background: var(--blau-hell); border-left: 6px solid var(--blau); border-radius: var(--rund); padding: 22px 26px; max-width: 820px; }
.einstieg__regel h2 { font-size: 1.25rem; margin-bottom: .4em; }
.einstieg__regel p { margin: 0; }
.einstieg__wege { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
@media (max-width: 900px) { .einstieg__wege { grid-template-columns: 1fr; } }
.einstieg__karte h3 { font-size: 1.1rem; line-height: 1.35; margin-bottom: .8em; }
.einstieg__vorspann { max-width: 70ch; color: var(--text-leise); margin: 0; }
.einstieg section[id] { scroll-margin-top: 16px; }
.einstieg__fuss { margin-top: auto; }

@media print {
  .kopf, .fuss, .buehne__knoepfe, .sprunglink, .nach-oben { display: none; }
  body { font-size: 11pt; }
}
