/* ============================================================
   components.css — generische, wiederverwendbare UI-Komponenten
   Referenziert ausschliesslich semantische Tokens (Schicht 2).

   SIGNATUR-ABWEICHUNG (gegen generischen KI-Look), projektweit konsistent:
   1. "Feldlinie" — terrakotta Vermessungs-Tick unter jedem Section-Kicker
      (.section-head__kicker), Anspielung auf den Landschafts-/Vermessungskontext.
   Karten-Radien sind bewusst an allen vier Ecken gleich (--radius-card).
   ============================================================ */

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 30px;
  border-radius: var(--radius-interactive);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--duration-fast), background-color var(--duration-fast), color var(--duration-fast);
  min-height: 44px;               /* Touch-Target-Pflicht */
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--cta { background: var(--color-cta); color: var(--color-cta-text); box-shadow: var(--shadow-lg); }
.btn--cta:hover { color: var(--color-cta-text); }

.btn--primary { background: var(--color-action); color: var(--color-action-text); }
.btn--primary:hover { color: var(--color-action-text); }

.btn--ghost-light {
  background: rgba(245, 240, 228, 0.1);
  border-color: rgba(245, 240, 228, 0.5);
  color: var(--color-text-on-dark);
}
.btn--ghost-light:hover { color: var(--color-text-on-dark); background: rgba(245, 240, 228, 0.18); }

.btn--outline {
  background: var(--color-white);
  border-color: var(--color-border-strong);
  color: var(--color-brand-primary);
}
.btn--outline:hover { color: var(--color-brand-primary); border-color: var(--color-forest-300); }

.btn--sm { font-size: 14px; padding: 11px 20px; }

.btn--full { width: 100%; }

/* Ladezustand (Formular-Absenden) */
.btn__spinner {
  width: 15px; height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: currentColor;
  border-radius: 50%;
  display: none;
  animation: lv-spin 700ms linear infinite;
}
.btn[data-loading="true"] { cursor: default; opacity: 0.9; }
.btn[data-loading="true"] .btn__spinner { display: inline-block; }
@keyframes lv-spin { to { transform: rotate(360deg); } }

/* Textlink mit Unterstrich-Akzent (z. B. "Alle Leistungen →") */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-brand-primary);
  border-bottom: 2px solid var(--color-forest-200);
  padding-bottom: 4px;
}
.link-more:hover { color: var(--color-link-hover); }

/* ===================== BADGE / PILL ===================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: var(--radius-interactive);
}
.badge--hero {
  background: rgba(245, 240, 228, 0.12);
  border: 1px solid rgba(245, 240, 228, 0.25);
  color: var(--color-text-on-dark);
}
.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-forest-300);
  flex-shrink: 0;
}

/* Region-Chip */
.chip {
  background: var(--color-forest-100);
  border: 1px solid var(--color-forest-200);
  color: var(--color-brand-primary);
  font-weight: 600;
  font-size: 15px;
  padding: 9px 16px;
  border-radius: var(--radius-interactive);
}

/* ===================== SECTION-HEAD (Kicker + Titel) ===================== */
.section-head { max-width: 640px; margin-bottom: var(--space-8);}
.section-head--center { max-width: 720px; margin-inline: auto; text-align: center; }
/* Im Row-Layout kein zusaetzlicher Abstand am inneren Kopf/Titel (haelt Zeile buendig) */
.section-head--row > .section-head { margin-bottom: 0; }
.section-head--row .section-head__title { margin-bottom: 0; }

.section-head__kicker {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--color-terracotta-500);
  margin-bottom: var(--space-3);
  display: inline-block;
  position: relative;
}
/* SIGNATUR 1: "Feldlinie" — Vermessungs-Tick unter dem Kicker */
.section-head__kicker::after {
  content: "";
  display: block;
  margin-top: 8px;
  width: 46px;
  height: 3px;
  background:
    linear-gradient(var(--color-terracotta-500), var(--color-terracotta-500)) left / 22px 3px no-repeat,
    linear-gradient(var(--color-terracotta-500), var(--color-terracotta-500)) left / 40px 1px no-repeat;
  background-position: left center, left center;
}
.section-head--center .section-head__kicker::after { margin-inline: auto; }
.section-head__kicker--light { color: var(--color-forest-300); }
.section-head__kicker--amber { color: var(--color-brand-accent); }

.section-head__title {
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.05;
  margin-bottom: var(--space-5);
}
.section-head__title--sm { font-size: clamp(28px, 4vw, 40px); }

.section-head__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

