/* ==========================================================================
   SKRIPED – Stylesheet
   Design: heller, "engineered" Look – weiße Fläche, feine Hairline-Rahmen,
   Pill-Buttons, enge Laufweite. Ein kräftiger Akzent: die Firmenfarbe #0b620b.

   Keine externen Ressourcen (keine Google Fonts, keine CDNs) – dadurch ist die
   Seite von Haus aus DSGVO-freundlich und lädt schnell.
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */
:root {
  /* Marke */
  --accent:         #0b620b;   /* Firmenfarbe */
  --accent-dark:    #084908;
  --accent-hover:   #0e7a0e;
  --accent-soft:    #eef4ee;
  --accent-softer:  #f6faf6;
  --accent-line:    #cfe0cf;
  --mark-green:     #00a04b;   /* Grün aus dem Logo-Zeichen */

  /* Neutrale Skala */
  --carbon:  #171a17;
  --slate:   #3c433c;
  --graphite:#666c66;
  --ash:     #949a94;
  --fog:     #e6e9e6;
  --mist:    #f5f7f5;
  --paper:   #ffffff;
  --dark:    #1b1c19;
  --dark-2:  #262823;

  /* Typo */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;

  /* Raster: 4px-Basis */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-12: 48px;
  --sp-16: 64px; --sp-24: 96px;

  --wrap: 1200px;
  --radius-pill: 9999px;
  --radius-card: 18px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(23, 26, 23, .04), 0 2px 6px rgba(23, 26, 23, .03);
  --shadow-md: 0 1px 2px rgba(23, 26, 23, .05), 0 6px 18px rgba(23, 26, 23, .06),
               0 20px 40px rgba(23, 26, 23, .04);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.011em;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration-color: color-mix(in srgb, var(--accent) 35%, transparent);
    text-underline-offset: .18em; }
a:hover { color: var(--accent-hover); text-decoration-color: currentColor; }

h1, h2, h3, h4 {
  color: var(--carbon);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 1.35rem + 3.6vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 1.25rem + 2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1rem + .55vw, 1.4rem); letter-spacing: -.025em; }
h4 { font-size: 1.0625rem; letter-spacing: -.02em; }
p  { margin: 0 0 var(--sp-4); text-wrap: pretty; }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.15em; }
li { margin-bottom: var(--sp-2); }
strong { color: var(--carbon); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--fog); margin: var(--sp-12) 0; }

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

::selection { background: var(--accent); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: 8px; transform: translate(-50%, -200%);
  background: var(--carbon); color: #fff; padding: 10px 18px;
  border-radius: var(--radius-pill); text-decoration: none; z-index: 200;
  transition: transform .18s ease;
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* Markierung für noch offene Konfigurationswerte */
mark.todo {
  background: #fff3cd; color: #6b4e00; padding: 0 .35em;
  border-radius: 4px; font-weight: 600; font-size: .95em;
}

/* -------------------------------------------------------------- 3. Layout */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--sp-6); }
.wrap--narrow { max-width: 780px; }

.section { padding-block: clamp(56px, 4vw + 40px, 96px); }
.section--tight { padding-block: clamp(40px, 3vw + 28px, 64px); }
.section--mist { background: var(--mist); border-block: 1px solid var(--fog); }
.section--dark { background: var(--dark); color: #c9cec9; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.section__head { max-width: 720px; margin-bottom: var(--sp-12); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head p { font-size: 1.0625rem; color: var(--graphite); margin-bottom: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: none;
}
.section--dark .eyebrow { color: #7fce7f; }
.section--dark .eyebrow::before { background: var(--mark-green); }

.lead { font-size: 1.125rem; line-height: 1.62; color: var(--graphite); }

.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ------------------------------------------------------------- 4. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 13px 26px; border-radius: var(--radius-pill);
  font-size: .9375rem; font-weight: 600; letter-spacing: -.015em;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease,
              color .16s ease, transform .16s ease, box-shadow .16s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 9px 18px; font-size: .875rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-hover); color: #fff; box-shadow: var(--shadow-md); }

