/* ==========================================================================
   Eventministerium – Designsystem (Prototyp)
   Idee: moderne Behörde mit Augenzwinkern. Papier, Tinte, Stempel,
   Aktenzahlen – umgesetzt in klarer, zeitgemäßer Editorial-Optik.
   ========================================================================== */

:root {
  /* Papier & Tinte */
  --paper: #F1EBDF;
  --paper-2: #F8F4EC;
  --paper-3: #E7DFCF;
  --ink: #14203A;
  --ink-2: #39445D;
  --ink-3: #676F84;
  --line: rgba(20, 32, 58, 0.14);
  --line-strong: rgba(20, 32, 58, 0.32);

  /* Stempel */
  --stamp: #C8322A;
  --stamp-soft: rgba(200, 50, 42, 0.1);

  /* Abteilungsfarben (Ministerien) */
  --abt-1: #D1461E; /* Begegnung */
  --abt-2: #1B7153; /* Einlass */
  --abt-3: #6146B0; /* Meinung */
  --abt-4: #E3A21A; /* Ablauf */
  --abt-5: #C93A73; /* Spieltrieb */
  --abt-6: #2A5DAE; /* Überblick */

  --ok: #1B7153;

  /* Typografie */
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter Tight", "Segoe UI", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 0 rgba(20, 32, 58, 0.06), 0 12px 32px -12px rgba(20, 32, 58, 0.28);
  --shadow-lg: 0 2px 0 rgba(20, 32, 58, 0.06), 0 30px 60px -20px rgba(20, 32, 58, 0.4);

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);

  /* Papierstruktur */
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.12  0 0 0 0 0.22  0 0 0 .07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper) var(--grain);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--stamp); color: #fff; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.mono { font-family: var(--mono); }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Amtsblatt-Leiste ---------- */
.gazette {
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.gazette .wrap { display: flex; justify-content: space-between; gap: 16px; padding-block: 8px; }
.gazette span:nth-child(2) { display: none; }
@media (min-width: 760px) { .gazette span:nth-child(2) { display: inline; } }

/* ---------- Navigation ---------- */
.nav { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px); background: color-mix(in srgb, var(--paper) 82%, transparent); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .seal { width: 44px; height: 44px; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; line-height: 1; }
.brand-name small { display: block; font-family: var(--mono); font-weight: 400; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
.nav-links { display: none; gap: 28px; font-size: 15px; }
.nav-links a { text-decoration: none; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 5px; text-decoration-color: var(--stamp); }
@media (min-width: 900px) { .nav-links { display: flex; } }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--paper-2);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--bg);
  background: var(--bg); color: var(--fg);
  font: 600 15px/1 var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -10px rgba(20, 32, 58, .6); }
