/* =====================================================================
   Handlaufprofis Kaiserslautern — Design System v2
   Palette: Orange (primary) + Steel-Blue (trust) + Grey-Scale
   Stil: modern, hell, klar — weniger Texturen, mehr Farbblöcke
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Primärfarbe: warmes Industrie-Orange (Handwerk, Energie, Wärme) */
  --c-orange: #ea6a1e;
  --c-orange-600: #d35a14;
  --c-orange-700: #b54810;
  --c-orange-100: #fde7d3;
  --c-orange-50: #fff4ea;

  /* Akzent: Stahlblau (Vertrauen, ruhig, Pflegekasse-Sektionen) */
  --c-blue: #1e4d7b;
  --c-blue-700: #163a5e;
  --c-blue-100: #dbe6f1;
  --c-blue-50: #eef3f9;

  /* Grau-Skala (Neutrale) */
  --c-ink: #15181d;          /* Schrift Headlines */
  --c-text: #2c3138;         /* Body */
  --c-muted: #5e6772;        /* Hilfstext */
  --c-line: #e4e7eb;
  --c-line-strong: #cdd2d9;
  --c-surface: #f4f6f8;      /* leichte Sektionsfläche */
  --c-surface-warm: #fbf7f2;
  --c-white: #ffffff;

  /* Status */
  --c-success: #1f7a3a;
  --c-danger: #b3261e;
  --c-warn-bg: #fff4d9;
  --c-warn-line: #d99a1a;

  /* Typo */
  --f-display: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-body: 1.125rem;       /* 18px */
  --fs-lead: 1.3125rem;      /* 21px */
  --fs-small: 1rem;          /* 16px */
  --fs-h1: clamp(2.5rem, 5.5vw, 4rem);
  --fs-h2: clamp(1.875rem, 3.6vw, 2.625rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);

  /* Spacing */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 6rem;

  /* Radius — moderner, runder */
  --r-1: 8px;
  --r-2: 14px;
  --r-3: 20px;
  --r-4: 28px;
  --r-pill: 999px;

  /* Schatten — leicht, nicht dramatisch */
  --sh-1: 0 1px 2px rgba(21, 24, 29, 0.04), 0 6px 16px rgba(21, 24, 29, 0.05);
  --sh-2: 0 4px 8px rgba(21, 24, 29, 0.06), 0 14px 36px rgba(21, 24, 29, 0.08);
  --sh-3: 0 18px 48px rgba(30, 77, 123, 0.18);

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --t-fast: 160ms;
  --t-base: 220ms;
  --t-slow: 320ms;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

/* ---------- Base ---------- */
body {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { display: block; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.04em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.03em; }
h3 { font-size: var(--fs-h3); }

p { text-wrap: pretty; max-width: 65ch; }
p.lead { font-size: var(--fs-lead); color: var(--c-text); line-height: 1.55; }
p.muted { color: var(--c-muted); }
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-orange);
}

a { color: var(--c-orange); text-decoration-thickness: 1.5px; text-underline-offset: 3px; transition: color var(--t-fast) var(--ease-out); }
a:hover { color: var(--c-orange-700); }

::selection { background: var(--c-orange); color: var(--c-white); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--s-3);
}
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; }

section { padding-block: var(--s-7); }
@media (max-width: 720px) { section { padding-block: var(--s-6); } }

.section-head { margin-bottom: var(--s-5); }
.section-head .eyebrow { display: inline-block; margin-bottom: var(--s-2); }

/* ---------- Skip Link (a11y) ---------- */
.skip-link {
  position: absolute;
  top: 0; left: 0;
  padding: var(--s-2) var(--s-3);
  background: var(--c-blue);
  color: var(--c-white);
  z-index: 100;
  transform: translateY(-110%);
  transition: transform var(--t-base) var(--ease-out);
}
.skip-link:focus { transform: translateY(0); outline: 3px solid var(--c-orange); outline-offset: -3px; }

