@charset "UTF-8";
/* ==========================================================================
   Hochhausleitbild – Vertikale Resilienz
   Kristina Hagewald · KVP Real Estate Consulting
   ========================================================================== */

@import url("../schriften/schriften.css?v=2026-09-09f");

/* --- Grundwerte ---------------------------------------------------------- */
:root {
  --tinte: #101619;
  --tinte-weich: #192327;
  --papier: #F7F4EE;
  --papier-tief: #EFEAE0;
  --papier-rand: #DED7C9;
  --messing: #A67C3D;
  --messing-hell: #D3B183;
  --grün: #3F6B50;
  --grün-hell: #7CA98C;

  --text: #172024;
  --text-leise: #55636A;
  --text-hell: #F4F1E9;
  --text-hell-leise: #A9B4B6;

  --breite: 1180px;
  --lesebreite: 68ch;
  --rund: 4px;
  --rund-groß: 18px;

  --schrift-display: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --schrift-text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --weich: cubic-bezier(.22, .61, .36, 1);
  --schatten: 0 1px 2px rgba(16, 22, 25, .05), 0 12px 32px -12px rgba(16, 22, 25, .18);
  --schatten-hoch: 0 2px 4px rgba(16, 22, 25, .06), 0 28px 60px -20px rgba(16, 22, 25, .3);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--text);
  font-family: var(--schrift-text);
  font-size: clamp(1rem, .96rem + .18vw, 1.075rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--schrift-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.9rem, 1.6rem + 5.4vw, 6.4rem); }
h2 { font-size: clamp(2.1rem, 1.4rem + 2.9vw, 3.9rem); }
h3 { font-size: clamp(1.4rem, 1.2rem + .9vw, 1.95rem); }
h4 { font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 35%, transparent); text-underline-offset: .22em; }
a:hover { text-decoration-color: currentColor; }

strong, b { font-weight: 600; }

:focus-visible {
  outline: 2px solid var(--messing);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--messing); color: #fff; }

/* --- Bausteine ----------------------------------------------------------- */
.hülle {
  width: min(100% - 2.5rem, var(--breite));
  margin-inline: auto;
}

.springmarke {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 200;
  padding: .8rem 1.3rem;
  background: var(--tinte);
  color: var(--text-hell);
  border-radius: var(--rund);
  font-size: .9rem;
  text-decoration: none;
  transition: top .2s var(--weich);
}
.springmarke:focus { top: 1rem; }

.marke {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--schrift-text);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--messing);
  margin-bottom: 1.6rem;
}
.marke::before {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  opacity: .6;
}
.dunkel .marke { color: var(--messing-hell); }

.lead {
  font-size: clamp(1.15rem, 1.02rem + .55vw, 1.45rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -.012em;
  max-width: 62ch;
}
.dunkel .lead { color: var(--text-hell); }

.fließ { max-width: var(--lesebreite); }

.leise { color: var(--text-leise); }
.dunkel .leise { color: var(--text-hell-leise); }

.abschnitt { padding: clamp(4.5rem, 3rem + 7vw, 9rem) 0; position: relative; }
.abschnitt + .abschnitt { padding-top: 0; }
.abschnitt.dunkel, .abschnitt.getönt { padding-top: clamp(4.5rem, 3rem + 7vw, 9rem); }

.dunkel {
  background: var(--tinte);
  color: var(--text-hell);
}
.getönt { background: var(--papier-tief); }

.kopfzeile-abschnitt {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
  margin-bottom: clamp(2.5rem, 1.8rem + 2.4vw, 4rem);
}
@media (min-width: 900px) {
  .kopfzeile-abschnitt { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 3.5rem; align-items: end; }
}

/* --- Knöpfe -------------------------------------------------------------- */
.knopf {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .95rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--weich), background-color .25s var(--weich), color .25s var(--weich), border-color .25s var(--weich);
}
.knopf:hover { transform: translateY(-2px); }
.knopf svg { width: 1em; height: 1em; flex: none; transition: transform .25s var(--weich); }
.knopf:hover svg { transform: translateX(3px); }