.btn:active { transform: translateY(0); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--paper-2); }
.btn--stamp { --bg: var(--stamp); --fg: #fff; }
.btn--light { --bg: var(--paper-2); --fg: var(--ink); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Siegel ---------- */
.seal text { font-family: var(--mono); font-size: 9.2px; letter-spacing: 1.6px; fill: currentColor; text-transform: uppercase; }
.seal .mono-em { font-family: var(--serif); font-weight: 800; font-size: 30px; letter-spacing: -1px; }
.seal-spin { animation: spin 40s linear infinite; transform-origin: 50% 50%; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(40px, 8vw, 96px) clamp(56px, 8vw, 110px); }
.hero .wrap { display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width: 980px) { .hero .wrap { grid-template-columns: 1.15fr 0.85fr; } }
.hero h1 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: clamp(64px, 11.5vw, 156px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin: 18px 0 28px;
  position: relative;
}
.hero h1 .l { display: block; }
.hero h1 em { font-style: italic; font-weight: 400; letter-spacing: -0.03em; padding-left: 0.04em; }
.hero h1 .dot { color: var(--stamp); }
.hero .lede { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-2); max-width: 34em; margin: 0 0 32px; }
.hero .cta { display: flex; flex-wrap: wrap; gap: 12px; }

.stamp {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 8px 18px 7px;
  border: 3.5px solid currentColor;
  border-radius: 10px;
  color: var(--stamp);
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: inset 0 0 0 2px var(--paper), inset 0 0 0 3.5px currentColor;
  mix-blend-mode: multiply;
  -webkit-mask: var(--stamp-mask) center / 180px 180px;
          mask: var(--stamp-mask) center / 180px 180px;
  --stamp-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='s'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feComponentTransfer><feFuncA type='discrete' tableValues='0 1 1 1 1 1 1 1 1 1'/></feComponentTransfer></filter><rect width='100%' height='100%' filter='url(%23s)'/></svg>");
}
.stamp small { font-family: var(--mono); font-weight: 500; font-size: 0.42em; letter-spacing: 0.2em; margin-top: 5px; }
.hero h1 .stamp {
  position: absolute; left: clamp(190px, 38%, 340px); top: 39%;
  font-size: clamp(18px, 2.4vw, 30px);
  transform: rotate(-11deg);
  animation: stamp-in .7s cubic-bezier(.2, 1.4, .4, 1) .5s both;
}
@keyframes stamp-in {
  0%   { opacity: 0; transform: scale(2.4) rotate(-2deg); }
  60%  { opacity: 1; transform: scale(.94) rotate(-12deg); }
  100% { opacity: 1; transform: scale(1) rotate(-11deg); }
}

/* Bescheid-Karte im Hero */
.docstack { position: relative; max-width: 460px; margin-inline: auto; width: 100%; }
.doc {
  position: relative;
  background: var(--paper-2) var(--grain);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  padding: 28px 28px 30px;
}
.docstack .doc--back { position: absolute; inset: 0; transform: rotate(4deg) translate(14px, 8px); background: var(--paper-3); box-shadow: var(--shadow); }
.docstack .doc--front { transform: rotate(-1.6deg); }
.doc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; border-bottom: 1.5px solid var(--ink); padding-bottom: 14px; margin-bottom: 18px; }
.doc-head .seal { width: 56px; height: 56px; color: var(--ink); flex: none; }
.doc-title { font-family: var(--serif); font-weight: 700; font-size: 26px; line-height: 1.05; margin: 6px 0 0; letter-spacing: -0.01em; }
.doc dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; margin: 0 0 18px; font-size: 15px; }
.doc dt { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); padding-top: 3px; }
.doc dd { margin: 0; }
.slots { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.slots li {
  display: grid; grid-template-columns: 58px 1fr auto; gap: 12px; align-items: center;
  padding: 10px 12px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .45);
}
.slots time { font-family: var(--mono); font-weight: 600; font-size: 15px; }
.slots b { font-weight: 600; display: block; line-height: 1.2; }
.slots span { font-size: 13px; color: var(--ink-3); }
.slots .tisch { font-style: normal; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; padding: 4px 8px; border-radius: 999px; background: var(--ink); color: var(--paper-2); }
.doc-foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 22px; }
.signature { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1; }
.signature small { display: block; font-family: var(--mono); font-style: normal; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); border-top: 1px solid var(--line-strong); padding-top: 6px; margin-top: 6px; }
.doc .stamp { position: absolute; right: 18px; bottom: 26px; font-size: 17px; transform: rotate(-9deg); animation: stamp-in .6s cubic-bezier(.2, 1.4, .4, 1) 1.1s both; }

