/* ==========================================================================
   Free Minds Accreditation Network
   Design tokens
   ========================================================================== */
:root {
  color-scheme: light;

  /* Brand surfaces */
  --cream:        #fbf7f3;
  --cream-card:   #fdfaf5;
  --blue-band:    #e6edfc;
  --blue-card:    #e9effd;
  --hero-ground:  #eef2f7;   /* flat colour behind the hero image */

  /* ---------------------------------------------------------------------
     HERO-GRAPHIK — linke Bildhälfte, Datei: assets/img/hero-image.webp
     Austauschen: Datei in assets/img/ ersetzen oder den Pfad im
     <img> in index.html (Abschnitt .hero-figure) eintragen.
     --------------------------------------------------------------------- */
  --hero-panel:   #061731;   /* Grund der Bildhälfte, wie der Bildhintergrund */

  /* Ink */
  --navy:         #12386f;   /* headings */
  --navy-deep:    #0d2b57;
  --body:         #2f4d80;   /* running text */
  --muted:        #6a80a8;
  --hairline:     rgba(18, 56, 111, .12);
  --hairline-soft:rgba(18, 56, 111, .07);

  /* Accent */
  --orange:       #ea5c17;
  --orange-soft:  #f4864a;
  --orange-wash:  rgba(234, 92, 23, .09);

  /* Type */
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --gutter: clamp(20px, 5vw, 64px);
  --measure: 1180px;
  --band-y: clamp(72px, 9vw, 132px);
  --head-h: 74px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-size: clamp(15px, .45vw + 14px, 17px);
  font-weight: 300;
  line-height: 1.68;
  letter-spacing: .004em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 400;
  margin: 0;
  letter-spacing: -.012em;
  text-wrap: balance;
}

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Icons: stroke-width is tuned per rendered size so every glyph reads ~2px */
.ico, .req-ico, .stat-ico, .stage-ico, .contact-ico svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}
.ico          { width: 1.05em; height: 1.05em; flex: none; stroke-width: 1.7; }
.contact-ico svg                          { stroke-width: 1.6; }
.req-ico                                  { stroke-width: 1.5; }
.stat-ico                                 { stroke-width: 1.1; }
.stage-ico                                { stroke-width: 1; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 400;
  padding: 10px 16px; border-radius: 999px;
  background: var(--navy); color: #fff;
  font-size: 14px; letter-spacing: .02em;
  transform: translateY(-160%);
  transition: transform .25s var(--ease);
}
.skip-link:focus-visible { transform: none; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

.band {
  position: relative;
  padding-block: var(--band-y);
  isolation: isolate;
  overflow: clip;
}
.band-cream { background: var(--cream); }
.band-blue  { background: var(--blue-band); }

/* Soft light so the glassmorphism has something to refract */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.aurora-a { width: 46vw; height: 46vw; top: -14vw; left: -12vw; background: radial-gradient(circle, rgba(120,164,232,.42), transparent 68%); }
.aurora-b { width: 30vw; height: 30vw; bottom: -14vw; left: 10vw;  background: radial-gradient(circle, rgba(234,92,23,.1), transparent 68%); }
.aurora-c { width: 40vw; height: 40vw; top: 6vw;  right: -12vw;    background: radial-gradient(circle, rgba(255,255,255,.85), transparent 70%); }
.aurora-d { width: 38vw; height: 38vw; bottom: -10vw; left: -10vw; background: radial-gradient(circle, rgba(255,255,255,.75), transparent 70%); }
.aurora-e { width: 36vw; height: 36vw; top: -8vw; left: 22vw;      background: radial-gradient(circle, rgba(255,255,255,.8), transparent 70%); }
.aurora-f { width: 42vw; height: 42vw; top: 2vw; right: -14vw;     background: radial-gradient(circle, rgba(120,164,232,.34), transparent 70%); }
.aurora-g { width: 40vw; height: 40vw; bottom: -16vw; left: 18vw;  background: radial-gradient(circle, rgba(234,92,23,.14), transparent 70%); }

/* ==========================================================================
   Section headings
   ========================================================================== */
.section-head {
  max-width: 46rem;
  margin: 0 auto clamp(44px, 5vw, 76px);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.1;
  font-weight: 400;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 54px; height: 2px;
  margin: clamp(18px, 2vw, 26px) auto 0;
  background: var(--orange);
  transform-origin: center;
  transition: transform .9s var(--ease-out) .1s;
}
.js .section-head h2::after { transform: scaleX(0); }
.reveal-head.is-in h2::after { transform: scaleX(1); }
@keyframes ruleIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.js .reveal-head h2, .js .reveal-head .section-lead {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-head h2, .reveal-head .section-lead {
  transition: opacity .7s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-head .section-lead { transition-delay: .1s; }
.reveal-head.is-in h2, .reveal-head.is-in .section-lead { opacity: 1; transform: none; }

.numeral {
  font-family: var(--serif);
  color: var(--orange);
  font-weight: 500;
  margin-right: .5em;
  letter-spacing: .02em;
}
.numeral::after { content: "."; }

.section-lead {
  margin: clamp(18px, 2vw, 26px) auto 0;
  max-width: 42rem;
  font-size: clamp(15px, .5vw + 14px, 18px);
  color: var(--body);
  line-height: 1.75;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  border-radius: 14px;
  border: 1px solid var(--hairline-soft);
  position: relative;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s var(--ease);
}
.card-cream { background: linear-gradient(170deg, #fefcf9, var(--cream-card)); }
.card-blue  { background: linear-gradient(170deg, #eef3fe, var(--blue-card)); }

.rule {
  display: block;
  width: 34px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width .5s var(--ease-out);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-pad: 15px 26px;
  display: inline-flex;
  align-items: center;
  gap: .7em;
  padding: var(--btn-pad);
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .012em;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease-out),
              box-shadow .35s var(--ease-out);
}
.btn .ico { transition: transform .4s var(--ease-out); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .ico { transform: translateX(3px); }

.btn-solid {
  background: var(--navy);
  color: #fdf9f4;
  box-shadow: 0 10px 26px -14px rgba(13, 43, 87, .7);
}
.btn-solid:hover { background: var(--navy-deep); box-shadow: 0 16px 34px -14px rgba(13, 43, 87, .8); }

.btn-outline {
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(18, 56, 111, .35);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--navy); background: rgba(255, 255, 255, .85); }
.btn-outline .ico:hover { transform: none; }

.btn-ghost { color: var(--navy); padding: 10px 4px; }
.btn-ghost:hover { color: var(--orange); transform: none; }
.btn-sm { font-size: 14px; }

/* ==========================================================================
   Masthead
   ========================================================================== */
.masthead {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  transition: background-color .45s var(--ease), border-color .45s var(--ease),
              backdrop-filter .45s var(--ease), box-shadow .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.masthead.is-stuck {
  background: rgba(251, 247, 243, .62);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border-bottom-color: var(--hairline);
  box-shadow: 0 10px 34px -22px rgba(13, 43, 87, .5);
}
.masthead-inner {
  max-width: var(--measure);
  margin-inline: auto;
  padding: 14px var(--gutter);
  min-height: var(--head-h);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
}

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { height: 42px; width: auto; transition: transform .6s var(--ease-out); }
.brand:hover .brand-mark { transform: scale(1.07); }
.brand-type { display: grid; gap: 2px; }
.brand-name {
  font-family: var(--sans);
  font-size: 16px; font-weight: 500;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.brand-sub {
  font-size: 9.5px; font-weight: 400;
  letter-spacing: .215em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .78;
  line-height: 1;
}

.masthead-nav { display: flex; gap: clamp(14px, 1.8vw, 30px); }
.masthead-nav a {
  position: relative;
  font-size: 14.5px;
  color: var(--navy);
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.masthead-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.masthead-nav a:hover, .masthead-nav a.is-active { color: var(--orange); }
.masthead-nav a:hover::after, .masthead-nav a.is-active::after { transform: scaleX(1); }


.masthead-end { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
  display: none;
  align-items: center; gap: 9px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 14px;
  color: var(--navy); padding: 8px 2px;
}
.menu-toggle .ico { width: 22px; height: 22px; }
.menu-toggle .ico-close { display: none; }
.menu-toggle[aria-expanded="true"] .ico-open { display: none; }
.menu-toggle[aria-expanded="true"] .ico-close { display: block; }

/* Overlay menu */
.menu-panel {
  position: fixed; inset: 0; z-index: 105;
  padding: calc(var(--head-h) + 28px) var(--gutter) 40px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
  background: rgba(251, 247, 243, .78);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  overflow-y: auto;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.menu-panel[hidden] { display: none; }
.menu-panel.is-open { opacity: 1; }

.menu-list { display: grid; gap: clamp(2px, 1vw, 10px); }
.menu-list a {
  display: flex; align-items: baseline; gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-family: var(--serif);
  font-size: clamp(26px, 6.5vw, 42px);
  line-height: 1.18;
  color: var(--navy);
  opacity: 0;
  transform: translateY(14px);
  transition: color .3s var(--ease);
}
.menu-panel.is-open .menu-list a { animation: menuIn .55s var(--ease-out) forwards; }
.menu-list a em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--orange);
  flex: none;
}
.menu-list a:hover { color: var(--orange); }
@keyframes menuIn { to { opacity: 1; transform: none; } }
.menu-list a:nth-child(1) { animation-delay: .04s; }
.menu-list a:nth-child(2) { animation-delay: .08s; }
.menu-list a:nth-child(3) { animation-delay: .12s; }
.menu-list a:nth-child(4) { animation-delay: .16s; }
.menu-list a:nth-child(5) { animation-delay: .2s; }
.menu-list a:nth-child(6) { animation-delay: .24s; }
.menu-list a:nth-child(7) { animation-delay: .28s; }
.menu-list a:nth-child(8) { animation-delay: .32s; }

.menu-meta { display: grid; gap: 6px; font-size: 14px; color: var(--body); }
.menu-meta a:hover { color: var(--orange); }

body.menu-open { overflow: hidden; }

/* ==========================================================================
   Section rail (scroll spy)
   ========================================================================== */
.rail {
  position: fixed;
  left: 22px; top: 50%; translate: 0 -50%;
  z-index: 100;
  display: grid; gap: 13px;
}
.rail a {
  position: relative;
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(18, 56, 111, .4);
  /* helle Kontur: unsichtbar auf hellem Grund, sichtbar über der Bildhälfte */
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .34);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease-out);
}
.rail a::after {
  content: attr(data-rail);
  position: absolute; left: 18px; top: 50%; translate: 0 -50%;
  padding: 6px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 10px 26px -14px rgba(13, 43, 87, .4);
  font-size: 12px; letter-spacing: .02em; white-space: nowrap;
  color: var(--navy);
  opacity: 0; translate: -6px -50%;
  transition: opacity .3s var(--ease), translate .3s var(--ease-out);
  pointer-events: none;
}
.rail a:hover { transform: scale(1.35); border-color: var(--orange); }
.rail a:hover::after { opacity: 1; translate: 0 -50%; }
.rail a.is-active { background: var(--orange); border-color: var(--orange); transform: scale(1.3); }

/* ==========================================================================
   Glass note — hover a marked term
   ========================================================================== */
.term {
  position: relative;
  display: inline;
  color: var(--navy);
  font-weight: 400;
  cursor: help;
  padding-bottom: 1px;
  background-image:
    linear-gradient(var(--orange), var(--orange)),
    linear-gradient(rgba(18,56,111,.34), rgba(18,56,111,.34));
  background-repeat: no-repeat;
  background-position: 0 100%, 0 100%;
  background-size: 0% 1.6px, 100% 1px;
  transition: background-size .5s var(--ease-out), color .35s var(--ease);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.term:hover, .term:focus-visible, .term.is-lit {
  color: var(--orange);
  background-size: 100% 1.6px, 100% 1px;
}

.glass-note {
  position: fixed;
  z-index: 300;
  top: 0; left: 0;
  max-width: min(320px, calc(100vw - 32px));
  padding: 14px 17px 13px;
  border-radius: 15px;
  background: linear-gradient(158deg, rgba(255,255,255,.66), rgba(233,240,253,.44));
  backdrop-filter: blur(22px) saturate(190%);
  -webkit-backdrop-filter: blur(22px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow:
    0 24px 56px -20px rgba(13, 43, 87, .38),
    0 2px 10px -4px rgba(13, 43, 87, .18),
    inset 0 1px 0 rgba(255, 255, 255, .95),
    inset 0 -1px 0 rgba(255, 255, 255, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px) scale(.975);
  transform-origin: var(--origin, 50% 100%);
  transition: opacity .3s var(--ease), transform .38s var(--ease-out), visibility .3s;
  pointer-events: none;
  overflow: hidden;
}
.glass-note.is-visible { opacity: 1; visibility: visible; transform: none; }

.glass-note-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(112deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,0) 42%);
  pointer-events: none;
}
.glass-note-text {
  position: relative;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy-deep);
  letter-spacing: .005em;
}
.glass-note-src {
  position: relative;
  display: block;
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid rgba(18, 56, 111, .14);
  font-size: 11.5px;
  letter-spacing: .05em;
  color: var(--orange);
}
.glass-note-src:empty { display: none; }
.glass-note-arrow {
  position: absolute;
  width: 12px; height: 12px;
  rotate: 45deg;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .72);
}
.glass-note[data-side="top"]    .glass-note-arrow { bottom: -7px; left: var(--ax, 50%); margin-left: -6px; border-top: 0; border-left: 0; }
.glass-note[data-side="bottom"] .glass-note-arrow { top: -7px;    left: var(--ax, 50%); margin-left: -6px; border-bottom: 0; border-right: 0; }

/* ==========================================================================
   Hero — Graphik links auf halber Breite, Text rechts
   ========================================================================== */
.hero {
  position: relative;
  padding-top: var(--head-h);
  background: var(--hero-ground);
  overflow: clip;
  isolation: isolate;
}
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - var(--head-h));
  min-height: calc(100svh - var(--head-h));
}
.hero-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--hero-panel);
}
.hero-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) clamp(24px, 4.4vw, 84px);
}
.hero-copy > * { max-width: 34rem; }