/* ---------- Top-Banner ---------- */
.top-banner {
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  padding: 0.625rem var(--s-3);
}
.top-banner strong { color: var(--c-white); font-weight: 700; }
.top-banner .dot { opacity: 0.6; margin-inline: 0.75em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--c-line);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
}
.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-block: var(--s-2);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--c-ink);
}
.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
  display: block;
}
.brand__text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.1875rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.brand__name .accent { color: var(--c-orange); }
.brand__sub {
  font-size: 0.75rem;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}
.site-footer__brand .brand__logo { width: 64px; height: 64px; margin-bottom: var(--s-2); }
.site-footer__brand .brand { flex-direction: column; align-items: flex-start; gap: 0; }
.site-footer__brand .brand__text { gap: 2px; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.nav__list {
  display: flex;
  gap: var(--s-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__link {
  font-weight: 500;
  text-decoration: none;
  color: var(--c-text);
  position: relative;
  padding: 0.375rem 0;
  transition: color var(--t-fast) var(--ease-out);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}
.nav__link:hover { color: var(--c-ink); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--c-orange); }

.nav__phone {
  font-family: var(--f-display);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  border-radius: var(--r-pill);
  background: var(--c-orange);
  color: var(--c-white);
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
  box-shadow: 0 4px 12px rgba(234, 106, 30, 0.25);
}
.nav__phone:hover { background: var(--c-orange-700); color: var(--c-white); box-shadow: 0 6px 18px rgba(234, 106, 30, 0.35); }
.nav__phone:active { transform: scale(0.97); }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-2);
  align-items: center; justify-content: center;
  border: 1px solid var(--c-line-strong);
  background: var(--c-white);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-line);
    padding: var(--s-3);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-base) var(--ease-out), opacity var(--t-base) var(--ease-out);
    box-shadow: var(--sh-1);
  }
  .nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__link { padding: 0.875rem 0; border-bottom: 1px solid var(--c-line); display: block; font-size: 1.125rem; }
  .nav__link::after { display: none; }
  .nav__phone { margin-top: var(--s-2); justify-content: center; padding: 0.875rem 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--c-white);
  padding-block: var(--s-7) var(--s-6);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 50% at 85% 0%, var(--c-orange-50), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, var(--c-blue-50), transparent 65%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-6); align-items: center; }
@media (max-width: 880px) { .hero__inner { grid-template-columns: 1fr; gap: var(--s-4); } }

.hero h1 { margin-bottom: var(--s-3); }
.hero h1 .accent { color: var(--c-orange); font-style: normal; }
.hero p.lead { margin-bottom: var(--s-4); color: var(--c-text); max-width: 40ch; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-4); }

.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3); color: var(--c-muted); font-size: var(--fs-small); }
.hero__trust .google-stars { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--c-ink); }
.hero__trust .stars { color: #f5a623; letter-spacing: 1px; font-size: 1.125rem; }

/* Hero-Art: Orange-Block mit Logo als Brand-Stempel */
.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--c-orange) 0%, var(--c-orange-600) 100%);
  border-radius: var(--r-4);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(234, 106, 30, 0.32);
  display: grid;
  place-items: center;
}
.hero__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.12), transparent 55%);
  pointer-events: none;
}
.hero__art__logo {
  width: min(60%, 280px);
  aspect-ratio: 1;
  border-radius: var(--r-pill);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 8px rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}