/* ---------- Laufband ---------- */
.ticker { background: var(--ink); color: var(--paper); overflow: hidden; border-block: 1px solid var(--ink); }
.ticker-track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker-track span { font-family: var(--serif); font-size: clamp(22px, 3vw, 34px); font-style: italic; padding: 16px 0; white-space: nowrap; }
.ticker-track span::after { content: "✦"; font-style: normal; color: var(--stamp); margin-inline: 28px; font-size: .7em; vertical-align: .15em; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Abschnitte ---------- */
section { position: relative; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { display: grid; gap: 16px; margin-bottom: clamp(36px, 5vw, 56px); }
@media (min-width: 900px) { .section-head { grid-template-columns: 1fr 1fr; align-items: end; } }
.section-head h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(38px, 5.4vw, 68px); line-height: 0.98; letter-spacing: -0.03em; margin: 10px 0 0; }
.section-head h2 em { font-weight: 400; }
.section-head p { color: var(--ink-2); margin: 0; max-width: 32em; font-size: 18px; }
.display { font-family: var(--serif); font-weight: 700; font-size: clamp(38px, 5.4vw, 68px); line-height: 0.98; letter-spacing: -0.03em; margin: 10px 0 18px; }
.display em { font-weight: 400; }
.lead { color: var(--ink-2); font-size: 18px; max-width: 34em; margin: 0; }

/* ---------- Ministerien (Tool-Auswahl) ---------- */
.ministries { display: grid; gap: 44px 22px; grid-template-columns: 1fr; padding-top: 26px; }
@media (min-width: 700px) { .ministries { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .ministries { grid-template-columns: repeat(3, 1fr); } }

.folder {
  --c: var(--ink);
  position: relative;
  display: flex; flex-direction: column;
  padding: 26px 24px 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease;
}
.folder::before { /* Aktenreiter */
  content: attr(data-abt);
  position: absolute; left: -1px; top: -27px;
  height: 28px; padding: 0 16px;
  display: flex; align-items: center;
  background: var(--c); color: #fff;
  border-radius: 10px 10px 0 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
}
@media (min-width: 700px) { .folder { min-height: 250px; } }
.folder:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: var(--shadow-lg); }
.folder .pre { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.folder h3 { font-family: var(--serif); font-weight: 700; font-size: 34px; line-height: 1; letter-spacing: -0.02em; margin: 6px 0 12px; }
.folder p { margin: 0 0 20px; color: var(--ink-2); font-size: 15.5px; }
.folder .meta { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; }
.status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid currentColor; }
.status--live { color: var(--ok); }
.status--live::before { background: currentColor; box-shadow: 0 0 0 4px rgba(27, 113, 83, .18); animation: pulse 2.2s ease-in-out infinite; }
.status--soon { color: var(--ink-3); }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(27, 113, 83, 0); } }
.folder .go { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid var(--line-strong); transition: background .2s, color .2s, transform .2s; }
.folder:hover .go { background: var(--c); border-color: var(--c); color: #fff; transform: rotate(-45deg); }

/* Das aktive Ministerium – groß und farbig */
.folder--live {
  --c: var(--abt-1);
  background: var(--c) var(--grain);
  color: #fff;
  border-color: transparent;
  min-height: 360px;
}
@media (min-width: 700px) { .folder--live { grid-column: span 2; } }
@media (min-width: 1040px) { .folder--live { grid-row: span 3; grid-column: span 1; } }
.folder--new { background: transparent; border: 1.5px dashed var(--line-strong); }
.folder--new::before { background: transparent; color: var(--ink-3); border: 1.5px dashed var(--line-strong); border-bottom: none; }
.folder--new h3 em { font-weight: 400; }
.folder--live::before { background: var(--c); }
.folder--live .pre, .folder--live p { color: rgba(255, 255, 255, .86); }
.folder--live h3 { font-size: clamp(40px, 4.2vw, 52px); }
.folder--live .status--live { color: #fff; }
.folder--live .status--live::before { box-shadow: 0 0 0 4px rgba(255, 255, 255, .25); }
.folder--live .go { border-color: rgba(255, 255, 255, .5); }
.folder--live:hover .go { background: #fff; color: var(--c); }
.rotation { margin: 4px auto 22px; width: 100%; max-width: 330px; color: #fff; }
.rotation .table { fill: rgba(255, 255, 255, .14); stroke: rgba(255, 255, 255, .85); stroke-width: 1.5; }
.rotation .label { font-family: var(--mono); font-size: 9px; letter-spacing: 1px; fill: rgba(255, 255, 255, .8); text-anchor: middle; }
.rotation .guest { fill: #fff; }
.rotation .path { fill: none; stroke: rgba(255, 255, 255, .45); stroke-width: 1.2; stroke-dasharray: 3 5; }

.folder[data-c="2"] { --c: var(--abt-2); }
.folder[data-c="3"] { --c: var(--abt-3); }
.folder[data-c="4"] { --c: var(--abt-4); }
.folder[data-c="5"] { --c: var(--abt-5); }
.folder[data-c="6"] { --c: var(--abt-6); }
.folder[data-c="4"]::before { color: var(--ink); }

/* ---------- Amtsweg ---------- */
.amtsweg { background: var(--paper-2) var(--grain); border-block: 1px solid var(--line); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 0; } }
.step { position: relative; padding: 28px 26px 30px; border: 1px solid var(--line-strong); background: var(--paper); }
@media (min-width: 900px) {
  .step + .step { border-left: none; }
  .step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
  .step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
}
@media (max-width: 899px) { .step { border-radius: var(--radius); } }
.step .num { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: 76px; line-height: .8; color: var(--stamp); }
.step h3 { font-family: var(--serif); font-size: 28px; margin: 18px 0 4px; letter-spacing: -.01em; }
.step .field { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.step p { margin: 0; color: var(--ink-2); }
.step .checkbox { display: flex; gap: 10px; align-items: center; margin-top: 18px; font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); }
.step .checkbox i { width: 18px; height: 18px; border: 1.5px solid var(--ink); border-radius: 3px; display: grid; place-items: center; font-style: normal; color: var(--stamp); font-weight: 800; font-size: 15px; }

/* ---------- Showcase Begegnung ---------- */
.showcase .wrap { display: grid; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (min-width: 980px) { .showcase .wrap { grid-template-columns: 0.9fr 1.1fr; } }
.phone {
  width: min(340px, 100%);
  margin-inline: auto;
  border-radius: 44px;
  padding: 12px;
  background: var(--ink);
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255, 255, 255, .08);
  transform: rotate(-2.5deg);
}
.screen { border-radius: 34px; overflow: hidden; background: var(--paper-2); min-height: 600px; display: flex; flex-direction: column; font-size: 14px; }
.screen-top { padding: 16px 18px 14px; background: #1E3F2E; color: #F3EBD8; }
.screen-top .island { width: 90px; height: 24px; border-radius: 20px; background: var(--ink); margin: -6px auto 14px; }
.screen-top .eyebrow { color: rgba(243, 235, 216, .7); font-size: 10px; }
.screen-top h4 { font-family: var(--serif); font-size: 22px; line-height: 1.05; margin: 4px 0 0; font-weight: 700; }
.screen-body { padding: 14px; display: grid; gap: 10px; flex: 1; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px; }
.tcard.is-open { border-color: var(--ink); box-shadow: 0 8px 20px -14px rgba(20, 32, 58, .6); }
.tcard .row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.tcard .tno { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--ink-3); }
.tcard b { display: block; font-size: 15px; line-height: 1.2; margin-top: 2px; }
.tcard .who { font-size: 12px; color: var(--ink-3); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chip { font-family: var(--mono); font-size: 12px; padding: 6px 9px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--paper-2); }
.chip small { color: var(--ink-3); margin-left: 4px; }
.chip.is-picked { background: var(--abt-1); border-color: var(--abt-1); color: #fff; }
.chip.is-picked small { color: rgba(255, 255, 255, .8); }
.chip.is-full { opacity: .4; text-decoration: line-through; }
.screen-bar { margin: 0 14px 14px; padding: 12px 14px; border-radius: 16px; background: var(--ink); color: var(--paper-2); display: flex; justify-content: space-between; align-items: center; }
.screen-bar .mono { font-size: 12px; opacity: .8; }
.screen-bar b { background: var(--abt-1); padding: 8px 12px; border-radius: 999px; font-size: 13px; }

.facts { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 0; }
@media (min-width: 640px) { .facts { grid-template-columns: 1fr 1fr; } }
.facts li { padding: 20px 0; border-top: 1px solid var(--line-strong); display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
@media (min-width: 640px) { .facts li:nth-child(odd) { padding-right: 22px; } .facts li:nth-child(even) { padding-left: 22px; border-left: 1px solid var(--line); } }
.facts .para { font-family: var(--serif); font-size: 28px; line-height: 1; color: var(--abt-1); font-style: italic; }
.facts b { display: block; font-size: 17px; margin-bottom: 2px; }
.facts span { color: var(--ink-2); font-size: 15px; }

/* ---------- Grundsätze ---------- */
.paragraphs { display: grid; gap: 22px; }
@media (min-width: 900px) { .paragraphs { grid-template-columns: repeat(3, 1fr); } }
.paragraph { padding-top: 22px; border-top: 3px solid var(--ink); }
.paragraph .sect { font-family: var(--serif); font-size: 56px; line-height: 1; font-weight: 300; }
.paragraph h3 { font-family: var(--serif); font-size: 26px; margin: 10px 0 8px; letter-spacing: -.01em; }
.paragraph p { margin: 0; color: var(--ink-2); }

/* ---------- Antrag (CTA) ---------- */
.antrag { background: var(--ink) var(--grain); color: var(--paper); overflow: hidden; }
.antrag .wrap { display: grid; gap: 40px; align-items: center; padding-block: clamp(72px, 10vw, 130px); }
@media (min-width: 900px) { .antrag .wrap { grid-template-columns: 1.3fr .7fr; } }
.antrag h2 { font-family: var(--serif); font-weight: 800; font-size: clamp(48px, 7.4vw, 104px); line-height: .9; letter-spacing: -.04em; margin: 12px 0 24px; }
.antrag h2 em { font-weight: 300; }
.antrag p { color: rgba(241, 235, 223, .78); font-size: 19px; max-width: 30em; margin: 0 0 32px; }
.antrag .eyebrow { color: rgba(241, 235, 223, .6); }
.antrag .seal { width: min(300px, 70vw); margin-inline: auto; color: var(--paper); opacity: .95; }
.antrag .fine { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: rgba(241, 235, 223, .55); margin-top: 18px; }

/* ---------- Rechtstexte ---------- */
.legal { max-width: 760px; padding-block: clamp(48px, 7vw, 96px); }
.legal h1 { font-family: var(--serif); font-weight: 800; font-size: clamp(48px, 7vw, 84px); line-height: .95; letter-spacing: -.035em; margin: 12px 0 28px; }
.legal h2 { font-family: var(--serif); font-weight: 700; font-size: 24px; margin: 40px 0 10px; padding-top: 18px; border-top: 1px solid var(--line-strong); }
.legal p { color: var(--ink-2); margin: 0 0 14px; }
.legal a { text-decoration-color: var(--stamp); text-underline-offset: 3px; }
.legal .lead { font-size: 20px; color: var(--ink); }
.legal ul { color: var(--ink-2); padding-left: 1.2em; margin: 0 0 14px; }
.legal li { margin-bottom: 4px; }
.legal li::marker { color: var(--stamp); }
.legal .fine { font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); margin-top: 40px; }

/* ---------- Fußzeile ---------- */
.foot { background: var(--ink); color: rgba(241, 235, 223, .6); border-top: 1px solid rgba(241, 235, 223, .12); font-size: 14px; }
.foot .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-block: 26px; }
.foot a { color: rgba(241, 235, 223, .85); text-decoration: none; margin-left: 20px; }
.foot a:first-child { margin-left: 0; }
.foot a:hover { color: #fff; }

/* ---------- Einblenden ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