.hero-title {
  font-size: clamp(42px, 7.2vw, 88px);
  line-height: .98;
  letter-spacing: -.028em;
  font-weight: 400;
  color: var(--navy);
}
.hero-tagline {
  margin: clamp(20px, 2.4vw, 30px) 0 0;
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--orange);
  letter-spacing: -.006em;
}
.hero-lead {
  margin: clamp(16px, 1.8vw, 24px) 0 0;
  font-size: clamp(15px, .5vw + 14px, 17.5px);
  line-height: 1.78;
  max-width: 33rem;
  color: var(--navy-deep);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: clamp(26px, 3vw, 38px);
}

/* ==========================================================================
   Präambel — statement + signatories
   ========================================================================== */
.preamble {
  max-width: 46rem;
  margin: 0 auto clamp(44px, 5vw, 72px);
}
.preamble p {
  font-size: clamp(15.5px, .5vw + 14.5px, 18px);
  line-height: 1.8;
  margin-bottom: 1.05em;
}
.preamble-close {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px) !important;
  line-height: 1.45 !important;
  color: var(--navy);
  padding-top: clamp(10px, 1.2vw, 16px);
}
.signatories {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px clamp(16px, 2.4vw, 30px);
  margin-top: clamp(26px, 3vw, 38px);
  padding-top: clamp(20px, 2.2vw, 26px);
  border-top: 1px solid var(--hairline);
}
.signatories li {
  font-family: var(--serif);
  font-size: clamp(14px, 1vw, 16px);
  color: var(--navy);
  white-space: nowrap;
}