/* Titel auf dunklen Sektionen hell einfaerben (sonst erzwingt die Basisregel dunkle Tinte) */
.section--inverse .section-head__title { color: var(--color-text-on-dark); }

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  max-width: none;
  margin-bottom: var(--space-9);
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 228, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-sand-300);
  transition: background-color var(--duration-base), box-shadow var(--duration-base);
}
.site-header[data-scrolled="true"] {
  background: rgba(245, 240, 228, 0.98);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 0 var(--space-content-x);
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  transition: height var(--duration-base) var(--ease-out-soft);
}
.site-header[data-scrolled="true"] .site-header__inner { height: 64px; }
.site-header__logo img { height: 48px; width: auto; transition: height var(--duration-base) var(--ease-out-soft); }
.site-header[data-scrolled="true"] .site-header__logo img { height: 40px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-desktop__link {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-ink-700);
}
.nav-desktop__link:hover { color: var(--color-link-hover); }
.nav-desktop__link[aria-current="page"] {
  font-weight: 700;
  color: var(--color-brand-primary);
}
.nav-desktop__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-brand-primary);
  padding-left: var(--space-2);
  border-left: 1px solid var(--color-sand-300);
}
.nav-desktop__phone:hover { color: var(--color-link-hover); }

.nav-mobile__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) 4px;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-brand-primary);
  border-bottom: 1px solid var(--color-sand-200);
  min-height: 44px;
}

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--color-sand-500);
  border-radius: var(--radius-sm);
  width: 46px; height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-primary);
}

.nav-mobile {
  border-top: 1px solid var(--color-sand-300);
  padding: var(--space-3) var(--space-content-x) var(--space-5);
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--color-surface-page);
}
.nav-mobile[data-open="true"] { display: flex; }
.nav-mobile__link {
  padding: var(--space-3) 4px;
  font-weight: 600;
  color: var(--color-ink-700);
  border-bottom: 1px solid var(--color-sand-200);
  min-height: 44px;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ===================== HERO ===================== */
.hero { position: relative; background: var(--color-surface-inverse); overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-slow) ease-in-out;
}
/* <picture> ist inline und ohne eigene Hoehe; ohne dieses Stretching greift
   height:100% am Bild nicht und der Hero zeigt unterhalb des 16:9-Bildes
   gruenen Grund — auf schmalen Viewports je nach Textumbruch unterschiedlich viel. */
.hero__slide picture { position: absolute; inset: 0; display: block; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; transform-origin: center; }
/* Ken-Burns-Drift: langsames Heranzoomen des jeweils aktiven Bildes */
.hero__slide[data-active="true"] { opacity: 1; }
.hero__slide[data-active="true"] img { animation: lv-kenburns var(--duration-kenburns) ease-out forwards; }
@keyframes lv-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,44,30,0.60) 0%, rgba(24,50,34,0.74) 55%, rgba(20,40,28,0.92) 100%);
}
.hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px var(--space-content-x) 104px;
  text-align: center;
  color: var(--color-text-on-dark);
}
.hero__logo { width: min(520px, 80vw); height: auto; margin: 0 auto var(--space-6); }
.hero__title {
  font-weight: 700;
  font-size: clamp(26px, 4.2vw, 44px);
  margin: var(--space-2) 0 var(--space-5);
  color: var(--color-text-on-dark);
}
.hero__lead {
  max-width: 620px;
  margin: 0 auto var(--space-8);
  font-size: clamp(16px, 2vw, 19px);
  color: var(--color-mist-100);
}
.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.hero__dots {
  display: flex;
  gap: 11px;
  justify-content: center;
  margin-top: var(--space-9);
}
.hero__dot {
  position: relative;
  width: 10px; height: 10px;
  border-radius: var(--radius-interactive);
  border: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: width var(--duration-base), background-color var(--duration-base);
  background: rgba(245, 240, 228, 0.45);
}
.hero__dot[data-active="true"] { width: 30px; background: var(--color-brand-accent); }
/* Fortschrittsanzeige: fuellt sich waehrend der Standzeit des aktiven Bildes */
.hero__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 45, 32, 0.35);
  transform: scaleX(0);
  transform-origin: left;
}
.hero__dot[data-active="true"]::after {
  animation: lv-dot-progress var(--duration-slide) linear forwards;
}
@keyframes lv-dot-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Scroll-Hinweis */
.hero__scroll-hint {
  position: absolute;
  left: 50%;
  bottom: var(--space-6);
  transform: translateX(-50%);
  display: inline-flex;
  color: var(--color-text-on-dark);
  opacity: 0.75;
  animation: lv-scroll-hint 2000ms ease-in-out infinite;
}
.hero__scroll-hint:hover,
.hero__scroll-hint:focus-visible { opacity: 1; }
.hero__scroll-hint svg { transform: rotate(90deg); }
@keyframes lv-scroll-hint {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* Kleiner Seiten-Hero (Unterseiten) */
.page-hero { position: relative; background: var(--color-surface-inverse); }
.page-hero__bg { position: absolute; inset: 0; opacity: 0.5; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,44,30,0.55) 0%, rgba(20,40,28,0.88) 100%);
}
.page-hero__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 90px var(--space-content-x) 70px;
  text-align: center;
  color: var(--color-text-on-dark);
}
.page-hero__title {
  font-weight: 800;
  font-size: clamp(30px, 5vw, 50px);
  margin: 0 0 var(--space-5);
  color: var(--color-text-on-dark);
}
.page-hero__lead {
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--color-mist-100);
}