.btn--ghost { background: var(--paper); color: var(--carbon); border-color: var(--fog); }
.btn--ghost:hover { border-color: var(--ash); color: var(--carbon); background: var(--paper); }

.btn--light { background: #fff; color: var(--carbon); }
.btn--light:hover { background: #f0f2f0; color: var(--carbon); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--outline-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.btn-row--center { justify-content: center; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .9375rem; text-decoration: none;
}
.arrow-link::after { content: "→"; transition: transform .16s ease; }
.arrow-link:hover::after { transform: translateX(3px); }

/* ------------------------------------------------------- 5. Header / Nav  */
.site-header { position: sticky; top: 0; z-index: 100; }

.nav-shell {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--fog);
}

.nav {
  max-width: var(--wrap); margin-inline: auto;
  padding: var(--sp-3) var(--sp-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6);
}

.nav__brand { display: block; flex: none; }
.nav__brand img { height: 30px; width: auto; }

.nav__menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: var(--sp-1);
}
.nav__menu > li { margin: 0; }
.nav__menu a:not(.btn) {
  display: block; padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: .9375rem; font-weight: 500; color: var(--graphite); text-decoration: none;
  transition: background-color .16s ease, color .16s ease;
}
.nav__menu a:not(.btn):hover { background: var(--mist); color: var(--carbon); }
.nav__menu a[aria-current="page"] { color: var(--carbon); background: var(--mist); }
.nav__cta { margin-left: var(--sp-3); }