/* ==========================================================================
   Akkreditierungsrat
   ========================================================================== */
.council {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.4vw, 18px);
  align-items: stretch;
}
.council-member {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}
.council-photo {
  display: block;
  width: clamp(92px, 8.6vw, 118px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 28px -16px rgba(13, 43, 87, .45);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.council-photo img { width: 100%; height: 100%; object-fit: cover; }
.council-field {
  max-width: 100%;
  font-size: 11.5px;
  letter-spacing: .07em;
  overflow-wrap: break-word;
  hyphens: auto;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
  transition: color .35s var(--ease);
}
@media (hover: hover) and (min-width: 900px) {
  /* nur Effekte, die keinen Zeilenumbruch und damit keine Höhenänderung
     auslösen können — sonst verschiebt sich der Bereich darunter beim Hover */
  .council-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px -28px rgba(13, 43, 87, .45);
    border-color: rgba(234, 92, 23, .32);
  }
  .council-card:hover .council-photo {
    transform: scale(1.08);
    box-shadow: 0 18px 38px -16px rgba(13, 43, 87, .5);
  }
  .council-card:hover .council-field { color: var(--orange); }
  .council-card:hover .rule { width: 56px; }
}

/* ==========================================================================
   Verfahren — stages
   ========================================================================== */
.stages {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4.5vw, 64px);
}
.stages::before {
  content: "";
  position: absolute; top: 25px; left: 0; right: 0;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.3s var(--ease-out);
}
.stages.is-in::before { transform: scaleX(1); }
.stage { display: grid; align-content: start; gap: 0; }
.stage-mark {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 52px;
  margin-bottom: clamp(20px, 2.4vw, 28px);
}
.stage-line {
  display: none;
  position: absolute; top: 50%; left: 0; right: 0;
  height: 1.5px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.1s var(--ease-out);
}
.stage.is-in .stage-line { transform: scaleX(1); }
.stage-mark b {
  position: relative;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 21px; font-weight: 400;
  color: var(--orange);
  transition: background-color .45s var(--ease), color .45s var(--ease), transform .5s var(--ease-out);
}
.stage:hover .stage-mark b { background: var(--orange); color: #fff; transform: scale(1.08); }
.stage h3 {
  text-align: center;
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.2;
  font-weight: 400;
}
.stage-term {
  margin: 8px 0 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--orange);
}
.stage-term .term { color: var(--orange); }
.stage-text {
  margin: clamp(16px, 1.8vw, 22px) auto 0;
  max-width: 32rem;
  text-align: center;
  font-size: 14.8px;
  line-height: 1.7;
  color: var(--muted);
}
.stage-panel {
  margin-top: clamp(22px, 2.6vw, 30px);
  padding: clamp(22px, 2.4vw, 30px) clamp(20px, 2.4vw, 30px);
  display: flex; align-items: center;
  gap: clamp(20px, 2.6vw, 34px);
}
/* stage 1 lists the eight standards, so it stacks instead of sitting in a row */
.stage-panel-wide { display: block; }
.panel-head {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: clamp(14px, 1.6vw, 18px);
  margin-bottom: clamp(14px, 1.6vw, 18px);
  border-bottom: 1px solid rgba(18, 56, 111, .12);
}
.panel-head p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(15.5px, 1.2vw, 18px);
  color: var(--navy);
  line-height: 1.3;
}
.checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 9px clamp(14px, 1.6vw, 22px);
}
.checks-full { grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr)); }
.checks-full li { font-size: 14.6px; line-height: 1.62; }
.checks li {
  position: relative;
  padding-left: 19px;
  font-size: 14.2px;
  line-height: 1.45;
  color: var(--body);
}
.checks li::before {
  content: "";
  position: absolute; left: 0; top: .42em;
  width: 9px; height: 5px;
  border-left: 1.4px solid var(--orange);
  border-bottom: 1.4px solid var(--orange);
  rotate: -45deg;
}
.stage-ico { width: 56px; height: 56px; flex: none; color: var(--orange); }
.ticks { display: grid; gap: 11px; }
.ticks li {
  position: relative;
  padding-left: 20px;
  font-size: 14.8px;
  color: var(--body);
  line-height: 1.45;
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}