.knopf-voll { background: var(--messing); color: #fff; }
.knopf-voll:hover { background: #8E6931; }

.knopf-linie { border-color: color-mix(in srgb, currentColor 30%, transparent); }
.knopf-linie:hover { border-color: currentColor; background: color-mix(in srgb, currentColor 8%, transparent); }

/* --- Kopfbereich --------------------------------------------------------- */
.fortschritt {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--messing), var(--grün-hell));
  z-index: 120;
  transition: width .1s linear;
}

.kopf {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 110;
  padding: 1.15rem 0;
  transition: background-color .35s var(--weich), padding .35s var(--weich), box-shadow .35s var(--weich);
}
.kopf.geklebt {
  background: color-mix(in srgb, var(--papier) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  padding: .7rem 0;
  box-shadow: 0 1px 0 var(--papier-rand);
}

.kopf-innen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wortmarke {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: var(--text-hell);
  transition: color .35s var(--weich);
}
.kopf.geklebt .wortmarke { color: var(--text); }
.wortmarke img { width: 26px; }
.wortmarke b {
  font-family: var(--schrift-display);
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1;
}
.wortmarke span {
  display: block;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .65;
  margin-top: .25rem;
}

.hauptnavi { display: none; }
@media (min-width: 1080px) {
  .hauptnavi { display: flex; align-items: center; gap: .2rem; }
}
.hauptnavi a {
  padding: .5rem .8rem;
  font-size: .875rem;
  text-decoration: none;
  color: var(--text-hell);
  opacity: .8;
  border-radius: 999px;
  transition: opacity .2s, color .35s var(--weich), background-color .2s;
}
.kopf.geklebt .hauptnavi a { color: var(--text); }
.hauptnavi a:hover { opacity: 1; background: color-mix(in srgb, currentColor 8%, transparent); }
.hauptnavi a.aktiv { opacity: 1; color: var(--messing-hell); }
.kopf.geklebt .hauptnavi a.aktiv { color: var(--messing); }

.kopf .knopf { color: var(--text-hell); }
.kopf.geklebt .knopf-linie { color: var(--text); }
.kopf .knopf-voll { color: #fff; }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 11px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--text-hell);
  transition: color .35s var(--weich);
}
.kopf.geklebt .burger { color: var(--text); }
.burger span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--weich), opacity .2s;
}
.burger[aria-expanded="true"] { color: var(--text-hell); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1080px) { .burger { display: none; } }

.klappnavi {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--tinte);
  color: var(--text-hell);
  display: grid;
  place-content: center;
  gap: .2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--weich), visibility .35s;
}
.klappnavi.offen { opacity: 1; visibility: visible; }
.klappnavi a {
  font-family: var(--schrift-display);
  font-size: clamp(1.8rem, 1.3rem + 2.6vw, 2.8rem);
  text-decoration: none;
  padding: .16em 0;
  opacity: .85;
  transition: opacity .2s, transform .3s var(--weich), color .2s;
}
.klappnavi a:hover { opacity: 1; transform: translateX(10px); color: var(--messing-hell); }

/* --- Bühne --------------------------------------------------------------- */
.bühne {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 9rem 0 clamp(3rem, 2rem + 4vw, 5.5rem);
  background: var(--tinte);
  color: var(--text-hell);
  overflow: hidden;
  isolation: isolate;
}
.bühne-bild {
  position: absolute;
  inset: -8% 0 0 0;
  z-index: -2;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.bühne::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16,22,25,.84) 0%, rgba(16,22,25,.42) 34%, rgba(16,22,25,.88) 76%, rgba(16,22,25,.97) 100%),
    radial-gradient(120% 90% at 15% 100%, rgba(16,22,25,.72) 0%, transparent 62%);
}
.bühne h1 { max-width: 14ch; }
.bühne h1 em { font-style: italic; color: var(--messing-hell); }
.bühne-text {
  margin-top: 1.8rem;
  max-width: 52ch;
  font-size: clamp(1.08rem, 1rem + .5vw, 1.35rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-hell);
  opacity: .93;
}
.bühne-knöpfe { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.6rem; }

.bühne-fuß {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2.5rem;
  margin-top: clamp(3rem, 2rem + 4vw, 5rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(244, 241, 233, .16);
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--text-hell-leise);
}
.bühne-fuß span { display: inline-flex; align-items: center; gap: .6rem; }
.bühne-fuß i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--grün-hell);
  flex: none;
}