/* ===================== TRUST-STRIP ===================== */
/* Grid statt Flex-Wrap: Trennpunkte haengen als ::before am jeweils
   folgenden Item, nie als eigenstaendiges Element zwischen den Zeilen.
   2 Spalten (immer max. 2 Zeilen bei 4 Items) mit gemeinsamen Spalten-
   kanten, damit Zeile 2 buendig unter Zeile 1 beginnt; ab 1100px passt
   eine einzeilige 4-Spalten-Reihe. */
.trust-strip { background: var(--color-surface-strip); color: var(--color-forest-100); }
.trust-strip__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 22px var(--space-content-x);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 10px;
  justify-items: start;
  font-size: 15px;
  font-weight: 500;
}
.trust-strip__item { display: inline-flex; align-items: center; gap: var(--space-2); }
.trust-strip__item:not(:first-child)::before { content: "·"; opacity: 0.4; margin-inline-end: 20px; }
.trust-strip__item:nth-child(3)::before { content: none; }

@media (min-width: 1100px) {
  .trust-strip__inner {
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
  }
  .trust-strip__item:not(:first-child)::before { margin-inline-end: 32px; }
  .trust-strip__item:nth-child(3)::before { content: "·"; }
}

/* ===================== CARD (Basis) ===================== */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  /* Einheitlicher Radius an allen vier Ecken — gleiche Rundung wie .form-card,
     .cta-band und alle uebrigen Flaechen. */
  border-radius: var(--radius-card);
  padding: var(--space-6) var(--space-5);
}
.card--flush { padding: 0; overflow: hidden; }

/* Service-Karte (kompakt, Startseite und Leistungsseite).
   CSS Grid mit fester, immer GERADER Spaltenzahl (4 -> 2 -> 1). Dadurch bleiben
   alle Karten exakt gleich breit und es entsteht nie eine ungerade Rest-Zeile
   (z.B. 3 Karten oben, 1 unten). Eine einzelne Spalte gibt es nur ganz schmal,
   wenn ohnehin nur noch eine Karte pro Zeile passt.
   Breakpoints aus Karten-Mindestbreite 230px + Gap 16px + Seitenrand 32px:
   4 Karten brauchen ~1032px Viewport, darunter 2 Karten. */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.service-card {
  min-width: 0;
  transition: transform var(--duration-fast), box-shadow var(--duration-fast), border-color var(--duration-fast);
}
@media (max-width: 1040px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Verwaiste letzte Zeile: stehen im 4-spaltigen Layout genau zwei Karten
   allein in der letzten Zeile, werden sie mittig unter die beiden inneren
   Spalten (2 & 3) gesetzt statt links auszurichten. Auf das 4-Spalten-Layout
   beschränkt, damit die 2-spaltige Ansicht darunter unberührt bleibt. */
@media (min-width: 1041px) {
  .service-grid > .card:nth-child(4n+1):nth-last-child(2) {
    grid-column: 2;
  }
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-forest-200);
}
.icon-badge {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  background: var(--color-forest-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: transform var(--duration-fast) var(--ease-out-soft);
}
.service-card:hover .icon-badge { transform: scale(1.08); }
.icon-badge--lg { width: 66px; height: 66px; border-radius: 15px; margin-bottom: var(--space-5); }
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 var(--space-2);
  color: var(--color-text);
  min-height: 2.2em;
}
.card__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===================== REVIEW-CARD ===================== */
.reviews-head { text-align: center; margin-bottom: var(--space-9); }
.reviews-head__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: 14px;
}
.reviews-head__brand { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--color-ink-700); }
.stars { display: inline-flex; gap: 2px; }