.hero__badge {
  position: absolute;
  bottom: var(--s-3);
  left: var(--s-3);
  right: var(--s-3);
  background: var(--c-white);
  border-radius: var(--r-3);
  padding: var(--s-3);
  display: flex;
  align-items: center;
  gap: var(--s-2);
  box-shadow: var(--sh-1);
  z-index: 1;
}
.hero__badge .icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--c-orange-50);
  color: var(--c-orange);
  border-radius: var(--r-2);
  flex-shrink: 0;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.25rem;
}
.hero__badge strong { display: block; font-weight: 700; color: var(--c-ink); font-family: var(--f-display); }
.hero__badge span { font-size: var(--fs-small); color: var(--c-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.625rem;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  line-height: 1;
  min-height: 56px;
  transition:
    transform var(--t-fast) var(--ease-out),
    background var(--t-fast) var(--ease-out),
    color var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--c-orange);
  color: var(--c-white);
  box-shadow: 0 6px 18px rgba(234, 106, 30, 0.28);
}
.btn--primary:hover {
  background: var(--c-orange-700);
  color: var(--c-white);
  box-shadow: 0 10px 28px rgba(234, 106, 30, 0.36);
}
.btn--secondary {
  background: var(--c-white);
  color: var(--c-ink);
  border: 1.5px solid var(--c-line-strong);
}
.btn--secondary:hover { border-color: var(--c-ink); background: var(--c-white); }
.btn--blue {
  background: var(--c-blue);
  color: var(--c-white);
}
.btn--blue:hover { background: var(--c-blue-700); color: var(--c-white); }
.btn--ghost-light {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost-light:hover { border-color: var(--c-white); background: rgba(255, 255, 255, 0.08); }
.btn--block { width: 100%; }

/* ---------- Trust-Streifen ---------- */
.trust-strip {
  background: var(--c-blue);
  color: var(--c-white);
  padding-block: var(--s-3);
  padding-inline: var(--s-3);
  text-align: center;
}
.trust-strip__list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.375rem;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0; margin: 0 auto;
  max-width: 100%;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-white);
  white-space: nowrap;
}
.trust-strip__item .check {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px;
  border-radius: var(--r-pill);
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Karten / Leistungen ---------- */
.services { background: var(--c-white); }
.services__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--s-3);
}
@media (max-width: 980px) { .services__grid { grid-template-columns: 1fr 1fr; } .services__card--lead { grid-column: 1 / -1; } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }

.card {
  background: var(--c-surface);
  border-radius: var(--r-3);
  padding: var(--s-4);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); background: var(--c-white); border-color: var(--c-line); }
}
.services__card--lead {
  background: linear-gradient(160deg, var(--c-orange) 0%, var(--c-orange-600) 100%);
  color: var(--c-white);
}
.services__card--lead h3 { color: var(--c-white); }
.services__card--lead p { color: rgba(255, 255, 255, 0.88); }
.services__card--lead ul li { color: var(--c-white); }
.services__card--lead ul li::before { color: var(--c-white); }
.services__card--lead .card__icon { background: rgba(255, 255, 255, 0.15); color: var(--c-white); }
.services__card--lead:hover { background: linear-gradient(160deg, var(--c-orange-600) 0%, var(--c-orange-700) 100%) !important; }

.card h3 { margin-bottom: var(--s-2); }
.card p { color: var(--c-muted); margin-bottom: var(--s-3); }
.card ul { padding: 0; list-style: none; display: grid; gap: 0.5rem; margin-top: auto; }
.card ul li { display: flex; gap: 0.625rem; font-size: 1rem; color: var(--c-text); }
.card ul li::before { content: "→"; color: var(--c-orange); font-weight: 700; }
.card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-2);
  background: var(--c-orange-50);
  display: grid; place-items: center;
  color: var(--c-orange);
  margin-bottom: var(--s-3);
}
.card__icon svg { width: 28px; height: 28px; }

/* ---------- Maßanfertigung-Block ---------- */
.bespoke {
  background: var(--c-surface);
}
.bespoke h2 { color: var(--c-ink); }
.bespoke p { color: var(--c-text); font-size: var(--fs-lead); max-width: 60ch; }

.bespoke__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
@media (max-width: 720px) { .bespoke__compare { grid-template-columns: 1fr; } }
.bespoke__item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-3);
  padding: var(--s-4);
}
.bespoke__item--good {
  border-color: var(--c-orange);
  background: var(--c-orange-50);
  box-shadow: 0 8px 24px rgba(234, 106, 30, 0.1);
}
.bespoke__tag {
  font-family: var(--f-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
  color: var(--c-muted);
}
.bespoke__item--good .bespoke__tag { color: var(--c-orange-700); }
.bespoke__item h3 { color: var(--c-ink); margin-bottom: var(--s-2); }
.bespoke__item p { color: var(--c-text); font-size: 1rem; max-width: none; }

/* ---------- Qualität ---------- */
.quality { background: var(--c-white); }
.quality__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-4);
}
@media (max-width: 880px) { .quality__grid { grid-template-columns: 1fr; gap: var(--s-3); } }
.quality__pillar {
  padding: var(--s-4);
  background: var(--c-surface);
  border-radius: var(--r-3);
  position: relative;
}
.quality__pillar::before {
  content: "";
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  width: 36px; height: 4px;
  background: var(--c-orange);
  border-radius: 2px;
}
.quality__pillar h3 { margin-top: var(--s-3); margin-bottom: 0.5rem; font-size: 1.25rem; color: var(--c-ink); }
.quality__pillar p { color: var(--c-muted); font-size: 1rem; }

