/* GENERIERT: zentrale Stil- und Token-Datei (Single Source of Truth fuer
   Design/Look). Alle Bausteine verwenden ausschliesslich die Tokens unten -
   niemals feste Farben im Markup. Look-Wechsel = nur diese Datei aendern,
   keine Einzelseiten anfassen.
   Preset-Basis: Warm Editorial (angepasst fuer Life Coaching / DACH). */

/* ===================== 1. DESIGN-TOKENS ===================== */

:root {
  /* Marke / Akzent */
  --accent: #b5562d;          /* warmes Terrakotta */
  --accent-strong: #8f4220;   /* dunkler für Hover/Active */
  --accent-2: #6e7f62;        /* gedämpftes Salbeigrün, sparsam als zweiter Akzent */
  --accent-soft: #f2e2d5;     /* helle Terrakotta-Tönung für Flächen/Badges */
  --accent-2-soft: #e9ede3;   /* helle Salbei-Tönung, Pendant zu --accent-soft */

  /* Flächen */
  --bg: #fbf7f1;
  --bg-deep: #f3ebe0;
  --surface: #ffffff;
  --card-bg: #ffffff;
  --header-bg: rgba(251, 247, 241, 0.92); /* = --bg mit Transparenz für den Sticky-Header */

  /* Text */
  --ink: #2a211c;
  --text: #3d332c;
  --text-soft: #6b5d52;
  --on-accent: #fffaf6;

  /* Linien */
  --line: #e5d9cc;
  --line-strong: #d2c2af;

  /* Schatten */
  --shadow: 0 8px 24px -12px rgba(42, 33, 28, 0.18);
  --shadow-brand: 0 10px 28px -10px rgba(181, 86, 45, 0.32);

  /* Schriften */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 18px;
  --radius-sm: 10px;

  /* Abstands-Skala */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  /* Typo-Skala (fluid) */
  --fs-body: clamp(1rem, 0.97rem + 0.15vw, 1.125rem);
  --fs-small: 0.9375rem;
  --fs-h1: clamp(2.5rem, 2.1rem + 2vw, 4rem);
  --fs-h2: clamp(1.9rem, 1.7rem + 1vw, 2.6rem);
  --fs-h3: clamp(1.3rem, 1.2rem + 0.5vw, 1.6rem);
  --fs-lead: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);

  /* wird per JS mit der echten Header-Hoehe befuellt (siehe Header-Skript) */
  --header-h: 88px;
}
/* GENERIERT als zentrale Stil-Datei. Verwendet ausschliesslich Tokens aus
   tokens.css - keine festen Farben im Markup oder hier. Aenderungen am Look
   immer hier, nie auf Einzelseiten. */

/* ---------- Fonts (lokal gehostet) ---------- */
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

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

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 var(--space-2);
  font-weight: 600;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  margin: 0 0 var(--space-3);
  max-width: 68ch;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--text-soft);
}

/* ---------- Skip-Link & Fokus ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--on-accent);
  padding: var(--space-2) var(--space-3);
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

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

/* ---------- Layout-Helfer ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
}

.section-deep {
  background: var(--bg-deep);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-5);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: var(--space-2);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

/* ---------- Signatur-Element: Viertelkreis-Ornament ---------- */
.ornament {
  width: 46px;
  height: 46px;
  border-top-left-radius: 46px;
  background: var(--accent-soft);
  position: relative;
}

.ornament::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 14px;
  height: 14px;
  border-top-left-radius: 14px;
  background: var(--accent);
}

/* ---------- Header ---------- */
/* Hinweis: der Weichzeichner-Effekt sitzt bewusst auf einem ::before statt
   direkt auf .site-header, weil "backdrop-filter" sonst einen eigenen
   Containing Block fuer position:fixed-Kinder erzeugt (bricht das mobile
   Vollbild-Menü unten). */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--header-bg);
  backdrop-filter: saturate(140%) blur(8px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  gap: var(--space-3);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background: var(--accent);
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
}

.main-nav a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-small);
  color: var(--text);
  padding: var(--space-1) 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.main-nav a:not(.btn):hover {
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  min-height: 48px;
  padding: 0 var(--space-4);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

/* ---------- Hero ---------- */
.hero {
  padding-top: var(--space-7);
  padding-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-6);
  align-items: center;
}

