/* ==========================================================================
   Wyld Order · Faultier · wyldorder.de
   Führt die Markenwelt von wyldorder.com fort (Allerta / Inter, Warm Paper,
   Ink, Rostrot). Mobile first, keine Verläufe, keine Dekoration ohne Funktion.
   ========================================================================== */

@font-face {
  font-family: "Allerta";
  src: url("../fonts/allerta-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #F4F1EA;
  --paper-deep: #E8E5DF;
  --ink: #111111;
  --graphite: #2B2B2B;
  --grey: #6F6C66;
  --grey-mid: #888888;
  --line: rgba(17, 17, 17, 0.16);
  --line-strong: rgba(17, 17, 17, 0.42);
  --red: #A72703;
  --red-dark: #8B1F02;
  --evergreen: #1F3328;
  --khaki: #C8B99A;
  --white: #FFFFFF;
  --on-dark: #F4F1EA;
  --on-dark-muted: rgba(244, 241, 234, 0.72);
  --line-on-dark: rgba(244, 241, 234, 0.22);

  --font-display: "Allerta", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --measure: 62ch;
  --gutter: clamp(1.125rem, 4vw, 2.5rem);
  --section: clamp(3.5rem, 9vw, 7.5rem);
  --wrap: 72rem;
  --radius: 4px;
  --header-h: 3.5rem;
  --tap: 2.75rem; /* 44px */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  :root { --dur: 0ms; }
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { transition-duration: 0ms !important; animation-duration: 0ms !important; }
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  min-width: 320px;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, p, figure, ul, ol, dl { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
a { color: inherit; text-underline-offset: 0.14em; text-decoration-thickness: 1px; }
button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
strong { font-weight: 600; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}
.dark :focus-visible,
.dark:focus-visible { outline-color: var(--on-dark); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--ink); color: var(--on-dark);
  padding: 0.75rem 1rem; z-index: 100; border-radius: var(--radius);
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 0.75rem; }

/* --- Typografie ----------------------------------------------------------- */
.display, h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.125rem, 4.2vw + 1.1rem, 4.25rem); }
h2 { font-size: clamp(1.75rem, 2.4vw + 1rem, 2.875rem); }
h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.dark h1, .dark h2, .dark h3 { color: var(--on-dark); }

.overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.dark .overline { color: var(--khaki); }

.lead { font-size: clamp(1.125rem, 0.6vw + 1rem, 1.3125rem); line-height: 1.5; color: var(--graphite); }
.dark .lead, .dark p { color: var(--on-dark-muted); }
.dark .lead { color: var(--on-dark); }
.muted { color: var(--grey); }
.dark .muted { color: var(--on-dark-muted); }
.small { font-size: 0.875rem; line-height: 1.5; }
.stack > * + * { margin-top: var(--flow, 1rem); }
.measure { max-width: var(--measure); }

/* --- Layout --------------------------------------------------------------- */
.wrap {
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin-inline: auto;
}
.section { padding-block: var(--section); }
.section + .section:not(.dark):not(.paper-deep) { padding-top: 0; }
.dark { background: var(--ink); color: var(--on-dark); }
.dark.evergreen { background: var(--evergreen); }
.paper-deep { background: var(--paper-deep); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head p { margin-top: 1rem; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 3.125rem; padding: 0.8rem 1.5rem;
  border-radius: var(--radius); border: 1.5px solid transparent;
  font-weight: 600; font-size: 1rem; letter-spacing: 0.01em; line-height: 1.2;
  text-decoration: none; text-align: center;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--ink); }
.dark .btn-secondary { color: var(--on-dark); border-color: var(--line-on-dark); }
.dark .btn-secondary:hover { border-color: var(--on-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; text-decoration: underline; text-underline-offset: 0.2em; padding-inline: 0.75rem; }
.dark .btn-ghost { color: var(--on-dark-muted); }
.dark .btn-ghost:hover { color: var(--on-dark); }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; cursor: default; }
.btn-sm { min-height: var(--tap); padding: 0.55rem 1rem; font-size: 0.9375rem; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: var(--on-dark);
  height: var(--header-h);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--on-dark); min-height: var(--tap); }