/* ==========================================================================
   Punktesystem
   ========================================================================== */
.scale {
  padding: clamp(30px, 3.4vw, 44px) clamp(24px, 3.4vw, 52px) clamp(24px, 2.6vw, 34px);
  margin-bottom: clamp(20px, 2.4vw, 30px);
}
.scale-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(18, 56, 111, .09);
  margin-bottom: 46px;
  overflow: visible;
}
.scale-fill {
  position: absolute; inset: 0 auto 0 0;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(18, 56, 111, .17) 0 74.26%,
    rgba(234, 92, 23, .45) 74.26% 87.13%,
    var(--orange) 87.13% 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s var(--ease-out);
}
.scale.is-in .scale-fill { transform: scaleX(1); }
.scale-mark {
  position: absolute; left: var(--at); top: -7px;
  width: 2px; height: 22px;
  background: var(--navy);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .5s var(--ease) .7s;
}
.scale.is-in .scale-mark { opacity: 1; }
.scale-mark b, .scale-mark span {
  position: absolute; left: 50%; translate: -50% 0;
  white-space: nowrap;
}
.scale-mark b {
  top: 26px;
  font-family: var(--serif);
  font-size: 19px; font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.scale-mark span {
  top: 47px;
  font-size: 11px; letter-spacing: .11em; text-transform: uppercase;
  color: var(--muted);
}
.scale-mark-full { background: var(--orange); }
.scale-mark-full b { color: var(--orange); }
.scale-axis {
  display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: .06em;
  color: var(--muted);
}

.scale-legend {
  display: flex; flex-wrap: wrap; gap: 10px clamp(18px, 2.4vw, 32px);
  margin-top: clamp(20px, 2.2vw, 26px);
  padding-top: clamp(16px, 1.8vw, 22px);
  border-top: 1px solid var(--hairline-soft);
}
.scale-legend li { display: flex; align-items: center; gap: 9px; font-size: 13.4px; color: var(--body); }
.scale-legend i {
  width: 22px; height: 8px; border-radius: 999px; flex: none;
  background: rgba(18, 56, 111, .17);
}
.scale-legend li:nth-child(2) i { background: rgba(234, 92, 23, .45); }
.scale-legend li:nth-child(3) i { background: var(--orange); }
.scale-legend b { font-family: var(--serif); font-weight: 500; color: var(--navy); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}
.stat {
  display: grid; align-content: start; justify-items: center; gap: 12px;
  padding: clamp(28px, 2.8vw, 38px) clamp(18px, 2vw, 26px) clamp(26px, 2.6vw, 34px);
  text-align: center;
}
.stat-ico {
  width: 46px; height: 46px;
  color: var(--orange);
  margin-bottom: 6px;
}
.num {
  font-family: var(--serif);
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 300;
  line-height: 1;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.stat h3 { font-size: clamp(16px, 1.15vw, 18.5px); font-weight: 500; }
.stat p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ==========================================================================
   Einreichung
   ========================================================================== */
.guides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 62px);
  position: relative;
}
.guides::before {
  content: "";
  position: absolute; top: 6px; bottom: 6px; left: 50%;
  width: 1px; background: var(--hairline);
}
.guide h3 {
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 400;
  margin-bottom: clamp(14px, 1.6vw, 20px);
}
.guide p { font-size: 15.4px; line-height: 1.78; }

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  max-width: 56rem;
  margin-inline: auto;
}
.contact {
  display: flex; align-items: center; gap: clamp(16px, 2vw, 24px);
  padding: clamp(20px, 2.2vw, 28px) clamp(20px, 2.4vw, 30px);
  height: 100%;
}
.contact-ico {
  display: grid; place-items: center;
  width: 54px; height: 54px; flex: none;
  border-radius: 50%;
  border: 1.5px solid rgba(234, 92, 23, .45);
  color: var(--orange);
  transition: background-color .4s var(--ease), color .4s var(--ease), transform .5s var(--ease-out);
}
.contact-ico svg { width: 24px; height: 24px; }
.contact-body { display: grid; gap: 4px; min-width: 0; }
.contact-label {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--navy);
}
.contact-value { font-size: 14.6px; color: var(--body); overflow-wrap: anywhere; }
.contact:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -26px rgba(13, 43, 87, .4);
  border-color: rgba(234, 92, 23, .3);
}
.contact:hover .contact-ico { background: var(--orange); color: #fff; transform: scale(1.06); }

/* ==========================================================================
   Footer — zwei Zeilen: oben Marke + Navigation, unten Kontakt + Rechtliches
   ========================================================================== */
.site-foot {
  background: var(--cream);
  border-top: 1.5px solid var(--orange);
  padding-block: clamp(44px, 5vw, 64px);
}
.foot-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px clamp(24px, 3vw, 44px);
  padding-bottom: clamp(26px, 3vw, 38px);
  border-bottom: 1px solid var(--hairline);
}
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand img { height: 48px; width: auto; }
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(18px, 2.4vw, 32px);
  font-size: 14px;
}
.foot-nav a { color: var(--body); transition: color .3s var(--ease); }
.foot-nav a:hover { color: var(--orange); }
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px clamp(24px, 3vw, 44px);
  padding-top: clamp(22px, 2.6vw, 32px);
  font-size: 13.6px;
}
.foot-contact { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.foot-contact a { display: flex; align-items: center; gap: 9px; color: var(--body); transition: color .3s var(--ease); }
.foot-contact a:hover { color: var(--orange); }
.foot-contact .ico { color: var(--orange); }
.foot-copy { margin: 0; color: var(--muted); text-wrap: balance; }
.to-top { display: inline-flex; align-items: center; gap: 6px; color: var(--navy) !important; }
.to-top:hover .ico { transform: translateY(-3px); }
.to-top .ico { transition: transform .35s var(--ease-out); }


/* ==========================================================================
   Anforderungen — expandable standard rows
   ========================================================================== */
/* single column: an expanding row must not leave a hole beside it */
.reqs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2px, .5vw, 6px);
  max-width: 60rem;
  margin-inline: auto;
}
.req { position: relative; }
.req > details {
  position: relative;
  border-radius: 12px;
  border-bottom: 1px solid var(--hairline-soft);
  transition: background-color .4s var(--ease), box-shadow .45s var(--ease-out), border-color .4s var(--ease);
}
.req > details::before {
  content: "";
  position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 2px; border-radius: 2px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s var(--ease-out);
}
.req > details:hover::before,
.req > details[open]::before { transform: scaleY(1); }
.req > details:hover,
.req > details[open] {
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  box-shadow: 0 20px 44px -26px rgba(13, 43, 87, .32);
  border-bottom-color: transparent;
}