/* --- Kennzahlen ---------------------------------------------------------- */
.zahlenband {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 241, 233, .14);
  border-left: 1px solid rgba(244, 241, 233, .14);
}
@media (min-width: 860px) { .zahlenband { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.zahl {
  padding: clamp(1.8rem, 1.4rem + 1.4vw, 2.8rem) clamp(1.2rem, 1rem + 1vw, 2rem);
  border-right: 1px solid rgba(244, 241, 233, .14);
  border-bottom: 1px solid rgba(244, 241, 233, .14);
}
.zahl b {
  display: block;
  font-family: var(--schrift-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 1.7rem + 2.6vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--messing-hell);
  font-variant-numeric: tabular-nums;
}
.zahl small {
  display: block;
  margin-top: .9rem;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--text-hell-leise);
}

/* --- Vorstellung --------------------------------------------------------- */
.vorstellung {
  display: grid;
  gap: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  align-items: start;
}
@media (min-width: 900px) { .vorstellung { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); } }

.porträt {
  position: relative;
  margin: 0;
  border-radius: var(--rund-groß);
  overflow: hidden;
  background: var(--papier-tief);
  box-shadow: var(--schatten);
}
.porträt img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 18%; }
.porträt figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3.5rem 1.4rem 1.3rem;
  background: linear-gradient(180deg, transparent, rgba(16,22,25,.9));
  color: var(--text-hell);
}
.porträt figcaption b { display: block; font-family: var(--schrift-display); font-size: 1.5rem; font-weight: 400; }
.porträt figcaption span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--messing-hell); }

.zitat {
  margin: 2.5rem 0 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--messing);
  font-family: var(--schrift-display);
  font-size: clamp(1.4rem, 1.15rem + 1.1vw, 2.05rem);
  line-height: 1.25;
  letter-spacing: -.015em;
}
.dunkel .zitat { border-color: var(--messing-hell); }

/* --- Karten -------------------------------------------------------------- */
.karten {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}
.karte {
  position: relative;
  padding: clamp(1.7rem, 1.4rem + 1vw, 2.4rem);
  background: #fff;
  border: 1px solid var(--papier-rand);
  border-radius: var(--rund-groß);
  transition: transform .35s var(--weich), box-shadow .35s var(--weich), border-color .35s var(--weich), background-color .35s var(--weich);
}
.karte:hover { transform: translateY(-4px); box-shadow: var(--schatten-hoch); border-color: transparent; }
.dunkel .karte {
  background: rgba(244, 241, 233, .045);
  border-color: rgba(244, 241, 233, .13);
}
.dunkel .karte:hover { background: rgba(244, 241, 233, .075); border-color: rgba(244, 241, 233, .22); box-shadow: none; }

.karte-nr {
  font-family: var(--schrift-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--messing);
  opacity: .5;
  margin-bottom: 1rem;
}
.dunkel .karte-nr { color: var(--messing-hell); }
.karte h3 { margin-bottom: .9rem; }
.karte p { font-size: .96rem; color: var(--text-leise); }
.dunkel .karte p { color: var(--text-hell-leise); }

.karte-symbol { width: 44px; height: 44px; margin-bottom: 1.4rem; color: var(--grün); }
.dunkel .karte-symbol { color: var(--grün-hell); }
.karte-symbol svg { width: 100%; height: 100%; }

.liste-strich { list-style: none; margin: 1.3rem 0 0; padding: 0; }
.liste-strich li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .6rem;
  font-size: .95rem;
  color: var(--text-leise);
}
.dunkel .liste-strich li { color: var(--text-hell-leise); }
.liste-strich li::before {
  content: "";
  position: absolute;
  left: 0; top: .68em;
  width: 8px; height: 1.5px;
  background: var(--messing);
}
.dunkel .liste-strich li::before { background: var(--messing-hell); }

/* --- Balkenvergleich ----------------------------------------------------- */
.vergleich { margin-top: 2.2rem; display: grid; gap: 1.2rem; max-width: 620px; }
.balken-zeile { display: grid; gap: .5rem; }
.balken-kopf {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: .88rem;
}
.balken-kopf b {
  font-family: var(--schrift-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--messing-hell);
  font-variant-numeric: tabular-nums;
}
.balken-spur {
  height: 8px;
  border-radius: 999px;
  background: rgba(244, 241, 233, .1);
  overflow: hidden;
}
.balken-füllung {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--grün-hell), var(--messing-hell));
  transition: width 1.4s var(--weich);
}