.card-grid-fit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5);
}
.card-grid-fit > * {
  flex: 0 1 280px;
  min-width: 0;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-7);
}
.review-card__quote { margin: 0; font-size: 16px; line-height: 1.6; color: var(--color-ink-700); }
.review-card__foot { display: flex; align-items: center; gap: var(--space-3); margin-top: auto; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-brand-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.review-card__name { display: block; font-weight: 700; font-size: 15px; color: var(--color-text); }
.review-card__meta { display: block; font-size: 13px; color: var(--color-text-subtle); }

.note {
  text-align: center;
  margin-top: var(--space-7);
  font-size: 13px;
  color: var(--color-text-subtle);
  font-style: italic;
}
.note--left { text-align: left; margin-top: var(--space-6); }

/* ===================== ABLAUF (Zeitachse) =====================
   Bewusst KEIN umbrechendes Kartenraster: ab 1100px liegen alle sechs Schritte
   in einer durchgehenden waagerechten Zeitachse, darunter untereinander in einer
   senkrechten. Beide Formen sind einzeilig bzw. einspaltig -- eine angebrochene
   letzte Zeile mit weniger Elementen kann damit gar nicht entstehen.
   Die Verbindungslinie waechst beim Einblenden Schritt fuer Schritt mit
   (Fortschrittsverbesserung; ohne JS ist sie sofort vollstaendig gezeichnet). */
.process {
  --process-marker: 56px;
  --process-gap: var(--space-6);
  list-style: none;
  display: grid;
  gap: var(--process-gap);
  margin: 0 0 var(--space-9);
  padding: 0;
  max-width: 760px;
}
.process__step {
  position: relative;
  display: grid;
  grid-template-columns: var(--process-marker) 1fr;
  gap: var(--space-5);
  align-items: start;
  align-content: start;
}

/* Durchgehende Verbindungslinie von Kreismitte zu Kreismitte (senkrecht).
   Sie laeuft hinter dem naechsten Kreis durch, der sie mit z-index verdeckt. */
.process__step::before {
  content: "";
  position: absolute;
  left: calc(var(--process-marker) / 2 - 1.5px);
  top: calc(var(--process-marker) / 2);
  bottom: calc(-1 * (var(--process-gap) + var(--process-marker) / 2));
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(var(--color-forest-200), var(--color-forest-600));
  transform-origin: top center;
  transition: transform 520ms var(--ease-out-soft);
}
.process__step:last-child::before { content: none; }

/* Ohne aktives Scroll-Reveal bleibt die Linie durchgezogen sichtbar. */
[data-reveal-ready="on"] .process__step::before { transform: scaleY(0); }
[data-reveal-ready="on"] .process[data-reveal="in"] .process__step::before { transform: scaleY(1); }
.process__step:nth-child(1)::before { transition-delay: 140ms; }
.process__step:nth-child(2)::before { transition-delay: 200ms; }
.process__step:nth-child(3)::before { transition-delay: 260ms; }
.process__step:nth-child(4)::before { transition-delay: 320ms; }
.process__step:nth-child(5)::before { transition-delay: 380ms; }

/* Nummernkreis auf der Linie */
.process__marker {
  position: relative;
  z-index: 1;
  width: var(--process-marker);
  height: var(--process-marker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-forest-100);
  border: 2px solid var(--color-forest-200);
  color: var(--color-forest-700);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  line-height: 1;
  transition: transform var(--duration-base) var(--ease-out-soft),
              background-color var(--duration-base) var(--ease-out-soft),
              border-color var(--duration-base) var(--ease-out-soft),
              box-shadow var(--duration-base) var(--ease-out-soft);
}
/* Letzter Schritt = erreichtes Ziel: Akzentfarbe statt Nummer */
.process__step--goal .process__marker {
  background: var(--color-brand-accent);
  border-color: var(--color-brand-accent);
  color: var(--color-cta-text);
}
.process__step:hover .process__marker {
  transform: scale(1.08);
  background: var(--color-forest-600);
  border-color: var(--color-forest-600);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.process__step--goal:hover .process__marker {
  background: var(--color-brand-accent);
  border-color: var(--color-brand-accent);
  color: var(--color-cta-text);
}

.process__body { padding-top: 13px; }
.process__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  margin: 0 0 var(--space-2);
  color: var(--color-text);
  transition: color var(--duration-fast);
}
.process__step:hover .process__title { color: var(--color-forest-700); }
.process__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
  text-wrap: pretty;
}