/* ---------- Process (1-3 Wochen) ---------- */
.process { background: var(--c-blue-50); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  counter-reset: step;
  margin-top: var(--s-4);
}
@media (max-width: 880px) { .process__steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process__steps { grid-template-columns: 1fr; } }
.process__step {
  position: relative;
  background: var(--c-white);
  border-radius: var(--r-3);
  padding: var(--s-4);
  counter-increment: step;
}
.process__step::before {
  content: "Schritt " counter(step);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--c-orange);
  line-height: 1;
  display: block;
  margin-bottom: var(--s-2);
}
.process__step h3 { font-size: 1.1875rem; margin-bottom: 0.5rem; color: var(--c-ink); }
.process__step p { color: var(--c-muted); font-size: 1rem; }

/* ---------- Förderungs-Teaser ---------- */
.subsidy {
  background: var(--c-blue);
  color: var(--c-white);
}
.subsidy__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-5);
  align-items: center;
}
@media (max-width: 880px) { .subsidy__inner { grid-template-columns: 1fr; gap: var(--s-3); text-align: left; } }
.subsidy__amount {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 5rem);
  color: var(--c-orange);
  line-height: 1;
  letter-spacing: -0.045em;
}
.subsidy__amount sup { font-size: 0.45em; vertical-align: top; margin-left: 0.1em; color: var(--c-white); }
.subsidy h2 { margin-bottom: 0.25rem; color: var(--c-white); }
.subsidy p { color: rgba(255, 255, 255, 0.88); font-size: 1.125rem; max-width: 55ch; }