.req summary {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 0 clamp(13px, 1.4vw, 19px);
  padding: clamp(18px, 2vw, 24px) clamp(14px, 1.6vw, 20px);
  cursor: pointer;
  list-style: none;
}
.req summary::-webkit-details-marker { display: none; }
.req summary::marker { content: ""; }

.req-no {
  font-family: var(--serif);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: .02em;
  padding-top: .12em;
  transition: color .35s var(--ease);
}
.req-ico {
  width: 30px; height: 30px;
  color: var(--orange);
  transition: transform .5s var(--ease-out);
}
.req-head { min-width: 0; }
.req-head h3 {
  font-size: clamp(16.5px, 1.2vw, 19.5px);
  line-height: 1.34;
  font-weight: 400;
  margin-bottom: .34em;
}
.req-sub { display: block; font-size: 14.2px; line-height: 1.6; color: var(--muted); }

.req-toggle {
  position: relative;
  width: 17px; height: 17px;
  margin-top: .34em;
  flex: none;
}
.req-toggle::before, .req-toggle::after {
  content: "";
  position: absolute; top: 50%; left: 0;
  width: 100%; height: 1.5px;
  border-radius: 2px;
  background: var(--orange);
  transition: transform .45s var(--ease-out), opacity .3s var(--ease);
}
.req-toggle::after { rotate: 90deg; }
.req > details[open] .req-toggle::after { rotate: 90deg; opacity: 0; }
.req > details[open] .req-toggle::before { rotate: 180deg; }
.req > details[open] .req-no { color: var(--orange); }
.req > details:hover .req-ico { transform: scale(1.1) rotate(-4deg); }