/* --- Chips --------------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.chip {
  padding: .55rem 1.1rem;
  border: 1px solid rgba(244, 241, 233, .2);
  border-radius: 999px;
  font-size: .87rem;
  color: var(--text-hell-leise);
  transition: border-color .25s, color .25s, background-color .25s;
}
.chip:hover { border-color: var(--messing-hell); color: var(--text-hell); background: rgba(244, 241, 233, .05); }

/* --- Register ------------------------------------------------------------ */
.register-knöpfe {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-bottom: 2.6rem;
  padding: .35rem;
  border: 1px solid rgba(244, 241, 233, .16);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}
.register-knöpfe button {
  padding: .7rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--text-hell-leise);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .3s var(--weich), color .3s var(--weich);
}
.register-knöpfe button[aria-selected="true"] { background: var(--messing); color: #fff; }
.register-knöpfe button:hover:not([aria-selected="true"]) { color: var(--text-hell); }

.register-blatt[hidden] { display: none; }
.register-blatt { animation: einblenden .5s var(--weich) both; }
@keyframes einblenden { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* --- Stufen -------------------------------------------------------------- */
.stufen {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr));
  margin-top: 2.5rem;
  counter-reset: stufe;
}
.stufe {
  position: relative;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: var(--rund-groß);
  background: rgba(244, 241, 233, .045);
  border: 1px solid rgba(244, 241, 233, .13);
}
.stufe::before {
  counter-increment: stufe;
  content: counter(stufe);
  position: absolute;
  top: 1rem; right: 1.3rem;
  font-family: var(--schrift-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--messing-hell);
  opacity: .3;
}
.stufe b { display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--messing-hell); margin-bottom: .7rem; }
.stufe h4 { margin-bottom: .6rem; max-width: 14ch; }
.stufe p { font-size: .9rem; color: var(--text-hell-leise); }

/* --- Zeitstrahl ---------------------------------------------------------- */
.zeitstrahl { position: relative; margin-top: 2.8rem; padding-left: 2.2rem; }
.zeitstrahl::before {
  content: "";
  position: absolute;
  left: 5px; top: .6rem; bottom: .6rem;
  width: 1px;
  background: linear-gradient(180deg, var(--messing), color-mix(in srgb, var(--messing) 12%, transparent));
}
.station { position: relative; padding-bottom: 2.2rem; }
.station:last-child { padding-bottom: 0; }
.station::before {
  content: "";
  position: absolute;
  left: -2.2rem; top: .55rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--papier-tief);
  border: 2px solid var(--messing);
}
.station b {
  display: block;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--messing);
  margin-bottom: .45rem;
}
.station h4 { margin-bottom: .5rem; }
.station p { font-size: .96rem; color: var(--text-leise); }

/* --- Bildblock ----------------------------------------------------------- */
.bildblock {
  position: relative;
  margin: 0;
  border-radius: var(--rund-groß);
  overflow: hidden;
  box-shadow: var(--schatten);
}
.bildblock img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.bildblock figcaption {
  padding: .9rem 1.2rem;
  background: #fff;
  font-size: .8rem;
  color: var(--text-leise);
  border: 1px solid var(--papier-rand);
  border-top: 0;
}

/* --- Quellen ------------------------------------------------------------- */
.quellen { margin-top: 3rem; border-top: 1px solid var(--papier-rand); }
.dunkel .quellen { border-color: rgba(244, 241, 233, .14); }
.quellen details { border-bottom: 1px solid var(--papier-rand); }
.dunkel .quellen details { border-color: rgba(244, 241, 233, .14); }
.quellen summary {
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.quellen summary::-webkit-details-marker { display: none; }
.quellen summary::after {
  content: "+";
  font-family: var(--schrift-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--messing);
  transition: transform .3s var(--weich);
}
.dunkel .quellen summary::after { color: var(--messing-hell); }
.quellen details[open] summary::after { transform: rotate(45deg); }
.quellen ul { margin: 0 0 1.4rem; padding-left: 1.1rem; }
.quellen li { font-size: .87rem; color: var(--text-leise); margin-bottom: .7rem; line-height: 1.6; }
.dunkel .quellen li { color: var(--text-hell-leise); }
.quellen a { word-break: break-word; }

/* --- Kontakt ------------------------------------------------------------- */
.kontakt-raster { display: grid; gap: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
@media (min-width: 940px) { .kontakt-raster { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); } }

.kontakt-daten { list-style: none; margin: 2rem 0 0; padding: 0; }
.kontakt-daten li { padding: 1.1rem 0; border-top: 1px solid rgba(244, 241, 233, .14); }
.kontakt-daten b { display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--messing-hell); margin-bottom: .35rem; font-weight: 600; }
.kontakt-daten a, .kontakt-daten span { font-size: 1.05rem; color: var(--text-hell); text-decoration: none; }
.kontakt-daten a:hover { color: var(--messing-hell); }