/* ---------- Testimonials / Google ---------- */
.reviews { background: var(--c-white); }
.reviews__head {
  display: flex; flex-direction: column;
  align-items: center; gap: var(--s-3);
  text-align: center;
  margin-bottom: var(--s-5);
}
.google-card {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-1);
}
.google-card__logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex; gap: 1px;
}
.google-card__logo span:nth-child(1) { color: #4285f4; }
.google-card__logo span:nth-child(2) { color: #ea4335; }
.google-card__logo span:nth-child(3) { color: #fbbc05; }
.google-card__logo span:nth-child(4) { color: #4285f4; }
.google-card__logo span:nth-child(5) { color: #34a853; }
.google-card__logo span:nth-child(6) { color: #ea4335; }
.google-card__stars { color: #f5a623; letter-spacing: 1.5px; font-size: 1.25rem; }
.google-card__score { font-weight: 700; color: var(--c-ink); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 880px) { .reviews__grid { grid-template-columns: 1fr; } }
.review {
  background: var(--c-surface);
  border-radius: var(--r-3);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.review__stars { color: #f5a623; letter-spacing: 1.5px; font-size: 1.125rem; }
.review p { font-size: 1.0625rem; color: var(--c-text); margin: 0; max-width: none; }
.review__author { font-weight: 600; font-size: 1rem; color: var(--c-muted); margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { background: var(--c-surface); }
.faq__list { display: grid; gap: var(--s-2); margin-top: var(--s-4); }
details.faq__item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-2);
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
details.faq__item[open] { border-color: var(--c-orange); box-shadow: var(--sh-1); }
.faq__item summary {
  cursor: pointer;
  padding: var(--s-3) var(--s-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--c-ink);
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: var(--r-pill);
  background: var(--c-orange-50);
  color: var(--c-orange);
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out);
}
.faq__item[open] summary::after {
  content: "−";
  background: var(--c-orange);
  color: var(--c-white);
  transform: rotate(180deg);
}
.faq__item summary:hover { background: var(--c-orange-50); }
.faq__body {
  padding: 0 var(--s-4) var(--s-3);
  color: var(--c-text);
}
.faq__body p { max-width: 70ch; }

/* ---------- Kontaktformular ---------- */
.contact { background: var(--c-white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-6);
  align-items: start;
}
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; gap: var(--s-4); } }

.contact__intro h2 { margin-bottom: var(--s-3); }
.contact__intro p { color: var(--c-muted); margin-bottom: var(--s-3); }
.contact__quick {
  background: var(--c-surface);
  border-radius: var(--r-3);
  padding: var(--s-4);
  display: grid;
  gap: var(--s-2);
}
.contact__quick a { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; padding: 0.5rem 0; font-weight: 600; color: var(--c-ink); }
.contact__quick a:hover { color: var(--c-orange); }
.contact__quick .ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--c-orange-50); color: var(--c-orange);
  border-radius: var(--r-2);
}

.form {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-3);
  padding: clamp(var(--s-3), 4vw, var(--s-5));
  box-shadow: var(--sh-1);
  display: grid;
  gap: var(--s-3);
}
.form__row { display: grid; gap: var(--s-3); }
.form__row--two { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form__row--two { grid-template-columns: 1fr; } }

.field { display: grid; gap: 0.4375rem; }
.field label, .fieldset legend {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-ink);
}
.field label .required { color: var(--c-orange); margin-left: 2px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1.0625rem;
  background: var(--c-white);
  border: 1.5px solid var(--c-line-strong);
  border-radius: var(--r-2);
  color: var(--c-ink);
  transition: border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
  min-height: 52px;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--c-orange);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(234, 106, 30, 0.15);
}
.field input:user-invalid,
.field input[aria-invalid="true"],
.field textarea:user-invalid,
.field textarea[aria-invalid="true"] {
  border-color: var(--c-danger);
  background: #fff4f3;
}
.field__error {
  font-size: 0.9375rem;
  color: var(--c-danger);
  font-weight: 500;
  display: none;
}
.field--error .field__error { display: block; }

.fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.625rem;
}
.fieldset legend { padding: 0; margin-bottom: 0.25rem; }
.radio-group, .check-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.radio-pill, .check-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.125rem;
  border: 1.5px solid var(--c-line-strong);
  border-radius: var(--r-pill);
  background: var(--c-white);
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--t-fast) var(--ease-out);
  min-height: 48px;
  color: var(--c-text);
}
.radio-pill input, .check-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-pill:hover, .check-pill:hover {
  border-color: var(--c-ink);
}
.radio-pill:has(input:checked),
.check-pill:has(input:checked) {
  background: var(--c-orange);
  color: var(--c-white);
  border-color: var(--c-orange);
}
.radio-pill:focus-within,
.check-pill:focus-within {
  box-shadow: 0 0 0 4px rgba(234, 106, 30, 0.2);
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.625rem;
  align-items: start;
  font-size: 0.9375rem;
  color: var(--c-muted);
  cursor: pointer;
}
.checkbox input {
  width: 20px; height: 20px;
  margin-top: 3px;
  accent-color: var(--c-orange);
}
.checkbox a { color: var(--c-orange); }

.form__submit { display: flex; flex-direction: column; gap: 0.5rem; align-items: stretch; }
.form__hint { font-size: 0.9375rem; color: var(--c-muted); text-align: center; }
.form__status[data-state="success"] {
  background: #e8f4ea;
  border: 1px solid #93c79d;
  color: var(--c-success);
  border-radius: var(--r-2);
  padding: var(--s-3);
  font-weight: 600;
  display: block;
}
.form__status[data-state="error"] {
  background: #fdecea;
  border: 1px solid #f1948b;
  color: var(--c-danger);
  border-radius: var(--r-2);
  padding: var(--s-3);
  display: block;
}
.form__status[data-state="pending"] {
  background: #eef2f6;
  border: 1px solid #c5d0db;
  color: var(--c-iron-deep, #344);
  border-radius: var(--r-2);
  padding: var(--s-3);
  font-weight: 600;
  display: block;
}
.form__status { display: none; }

/* ---------- Förderung-Seite spezifisch ---------- */
.notice {
  background: var(--c-warn-bg);
  border: 1px solid var(--c-warn-line);
  border-radius: var(--r-3);
  padding: var(--s-4);
  margin-bottom: var(--s-5);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: start;
}
.notice__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--c-warn-line);
  color: var(--c-white);
  border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 800;
  flex-shrink: 0;
}
.notice h3 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--c-ink); }
.notice p { font-size: 1rem; color: var(--c-text); max-width: none; }