/* Ab hier tragen alle sechs Schritte nebeneinander (eine einzige Reihe). */
@media (min-width: 1100px) {
  .process {
    --process-gap: var(--space-5);
    grid-template-columns: repeat(6, 1fr);
    max-width: none;
  }
  .process__step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: var(--space-4);
  }
  .process__step::before {
    left: 50%;
    right: calc(-50% - var(--process-gap));
    top: calc(var(--process-marker) / 2 - 1.5px);
    bottom: auto;
    width: auto;
    height: 3px;
    background: linear-gradient(90deg, var(--color-forest-200), var(--color-forest-600));
    transform-origin: left center;
  }
  [data-reveal-ready="on"] .process__step::before { transform: scaleX(0); }
  [data-reveal-ready="on"] .process[data-reveal="in"] .process__step::before { transform: scaleX(1); }
  .process__body { padding-top: 0; }
}

/* CTA-Band */
.cta-band {
  background: var(--color-surface-inverse);
  border-radius: var(--radius-card);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  color: var(--color-text-on-dark);
}
.cta-band__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--color-text-on-dark); margin: 0 0 6px; }
.cta-band__text { margin: 0; color: var(--color-mist-200); font-size: 16px; }
.cta-band .btn { white-space: nowrap; }

/* ===================== SPLIT (Team / Gebiet / Feature-Row) ===================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--form { gap: var(--space-9); }
/* Eigenstaendiges Grid (wird ohne .split verwendet, braucht daher display:grid selbst) */
.split--contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-9);
  align-items: stretch;
}
.contact-list .photo-frame--feature { flex: 1 1 auto; height: auto; min-height: 240px; }

/* Startseite: Kontakt-Ueberschrift steht ueber der linken Spalte allein in Reihe 1;
   Kartenliste und Formular teilen sich Reihe 2 und werden gemeinsam gestreckt. */
.split--contact-home {
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  row-gap: var(--space-5);
  column-gap: var(--space-9);
}
.split--contact-home .contact-heading { grid-column: 1; grid-row: 1; }
.split--contact-home .contact-list { grid-column: 1; grid-row: 2; }
.split--contact-home .form-card { grid-column: 2; grid-row: 2; }

.stat-row { display: flex; gap: 36px; flex-wrap: wrap; margin-top: var(--space-7); }
.stat__num { font-family: var(--font-display); font-weight: 900; font-size: 38px; color: var(--color-forest-300); line-height: 1; }
.stat__label { font-size: 14px; color: var(--color-mist-200); margin-top: 4px; }

.prose-inverse, .prose { margin-top: var(--space-5); }
.prose-inverse p, .prose p { font-size: 17px; line-height: 1.7; margin-bottom: var(--space-4); }
.prose-inverse p:last-child, .prose p:last-child { margin-bottom: 0; }
.prose-inverse p { color: var(--color-mist-100); }
.prose-inverse strong { color: var(--color-text-on-dark); }
.prose p { color: var(--color-ink-700); }

.photo-duo {
  display: grid;
  grid-template-rows: 1.3fr 1fr;
  gap: var(--space-4);
  height: 460px;
}
.photo-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.photo-frame--bordered { border: 1px solid var(--color-border); }
.photo-frame--tall { height: 400px; }

/* Zwei-Klick-Karte: Platzhalter, solange kein Drittanbieter geladen wurde */
.photo-frame lv-map { display: block; width: 100%; height: 100%; }
.map-consent {
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-6);
  text-align: center;
  background: var(--color-surface-alt, var(--color-surface));
}
.map-consent__icon { display: inline-flex; }
.map-consent__title { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 0; color: var(--color-text); }
.map-consent__text { font-size: 13px; line-height: 1.6; max-width: 46ch; margin: 0; color: var(--color-text-muted); }
.map-consent__alt { font-size: 13px; color: var(--color-text-muted); text-decoration: underline; }

.chips { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }

/* Feature-Row (Leistungen-Detailseite) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
  margin-bottom: 72px;
}
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row--reverse .feature-row__body { order: 1; }
.feature-row__title { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin: 0 0 var(--space-3); color: var(--color-text); }
.feature-row__desc { font-size: 16px; line-height: 1.65; color: var(--color-text-muted); margin: 0 0 var(--space-5); }
.bullet-list { display: flex; flex-direction: column; gap: var(--space-3); }
.bullet {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: 15px;
  color: var(--color-ink-700);
}
.bullet__mark { margin-top: 3px; flex-shrink: 0; }
.photo-frame--feature { height: 340px; }

/* ===================== KONTAKT-KARTEN ===================== */
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  color: var(--color-text);
}
.contact-item:hover { color: var(--color-text); }
.contact-item__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--color-forest-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__label { display: block; font-size: 13px; color: var(--color-text-subtle); }
.contact-item__value { display: block; font-weight: 700; color: var(--color-text); }