.req-points {
  display: grid;
  gap: 11px;
  padding: 0 clamp(18px, 2vw, 26px) clamp(20px, 2.2vw, 28px)
           calc(clamp(14px, 1.6vw, 20px) + 30px + clamp(13px, 1.4vw, 19px) + 26px);
  margin-top: -4px;
}
.req-points li {
  position: relative;
  padding-left: 17px;
  font-size: 14.4px;
  line-height: 1.66;
  color: var(--body);
}
.req-points li::before {
  content: "";
  position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange);
  opacity: .75;
}
.req-points strong { font-weight: 500; color: var(--navy); }

/* ==========================================================================
   Verfahren — closing note
   ========================================================================== */
.stage-focus {
  max-width: 46rem;
  margin: clamp(38px, 4.4vw, 60px) auto 0;
  padding-top: clamp(24px, 2.6vw, 32px);
  border-top: 1px solid var(--hairline);
  text-align: center;
  font-size: 15px;
  line-height: 1.74;
  color: var(--muted);
}

/* ==========================================================================
   Punktesystem — weighted tables
   ========================================================================== */
.tables {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(20px, 2.6vw, 34px);
  margin-top: clamp(28px, 3.2vw, 42px);
  align-items: start;
}
.ptable { margin: 0; }
.ptable figcaption {
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--navy);
  margin-bottom: clamp(12px, 1.4vw, 16px);
}
.ptable-scroll {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--hairline-soft);
  background: linear-gradient(170deg, #fefcf9, var(--cream-card));
}
.ptable table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ptable th, .ptable td {
  padding: 11px clamp(10px, 1.1vw, 16px);
  text-align: left;
  border-bottom: 1px solid var(--hairline-soft);
  vertical-align: top;
}
.ptable thead th {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.ptable tbody td:first-child {
  font-family: var(--serif);
  color: var(--muted);
  width: 1%;
  white-space: nowrap;
}
.ptable tbody td:nth-child(2) { color: var(--navy-deep); line-height: 1.45; }
.ptable .num-cell {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.ptable tr.sub td:first-child,
.ptable tr.sub td:nth-child(2) { padding-left: clamp(22px, 2.4vw, 34px); color: var(--muted); }
.ptable tbody tr:hover { background: rgba(255, 255, 255, .6); }
.ptable tfoot th, .ptable tfoot td {
  border-bottom: 0;
  border-top: 1.5px solid rgba(234, 92, 23, .35);
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  font-size: 15px;
}
.ptable tfoot .num-cell { font-size: 18px; }
.wt {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: .03em;
  white-space: nowrap;
  background: rgba(18, 56, 111, .07);
  color: var(--muted);
}
.wt-core { background: rgba(234, 92, 23, .14); color: #b8460f; }
.wt-high { background: rgba(234, 92, 23, .08); color: #c4551a; }
.wt-mid  { background: rgba(18, 56, 111, .1); color: var(--body); }
.ptable-lead {
  margin: 10px 0 14px;
  font-size: 13.4px;
  line-height: 1.62;
  color: var(--muted);
}
.ptable-note {
  margin-top: 14px;
  font-size: 13.4px;
  line-height: 1.62;
  color: var(--muted);
}
/* Bonus-Kriterien: Erläuterungen unter den Tabellen, zweispaltig */
.bonus-defs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px) clamp(26px, 3.2vw, 48px);
  margin: clamp(26px, 3vw, 38px) 0 0;
  padding-top: clamp(22px, 2.6vw, 30px);
  border-top: 1px solid var(--hairline);
}
.bonus-defs dt {
  font-family: var(--serif);
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 6px;
}
.bonus-defs dd {
  margin: 0;
  font-size: 13.6px;
  line-height: 1.68;
  color: var(--muted);
}
.punkte-note {
  max-width: 46rem;
  margin: clamp(28px, 3.2vw, 40px) auto 0;
  text-align: center;
  font-size: 14.4px;
  line-height: 1.7;
  color: var(--muted);
}

/* ==========================================================================
   Akkreditierungsrat — cards open a full-width profile
   ========================================================================== */
.council-card {
  appearance: none;
  width: 100%;
  height: 100%;
  font: inherit;
  color: inherit;
  text-align: center;
  cursor: pointer;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  justify-items: center;
  gap: 14px;
  padding: clamp(24px, 2.4vw, 32px) clamp(12px, 1.4vw, 20px) clamp(20px, 2.2vw, 26px);
}
.council-name {
  align-self: start;
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.24;
  color: var(--navy);
  overflow-wrap: break-word;
  hyphens: auto;
}
.council-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: .82;
  transition: opacity .3s var(--ease);
}
.council-more::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  rotate: 45deg;
  transition: rotate .4s var(--ease-out);
}
.council-card[aria-expanded="true"] { border-color: rgba(234, 92, 23, .45); }
.council-card[aria-expanded="true"] .council-more { opacity: 1; }
.council-card[aria-expanded="true"] .council-more::after { rotate: -135deg; }
.council-card:hover .council-more { opacity: 1; }