.downloads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-4);
}
@media (max-width: 880px) { .downloads { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .downloads { grid-template-columns: 1fr; } }
.download {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-2);
  padding: var(--s-3);
  text-decoration: none;
  color: var(--c-ink);
  transition: border-color var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.download:hover {
  border-color: var(--c-orange);
  transform: translateY(-1px);
  box-shadow: var(--sh-1);
  color: var(--c-ink);
}
.download:active { transform: scale(0.98); }
.download__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-2);
  background: var(--c-orange-50);
  color: var(--c-orange);
  font-family: var(--f-display); font-weight: 700; font-size: 0.75rem;
  flex-shrink: 0;
}
.download__name { font-family: var(--f-display); font-weight: 600; line-height: 1.2; }
.download__sub { font-size: 0.875rem; color: var(--c-muted); }

.steps-list { counter-reset: stp; display: grid; gap: var(--s-3); margin-top: var(--s-4); padding: 0; }
.steps-list li {
  counter-increment: stp;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: start;
  padding: var(--s-3) var(--s-4);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-2);
}
.steps-list li::before {
  content: counter(stp);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.375rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--c-orange);
  color: var(--c-white);
  border-radius: var(--r-pill);
  line-height: 1;
}
.steps-list h4 { font-family: var(--f-display); font-size: 1.0625rem; margin-bottom: 0.25rem; color: var(--c-ink); }
.steps-list p { color: var(--c-muted); font-size: 1rem; max-width: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-ink);
  color: var(--c-white);
  padding-block: var(--s-6) var(--s-4);
}
.site-footer a { color: var(--c-white); text-decoration: none; opacity: 0.85; transition: opacity var(--t-fast) var(--ease-out); }
.site-footer a:hover { color: var(--c-orange); opacity: 1; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}
@media (max-width: 720px) { .site-footer__grid { grid-template-columns: 1fr; gap: var(--s-4); } }
.site-footer h4 {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: var(--s-2);
  font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.site-footer__brand .brand__name { color: var(--c-white); font-size: 1.375rem; }
.site-footer__brand .brand__name .accent { color: var(--c-orange); }
.site-footer__brand .brand__sub { color: rgba(255, 255, 255, 0.55); margin-bottom: var(--s-3); }
.site-footer__brand p { color: rgba(255, 255, 255, 0.7); max-width: 40ch; }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--s-3);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.site-footer__bottom ul { display: flex; gap: var(--s-3); }

/* ---------- Sub-Hero (Förderung) ---------- */
.sub-hero {
  background: linear-gradient(160deg, var(--c-blue) 0%, var(--c-blue-700) 100%);
  color: var(--c-white);
  padding-block: var(--s-7) var(--s-6);
  position: relative;
  overflow: hidden;
}
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 90% 20%, rgba(234, 106, 30, 0.22), transparent 70%);
  pointer-events: none;
}
.sub-hero h1 { color: var(--c-white); margin-bottom: var(--s-2); }
.sub-hero p { color: rgba(255, 255, 255, 0.88); font-size: var(--fs-lead); max-width: 60ch; }
.sub-hero .eyebrow { color: var(--c-orange-100); }
.sub-hero__inner { position: relative; z-index: 1; }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
  .reveal.is-in:nth-child(1) { transition-delay: 0ms; }
  .reveal.is-in:nth-child(2) { transition-delay: 60ms; }
  .reveal.is-in:nth-child(3) { transition-delay: 120ms; }
  .reveal.is-in:nth-child(4) { transition-delay: 180ms; }
}

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