/* ===================== ANFRAGE-ASSISTENT (3 Schritte) ===================== */
/* Ohne JS fehlt die Klasse .form--wizard: dann sind alle Schritte gleichzeitig
   sichtbar, Fortschrittsanzeige und Navigation bleiben per [hidden] verborgen
   und das Formular ist ein ganz normales Formular (siehe js/contact-form.js). */

/* Fortschrittsanzeige */
.wizard-progress {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  margin: 0 0 var(--space-2);
  padding: 0;
}
.wizard-progress[hidden] { display: none; }
.wizard-progress__step {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex: 1 1 0;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-subtle);
}
.wizard-progress__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border-strong);
  background: var(--color-white);
  font-size: 13px;
  transition: background-color var(--duration-fast), border-color var(--duration-fast), color var(--duration-fast);
}
.wizard-progress__label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wizard-progress__step[data-state="active"] { color: var(--color-forest-700); }
.wizard-progress__step[data-state="active"] .wizard-progress__num {
  background: var(--color-forest-600);
  border-color: var(--color-forest-600);
  color: var(--color-white);
}
.wizard-progress__step[data-state="done"] { color: var(--color-forest-700); }
.wizard-progress__step[data-state="done"] .wizard-progress__num {
  background: var(--color-forest-100);
  border-color: var(--color-forest-600);
  color: var(--color-forest-700);
}

/* Schritte */
.wizard-step { display: flex; flex-direction: column; gap: var(--space-4); }
.form--wizard .wizard-step { display: none; }
.form--wizard .wizard-step[data-active] {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
}
/* Ersatzfeld, das nur ohne JS gebraucht wird (Auswahl per <select> statt Chips). */
.form--wizard [data-wizard-fallback] { display: none; }

.wizard-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0;
  color: var(--color-text);
  /* Der Titel ist Fokusziel beim Schrittwechsel -- ohne fit-content zieht sich
     der Fokusrahmen als Block ueber die ganze Kartenbreite. */
  width: fit-content;
  max-width: 100%;
}
.wizard-step__title:focus { outline: none; }
.wizard-step__title:focus-visible { outline: 2px solid var(--color-focus-ring); outline-offset: 4px; }
.wizard-step__hint { margin: calc(var(--space-3) * -1) 0 0; font-size: 13px; line-height: 1.55; color: var(--color-text-muted); }
.wizard-error { margin: 0; font-size: 13px; font-weight: 700; color: #B03A2E; }
.wizard-error[hidden] { display: none; }

/* Navigation */
.wizard-nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-2);
}
.wizard-nav[hidden] { display: none; }
.wizard-nav__next { margin-left: auto; }
/* Hoehere Spezifitaet als .btn, damit [hidden] dessen display gewinnt. */
.btn[data-wizard-prev][hidden],
.btn[data-wizard-next][hidden] { display: none; }

.form-assist { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-1); }
.form-assist[hidden] { display: none; }
.form-assist__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink-700);
  margin-bottom: var(--space-2);
}
.option-group { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.option-chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 16px;
  min-height: 40px;
  border-radius: var(--radius-interactive);
  border: 1.5px solid var(--color-border-strong);
  background: var(--color-white);
  color: var(--color-ink-700);
  cursor: pointer;
  transition: background-color var(--duration-fast), border-color var(--duration-fast), color var(--duration-fast);
}
.option-chip:hover { border-color: var(--color-forest-300); }
.option-chip[aria-pressed="true"] {
  background: var(--color-forest-100);
  border-color: var(--color-forest-600);
  color: var(--color-forest-700);
}

/* ===================== FORMULAR ===================== */
.form-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 34px;
}
.form-card__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 var(--space-5); color: var(--color-text); }
.form { display: flex; flex-direction: column; gap: var(--space-4); flex: 1 1 auto; min-height: 0; }
.form[hidden] { display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: var(--color-ink-700); }
/* Nachrichten-Feld gleicht ueberschuessigen oder fehlenden Platz aus, wenn das Formular
   auf die Hoehe der Kontakt-Spalte gestreckt wird (siehe .split--contact-home). */
