/* =========================================================================
   Pflegebox Ostfriesland — Design System
   Paper-craft Pastel · warm, würdevoll, sachlich
   Headline-Serif: Newsreader · Body-Sans: Mulish
   ========================================================================= */

:root {
  /* ---- Paper-craft Palette ---- */
  --paper:        #F4ECDC;  /* warm cream — Seitenhintergrund */
  --paper-2:      #EDE3CF;  /* etwas tiefer — Section-Wechsel */
  --paper-3:      #E7DBC2;  /* tiefster Sand-Ton */
  --surface:      #FCF8EF;  /* Karten / Flächen */
  --surface-2:    #FFFDF8;  /* hellste Fläche (Inputs) */

  --ink:          #2E2820;  /* warmes Fast-Schwarz — Text */
  --ink-soft:     #5E5545;  /* gedämpfter Fließtext */
  --ink-faint:    #8A8068;  /* Hinweise, Labels */
  --line:         #DFD3BB;  /* Trennlinien / Rahmen */
  --line-strong:  #CBBC9E;

  /* Salbei-Grün — Ruhe, Pflege, Vertrauen (Primär) */
  --mint:         #8AAE92;
  --mint-soft:    #DDE7DA;
  --mint-700:     #496F58;
  --mint-800:     #3B5A48;

  /* Senfgelb — Wärme, Markierung (Akzent) */
  --mustard:      #E4B23C;
  --mustard-soft: #F4E7BF;
  --mustard-700:  #B68420;

  /* Ton/Clay — menschliche Wärme (Illustration) */
  --clay:         #C97E5B;
  --clay-soft:    #EED7C7;
  --clay-700:     #A65E3D;

  /* ---- Type ---- */
  --font-head: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* ---- Radius / Shadow (cut-paper) ---- */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 26px;
  --r-xl: 38px;

  --shadow-sm: 0 2px 6px rgba(64, 50, 28, 0.08);
  --shadow:    0 10px 26px -12px rgba(64, 50, 28, 0.26), 0 2px 6px rgba(64, 50, 28, 0.06);
  --shadow-lg: 0 28px 60px -28px rgba(64, 50, 28, 0.40), 0 6px 14px rgba(64, 50, 28, 0.07);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;          /* 18px base — gut lesbar */
  line-height: 1.62;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* subtile Papier-Körnung über der ganzen Seite */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

a { color: var(--mint-700); text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
p  { margin: 0 0 1em; text-wrap: pretty; }

.lead {
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-700);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--mint-700);
  display: inline-block;
}

/* ---------------- Layout ---------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(56px, 9vw, 120px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.bg-2 { background: var(--paper-2); }
.bg-mint { background: var(--mint-soft); }
.bg-ink { background: var(--ink); color: var(--paper); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--paper); }

.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-tight { max-width: 48ch; }
.center.measure, .center .measure { margin-inline: auto; }

/* ---------------- Buttons ---------------- */
.btn {
  --btn-bg: var(--mint-700);
  --btn-fg: #fff;
  appearance: none;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1;
  min-height: 56px;            /* großzügige Touch-Targets */
  padding: 0 1.65em;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: transform .14s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--mustard); outline-offset: 3px; }
.btn .arrow { font-size: 1.2em; transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary { --btn-bg: var(--mint-700); }
.btn--primary:hover { background: var(--mint-800); }
.btn--clay { --btn-bg: var(--clay); }
.btn--clay:hover { background: var(--clay-700); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line-strong);
}
.btn--ghost:hover { background: var(--surface); box-shadow: inset 0 0 0 2px var(--mint); }
.btn--lg { min-height: 64px; font-size: 1.15rem; padding: 0 2em; }
.btn--block { width: 100%; }

/* ---------------- Cards ---------------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 40px);
}
.card--paper {           /* cut-paper: leicht schief, helle Oberkante */
  position: relative;
  border-top: 2px solid rgba(255,255,255,0.7);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.45em 0.95em;
  border-radius: 999px;
  background: var(--mustard-soft);
  color: var(--mustard-700);
}
.badge--mint { background: var(--mint-soft); color: var(--mint-700); }
.badge--law  { background: var(--surface); color: var(--ink-soft); border: 1px solid var(--line-strong); }