.formular { display: grid; gap: 1.1rem; }
@media (min-width: 620px) { .formular { grid-template-columns: 1fr 1fr; } }
.feld { display: flex; flex-direction: column; gap: .5rem; }
.feld.breit { grid-column: 1 / -1; }
.feld label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-hell-leise); font-weight: 600; }
.feld input, .feld textarea {
  width: 100%;
  padding: .95rem 1.1rem;
  background: rgba(244, 241, 233, .05);
  border: 1px solid rgba(244, 241, 233, .18);
  border-radius: 10px;
  color: var(--text-hell);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .25s, background-color .25s;
}
.feld textarea { min-height: 150px; resize: vertical; }
.feld input:focus, .feld textarea:focus {
  outline: none;
  border-color: var(--messing-hell);
  background: rgba(244, 241, 233, .08);
}
.feld input::placeholder, .feld textarea::placeholder { color: rgba(169, 180, 182, .5); }

.honigtopf { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.zustimmung {
  grid-column: 1 / -1;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--text-hell-leise);
  line-height: 1.55;
}
.zustimmung input { margin-top: .3rem; accent-color: var(--messing); width: 17px; height: 17px; flex: none; }

.meldung {
  grid-column: 1 / -1;
  padding: .95rem 1.2rem;
  border-radius: 10px;
  font-size: .92rem;
  border: 1px solid;
}
.meldung.gut { border-color: var(--grün-hell); background: rgba(124, 169, 140, .12); color: var(--grün-hell); }
.meldung.schlecht { border-color: #C77B6A; background: rgba(199, 123, 106, .12); color: #E0A294; }

/* --- Fußbereich ---------------------------------------------------------- */
.fuß {
  background: var(--tinte);
  color: var(--text-hell-leise);
  padding: clamp(3.5rem, 2.5rem + 3vw, 5.5rem) 0 2.5rem;
  border-top: 1px solid rgba(244, 241, 233, .12);
}
.fuß-raster {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  padding-bottom: 3rem;
}
.fuß h4 { font-family: var(--schrift-text); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--messing-hell); margin-bottom: 1.2rem; font-weight: 600; }
.fuß ul { list-style: none; margin: 0; padding: 0; }
.fuß li { margin-bottom: .6rem; }
.fuß a { font-size: .93rem; text-decoration: none; transition: color .2s; }
.fuß a:hover { color: var(--text-hell); }
.fuß-schluss {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(244, 241, 233, .12);
  font-size: .82rem;
}
.fuß-marke { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.2rem; }
.fuß-marke img { width: 30px; }
.fuß-marke b { font-family: var(--schrift-display); font-size: 1.3rem; font-weight: 400; color: var(--text-hell); }

.hoch {
  position: fixed;
  right: 1.5rem; bottom: 1.5rem;
  z-index: 100;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--papier-rand);
  border-radius: 50%;
  background: color-mix(in srgb, var(--papier) 92%, transparent);
  backdrop-filter: blur(10px);
  color: var(--text);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--weich), transform .3s var(--weich), visibility .3s, background-color .25s, color .25s;
}
.hoch.sichtbar { opacity: 1; visibility: visible; transform: none; }
.hoch:hover { background: var(--tinte); color: var(--text-hell); border-color: var(--tinte); }