.field--grow { flex: 1 1 auto; min-height: 0; }
.field--grow textarea { flex: 1 1 auto; height: 100%; }
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-input);
  background: var(--color-white);
  color: var(--color-text);
  min-height: 44px;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible { border-color: var(--color-brand-primary); }
.field--invalid input,
.field--invalid textarea,
.field--invalid select { border-color: #C0392B; }

/* Honeypot-Feld: fuer Menschen unsichtbar, fuer Bots ausfuellbar */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
  font-weight: 400;
}
.consent input {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--color-action);
  flex-shrink: 0;
}

.form__hint { margin: 0; font-size: 12px; color: var(--color-text-subtle); text-align: center; }
/* Erklaerung unter dem vorbefuellten Nachrichtenfeld */
.field__hint { margin: 0; font-size: 12px; line-height: 1.5; font-weight: 400; color: var(--color-text-subtle); }

/* Statusmeldung (Erfolg/Fehler) nach Absenden */
.form-status {
  margin: 0;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-status[data-state="success"] { display: block; background: var(--color-forest-100); color: var(--color-forest-700); border: 1px solid var(--color-forest-200); }
.form-status[data-state="error"] { display: block; background: #FBEAE7; color: #B03A2E; border: 1px solid #E6B0AA; }
.form-status[data-state="sending"] { display: block; background: var(--color-sand-200); color: var(--color-ink-700); }

/* Erfolgskarte: ersetzt das Formular nach erfolgreichem Absenden */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-8) var(--space-4);
}
.form-success[hidden] { display: none; }
.form-success__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-forest-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 0; color: var(--color-text); }
.form-success__text { font-size: 15px; line-height: 1.6; color: var(--color-text-muted); margin: 0; max-width: 38ch; }
.form-success__phone { font-weight: 700; color: var(--color-brand-primary); }

/* ===================== REFERENZ-KARTE ===================== */
.ref-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5);
}
.ref-grid > * {
  flex: 0 1 280px;
  min-width: 0;
}
.ref-card {
  color: inherit;
  display: block;
  flex: 0 1 280px;
  min-width: 0;
  transition: transform var(--duration-fast), box-shadow var(--duration-fast), border-color var(--duration-fast);
}
.ref-card:hover,
.ref-card:focus-visible {
  color: inherit;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-forest-200);
}
.ref-card__cat {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-terracotta-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  transition: transform var(--duration-fast) var(--ease-out-soft);
}
.ref-card:hover .ref-card__cat,
.ref-card:focus-visible .ref-card__cat { transform: translateX(4px); }
.ref-card__title { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0; color: var(--color-text); min-height: 2.2em; }
.ref-card__media { position: relative; height: 220px; overflow: hidden; }
.ref-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-base) var(--ease-out-soft);
}
.ref-card:hover .ref-card__media img,
.ref-card:focus-visible .ref-card__media img { transform: scale(1.06); }
.ref-card__body { padding: var(--space-5) var(--space-6); }

/* ===================== FOTO-PLATZHALTER (leere Bild-Slots) ===================== */
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
  padding: var(--space-4);
  background:
    repeating-linear-gradient(45deg, var(--color-forest-100) 0 12px, var(--color-sand-100) 12px 24px);
  color: var(--color-brand-primary);
}
.photo-placeholder__label { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.photo-placeholder__hint { font-size: 12px; color: var(--color-text-subtle); font-style: italic; }
/* In Hero-Hintergruenden nur die Struktur zeigen, keine Beschriftung hinter dem Titel */
.page-hero__bg .photo-placeholder__label,
.page-hero__bg .photo-placeholder__hint { display: none; }

/* ===================== STICKY-CTA (mobil) ===================== */
lv-sticky-cta { display: contents; }
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-bar);
}
.sticky-cta[data-visible="true"] { display: flex; }
.sticky-cta .btn { flex: 1 1 0; }
@media (min-width: 768px) {
  .sticky-cta { display: none !important; }
}
@media (max-width: 767px) {
  body.has-sticky-cta { padding-bottom: 78px; }
}

/* ===================== FOOTER ===================== */
.site-footer { background: var(--color-surface-footer); color: var(--color-mist-200); }
.site-footer__grid {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 60px var(--space-content-x) 34px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-8);
}
.site-footer__logo img { height: 52px; width: auto; margin-bottom: var(--space-4); }
.site-footer__about { margin: 0; font-size: 15px; line-height: 1.6; max-width: 320px; color: var(--color-mist-300); }
.site-footer__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-on-dark);
  margin: 0 0 14px;
}
.site-footer__col-links { display: flex; flex-direction: column; gap: 9px; font-size: 15px; }
.site-footer a { color: var(--color-mist-200); }
.site-footer a:hover { color: var(--color-text-on-dark); }
.site-footer__muted { color: var(--color-mist-400); }
.site-footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.site-footer__bar-inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 20px var(--space-content-x);
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--color-mist-400);
}
.site-footer__legal { display: flex; gap: 18px; }
.site-footer__legal a { color: var(--color-mist-400); }