/* ---------------- Paper-craft shapes ---------------- */
/* gestapelte einfache Formen — kein komplexes SVG */
.paper-shape {
  filter: drop-shadow(0 12px 18px rgba(64,50,28,0.18));
}

.blob {
  position: absolute;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  z-index: 0;
  pointer-events: none;
}

/* dekorative "ausgeschnittene" Punkt-Reihe */
.dotrow { display: flex; gap: 8px; }
.dotrow i { width: 12px; height: 12px; border-radius: 50%; background: var(--mustard); display: block; }
.dotrow i:nth-child(2){ background: var(--mint); }
.dotrow i:nth-child(3){ background: var(--clay); }

/* ---------------- Grids ---------------- */
.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--mint-700);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
  position: relative;
}
.brand__mark::before { /* kleines "Box"-Band aus einfachen Formen */
  content: ""; position: absolute; inset: 12px 8px; border-radius: 4px;
  background: var(--mustard);
}
.brand__mark::after { content: ""; position: absolute; left: 50%; top: 8px; bottom: 8px; width: 4px; transform: translateX(-50%); background: var(--mint-soft); border-radius: 2px; }
.brand__name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; line-height: 1; }
.brand__sub { display:block; font-family: var(--font-body); font-size: 0.72rem; letter-spacing:0.08em; text-transform:uppercase; color: var(--ink-faint); margin-top: 3px; font-weight:700;}

.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.55em 0.85em;
  border-radius: 10px;
}
.nav a:hover { color: var(--ink); background: var(--surface); }
.nav a[aria-current="page"] { color: var(--mint-700); }
.nav a.btn { color: var(--btn-fg); }
.nav a.btn--primary, .nav a.btn--clay { color: #fff; }
.header-cta { margin-left: 0.4rem; }

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  width: 50px; height: 50px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: var(--paper-2); padding-block: clamp(48px, 7vw, 84px); }
.site-footer a { color: var(--paper-2); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 5vw, 64px); }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; margin-bottom: 1.1em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6em; }
.footer-bottom { margin-top: clamp(32px, 5vw, 56px); padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.14); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.9rem; color: var(--ink-faint); }
.placeholder-flag { color: var(--mustard); font-style: italic; }

