/* =========================================================================
   ZWEISINN — Heilende Innenarchitektur
   Stylesheet · handgeschrieben, ohne Framework/Build-Step
   Gestaltungsprinzip: Ruhe. Viel Weißraum, warme Naturtöne, Anthrazit.
   ========================================================================= */

/* ---------- Schrift (selbst gehostet, SIL OFL) -------------------------- */
/* Platzhalter für die Hausschrift Neurath. Sobald eine Webfont-Lizenz für
   Neurath vorliegt, hier die Neurath-woff2 einbinden und --font umstellen. */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens ----------------------------------------------- */
:root {
  /* Farben — aus Corporate Design (Anthrazit #181715) + warme Naturtöne */
  --ink:        #181715;   /* Hauptfarbe, Text & dunkle Flächen */
  --ink-soft:   #2c2823;
  --muted:      #6f665a;   /* Sekundärtext (warmes Grau-Braun) */
  --paper:      #f6f2ea;   /* heller, warmer Hauptgrund */
  --paper-2:    #efe8dc;   /* leicht tieferer Sandton (Wechselsektionen) */
  --paper-3:    #e8dfd0;
  --line:       #dccfbd;   /* Haarlinien */
  --accent:     #9c8466;   /* warmer Lehm/Taupe — sparsam für Akzente */
  --accent-ink: #7d6850;

  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 18px 50px -28px rgba(24, 23, 21, 0.45);
  --shadow-sm:  0 8px 24px -16px rgba(24, 23, 21, 0.4);

  --container:  1180px;
  --header-h:   76px;

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

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

/* ---------- Layout-Helfer ----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
}
.section--alt   { background: var(--paper-2); }
.section--ink   { background: var(--ink); color: var(--paper); }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 1.1rem;
}
.section--ink .eyebrow { color: #c6ad8c; }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.h2 { font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.85rem); font-weight: 500; }
.h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.45rem); font-weight: 600; }
.lead {
  font-size: clamp(1.05rem, 1rem + 0.45vw, 1.3rem);
  color: var(--muted);
  margin-top: 1.1rem;
  line-height: 1.65;
}
.muted { color: var(--muted); }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: transparent; box-shadow: none; }

.btn--light { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.section--ink .btn--ghost { --btn-fg: var(--paper); border-color: rgba(246,242,234,0.32); }

.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* Text-Link mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--accent-ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: gap 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-arrow:hover { gap: 0.7em; border-color: var(--accent); }
.section--ink .link-arrow { color: #d8c2a3; }

/* ---------- Skip-Link --------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  background: var(--ink); color: var(--paper);
  padding: 0.7em 1.1em; border-radius: var(--radius);
  z-index: 1000; text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* =========================================================================
   Header / Navigation
   ========================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), height 0.3s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  height: 64px;
}

.brand { display: inline-flex; align-items: center; color: var(--ink); }
.brand .logo { height: 26px; width: auto; fill: currentColor; }

.logo { fill: currentColor; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.9rem);
  list-style: none;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.82;
  transition: opacity 0.2s ease;
}
.nav-links a:hover { opacity: 1; }

.nav-cta { white-space: nowrap; padding: 0.7em 1.3em; font-size: 0.9rem; }

/* Burger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 5rem));
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
  background:
    radial-gradient(120% 90% at 80% 0%, var(--paper) 0%, var(--paper-2) 70%, var(--paper-3) 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy { max-width: 36rem; }
.hero h1 {
  font-size: clamp(2.1rem, 1.3rem + 4.2vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero h1 .soft { color: var(--accent-ink); font-weight: 400; }
.hero .lead { max-width: 32rem; }
.hero-actions {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-meta {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5em; }
.hero-meta span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
}

/* Bildrahmen mit dezentem Versatz */
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  aspect-ratio: 1000 / 1330;
  object-fit: cover;
}
.hero-figure::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--accent);
  opacity: 0.5;
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero-figure figcaption {
  position: absolute;
  z-index: 2;
  bottom: 14px; left: 14px; right: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(246,242,234,0.9);
  background: linear-gradient(to top, rgba(24,23,21,0.55), transparent);
  padding: 1.4rem 1rem 0.7rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* =========================================================================
   Für wen — 3 Zielgruppen
   ========================================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.2vw, 1.75rem);
}
.card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.section--alt .card { background: var(--paper); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
  width: 40px; height: 40px;
  color: var(--accent-ink);
  stroke: currentColor; fill: none;
  stroke-width: 1.4;
}
.card h3 { font-size: 1.2rem; font-weight: 600; }
.card p { color: var(--muted); flex: 1; }
.card .link-arrow { margin-top: 0.3rem; }

/* =========================================================================
   Healing Interior — Herzstück
   ========================================================================= */
.healing-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.healing-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 866 / 1100;
  object-fit: cover;
}
.healing-figure figcaption {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.wirkfelder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.2rem);
  margin-top: 0.5rem;
}
.wirkfeld { display: flex; flex-direction: column; gap: 0.55rem; }
.wirkfeld .icon {
  width: 34px; height: 34px;
  color: var(--accent-ink);
  stroke: currentColor; fill: none; stroke-width: 1.4;
}
.wirkfeld h3 { font-size: 1.1rem; font-weight: 600; }
.wirkfeld p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }

.healing-bridge {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-left: 2px solid var(--accent);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.section--alt .healing-bridge { background: var(--paper); }
.healing-bridge p { max-width: 40rem; font-size: 1.05rem; }
.healing-bridge strong { font-weight: 700; }

/* =========================================================================
   Leistungen
   ========================================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: svc;
}
.service { display: flex; flex-direction: column; gap: 1rem; }
.service h3 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.service h3::before {
  counter-increment: svc;
  content: counter(svc, decimal-leading-zero);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-ink);
  letter-spacing: 0.05em;
}
.service ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.service li {
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}
.service li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 7px; height: 7px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

/* =========================================================================
   Ablauf / Prozess
   ========================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  counter-reset: step;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0; left: 0;
  width: 2.1rem; height: 2.1rem;
  display: grid; place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-ink);
  background: var(--paper);
}
.section--alt .step::before { background: var(--paper-2); }
/* Verbindungslinie zwischen den Schritten */
.step::after {
  content: "";
  position: absolute;
  top: 1.05rem; left: 2.6rem; right: -0.75rem;
  height: 1px;
  background: var(--line);
}
.step:last-child::after { display: none; }
.step h3 { font-size: 1.06rem; font-weight: 600; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.94rem; line-height: 1.55; }
.steps-cta { text-align: center; }

/* =========================================================================
   Gründerinnen
   ========================================================================= */
.founders-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.founders-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 1000 / 1330;
  object-fit: cover;
}
.founders-copy p + p { margin-top: 1.1rem; }
.founders-copy .muted { color: var(--muted); }
.founders-quote {
  font-size: clamp(1.25rem, 1rem + 1.2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.founders-quote .soft { color: var(--accent-ink); }

/* =========================================================================
   Einblicke / Galerie
   ========================================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.6vw, 1.1rem);
}
.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-3);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery figure:hover img { transform: scale(1.045); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.3rem 0.9rem 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(246,242,234,0.95);
  background: linear-gradient(to top, rgba(24,23,21,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; }
.gallery-note { margin-top: 1.5rem; font-size: 0.9rem; }

/* =========================================================================
   Kontakt
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form { display: grid; gap: 1.1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; }
.field label .opt { color: var(--muted); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8em 0.95em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.section--alt .field input,
.section--alt .field select,
.section--alt .field textarea { background: var(--paper); }
.field textarea { resize: vertical; min-height: 130px; }
.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) 25%, transparent);
}
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; margin-top: 0.3rem; }
.form-note { font-size: 0.82rem; color: var(--muted); }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.84rem; color: var(--muted); }
.consent input { width: auto; margin-top: 0.25em; accent-color: var(--accent-ink); }
.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-status.ok { color: var(--accent-ink); font-weight: 600; }

.contact-aside { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-block h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); font-weight: 600; margin-bottom: 0.5rem; }
.contact-block a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: border-color 0.2s ease; }
.contact-block a:hover { border-color: var(--ink); }
.contact-block p { line-height: 1.6; }
.trust {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7em 1.1em;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  align-self: flex-start;
}
.trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--ink); color: var(--paper); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(246,242,234,0.14);
}
.footer-brand .logo { height: 28px; color: var(--paper); margin-bottom: 1.1rem; }
.footer-brand p { color: rgba(246,242,234,0.7); max-width: 24rem; font-size: 0.95rem; }
.footer-col h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(246,242,234,0.55); font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(246,242,234,0.85); text-decoration: none; font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: rgba(246,242,234,0.55);
}
.footer-bottom a { color: inherit; }

/* =========================================================================
   Scroll-Reveal (sanft) & Mobile-Menü-Overlay
   ========================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 460px; }
  .healing-grid,
  .founders-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .healing-figure, .founders-figure { max-width: 480px; }
  .services { grid-template-columns: 1fr; gap: 2rem; }
  .steps { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.25rem; }
  .step::after { display: none; }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .nav-toggle { display: inline-flex; }
  .nav-links,
  .nav .nav-cta { display: none; }

  /* Mobiles Menü */
  .nav.open { position: static; }
  .mobile-menu {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 2rem clamp(1.25rem, 5vw, 3rem) 3rem;
    overflow-y: auto;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a {
    text-decoration: none;
    color: var(--ink);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu .btn {
    margin-top: 1.5rem;
    justify-content: center;
    color: var(--paper);   /* sonst überschreibt .mobile-menu a die helle Schrift */
    font-size: 1rem;
    border-bottom: 0;
  }

  .cards { grid-template-columns: 1fr; }
  .wirkfelder { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form .row { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  .steps { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Desktop: Mobiles Menü ausblenden */
@media (min-width: 761px) {
  .mobile-menu { display: none; }
}

/* =========================================================================
   Rechtstexte (Impressum / Datenschutz)
   ========================================================================= */
.legal {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem); margin-bottom: 0.5rem; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.25rem; font-weight: 600; margin: 2.4rem 0 0.8rem; }
.legal h3 { font-size: 1.02rem; font-weight: 600; margin: 1.6rem 0 0.5rem; }
.legal p, .legal li { color: var(--ink); line-height: 1.75; }
.legal p { margin-bottom: 0.9rem; }
.legal ul { margin: 0 0 1rem 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.legal a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
.legal .todo {
  display: block;
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  padding: 0.6em 0.9em;
  margin: 0.4rem 0 1rem;
  font-size: 0.92rem;
  color: var(--accent-ink);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.legal .back { display: inline-block; margin-top: 2.5rem; }