.brand svg { height: 1.625rem; width: 1.05rem; flex: none; }
.brand-name { font-weight: 600; font-size: 1.0625rem; letter-spacing: -0.01em; white-space: nowrap; }
.site-nav { display: none; }
.site-nav a { color: var(--on-dark-muted); text-decoration: none; font-size: 0.9375rem; padding: 0.75rem 0.85rem; display: inline-flex; align-items: center; min-height: var(--tap); }
.site-nav a:hover { color: var(--on-dark); }
.header-cta { min-height: 2.5rem; padding: 0.5rem 0.85rem; font-size: 0.8125rem; white-space: nowrap; background: transparent; color: var(--on-dark); border-color: var(--red); }
.header-cta:hover { background: var(--red); border-color: var(--red); }
@media (min-width: 48rem) {
  .site-nav { display: flex; gap: 0.25rem; margin-left: auto; margin-right: 0.5rem; }
  .header-cta { min-height: 2.625rem; font-size: 0.9375rem; padding-inline: 1.15rem; }
}

/* --- Status-Kennzeichnung ---------------------------------------------------- */
.status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 0.3rem 0.75rem 0.3rem 0.6rem;
}
.status::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--red); flex: none; }
.dark .status { color: var(--on-dark); border-color: var(--line-on-dark); }

/* --- Hero ----------------------------------------------------------------- */
.hero { padding-top: clamp(1.25rem, 3vw, 3rem); padding-bottom: var(--section); }
.hero-grid { display: grid; gap: 1rem; grid-template-areas: "kicker" "media" "copy"; }
.hero-kicker { grid-area: kicker; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1rem; }
.hero-kicker .overline { margin: 0; }
.hero-media { grid-area: media; }
.hero-copy { grid-area: copy; margin-top: 0.5rem; }
.hero .lead { margin-top: 1rem; max-width: 34rem; font-size: 1.0625rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.hero-actions .btn { flex: 1 1 auto; }
.hero-note { margin-top: 1rem; font-size: 0.875rem; color: var(--grey); max-width: 34rem; }
.hero-media picture img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
@media (min-width: 60rem) {
  .hero { padding-top: clamp(2.5rem, 6vw, 5rem); }
  .hero-grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 8fr);
    grid-template-rows: auto 1fr;
    grid-template-areas: "kicker media" "copy media";
    column-gap: clamp(2rem, 5vw, 5rem); row-gap: 1.25rem;
    align-items: start;
  }
  .hero-kicker { display: block; }
  .hero-kicker .overline { margin-top: 1.25rem; }
  .hero-copy { margin-top: 0; }
  .hero-media { align-self: center; }
  .hero-media picture img { aspect-ratio: 4 / 3; }
  .hero .lead { font-size: clamp(1.125rem, 0.6vw + 1rem, 1.3125rem); }
  .hero-actions .btn { flex: 0 1 auto; }
}

/* --- Bildkennzeichnung (KI-Visualisierung) -------------------------------- */
figure.visual { margin: 0; }
.visual-note {
  margin-top: 0.5rem;
  font-size: 0.75rem; line-height: 1.45;
  color: var(--grey);
  letter-spacing: 0.01em;
}
.dark .visual-note { color: var(--on-dark-muted); }
.visual-note::before { content: "◔ "; color: var(--red); }
.dark .visual-note::before { color: var(--khaki); }

/* --- Nutzen 1: Ablauf ------------------------------------------------------ */
.story-grid { display: grid; gap: 2rem; }
.steps { counter-reset: step; display: grid; gap: 0; border-top: 1px solid var(--line); }
.steps li {
  counter-increment: step;
  display: grid; grid-template-columns: 3.25rem 1fr; gap: 0.25rem 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--line);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.75rem; line-height: 1;
  color: var(--red); padding-top: 0.1rem;
}
.steps h3 { grid-column: 2; }
.steps p { grid-column: 2; color: var(--graphite); }
.dark .steps { border-color: var(--line-on-dark); }
.dark .steps li { border-color: var(--line-on-dark); }
.dark .steps li::before { color: var(--khaki); }
.dark .steps p { color: var(--on-dark-muted); }
.story-media picture img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.story-media.ratio-3-2 picture img { aspect-ratio: 3 / 2; }
@media (min-width: 60rem) {
  .story-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
  .story-grid .story-media { position: sticky; top: calc(var(--header-h) + 1.5rem); }
  .story-grid.media-left .story-media { order: -1; }
}

/* --- Nutzen 2: Stauraum ---------------------------------------------------- */
.facts { border-top: 1px solid var(--line-on-dark); }
.facts li { padding: 1.1rem 0; border-bottom: 1px solid var(--line-on-dark); }
.facts h3 { margin-bottom: 0.25rem; }
.banner { margin-top: clamp(2rem, 5vw, 4rem); }
.banner picture img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
@media (min-width: 60rem) { .banner picture img { aspect-ratio: 21 / 9; } }