.nav__toggle {
  display: none; width: 42px; height: 42px; padding: 0;
  background: var(--paper); border: 1px solid var(--fog);
  border-radius: var(--radius-pill); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle-bars { display: grid; gap: 5px; }
.nav__toggle-bars span {
  display: block; width: 17px; height: 1.5px; background: var(--carbon);
  border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* ---------------------------------------------------------------- 6. Hero */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(64px, 6vw + 40px, 128px) clamp(56px, 5vw + 32px, 104px);
  background:
    radial-gradient(900px 420px at 78% -12%, var(--accent-soft), transparent 65%),
    radial-gradient(700px 380px at 8% 8%, #f3f7f3, transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(11,98,11,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,98,11,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(760px 460px at 70% 20%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(760px 460px at 70% 20%, #000, transparent 72%);
}
.hero > .wrap { position: relative; z-index: 1; }

.hero__grid {
  display: grid; gap: clamp(40px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
}
.hero h1 { margin-bottom: var(--sp-5); }
.hero__claim { color: var(--accent); }
.hero__text { font-size: 1.1875rem; line-height: 1.6; color: var(--graphite); max-width: 54ch; }
.hero .btn-row { margin-top: var(--sp-8); }

.hero__note {
  margin-top: var(--sp-6); font-size: .875rem; color: var(--ash);
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5);
}
.hero__note span { display: inline-flex; align-items: center; gap: 6px; }
.hero__note span::before { content: "✓"; color: var(--accent); font-weight: 700; }

/* Karte rechts im Hero */
.hero__card {
  background: var(--paper); border: 1px solid var(--fog);
  border-radius: var(--radius-card); padding: var(--sp-8);
  box-shadow: var(--shadow-md);
}
.hero__card h2 { font-size: 1.0625rem; letter-spacing: -.02em; margin-bottom: var(--sp-5); }
.hero__steps { list-style: none; margin: 0; padding: 0; counter-reset: s; }
.hero__steps li {
  counter-increment: s; position: relative; padding-left: 42px;
  padding-bottom: var(--sp-5); margin: 0;
}
.hero__steps li:last-child { padding-bottom: 0; }
.hero__steps li::before {
  content: counter(s); position: absolute; left: 0; top: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-size: .75rem; font-weight: 700;
  display: grid; place-items: center;
}
.hero__steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 13px; top: 30px; bottom: 8px;
  width: 1px; background: var(--accent-line);
}
.hero__steps strong { display: block; color: var(--carbon); font-size: .9375rem; }
.hero__steps span { font-size: .875rem; color: var(--graphite); }

/* --------------------------------------------------------------- 7. Cards */
.card {
  background: var(--paper); border: 1px solid var(--fog);
  border-radius: var(--radius-card); padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card > :last-child { margin-bottom: 0; }
.card--link:hover { border-color: var(--accent-line); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card--flat { box-shadow: none; }
.card--accent { background: var(--accent-softer); border-color: var(--accent-line); box-shadow: none; }
.card--dark { background: var(--dark-2); border-color: rgba(255,255,255,.09); color: #c9cec9; box-shadow: none; }

.card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-bottom: var(--sp-5);
  font-size: 1.15rem; font-weight: 700; flex: none;
}
.card__icon svg { width: 21px; height: 21px; }
.card p { color: var(--graphite); }
.card h3 { margin-bottom: var(--sp-3); }

/* nummerierte Feature-Karten */
.numcard { position: relative; }
.numcard__num {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  color: var(--accent); margin-bottom: var(--sp-4); display: block;
}

/* Kennzahl / Fakt */
.stat { }
.stat__value {
  font-size: clamp(2rem, 1.4rem + 2vw, 2.75rem); font-weight: 600;
  letter-spacing: -.04em; color: var(--carbon); line-height: 1; display: block;
  margin-bottom: var(--sp-3);
}
.section--dark .stat__value { color: #fff; }
.stat__label { font-size: .9375rem; color: var(--graphite); margin: 0; }
.section--dark .stat__label { color: #9aa39a; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; margin: 0; padding: 0; }
.chips li { margin: 0; }
.chip {
  display: inline-block; padding: 7px 15px; border-radius: var(--radius-pill);
  border: 1px solid var(--fog); background: var(--paper);
  font-size: .875rem; font-weight: 500; color: var(--slate);
}
.section--mist .chip { background: var(--paper); }
.chip--accent { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent-dark); }

/* Häkchen-Listen */
.checklist { list-style: none; padding: 0; margin: 0 0 var(--sp-4); }
.checklist li { position: relative; padding-left: 30px; margin-bottom: var(--sp-3); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230b620b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.checklist--x li::before {
  background: #f7f0f0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23a04b4b' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M4.5 4.5l7 7M11.5 4.5l-7 7'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.section--dark .checklist li::before { background-color: rgba(0,160,75,.16); }

/* ------------------------------------------------------- 8. Prozess-Schritte */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-6); }
.steps--split { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.steps > li { margin: 0; }

.step {
  background: var(--paper); border: 1px solid var(--fog);
  border-radius: var(--radius-card); padding: var(--sp-6);
  height: 100%;
}
.step__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--carbon); color: #fff;
  font-size: .8125rem; font-weight: 700; margin-bottom: var(--sp-4);
}
.step h3 { font-size: 1.0625rem; margin-bottom: var(--sp-2); }
.step p { font-size: .9375rem; color: var(--graphite); margin: 0; }

/* Vertikale Timeline (ausführlicher Ablauf) */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline > li {
  position: relative; margin: 0;
  padding: 0 0 var(--sp-12) 60px;
}
.timeline > li:last-child { padding-bottom: 0; }
.timeline > li::before {
  content: attr(data-step);
  position: absolute; left: 0; top: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--accent-line); color: var(--accent);
  font-size: .8125rem; font-weight: 700;
  display: grid; place-items: center; z-index: 1;
}
.timeline > li:not(:last-child)::after {
  content: ""; position: absolute; left: 19px; top: 42px; bottom: 6px;
  width: 1px; background: var(--fog);
}
.timeline h3 { margin-bottom: var(--sp-2); }
.timeline p { color: var(--graphite); }
.timeline > li > :last-child { margin-bottom: 0; }

.timeline__meta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8125rem; font-weight: 600; color: var(--accent);
  background: var(--accent-soft); border-radius: var(--radius-pill);
  padding: 4px 12px; margin-bottom: var(--sp-3);
}

/* ------------------------------------------------------ 9. Hinweis-Boxen */
.callout {
  border: 1px solid var(--accent-line); background: var(--accent-softer);
  border-radius: var(--radius-card); padding: var(--sp-8);
  margin-block: var(--sp-8);
}
.callout > :last-child { margin-bottom: 0; }
.callout h3 { display: flex; align-items: center; gap: var(--sp-3); }
.callout h3::before {
  content: "!"; flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: .8125rem; font-weight: 700;
  display: grid; place-items: center;
}
.callout--neutral { background: var(--mist); border-color: var(--fog); }
.callout--neutral h3::before { background: var(--carbon); }

/* Gegenüberstellung Honorar / Werbebudget */
.split-compare { display: grid; gap: var(--sp-6); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.split-compare .card h3 { display: flex; align-items: baseline; gap: var(--sp-3); }
.split-compare .tag {
  font-size: .6875rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--radius-pill); flex: none;
}
.tag--us   { background: var(--accent); color: #fff; }
.tag--you  { background: var(--carbon); color: #fff; }

/* --------------------------------------------------------------- 10. FAQ */
.faq { border-top: 1px solid var(--fog); }
.faq details {
  border-bottom: 1px solid var(--fog);
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: var(--sp-6) 44px var(--sp-6) 0; position: relative;
  font-size: 1.0625rem; font-weight: 600; color: var(--carbon);
  letter-spacing: -.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 1.8px solid var(--ash); border-bottom: 1.8px solid var(--ash);
  transform: rotate(45deg); transition: transform .2s ease, border-color .2s ease;
}
.faq summary:hover::after { border-color: var(--accent); }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; border-color: var(--accent); }
.faq details[open] summary { padding-bottom: var(--sp-3); }
.faq .faq__body { padding-bottom: var(--sp-6); color: var(--graphite); max-width: 78ch; }
.faq .faq__body > :last-child { margin-bottom: 0; }

/* --------------------------------------------------------- 11. CTA-Band  */
.cta-band {
  background: var(--dark); color: #c9cec9;
  border-radius: var(--radius-card);
  padding: clamp(40px, 4vw, 64px);
  display: grid; gap: var(--sp-8);
  grid-template-columns: minmax(0, 1fr) auto; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,160,75,.22), transparent 65%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: var(--sp-3); }
.cta-band p { margin: 0; max-width: 56ch; color: #a8b0a8; }

/* ------------------------------------------------------- 12. Kontaktseite */
.contact-grid {
  display: grid; gap: clamp(32px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  align-items: start;
}

.form-card {
  background: var(--paper); border: 1px solid var(--fog);
  border-radius: var(--radius-card); padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-md);
}

.field { margin-bottom: var(--sp-5); }
.field label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--carbon); margin-bottom: var(--sp-2); letter-spacing: -.01em;
}
.field .opt { font-weight: 400; color: var(--ash); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%; padding: 12px 15px;
  font: inherit; font-size: .9375rem; color: var(--carbon);
  background: var(--paper);
  border: 1px solid var(--fog); border-radius: var(--radius-sm);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.55; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23666c66' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6.5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 15px;
  padding-right: 40px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ash); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 14%, transparent);
}
.field--invalid input, .field--invalid select,
.field--invalid textarea, .field--invalid .check { border-color: #b3261e; }
.field__error { display: none; font-size: .8125rem; color: #b3261e; margin-top: 6px; }
.field--invalid .field__error { display: block; }

.field-row { display: grid; gap: var(--sp-4); grid-template-columns: 1fr 1fr; }

.check {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  border: 1px solid var(--fog); border-radius: var(--radius-sm);
  padding: var(--sp-4); background: var(--mist);
}
.check input { margin: 2px 0 0; width: 17px; height: 17px; accent-color: var(--accent); flex: none; }
.check label { font-size: .8125rem; font-weight: 400; color: var(--graphite); line-height: 1.55; margin: 0; }

/* Honeypot – für Menschen unsichtbar, Bots füllen ihn aus */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status {
  display: none; margin-top: var(--sp-5); padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm); font-size: .9375rem;
}
.form-status--ok   { display: block; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-dark); }
.form-status--err  { display: block; background: #fdf1f0; border: 1px solid #f0d4d1; color: #8c2f26; }
.form-status a { color: inherit; }

.btn[aria-busy="true"] { opacity: .65; pointer-events: none; }

/* Kontakt-Direktkarten */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-4); }
.contact-list li { margin: 0; }
.contact-item {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  border: 1px solid var(--fog); border-radius: var(--radius-card);
  padding: var(--sp-5); background: var(--paper);
  transition: border-color .18s ease;
}
.contact-item:hover { border-color: var(--accent-line); }
.contact-item__icon {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.contact-item__icon svg { width: 19px; height: 19px; }
.contact-item h3 { font-size: .8125rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ash); font-weight: 600; margin-bottom: 3px; }
.contact-item .value { font-size: 1.0625rem; font-weight: 600; color: var(--carbon);
  letter-spacing: -.02em; text-decoration: none; display: block; }