/* ---------- Zusatz-Komponenten (v2 Sektionen) ---------- */
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr !important; gap: var(--s-3) !important; }
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
@media (max-width: 980px) { .materials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .materials-grid { grid-template-columns: 1fr; } }
.material {
  background: var(--c-surface);
  border-radius: var(--r-3);
  padding: var(--s-4);
  border-top: 4px solid var(--c-orange);
}
.material h3 { font-size: 1.25rem; color: var(--c-ink); margin-bottom: var(--s-2); }
.material p { color: var(--c-text); font-size: 1rem; max-width: none; margin-bottom: var(--s-2); }
.material__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.375rem;
  margin-top: var(--s-2);
}
.material__list li {
  display: flex;
  gap: 0.5rem;
  font-size: 1rem;
}
.material__list li::before {
  content: "✓";
  color: var(--c-orange);
  font-weight: 700;
}

.importance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
@media (max-width: 880px) { .importance-grid { grid-template-columns: 1fr; } }
.importance-card {
  background: var(--c-white);
  border-radius: var(--r-3);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.importance-card--private { border-top: 6px solid var(--c-orange); }
.importance-card--public { border-top: 6px solid var(--c-blue); }
.importance-card__tag {
  font-family: var(--f-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0;
}
.importance-card--private .importance-card__tag { color: var(--c-orange); }
.importance-card--public .importance-card__tag { color: var(--c-blue); }
.importance-card h3 { color: var(--c-ink); margin-bottom: var(--s-2); }
.importance-card p { color: var(--c-text); max-width: none; }
.importance-card__fact {
  background: var(--c-orange-50);
  border-radius: var(--r-2);
  padding: var(--s-3);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: start;
  margin-block: var(--s-2);
}
.importance-card__fact-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--c-orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.importance-card__fact p { font-size: 0.9375rem; color: var(--c-text); }
.importance-card__list {
  margin: var(--s-2) 0;
  padding-left: 1.5rem;
  display: grid;
  gap: 0.5rem;
}
.importance-card__list li {
  color: var(--c-text);
}
.importance-card__list li::marker { color: var(--c-blue); font-weight: 700; }
.importance-claim {
  margin-top: var(--s-4);
  text-align: center;
  font-size: var(--fs-lead);
  color: var(--c-ink);
  max-width: 60ch;
  margin-inline: auto;
}

.plain-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  margin-block: var(--s-3);
}
.plain-list li {
  padding: 0.75rem 1rem;
  background: var(--c-surface);
  border-left: 3px solid var(--c-orange);
  border-radius: var(--r-1);
  font-size: 1.0625rem;
}

.callout {
  background: var(--c-blue-50);
  border: 1px solid var(--c-blue-100);
  border-left: 4px solid var(--c-blue);
  border-radius: var(--r-2);
  padding: var(--s-3) var(--s-4);
  margin-top: var(--s-4);
  color: var(--c-text);
}
.callout strong { display: block; color: var(--c-blue-700); margin-bottom: 0.25rem; font-family: var(--f-display); }

.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;
}

/* ---------- Hero-Art als echtes Foto ---------- */
.hero__art--photo {
  background: var(--c-surface);
  display: block;
}
.hero__art--photo::before { display: none; }
.hero__art__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ---------- Galerie / Unsere Arbeiten ---------- */
.gallery__grid {
  columns: 3;
  column-gap: var(--s-3);
}
@media (max-width: 880px) { .gallery__grid { columns: 2; } }
@media (max-width: 540px) { .gallery__grid { columns: 1; } }

.gallery__item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: var(--s-3);
  border-radius: var(--r-3);
  overflow: hidden;
  box-shadow: var(--sh-1);
  background: var(--c-white);
  text-decoration: none;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--t-slow) var(--ease-out);
}
.gallery__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s-4) var(--s-3) var(--s-2);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--c-white);
  background: linear-gradient(to top, rgba(21, 24, 29, 0.78), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .gallery__item:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
  .gallery__item:hover img { transform: scale(1.04); }
  .gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }
}
/* Touch-Geräte: Bildunterschrift dauerhaft sichtbar */
@media (hover: none) {
  .gallery__cap { opacity: 1; transform: none; }
}