/* ===================== RECHTSTEXT-SEITEN (Impressum/Datenschutz) ===================== */
.legal { max-width: 820px; }
.legal h1 { font-weight: 800; font-size: clamp(28px, 4vw, 40px); margin-bottom: var(--space-6); }
.legal h2 { font-weight: 700; font-size: 22px; margin: var(--space-8) 0 var(--space-3); }
.legal p, .legal li { font-size: 16px; line-height: 1.7; color: var(--color-ink-700); }
.legal p { margin-bottom: var(--space-4); }
.legal ul { padding-left: var(--space-5); margin: 0 0 var(--space-4); }
.legal li { margin-bottom: var(--space-2); }
.placeholder-text {
  background: #FFF6E5;
  border: 1px dashed var(--color-brand-accent);
  color: #7A5A1E;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-style: normal;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .split, .feature-row { grid-template-columns: 1fr; gap: var(--space-8); }
  .feature-row--reverse .feature-row__media,
  .feature-row--reverse .feature-row__body { order: 0; }
  .photo-duo { height: auto; grid-template-rows: none; }
  .photo-frame { min-height: 240px; }
}
@media (max-width: 768px) {
  /* Kontakt-Layout bleibt zweispaltig, solange die Breite es zulaesst; erst hier umbrechen */
  .split--contact { grid-template-columns: 1fr; gap: var(--space-8); }
  .split--contact-home {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: var(--space-8);
  }
  .split--contact-home .contact-heading { grid-column: 1; grid-row: 1; }
  .split--contact-home .contact-list { grid-column: 1; grid-row: 2; }
  .split--contact-home .form-card { grid-column: 1; grid-row: 3; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 28px 24px; }
  .hero__inner { padding: 72px var(--space-content-x) 84px; }
}
@media (max-width: 560px) {
  /* Eine Karte pro Zeile: flacheres, rechteckigeres Format statt hoher Kacheln. */
  .service-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .service-grid > * { padding: var(--space-5); }
  .service-grid .card__title { min-height: 0; }
  .form-row { grid-template-columns: 1fr; }
  /* Auf schmalen Karten bleibt nur die Beschriftung des aktuellen Schritts stehen. */
  .wizard-progress { gap: var(--space-3); }
  .wizard-progress__step { flex: 0 0 auto; }
  .wizard-progress__step[data-state="active"] { flex: 1 1 auto; min-width: 0; }
  .wizard-progress__step:not([data-state="active"]) .wizard-progress__label { display: none; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FAQ — Akkordeon aus nativen <details>/<summary>.
   Kein JS: Auf-/Zuklappen übernimmt der Browser. Der Indikator
   ist ein reines CSS-Chevron, das im geöffneten Zustand rotiert.
   ============================================================ */
.faq {
  max-width: 820px;
  margin-inline: auto;
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq__item[open] {
  border-color: var(--color-forest-300);
}
.faq__q {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  transition: color var(--duration-fast) var(--ease-out-soft);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--color-forest-700); }
.faq__item[open] .faq__q { color: var(--color-forest-700); }
/* Chevron rechts, aus zwei Rahmenkanten gezeichnet. */
.faq__q::after {
  content: "";
  flex: 0 0 auto;
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transform-origin: 55% 55%;
  transition: transform var(--duration-base) var(--ease-out-soft);
}
.faq__item[open] .faq__q::after { transform: rotate(225deg); }
.faq__q:focus-visible {
  outline: 2px solid var(--color-forest-700);
  outline-offset: -3px;
  border-radius: var(--radius-card);
}
.faq__a {
  padding: 0 var(--space-6) var(--space-5);
}
.faq__a p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink-700);
  margin-bottom: var(--space-4);
}
.faq__a p:last-child { margin-bottom: 0; }
.faq__list {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq__list li {
  position: relative;
  padding-left: var(--space-6);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink-700);
}
.faq__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: var(--color-forest-600);
}
.faq__list strong { color: var(--color-text); }

@media (max-width: 560px) {
  .faq__q { padding: var(--space-4) var(--space-5); font-size: 16px; }
  .faq__a { padding: 0 var(--space-5) var(--space-4); }
}