a.value:hover { color: var(--accent); }
.contact-item small { display: block; color: var(--graphite); font-size: .8125rem; margin-top: 4px; }

/* ------------------------------------------------------- 13. Rechtstexte */
.legal { max-width: 800px; }
.legal h2 {
  font-size: 1.375rem; letter-spacing: -.025em;
  margin-top: var(--sp-12); margin-bottom: var(--sp-4);
  padding-top: var(--sp-6); border-top: 1px solid var(--fog);
}
.legal h2:first-of-type { margin-top: var(--sp-8); }
.legal h3 { font-size: 1.0625rem; margin-top: var(--sp-8); margin-bottom: var(--sp-3); }
.legal p, .legal li { font-size: .9375rem; line-height: 1.7; }
.legal address { font-style: normal; line-height: 1.75; font-size: .9375rem; }
.legal__meta { font-size: .875rem; color: var(--ash); }

.toc {
  background: var(--mist); border: 1px solid var(--fog);
  border-radius: var(--radius-card); padding: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.toc h2 { font-size: .8125rem !important; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ash); margin: 0 0 var(--sp-3) !important; padding: 0 !important; border: 0 !important; }
.toc ol { columns: 2; column-gap: var(--sp-8); margin: 0; padding-left: 1.2em; font-size: .875rem; }
.toc li { break-inside: avoid; margin-bottom: 5px; }