/* ---------------- Forms ---------------- */
.field { display: grid; gap: 0.4rem; margin-bottom: 1.25rem; }
.field > label { font-weight: 700; font-size: 0.98rem; color: var(--ink); }
.field .req { color: var(--clay-700); }
.field .hint { font-size: 0.88rem; color: var(--ink-faint); }
.input, .select, textarea {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 0.85em 1em;
  min-height: 56px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%235E5545' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1em center; padding-right: 2.6em; }
.input:focus, .select:focus, textarea:focus { outline: none; border-color: var(--mint-700); box-shadow: 0 0 0 4px var(--mint-soft); }
.field.invalid .input, .field.invalid .select, .field.invalid textarea { border-color: var(--clay-700); box-shadow: 0 0 0 4px var(--clay-soft); }
.error-msg { color: var(--clay-700); font-size: 0.88rem; font-weight: 600; display: none; }
.field.invalid .error-msg { display: block; }

.checkrow { display: flex; gap: 0.85rem; align-items: flex-start; background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--r); padding: 1rem 1.15rem; margin-bottom: 1rem; cursor: pointer; }
.checkrow:hover { border-color: var(--line-strong); }
.checkrow input[type="checkbox"] { appearance: none; flex: 0 0 auto; width: 28px; height: 28px; border: 2px solid var(--line-strong); border-radius: 8px; background: var(--surface-2); cursor: pointer; margin-top: 2px; position: relative; transition: .15s; }
.checkrow input[type="checkbox"]:checked { background: var(--mint-700); border-color: var(--mint-700); }
.checkrow input[type="checkbox"]:checked::after { content: ""; position: absolute; left: 9px; top: 4px; width: 6px; height: 12px; border: solid #fff; border-width: 0 3px 3px 0; transform: rotate(45deg); }
.checkrow input[type="checkbox"]:focus-visible { outline: 3px solid var(--mustard); outline-offset: 2px; }
.checkrow .ctext { font-size: 0.98rem; line-height: 1.45; color: var(--ink-soft); }
.checkrow.invalid { border-color: var(--clay-700); background: var(--clay-soft); }
.checkrow--optional { background: transparent; border-style: dashed; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.4rem; }
.form-grid .col-2 { grid-column: 1 / -1; }

/* ---------------- Misc utilities ---------------- */
.stack > * + * { margin-top: var(--stack, 1rem); }
.flow > * + * { margin-top: 1.1em; }
.pill-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill-list li { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 0.5em 1em; font-weight: 600; font-size: 0.95rem; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.note { font-size: 0.92rem; color: var(--ink-faint); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 0.8em 1.2em; border-radius: 0 0 10px 0; z-index: 200; }
.skip-link:focus { left: 0; }

/* torn-paper section divider */
.torn { display: block; width: 100%; height: 26px; color: var(--paper); }

/* =========================================================================
   PAGE COMPONENTS
   ========================================================================= */

/* ---- Hero ---- */
.hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(56px, 8vw, 110px); position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__copy .eyebrow { margin-bottom: 1.1rem; }
.hero h1 { margin-bottom: 0.55em; }
.hero h1 .hl { color: var(--mint-700); white-space: nowrap; }
.hero h1 em { font-style: italic; font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0 1rem; }
.hero__subcta { font-size: 1.02rem; color: var(--ink-soft); }
.hero__subcta strong { color: var(--ink); }

/* Hero cut-paper Box */
.hero__art { position: relative; min-height: 380px; display: grid; place-items: center; }
.blob { width: 360px; height: 360px; }
.blob--mint { background: var(--mint-soft); top: 4%; right: 2%; }
.blob--mustard { background: var(--mustard-soft); bottom: 0; left: 4%; width: 240px; height: 240px; border-radius: 54% 46% 42% 58% / 48% 56% 44% 52%; }

.paperbox { position: relative; z-index: 2; width: min(330px, 72vw); transform: rotate(-3deg); }
.paperbox__lid { height: 56px; background: var(--clay); border-radius: 16px 16px 6px 6px; box-shadow: inset 0 -8px 0 rgba(0,0,0,0.06); border-top: 2px solid rgba(255,255,255,0.45); }
.paperbox__body { position: relative; height: 220px; margin-top: -8px; background: var(--surface); border-radius: 6px 6px 20px 20px; box-shadow: inset 0 2px 0 rgba(255,255,255,0.8); display: grid; place-items: center; }
.paperbox__band { position: absolute; inset: 0 auto 0 50%; transform: translateX(-50%); width: 56px; background: var(--mustard); }
.paperbox__label { position: relative; z-index: 2; font-family: var(--font-head); font-weight: 600; font-size: 3rem; color: var(--mint-800); background: var(--mint-soft); width: 116px; height: 116px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.sticker { position: absolute; z-index: 3; font-weight: 800; font-size: 0.92rem; padding: 0.55em 1em; border-radius: 999px; box-shadow: var(--shadow); }
.sticker--1 { top: 8%; left: -4%; background: var(--mint-700); color: #fff; transform: rotate(-8deg); }
.sticker--2 { bottom: 12%; right: -6%; background: var(--surface); color: var(--ink); transform: rotate(6deg); border: 1px solid var(--line); }

/* ---- Value strip ---- */
.value { padding-right: 0.5rem; }
.value__num { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--mustard-700); display: inline-block; margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.value h3 { margin-bottom: 0.35em; }

/* ---- Section head ---- */
.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .eyebrow { margin-bottom: 0.9rem; }
.section-head h2 { margin-bottom: 0.35em; }

/* ---- Steps ---- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.step { position: relative; }
.step__n { display: inline-block; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mustard-700); margin-bottom: 0.5rem; }
.step h3 { margin-bottom: 0.35em; }
.step p { margin: 0; color: var(--ink-soft); }
.step__icon { width: 64px; height: 64px; border-radius: 18px; display: block; margin-bottom: 1.1rem; position: relative; box-shadow: var(--shadow-sm); }
.step__icon--check { background: var(--mint-soft); }
.step__icon--check::after { content: ""; position: absolute; left: 22px; top: 18px; width: 14px; height: 26px; border: solid var(--mint-700); border-width: 0 5px 5px 0; transform: rotate(42deg); }
.step__icon--sign { background: var(--mustard-soft); }
.step__icon--sign::before { content: ""; position: absolute; inset: 16px 14px 26px; border-bottom: 4px solid var(--mustard-700); }
.step__icon--sign::after { content: ""; position: absolute; left: 16px; bottom: 16px; right: 16px; height: 4px; background: var(--mustard-700); border-radius: 2px; }
.step__icon--box { background: var(--clay-soft); }
.step__icon--box::before { content: ""; position: absolute; inset: 22px 16px 16px; background: var(--clay); border-radius: 4px; }
.step__icon--box::after { content: ""; position: absolute; left: 16px; right: 16px; top: 18px; height: 12px; background: var(--clay-700); border-radius: 3px; }

/* ---- Box section ---- */
.box-section { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.box-list { list-style: none; margin: 0; padding: 0; background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }
.box-list li { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 1rem; padding: 1.05rem clamp(18px, 2.5vw, 30px); border-bottom: 1px solid var(--line); }
.box-list li:last-child { border-bottom: none; }
.box-list__qty { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--mint-700); min-width: 84px; }
.box-list__name { font-weight: 700; color: var(--ink); }
.box-list__sub { color: var(--ink-faint); font-size: 0.9rem; text-align: right; }
.box-list__more { background: var(--mint-soft); }
.box-list__more .box-list__name { color: var(--mint-800); }

/* ---- Local ---- */
.local { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.region-card { position: relative; aspect-ratio: 4/3; background: var(--mint-soft); border-radius: var(--r-xl); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; }
.region-card::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 30% 40%, transparent 60px, transparent 62px),
  repeating-linear-gradient(45deg, transparent 0 16px, rgba(73,111,88,0.06) 16px 17px); }
.region-card__label { position: absolute; bottom: 18px; left: 22px; font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--mint-800); }
.region-pin { position: absolute; width: 26px; height: 26px; border-radius: 50% 50% 50% 0; background: var(--clay); transform: rotate(-45deg); box-shadow: var(--shadow-sm); }
.region-pin::after { content: ""; position: absolute; inset: 7px; background: var(--surface); border-radius: 50%; }
.region-pin--1 { top: 30%; left: 28%; }
.region-pin--2 { top: 22%; left: 55%; background: var(--mint-700); }
.region-pin--3 { top: 48%; left: 64%; background: var(--mustard-700); }
.region-pin--4 { top: 55%; left: 38%; }

/* ---- Founder ---- */
.founder { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.founder__photo { margin: 0; }
.img-placeholder { aspect-ratio: 4/5; border-radius: var(--r-xl); background:
  repeating-linear-gradient(135deg, var(--paper-3) 0 14px, var(--surface) 14px 28px);
  border: 1.5px dashed var(--line-strong); display: grid; place-items: center; box-shadow: var(--shadow); }
.img-placeholder__tag { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 0.85rem; letter-spacing: 0.05em; color: var(--ink-faint); background: var(--surface); padding: 0.5em 1em; border-radius: 999px; box-shadow: var(--shadow-sm); }
.founder__copy blockquote { margin: 0; }

/* ---- CTA block ---- */
.cta-block h2 { margin-bottom: 0.4em; }
.disclaimer { margin-top: 2rem; font-size: 0.9rem; line-height: 1.5; color: var(--ink-faint); max-width: 60ch; margin-inline: auto; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.14); }

/* ---- Legal sub-nav ---- */
.legal-nav { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.legal-nav a { text-decoration: none; font-weight: 700; background: var(--surface); border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.55em 1.2em; color: var(--ink); }
.legal-nav a:hover { background: var(--mint-soft); border-color: var(--mint); }

/* ---- Page hero (interior pages) ---- */
.page-hero { padding-block: clamp(48px, 7vw, 90px) clamp(32px, 4vw, 48px); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 0.3em; }

/* ---- Prose ---- */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; margin-bottom: 0.3em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1em; }
.prose li { margin-bottom: 0.5em; }
.prose--legal { font-size: 1rem; color: var(--ink-soft); }
.prose--legal h2 { font-size: 1.7rem; }
.prose--legal h3 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 800; }

/* ---- Info callout ---- */
.callout { background: var(--mint-soft); border-radius: var(--r); padding: 1.3rem 1.5rem; border-left: 5px solid var(--mint-700); margin: 1.5rem 0; }
.callout--mustard { background: var(--mustard-soft); border-left-color: var(--mustard-700); }
.callout strong { color: var(--ink); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 1rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.2rem 1.5rem; font-family: var(--font-head); font-size: 1.2rem; font-weight: 500; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-body); font-weight: 400; font-size: 1.8rem; color: var(--mint-700); transition: transform .2s ease; flex: 0 0 auto; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); }
.faq-item__body p { margin: 0; }