/* --- Aufbau / Funktionsdarstellung -------------------------------------------- */
.parts { display: grid; gap: 2.5rem 2rem; }
.part picture img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--paper); }
.part.wide picture img { aspect-ratio: 16 / 9; }
.part h3 { margin-top: 1rem; }
.part h3 span { color: var(--red); margin-right: 0.5rem; font-family: var(--font-display); font-weight: 400; }
.part p { margin-top: 0.4rem; }
.part .visual-note { margin-top: 0.75rem; }
.part.text-only { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.part.text-only h3 { margin-top: 0; }
@media (min-width: 40rem) {
  .parts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .part.wide { grid-column: 1 / -1; }
  .part.text-only { grid-column: 1 / -1; padding: 2rem; }
}
@media (min-width: 64rem) {
  .parts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .part.text-only { grid-column: span 2; }
  .part.wide { grid-column: 1 / -1; }
  .part.wide picture img { aspect-ratio: 21 / 9; }
}

/* --- Interesse vormerken (Flow) --------------------------------------------- */
.signup { padding-block: var(--section); }
.signup-head { max-width: 40rem; margin-inline: auto; text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.signup-head p { margin-top: 1rem; }
.flow {
  max-width: 34rem; margin-inline: auto;
  position: relative;
}
.flow-top {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--tap); margin-bottom: 1rem;
}
.flow-back { color: var(--on-dark-muted); background: none; border: 0; padding: 0.5rem 0.5rem 0.5rem 0; min-height: var(--tap); display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.9375rem; }
.flow-back:hover { color: var(--on-dark); }
.flow-back svg { width: 1rem; height: 1rem; }
.progress { flex: 1 1 auto; text-align: right; font-size: 0.8125rem; color: var(--on-dark-muted); letter-spacing: 0.04em; }
.progress-bar { height: 2px; background: var(--line-on-dark); margin-top: 0.4rem; position: relative; overflow: hidden; }
.progress-bar span { position: absolute; inset: 0 auto 0 0; background: var(--khaki); width: 0; transition: width calc(var(--dur) * 1.5) var(--ease); }

.view { outline: none; }
.view.is-entering { animation: view-in calc(var(--dur) * 1.4) var(--ease) both; }
@keyframes view-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.view h3 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 1.2vw + 1.1rem, 2rem);
  line-height: 1.2; letter-spacing: -0.01em; color: var(--on-dark);
}
.view h3:focus { outline: none; }
.view > p, .view .hint { margin-top: 0.75rem; color: var(--on-dark-muted); }

.field { margin-top: 1.5rem; }
.field label { display: block; font-size: 0.9375rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--on-dark); }
.input, .textarea {
  width: 100%; min-height: 3.25rem;
  padding: 0.85rem 1rem;
  background: var(--paper); color: var(--ink);
  border: 1.5px solid transparent; border-radius: var(--radius);
  font-size: 1.0625rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--grey-mid); }
.input:focus-visible, .textarea:focus-visible { outline: none; border-color: var(--khaki); box-shadow: 0 0 0 3px rgba(200, 185, 154, 0.35); }
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: #E06A45; }
.textarea { min-height: 8.5rem; resize: vertical; line-height: 1.5; }

.check {
  display: grid; grid-template-columns: 1.5rem 1fr; gap: 0.75rem;
  margin-top: 1.25rem; font-size: 0.9375rem; line-height: 1.5; color: var(--on-dark-muted);
  padding: 0.25rem 0;
}
.check input {
  width: 1.5rem; height: 1.5rem; margin: 0.1rem 0 0 0;
  accent-color: var(--red);
  cursor: pointer;
  flex: none;
}
.check a { color: var(--on-dark); }
.check label { cursor: pointer; }

.error {
  margin-top: 0.75rem;
  color: #FFD2C4;
  font-size: 0.9375rem;
  display: flex; gap: 0.5rem; align-items: flex-start;
}
.error:empty { display: none; }

.actions { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
.actions.row { grid-template-columns: 1fr 1fr; }
@media (max-width: 26rem) { .actions.row { grid-template-columns: 1fr; } }
.actions .btn-ghost { justify-self: center; }

.options { display: grid; gap: 0.625rem; margin-top: 1.5rem; }
.option {
  display: flex; align-items: center; gap: 0.9rem;
  width: 100%; min-height: 3.5rem; padding: 0.9rem 1rem;
  background: rgba(244, 241, 234, 0.06); color: var(--on-dark);
  border: 1.5px solid var(--line-on-dark); border-radius: var(--radius);
  text-align: left; font-size: 1.0625rem; line-height: 1.35;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.option:hover { border-color: var(--khaki); }
.option[aria-pressed="true"] { border-color: var(--khaki); background: rgba(200, 185, 154, 0.16); }
.option .key {
  flex: none; width: 1.75rem; height: 1.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-on-dark); border-radius: 3px;
  font-size: 0.75rem; font-weight: 600; color: var(--on-dark-muted);
}
.option[aria-pressed="true"] .key { background: var(--khaki); color: var(--ink); border-color: var(--khaki); }
.options.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 26rem) { .options.two { grid-template-columns: 1fr; } }
.options.two .option { justify-content: center; text-align: center; min-height: 4.5rem; font-weight: 500; }