/* --- Rechtsseiten -------------------------------------------------------- */
.rechtskopf {
  background: var(--tinte);
  color: var(--text-hell);
  padding: clamp(8rem, 6rem + 6vw, 11rem) 0 clamp(3rem, 2rem + 3vw, 4.5rem);
}
.rechtstext { padding: clamp(3.5rem, 2.5rem + 3vw, 5.5rem) 0; }
.rechtstext .fließ { max-width: 76ch; }
.rechtstext h2 { margin: 3rem 0 1.2rem; font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.3rem); }
.rechtstext h2:first-child { margin-top: 0; }
.rechtstext h3 { margin: 2.2rem 0 .8rem; font-size: 1.25rem; }
.rechtstext ul { padding-left: 1.2rem; }
.rechtstext li { margin-bottom: .5rem; }
.rechtstext .kasten {
  padding: 1.6rem 1.8rem;
  background: var(--papier-tief);
  border-left: 2px solid var(--messing);
  border-radius: 0 var(--rund-groß) var(--rund-groß) 0;
  margin: 1.6rem 0;
}

/* --- Auftauchen ---------------------------------------------------------- */
.js .taucht { opacity: 0; transform: translateY(26px); }
.js .taucht.da { opacity: 1; transform: none; transition: opacity .8s var(--weich), transform .8s var(--weich); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .taucht { opacity: 1; transform: none; }
  .bühne-bild { transform: none !important; }
}

@media print {
  .kopf, .hoch, .klappnavi, .fortschritt, .bühne-bild { display: none !important; }
  body { background: #fff; color: #000; }
  .dunkel, .getönt { background: #fff !important; color: #000 !important; }
}

/* --- Feinschliff für schmale Bildschirme --------------------------------- */
@media (max-width: 680px) {
  .wortmarke span span { display: none; }
  .wortmarke b { font-size: 1.05rem; }
  .wortmarke img { width: 22px; }
  .kopf .knopf { padding: .7rem 1.15rem; font-size: .85rem; }
  .kopf { padding: .8rem 0; }
  .bühne { padding-top: 7rem; }
  .zeitstrahl { padding-left: 1.7rem; }
  .station::before { left: -1.7rem; }
  .register-knöpfe { width: 100%; justify-content: center; }
  .register-knöpfe button { flex: 1 1 auto; padding: .65rem 1rem; }
  .hoch { right: 1rem; bottom: 1rem; }
}

/* --- Film ---------------------------------------------------------------- */
.film {
  position: relative;
  border-radius: var(--rund-groß);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .8);
}
.film iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.film-start {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: block;
  color: var(--text-hell);
  font-family: inherit;
}
.film-start img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--weich), filter .5s var(--weich); }
.film-start:hover img { transform: scale(1.03); filter: brightness(.88); }
.film-start::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,22,25,.25) 0%, transparent 35%, rgba(16,22,25,.75) 100%);
}
.film-knopf {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(64px, 8vw, 88px);
  height: clamp(64px, 8vw, 88px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--messing) 92%, transparent);
  box-shadow: 0 0 0 0 rgba(211, 177, 131, .45);
  transition: transform .35s var(--weich), box-shadow .35s var(--weich), background-color .35s var(--weich);
}
.film-start:hover .film-knopf { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 0 16px rgba(211, 177, 131, .12); }
.film-knopf svg { width: 36%; height: 36%; margin-left: 8%; fill: #fff; }
.film-fuß {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.4rem clamp(1.2rem, 1rem + 1vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .4rem 1.2rem;
  text-align: left;
}
.film-fuß b { font-family: var(--schrift-display); font-size: clamp(1.1rem, 1rem + .5vw, 1.5rem); font-weight: 400; }
.film-fuß small { font-size: .8rem; color: var(--text-hell-leise); }
.film-hinweis {
  display: block;
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--text-hell-leise);
  line-height: 1.5;
}

/* --- Turm-Grafik --------------------------------------------------------- */
.turm-raster { display: grid; gap: clamp(2rem, 1.5rem + 2vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .turm-raster { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); } }

.turm { display: flex; flex-direction: column; gap: 3px; }
.turm-welt {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--messing-hell);
  padding: .9rem 0 .45rem;
  border-top: 1px solid rgba(244, 241, 233, .18);
  margin-top: .5rem;
}
.turm-welt:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.turm-etage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  border-radius: 6px;
  background: rgba(244, 241, 233, .06);
  border: 1px solid rgba(244, 241, 233, .1);
  font-size: .88rem;
  transition: background-color .3s var(--weich), border-color .3s var(--weich);
}
.turm-etage:hover { background: rgba(211, 177, 131, .14); border-color: rgba(211, 177, 131, .4); }
.turm-etage b {
  font-family: var(--schrift-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--messing-hell);
  font-variant-numeric: tabular-nums;
  flex: none;
}
.turm-etage span { line-height: 1.35; padding: .35rem 0; }