/* ---- Detail step list (wie-funktioniert) ---- */
.tl { list-style: none; margin: 0; padding: 0; max-width: 760px; }
.tl li { position: relative; padding: 0 0 2.2rem 4.5rem; }
.tl li::before { content: counter(tl); counter-increment: tl; position: absolute; left: 0; top: -4px; width: 56px; height: 56px; border-radius: 16px; background: var(--mint-700); color: #fff; font-family: var(--font-head); font-size: 1.5rem; display: grid; place-items: center; }
.tl { counter-reset: tl; }
.tl li::after { content: ""; position: absolute; left: 27px; top: 56px; bottom: 8px; width: 2px; background: var(--line-strong); }
.tl li:last-child { padding-bottom: 0; }
.tl li:last-child::after { display: none; }
.tl h3 { margin-bottom: 0.3em; }
.tl p { margin: 0; color: var(--ink-soft); }

/* ---- Form layout ---- */
.anforder-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(28px, 4vw, 48px); align-items: start; }
.form-wrap { max-width: 760px; margin-inline: auto; }
.form-card { background: var(--surface); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--line); padding: clamp(24px, 4vw, 52px); }
.form-section-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; margin: 2rem 0 1.1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--line); }
.form-section-title:first-of-type { margin-top: 0; }
.form-aside { background: var(--mint-soft); border-radius: var(--r-lg); padding: clamp(20px, 3vw, 32px); position: sticky; top: 96px; }
.form-aside h3 { margin-bottom: 0.5em; }
.form-aside ul { list-style: none; margin: 0; padding: 0; }
.form-aside li { display: flex; gap: 0.6rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(73,111,88,0.15); font-size: 0.98rem; }
.form-aside li:last-child { border-bottom: none; }
.form-aside li::before { content: "✓"; color: var(--mint-700); font-weight: 800; }
.req-note { font-size: 0.9rem; color: var(--ink-faint); margin-bottom: 1.5rem; }

/* confirmation */
.confirm { text-align: center; max-width: 640px; margin-inline: auto; }
.confirm__seal { width: 96px; height: 96px; border-radius: 50%; background: var(--mint-700); display: grid; place-items: center; margin: 0 auto 1.5rem; box-shadow: var(--shadow); position: relative; }
.confirm__seal::after { content: ""; width: 26px; height: 48px; border: solid #fff; border-width: 0 7px 7px 0; transform: rotate(42deg); margin-top: -8px; }
[hidden] { display: none !important; }

/* ---------------- Responsive ---------------- */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero__grid, .box-section, .local, .founder { grid-template-columns: 1fr; }
  .anforder-layout { grid-template-columns: 1fr; }
  .hero__art { order: -1; min-height: 300px; }
  .blob--mint { width: 260px; height: 260px; }
  .form-aside { position: static; margin-bottom: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .26s ease;
  }
  body.nav-open .nav { transform: translateY(0); }
  .nav a { font-size: 1.15rem; padding: 0.8em 0.6em; }
  .header-cta { margin: 0.6rem 0 0; }
  .nav-toggle { display: inline-flex; }
}