.swatch { width: 1.25rem; height: 1.25rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); flex: none; }

.done-mark {
  width: 3rem; height: 3rem; border-radius: 50%;
  border: 1.5px solid var(--khaki); color: var(--khaki);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.done-mark svg { width: 1.5rem; height: 1.5rem; }
.invite { margin-top: 2.25rem; padding-top: 1.75rem; border-top: 1px solid var(--line-on-dark); }
.invite h4 { font-size: 1.125rem; font-weight: 600; color: var(--on-dark); }
.invite p { margin-top: 0.35rem; color: var(--on-dark-muted); }

.nojs-note {
  max-width: 34rem; margin: 0 auto;
  padding: 1.25rem; border: 1px solid var(--line-on-dark); border-radius: var(--radius);
  color: var(--on-dark);
}
.nojs-note a { color: var(--on-dark); }

/* --- Wyld Order / Gründer --------------------------------------------------- */
.about-grid { display: grid; gap: 2rem; }
.founder { display: grid; grid-template-columns: 5rem 1fr; gap: 1.25rem; align-items: start; }
.founder img { width: 5rem; height: 5rem; border-radius: 50%; object-fit: cover; }
.founder p { margin-top: 0.35rem; }
.founder .name { font-weight: 600; color: var(--ink); margin-top: 0; }
@media (min-width: 60rem) {
  .about-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); }
  .founder { grid-template-columns: 6.5rem 1fr; }
  .founder img { width: 6.5rem; height: 6.5rem; }
}

/* --- FAQ ------------------------------------------------------------------ */
.faq { max-width: 46rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0; min-height: var(--tap);
  font-weight: 600; color: var(--ink); font-size: 1.0625rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 0.75rem; height: 0.75rem;
  border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg); margin-right: 0.25rem;
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: 0.4rem; }
.faq .answer { padding: 0 0 1.25rem; max-width: var(--measure); }
.faq .answer p + p { margin-top: 0.6rem; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { padding-block: clamp(2.5rem, 6vw, 4rem); }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand svg { height: 1.75rem; width: 1.13rem; flex: none; }
.footer-brand span { font-weight: 600; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem; }
.footer-links a { color: var(--on-dark-muted); text-decoration: none; display: inline-flex; align-items: center; min-height: var(--tap); }
.footer-links a:hover { color: var(--on-dark); text-decoration: underline; }
.footer-note { font-size: 0.875rem; color: var(--on-dark-muted); max-width: 40rem; }
.footer-meta { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line-on-dark); font-size: 0.8125rem; color: var(--on-dark-muted); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; }
.footer-meta a { color: inherit; }
@media (min-width: 48rem) {
  .footer-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* --- Rechtstexte / Unterseiten ------------------------------------------------ */
.page { padding-block: clamp(2.5rem, 6vw, 5rem); }
.page .prose { max-width: 44rem; }
.prose h1 { margin-bottom: 1.5rem; }
.prose h2 { font-family: var(--font-body); font-weight: 600; font-size: 1.375rem; margin-top: 2.5rem; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.prose h3 { margin-top: 1.75rem; margin-bottom: 0.5rem; font-size: 1.0625rem; }
.prose p + p { margin-top: 0.85rem; }
.prose ul { padding-left: 1.25rem; margin: 0.75rem 0; }
.prose li + li { margin-top: 0.35rem; }
.prose address { font-style: normal; }
.prose .box { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1.25rem 0; }
.prose table { border-collapse: collapse; width: 100%; font-size: 0.9375rem; margin: 1rem 0; }
.prose th, .prose td { text-align: left; padding: 0.5rem 0.75rem 0.5rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.table-wrap { overflow-x: auto; }
.back-home { display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 2rem; min-height: var(--tap); color: var(--grey); text-decoration: none; }
.back-home:hover { color: var(--ink); text-decoration: underline; }

/* Bestätigungsseite */
.confirm-card { max-width: 34rem; margin-inline: auto; text-align: left; }
.confirm-card h1 { font-size: clamp(1.75rem, 2.4vw + 1rem, 2.5rem); }
.confirm-card p { margin-top: 1rem; }
.confirm-card .actions { margin-top: 1.75rem; }
.confirm-card form { margin-top: 1.75rem; }