/* --- Soziale Verweise ---------------------------------------------------- */
.sozial { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.sozial a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.2rem;
  border: 1px solid rgba(244, 241, 233, .2);
  border-radius: 999px;
  font-size: .88rem;
  text-decoration: none;
  color: var(--text-hell);
  transition: border-color .25s, background-color .25s, transform .25s var(--weich);
}
.sozial a:hover { border-color: var(--messing-hell); background: rgba(244, 241, 233, .06); transform: translateY(-2px); }
.sozial svg { width: 18px; height: 18px; fill: currentColor; flex: none; }

.fuß .sozial { margin-top: 1rem; }
.fuß .sozial a { padding: .55rem 1rem; font-size: .84rem; color: var(--text-hell-leise); }
.fuß .sozial a:hover { color: var(--text-hell); }

/* --- Bildpaar ------------------------------------------------------------ */
.bildpaar {
  display: grid;
  gap: 1.4rem;
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
}
@media (min-width: 780px) { .bildpaar { grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); align-items: start; } }
.bildpaar figure { margin: 0; border-radius: var(--rund-groß); overflow: hidden; box-shadow: var(--schatten); background: #fff; }
.bildpaar img { width: 100%; object-fit: cover; }
.bildpaar figure:first-child img { aspect-ratio: 3 / 4; }
.bildpaar figure:last-child img { aspect-ratio: 4 / 3; }
.bildpaar figcaption {
  padding: .85rem 1.1rem;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--text-leise);
  border: 1px solid var(--papier-rand);
  border-top: 0;
}
.dunkel .bildpaar figure { background: rgba(244, 241, 233, .05); }
.dunkel .bildpaar figcaption { color: var(--text-hell-leise); border-color: rgba(244, 241, 233, .12); }

/* --- Galerie ------------------------------------------------------------- */
.galerie {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  margin-top: 2.5rem;
}
.galerie button {
  position: relative;
  padding: 0;
  border: 1px solid rgba(244, 241, 233, .12);
  border-radius: 12px;
  overflow: hidden;
  background: none;
  cursor: zoom-in;
  display: block;
  transition: transform .35s var(--weich), border-color .35s var(--weich);
}
.galerie button:hover { transform: translateY(-3px); border-color: var(--messing-hell); }
.galerie img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .6s var(--weich); }
.galerie button:hover img { transform: scale(1.05); }
.galerie span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem .9rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(16,22,25,.85));
  color: var(--text-hell);
  font-size: .82rem;
  text-align: left;
}

/* --- Leuchtkasten -------------------------------------------------------- */
.leuchtkasten {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 3rem);
  background: rgba(10, 14, 16, .93);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--weich), visibility .3s;
}
.leuchtkasten.offen { opacity: 1; visibility: visible; }
.leuchtkasten figure { margin: 0; max-width: min(1200px, 100%); }
.leuchtkasten img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 40px 90px -30px #000;
}
.leuchtkasten figcaption {
  margin-top: 1rem;
  color: var(--text-hell-leise);
  font-size: .88rem;
  text-align: center;
}
.leuchtkasten-zu {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 233, .25);
  border-radius: 50%;
  background: none;
  color: var(--text-hell);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .25s, border-color .25s;
}
.leuchtkasten-zu:hover { background: rgba(244, 241, 233, .12); border-color: var(--messing-hell); }

/* --- Film als Verweis, Urhebervermerk ------------------------------------ */
a.film { display: block; text-decoration: none; color: var(--text-hell); }
a.film:hover { text-decoration: none; }
.film-start { pointer-events: none; }
.fuß-kredit { color: var(--text-hell-leise); }
.fuß-kredit a { color: var(--messing-hell); text-decoration: none; }
.fuß-kredit a:hover { text-decoration: underline; }
.rechtstext .kasten a { color: var(--messing); }

/* Rechts- und Unterseitenkopf ist dunkel, aber ohne .dunkel-Klasse */
.rechtskopf .lead, .rechtskopf p, .rechtskopf .leise { color: var(--text-hell); }
.rechtskopf .marke { color: var(--messing-hell); }