.council-bio { flex: 0 0 100%; margin-top: clamp(12px, 1.4vw, 18px); }
.council-bio[hidden] { display: none; }
.bio {
  position: relative;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 3vw, 48px);
  animation: bioIn .5s var(--ease-out) both;
}
@keyframes bioIn { from { opacity: 0; transform: translateY(-8px); } }
.bio h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.2;
  padding-right: 44px;
}
.bio-role {
  margin: 10px 0 clamp(18px, 2vw, 24px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--orange);
  line-height: 1.45;
}
.bio p { font-size: 15px; line-height: 1.76; max-width: 58rem; }
.bio-label {
  margin: clamp(18px, 2vw, 24px) 0 10px !important;
  font-size: 11.5px !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.bio-list { display: grid; gap: 7px; }
.bio-list li {
  position: relative;
  padding-left: 17px;
  font-size: 14.4px;
  line-height: 1.62;
  color: var(--body);
}
.bio-list li::before {
  content: "";
  position: absolute; left: 0; top: .6em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); opacity: .75;
}
.bio-link { margin-top: 16px !important; }
.bio-link a {
  color: var(--orange);
  border-bottom: 1px solid rgba(234, 92, 23, .4);
  padding-bottom: 1px;
}
.bio-link a:hover { border-bottom-color: var(--orange); }
.bio-close {
  position: absolute;
  top: clamp(16px, 1.8vw, 24px); right: clamp(16px, 1.8vw, 24px);
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, .5);
  color: var(--navy);
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.bio-close:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.bio-close .ico { width: 15px; height: 15px; }

/* ==========================================================================
   Fine print
   ========================================================================== */
.fineprint {
  max-width: 46rem;
  margin: clamp(28px, 3.2vw, 40px) auto 0;
  text-align: center;
  font-size: 13.4px;
  line-height: 1.7;
  color: var(--muted);
}
.fineprint a {
  color: var(--navy);
  border-bottom: 1px solid rgba(18, 56, 111, .3);
}
.fineprint a:hover { color: var(--orange); border-bottom-color: var(--orange); }