.hero-copy .lead {
  margin-bottom: var(--space-4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  color: var(--text-soft);
  font-size: var(--fs-small);
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.hero-trust li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  border-top-left-radius: 96px;
  background: var(--accent-soft);
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

/* ---------- Über mich ---------- */
.about .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-6);
  align-items: start;
}

.about-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: var(--space-3);
  margin: var(--space-4) 0;
}

/* ---------- Angebot / Phasen ---------- */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  counter-reset: phase;
}

.phase-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  position: relative;
}

.phase-card:nth-child(2) {
  transform: translateY(var(--space-3));
}

.phase-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-2);
  display: block;
}

.phase-card h3 {
  margin-bottom: var(--space-1);
}

.phase-card p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: var(--fs-small);
}

/* ---------- Für-wen ---------- */
.audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}

.audience-list li {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--line);
}

.audience-list li:last-child {
  border-bottom: none;
}

.audience-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- Stimmen (Kundenstimmen/Testimonials) ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
  list-style: none;
  margin-left: 0;
  padding: 0;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Ecken-Ornament: greift das bestehende Signatur-Element (Viertelkreis,
   siehe .hero-media::after) wieder auf, statt ein neues Muster
   einzuführen - sorgt für Wiedererkennung. Eigene Ebene hinter dem
   Karteninhalt, daher .testimonial-card > * mit z-index. */
.testimonial-card::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-top-left-radius: 72px;
  background: var(--accent-soft);
  right: -20px;
  bottom: -20px;
  z-index: 0;
}

.testimonial-card:nth-child(2)::after,
.testimonial-card:nth-child(4)::after {
  background: var(--accent-2-soft);
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-kernaussage {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--accent-strong);
}

.testimonial-kernaussage::before {
  content: "\2013";
  color: var(--accent);
  font-weight: 700;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
  background: var(--accent);
  color: var(--on-accent);
}

/* Vier abwechselnde, kontrastgeprüfte Farbpaare (alle ≥ 4.5:1) statt
   Bildern - siehe wissensdatei.md Abschnitt 7 zur bewussten Entscheidung
   gegen KI-Fake-Fotos von fiktiven Personen. */
.testimonial-card:nth-child(2) .testimonial-avatar {
  background: var(--accent-soft);
  color: var(--ink);
}

.testimonial-card:nth-child(3) .testimonial-avatar {
  background: var(--accent-strong);
  color: var(--on-accent);
}

.testimonial-card:nth-child(4) .testimonial-avatar {
  background: var(--ink);
  color: var(--on-accent);
}

.testimonial-quote {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
}

.testimonial-quote::before {
  content: "\201C";
  position: absolute;
  top: -1.1rem;
  left: -0.2rem;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 3rem;
  color: var(--accent-soft);
  line-height: 1;
}

.testimonial-quote p {
  position: relative;
  margin: 0;
}

.testimonial-name {
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--ink);
}

.testimonial-name-role {
  font-weight: 400;
  color: var(--text-soft);
}

.testimonial-link {
  margin-top: var(--space-5);
}

.testimonial-link a {
  font-weight: 600;
  color: var(--accent-strong);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-soft);
  padding-bottom: 2px;
}

.testimonial-link a:hover {
  border-bottom-color: var(--accent);
}

/* ---------- Kontakt ---------- */
.contact .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-6);
}

.contact-direct {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.contact-direct a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  min-height: 44px;
}

.contact-direct a:hover {
  border-color: var(--accent);
}

.contact-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  flex-shrink: 0;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  display: grid;
  gap: var(--space-3);
}