/* ------------------------------------------------------------ 14. Footer */
.site-footer {
  background: var(--dark); color: #9aa39a;
  padding-block: clamp(48px, 5vw, 80px) var(--sp-8);
  margin-top: clamp(56px, 5vw, 96px);
}
.site-footer a { color: #c9cec9; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer__top {
  display: grid; gap: clamp(32px, 4vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  padding-bottom: var(--sp-12);
}
.footer__brand img { height: 74px; width: auto; margin-bottom: var(--sp-5); }
.footer__pitch { font-size: .9375rem; max-width: 40ch; color: #8b938b; margin: 0; }

.footer__cols { display: grid; gap: var(--sp-8); grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.footer__col h2 {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .09em;
  color: #fff; font-weight: 600; margin-bottom: var(--sp-4);
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: var(--sp-3); font-size: .9375rem; }
.footer__muted { color: #6f776f; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding-top: var(--sp-6);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-3);
  font-size: .8125rem;
}
.footer__bottom p { margin: 0; }

/* -------------------------------------------------------- 15. Responsive */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav__toggle { display: inline-flex; }
  .nav { flex-wrap: wrap; }
  .nav__menu {
    display: none; order: 3; width: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding-top: var(--sp-4); margin-top: var(--sp-3);
    border-top: 1px solid var(--fog);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a:not(.btn) { padding: 12px 14px; }
  .nav__cta { margin: var(--sp-3) 0 var(--sp-2); }
  .nav__cta .btn { width: 100%; padding: 13px 24px; font-size: .9375rem; }
}

@media (max-width: 560px) {
  .wrap { padding-inline: var(--sp-5); }
  .field-row { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .btn-row .btn { width: 100%; }
  .timeline > li { padding-left: 48px; }
  .footer__bottom { flex-direction: column; }
}

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

@media print {
  .site-header, .site-footer, .btn, .cta-band { display: none !important; }
  body { color: #000; }
}