/* ==========================================================================
   Document pages (AGB)
   ========================================================================== */
.doc-page { --head-h: 74px; }
.doc { padding-top: calc(var(--head-h) + clamp(40px, 5vw, 72px)); }
.doc-head {
  max-width: 52rem;
  margin: 0 auto clamp(38px, 4.4vw, 60px);
  padding-bottom: clamp(24px, 2.6vw, 34px);
  border-bottom: 1px solid var(--hairline);
}
.doc-head h1 {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.12;
  font-weight: 400;
}
.doc-stand {
  margin: clamp(14px, 1.6vw, 20px) 0 0;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .01em;
}
.doc-body { max-width: 52rem; margin-inline: auto; display: grid; gap: clamp(28px, 3.2vw, 44px); }
.doc-body h2 {
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 400;
  margin-bottom: clamp(12px, 1.4vw, 18px);
}
.doc-body p { font-size: 15px; line-height: 1.78; margin-bottom: .85em; }
.doc-body p b {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--orange);
  margin-right: .25em;
}
.doc-body a {
  color: var(--navy);
  border-bottom: 1px solid rgba(18, 56, 111, .3);
  padding-bottom: 1px;
}
.doc-body a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.doc-list { display: grid; gap: 8px; margin: 0 0 .85em; }
.doc-list li {
  position: relative;
  padding-left: 17px;
  font-size: 15px;
  line-height: 1.7;
}
.doc-list li::before {
  content: "";
  position: absolute; left: 0; top: .66em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); opacity: .75;
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .8s var(--ease-out);
}
.reveal { transition: opacity .7s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) { .rail { display: none; } }

@media (max-width: 1080px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tables { grid-template-columns: minmax(0, 1fr); }
  .bonus-defs { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 960px) {
  .masthead-nav { display: none; }
  .menu-toggle { display: flex; }

  /* schmale Viewports: Graphik oben, Text darunter */
  .hero-split {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .hero-figure { min-height: 38svh; }
  .hero-copy {
    padding: clamp(34px, 8vw, 52px) var(--gutter) clamp(46px, 10vw, 68px);
  }
  .hero-copy > * { max-width: none; }
  .stages { grid-template-columns: minmax(0, 1fr); gap: clamp(38px, 6vw, 56px); }
  .stages::before { display: none; }
  .stage-line { display: block; }
  .guides { grid-template-columns: minmax(0, 1fr); }
  .guides::before { display: none; }
  .guide + .guide { padding-top: clamp(22px, 3vw, 30px); border-top: 1px solid var(--hairline); }
}

@media (max-width: 900px) {
  .council-member { flex: 1 1 calc(33.333% - 12px); min-width: 150px; }
}

@media (max-width: 640px) {
  :root { --head-h: 64px; }
  .brand-mark { height: 34px; }
  .brand-name { font-size: 14px; letter-spacing: .17em; }
  .brand-sub { font-size: 8.4px; }
  .masthead-end .btn-ghost { display: none; }
  .stats, .contacts { grid-template-columns: minmax(0, 1fr); }
  .council-member { flex: 1 1 calc(50% - 8px); }
  .stage-panel { flex-direction: column; align-items: flex-start; gap: 20px; }
  .scale-mark span { display: none; }
  .signatories li { white-space: normal; }
  .req summary { grid-template-columns: auto auto minmax(0, 1fr); row-gap: 10px; }
  .req-toggle { grid-column: 3; justify-self: end; margin-top: 0; }
  .req-points { padding-left: clamp(14px, 4vw, 24px); }
  .bio h3 { padding-right: 40px; }
}

@media (max-width: 380px) {
  .council-member { flex: 1 1 100%; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-head h2, .reveal-head .section-lead { opacity: 1; transform: none; }
  .stage-line, .scale-fill, .stages::before { transform: scaleX(1); }
  .scale-mark { opacity: 1; }
  .bio { opacity: 1; transform: none; }
  .section-head h2::after { transform: scaleX(1); }
}

/* ==========================================================================
   Print
   ========================================================================== */
@media print {
  .masthead, .rail, .menu-panel, .glass-note,
  .req-toggle, .council-more, .bio-close { display: none !important; }
  body { background: #fff; }
  .hero { padding-top: 20px; }
  .hero-split { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .hero-figure { position: static; overflow: visible; background: none; min-height: 0; margin-bottom: 16px; }
  .hero-figure img { position: static; width: auto; max-width: 100%; max-height: 8cm; }
  .hero-copy { padding: 0; }
  .council-bio { display: block !important; }
  .council-bio[hidden] { display: block !important; }
  .req > details > .req-points, .req details:not([open]) .req-points { display: grid !important; }
  .band { padding-block: 24px; break-inside: avoid; }
  .reveal, .reveal-head h2, .reveal-head .section-lead { opacity: 1 !important; transform: none !important; }
  .aurora { display: none; }
}