.form-row {
  display: grid;
  gap: var(--space-1);
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.form-row label {
  font-weight: 600;
  font-size: var(--fs-small);
}

.form-row input,
.form-row textarea {
  font: inherit;
  padding: var(--space-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  min-height: 44px;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
}

.form-hint {
  font-size: var(--fs-small);
  color: var(--text-soft);
  margin: 0;
}

/* Honeypot - fuer Menschen unsichtbar, fuer Screenreader ausgeblendet */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

/* Bewusst keine echte Überschrift (h3) - das sind Rubriken-Labels im
   Footer, keine Dokument-Gliederungsebene. Verhindert Sprünge in der
   Heading-Hierarchie auf Seiten ohne eigene h2 (z. B. 404). */
.footer-heading {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0 0 var(--space-2);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-1);
}

.footer-grid a {
  text-decoration: none;
  color: var(--text-soft);
}

.footer-grid a:hover {
  color: var(--accent-strong);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  font-size: var(--fs-small);
  color: var(--text-soft);
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
}

.footer-bottom a {
  text-decoration: none;
  color: var(--text-soft);
}

.footer-bottom a:hover {
  color: var(--accent-strong);
}

/* ---------- Nach-oben-Button ---------- */
.back-to-top {
  position: fixed;
  right: var(--space-3);
  bottom: var(--space-3);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-brand);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease;
  z-index: 40;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--accent-strong);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity 0.001ms, transform 0.001ms;
  }
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-page .wrap {
  text-align: center;
}

/* ---------- Einfache Inhaltsseiten ohne <section>-Rhythmus
   (Impressum, Datenschutz, FAQ - Klassenname "legal" historisch, gilt aber
   fuer jede simple Ein-Spalten-Inhaltsseite) ---------- */
.legal main h2 {
  margin-top: var(--space-6);
}

.legal main {
  padding-top: var(--space-6);
  padding-bottom: var(--space-7);
}

.placeholder {
  background: var(--accent-soft);
  color: var(--accent-strong);
  padding: 0 4px;
  border-radius: 4px;
  font-weight: 600;
}

/* ---------- FAQ (natives <details>/<summary>, kein JS noetig) ---------- */
.faq-list {
  max-width: 760px;
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-5);
  margin-bottom: var(--space-5);
}

.faq-cta {
  margin-top: var(--space-5);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 var(--space-3);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-family: var(--font-body);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  color: var(--text-soft);
  padding-bottom: var(--space-3);
  margin: 0;
}

.faq-note {
  max-width: 760px;
  background: var(--bg-deep);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  color: var(--text-soft);
  font-size: var(--fs-small);
}

/* ---------- Responsive ---------- */
/* Eigener, breiterer Breakpoint fuer die Hauptnavigation: mit 5 Menüpunkten
   + Logo + CTA-Button reicht der frühere 860px-Umbruch nicht mehr aus - die
   Navigation lief dann in ein hässliches Zwei-Zeilen-Layout (Logo und/oder
   Menüpunkte brechen um). Deshalb wechselt NUR die Navigation schon bei
   1100px auf das Hamburger-Menü; Layout-Umbrüche der übrigen Sektionen
   (Hero/Über mich/Kontakt/Phasen/Footer) bleiben bei 860px, da dort kein
   Platzproblem besteht. */
@media (max-width: 1100px) {
  .main-nav ul {
    display: none;
  }

  /* CTA-Button ist im Menü enthalten (siehe .nav-open unten) - im
     geschlossenen Zustand nicht extra im schmalen Header anzeigen,
     sonst laeuft der Header bei kleinen Breiten ueber. */
  .main-nav > .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.nav-open .main-nav {
    position: fixed;
    top: var(--header-h, 88px);
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    padding: var(--space-4) var(--gutter);
    overflow-y: auto;
  }

  /* Hamburger/Schließen-Button bleibt oben rechts über dem Menü, statt in
     der gestapelten Spalte mitzulaufen. */
  .site-header.nav-open .nav-toggle {
    order: -1;
    align-self: flex-end;
    margin-bottom: var(--space-3);
  }

  .site-header.nav-open .main-nav ul {
    display: grid;
    gap: var(--space-1);
  }

  .site-header.nav-open .main-nav ul a {
    display: block;
    padding: var(--space-3) 0;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .main-nav > .btn {
    display: inline-flex;
    margin-top: var(--space-3);
    width: 100%;
  }
}

@media (max-width: 860px) {
  .hero .wrap,
  .about .wrap,
  .contact .wrap {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .phases {
    grid-template-columns: 1fr;
  }

  .phase-card:nth-child(2) {
    transform: none;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 420px) {
  .hero-actions .btn,
  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .form-row-split {
    grid-template-columns: 1fr;
  }
}
