/* ==========================================================================
   Kling Garten- und Landschaftsbau, Bochum
   Ein Stylesheet, kein Build-Schritt.
   Reihenfolge: Schriften – Tokens – Basis – Buttons – Header – Hero –
   Sektionen – Karten – Listen – Zitate – Referenzen – CTA – Seitenkopf –
   Galerie – Kontakt – Footer – Rechtsseiten – Bewegung
   ========================================================================== */

/* ---- Schriften (selbst gehostet, DSGVO-konform: kein Google-CDN) ---------- */
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/nunito-sans-v19-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/nunito-sans-v19-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/nunito-sans-v19-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/montserrat-v31-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/montserrat-v31-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-v31-latin-600.woff2") format("woff2");
}

/* ---- Design-Tokens -------------------------------------------------------- */
:root {
  /* Grün aus dem Logo-Schriftzug. --gruen ist ein Akzentton und erreicht auf
     Weiß nur 3.95:1 – für Text und Buttons deshalb immer --gruen-tief. */
  --gruen: #4f8a3d;
  --gruen-tief: #2f5a27;
  --gruen-dunkel: #23451d;
  --gruen-wash: #eef3e7;
  --gruen-linie: #cfdcc3;

  /* Sandstein aus der Logo-Kachel – nur als Fläche und Akzentlinie */
  --sand: #d4b95f;
  --sand-wash: #f7f1de;

  --stein: #6b6f70;
  --ink: #23291f;
  --ink-soft: #5a6153;
  --papier: #fffefb;
  --creme: #f7f6f1;
  --line: #e3e0d5;

  --container: 74rem;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 40px -22px rgba(35, 41, 31, .45);
  --shadow-soft: 0 8px 22px -14px rgba(35, 41, 31, .35);

  --font-head: "Nunito Sans", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --font-akzent: "Montserrat", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--papier);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gruen-tief); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gruen); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .6em;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.05rem, 1.4rem + 2.6vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gruen-dunkel);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

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

.eyebrow {
  display: block;
  font-family: var(--font-akzent);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gruen-tief);
  margin-bottom: .7rem;
}

.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-akzent);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--gruen-tief); color: #fff; }
.btn-primary:hover { background: var(--gruen-dunkel); color: #fff; }

.btn-outline { background: transparent; color: var(--gruen-tief); border-color: var(--gruen-tief); }
.btn-outline:hover { background: var(--gruen-tief); color: #fff; }

.btn-light { background: #fff; color: var(--gruen-dunkel); }
.btn-light:hover { background: var(--sand-wash); color: var(--gruen-dunkel); }

.btn-light-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-light-outline:hover { background: #fff; color: var(--gruen-dunkel); border-color: #fff; }

/* ---- Header und Navigation ------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 254, 251, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 168px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a,
.nav-drop-btn {
  font-family: var(--font-akzent);
  font-weight: 500;
  font-size: .88rem;
  color: var(--ink);
  text-decoration: none;
  padding: .4rem 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.site-nav a:hover,
.nav-drop-btn:hover { color: var(--gruen-tief); }
.site-nav a[aria-current="page"] {
  color: var(--gruen-tief);
  box-shadow: inset 0 -2px 0 var(--sand);
}
.nav-drop-btn::after {
  content: "";
  width: .42em; height: .42em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 17rem;
  list-style: none;
  margin: 0;
  padding: .5rem;
  background: var(--papier);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: none;
}
.has-dropdown.open .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: .55rem .75rem;
  border-radius: 6px;
}
.dropdown a:hover { background: var(--gruen-wash); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  padding: 0 9px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem clamp(1.15rem, 4vw, 2.5rem) 1.5rem;
    background: var(--papier);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav > ul > li { border-bottom: 1px solid var(--line); }
  .site-nav a, .nav-drop-btn { padding: .9rem 0; width: 100%; font-size: 1rem; }
  .nav-drop-btn { justify-content: space-between; }
  .dropdown {
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0 0 .6rem .8rem;
    min-width: 0;
    background: none;
  }
  .nav-cta { margin-top: 1rem; width: 100%; }
}

/* ---- Hero ----------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(120% 90% at 88% 0%, var(--gruen-wash) 0%, transparent 62%),
    var(--creme);
  padding: clamp(2.5rem, 1.5rem + 4vw, 4.5rem) 0 clamp(2rem, 1rem + 3vw, 3.5rem);
}
.hero-grid {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; }
}
.hero h1 { margin-bottom: .5rem; }
.hero h1 .zeile-2 { color: var(--gruen-tief); display: block; }
.hero-claim {
  font-size: clamp(1.05rem, .98rem + .35vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 34em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.7rem;
}
.hero-note {
  margin-top: 1.5rem;
  font-size: .92rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.hero-note svg { width: 20px; height: 20px; flex: none; color: var(--gruen); }

/* Mosaik aus drei Quadraten – kein Bild wird über 700 px hochskaliert */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .8rem;
}
.hero-mosaic figure { margin: 0; }
.hero-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-mosaic .gross { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .hero-mosaic { grid-template-columns: 1.25fr .95fr; }
  .hero-mosaic .gross { grid-column: 1; grid-row: 1 / 3; }
  /* füllt die volle Höhe der beiden kleinen Kacheln daneben aus */
  .hero-mosaic .gross,
  .hero-mosaic .gross img { height: 100%; aspect-ratio: auto; }
}

/* Schmales Texturband als Abschluss des Heros */
.texture-band {
  height: 68px;
  background-image: url("../img/naturstein-polygonalplatten.jpg");
  background-size: 340px;
  background-position: center;
  border-top: 4px solid var(--sand);
  border-bottom: 1px solid var(--line);
}

/* ---- Vertrauensleiste ----------------------------------------------------- */
.trust-bar { background: var(--gruen-dunkel); color: #fff; }
.trust-bar ul {
  display: grid;
  gap: 1.1rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  list-style: none;
  margin: 0;
  padding: 1.6rem 0;
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-akzent);
  font-size: .92rem;
  font-weight: 500;
}
.trust-bar svg { width: 26px; height: 26px; flex: none; color: var(--sand); }

/* ---- Sektionen ------------------------------------------------------------ */
.section { padding: clamp(3rem, 2rem + 4vw, 5.5rem) 0; }
.section-alt { background: var(--creme); }
.section-wash { background: var(--gruen-wash); }
.section-dark { background: var(--gruen-dunkel); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--sand); }

.section-head { max-width: 46rem; margin: 0 auto clamp(2rem, 1.5rem + 1.5vw, 3rem); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p { color: var(--ink-soft); margin-bottom: 0; }
.section-dark .section-head p { color: rgba(255,255,255,.82); }

.rule {
  width: 62px;
  height: 4px;
  margin: 1.1rem auto 0;
  background: var(--sand);
  border-radius: 2px;
}
.section-head.left .rule { margin-inline: 0; }

.prose { max-width: 44rem; }
.prose.center { margin-inline: auto; }

/* Zweispaltiger Text-Bild-Block */
.split {
  display: grid;
  gap: clamp(1.8rem, 1rem + 3vw, 3.2rem);
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.bild-links > :first-child { order: 2; }
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.split figure { margin: 0; }
.split figcaption {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--ink-soft);
}

/* ---- Karten --------------------------------------------------------------- */
/* 15rem, damit vier Karten in eine Reihe passen und keine
   verwaiste letzte Zeile entsteht */
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--papier);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gruen-linie);
}
.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--creme); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { color: var(--ink-soft); font-size: .98rem; }
.card-link {
  margin-top: auto;
  font-family: var(--font-akzent);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gruen-tief);
}
/* macht die ganze Karte klickbar, ohne den Link zu verschachteln */
.card-link::before {
  content: "";
  position: absolute;
  inset: 0;
}
.card-link::after { content: " →"; }

/* ---- Listen mit Häkchen --------------------------------------------------- */
.check-list { list-style: none; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .55rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: .72rem;
  height: .4rem;
  border-left: 2.5px solid var(--gruen);
  border-bottom: 2.5px solid var(--gruen);
  transform: rotate(-45deg);
}
.check-list.cols-2 { column-gap: 2.5rem; }
@media (min-width: 640px) { .check-list.cols-2 { columns: 2; } }
.check-list.cols-2 li { break-inside: avoid; }
.section-dark .check-list li::before { border-color: var(--sand); }

/* ---- Zitate --------------------------------------------------------------- */
.quote-panel {
  background: var(--papier);
  border: 1px solid var(--line);
  border-left: 5px solid var(--sand);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}
.quote-panel blockquote {
  margin: 0;
  font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink);
}
.quote-panel .autor {
  margin-top: 1.1rem;
  margin-bottom: 0;
  font-family: var(--font-akzent);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gruen-tief);
}

/* ---- Kundenstimmen -------------------------------------------------------- */
/* Zitate brauchen Zeilenlänge – deshalb zwei statt vier Spalten */
.stimmen { display: grid; gap: 1.5rem; }
@media (min-width: 760px) {
  .stimmen { grid-template-columns: 1fr 1fr; }
}
.stimme {
  display: flex;
  flex-direction: column;
  background: var(--papier);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.sterne { display: flex; gap: .15rem; color: var(--sand); margin-bottom: .9rem; }
.sterne svg { width: 18px; height: 18px; }
.stimme blockquote {
  margin: 0 0 1.1rem;
  font-size: .98rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.stimme footer {
  margin-top: auto;
  font-family: var(--font-akzent);
  font-weight: 600;
  font-size: .88rem;
}
.stimme footer a { font-weight: 400; font-size: .8rem; display: block; }

/* ---- Referenz-Kacheln ----------------------------------------------------- */
/* feste Spaltenzahl, damit die sechs Kacheln zwei volle Reihen bilden */
.ref-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 860px) {
  .ref-grid { grid-template-columns: repeat(3, 1fr); }
}
.ref-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--creme);
}
.ref-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.ref-tile:hover img { transform: scale(1.05); }
.ref-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem .9rem .8rem;
  font-family: var(--font-akzent);
  font-weight: 600;
  font-size: .85rem;
  color: #fff;
  background: linear-gradient(to top, rgba(20, 34, 16, .82), transparent);
}

/* ---- Ablauf --------------------------------------------------------------- */
.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  list-style: none;
  padding: 0;
  counter-reset: schritt;
}
.steps li {
  position: relative;
  padding-top: 3.4rem;
  counter-increment: schritt;
}
.steps li::before {
  content: counter(schritt);
  position: absolute;
  top: 0;
  left: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gruen-tief);
  color: #fff;
  font-family: var(--font-akzent);
  font-weight: 600;
}
.steps h3 { margin-bottom: .35rem; font-size: 1.1rem; }
.steps p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.section-dark .steps li::before { background: var(--sand); color: var(--gruen-dunkel); }
.section-dark .steps p { color: rgba(255,255,255,.82); }

/* ---- CTA-Band ------------------------------------------------------------- */
.cta-band {
  background: var(--gruen-dunkel);
  color: #fff;
  padding: clamp(2.8rem, 2rem + 3vw, 4.5rem) 0;
  border-top: 5px solid var(--sand);
}
.cta-band h2 { color: #fff; }
.cta-band .eyebrow { color: var(--sand); }
.cta-band p { color: rgba(255, 255, 255, .85); }
.cta-inner { display: grid; gap: 1.8rem; align-items: center; }
@media (min-width: 860px) {
  .cta-inner { grid-template-columns: 1.35fr auto; }
}
.cta-inner .hero-actions { margin-top: 0; }

/* ---- Seitenkopf der Unterseiten ------------------------------------------- */
.page-hero {
  background:
    radial-gradient(100% 120% at 85% 0%, var(--gruen-wash) 0%, transparent 60%),
    var(--creme);
  padding: clamp(1.6rem, 1rem + 2vw, 2.4rem) 0 clamp(2.4rem, 1.6rem + 3vw, 3.6rem);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: .4rem; }
.page-hero .lead {
  font-size: clamp(1.02rem, .96rem + .3vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 44rem;
  margin-bottom: 0;
}
.breadcrumb { margin-bottom: 1.4rem; }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .85rem;
  color: var(--ink-soft);
}
.breadcrumb li + li::before { content: "› "; margin-right: .3rem; }
.breadcrumb a { color: var(--ink-soft); }

/* ---- Galerie -------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  font-family: var(--font-akzent);
  font-weight: 500;
  font-size: .82rem;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--papier);
  color: var(--ink);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.filter-btn:hover { border-color: var(--gruen); }
.filter-btn[aria-pressed="true"] {
  background: var(--gruen-tief);
  border-color: var(--gruen-tief);
  color: #fff;
}

.galerie {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.galerie li[hidden] { display: none; }
.galerie button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--creme);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}
.galerie img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.galerie button:hover img { transform: scale(1.05); }
.galerie .beschriftung {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.8rem .9rem .8rem;
  font-family: var(--font-akzent);
  font-weight: 600;
  font-size: .85rem;
  color: #fff;
  text-align: left;
  background: linear-gradient(to top, rgba(20, 34, 16, .85), transparent);
}
.galerie-leer {
  text-align: center;
  color: var(--ink-soft);
  padding: 2rem 0;
}

/* ---- Lightbox ------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(18, 28, 15, .92);
}
.lightbox[open] { display: flex; }
.lightbox img {
  max-width: min(700px, 100%);
  max-height: 76vh;
  width: auto;
  border-radius: var(--radius);
}
.lightbox figure { margin: 0; text-align: center; }
.lightbox figcaption {
  margin-top: 1rem;
  color: #fff;
  font-family: var(--font-akzent);
  font-size: .95rem;
}
.lightbox-schliessen,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-schliessen:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, .25); }
.lightbox-schliessen { top: 1rem; right: 1rem; }
.lightbox-nav.zurueck { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav.weiter { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---- Kontakt und Formular ------------------------------------------------- */
.kontakt-grid { display: grid; gap: clamp(1.8rem, 1rem + 3vw, 3rem); align-items: start; }
@media (min-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr 1.25fr; }
}
.kontakt-karten { display: grid; gap: 1rem; }
.kontakt-karte {
  display: flex;
  gap: 1rem;
  padding: 1.3rem;
  background: var(--papier);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.kontakt-karte svg { width: 26px; height: 26px; flex: none; color: var(--gruen); margin-top: .2rem; }
.kontakt-karte h3 { font-size: 1rem; margin-bottom: .25rem; }
.kontakt-karte p { margin: 0; font-size: .98rem; color: var(--ink-soft); }
.kontakt-karte a { font-weight: 600; }

.form-card {
  background: var(--papier);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem);
  box-shadow: var(--shadow-soft);
}
.feld-reihe { display: grid; gap: 1rem; }
@media (min-width: 560px) { .feld-reihe { grid-template-columns: 1fr 1fr; } }
.feld { margin-bottom: 1rem; }
.feld label {
  display: block;
  font-family: var(--font-akzent);
  font-weight: 500;
  font-size: .85rem;
  margin-bottom: .35rem;
}
.feld input,
.feld select,
.feld textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: .75rem .9rem;
  background: var(--papier);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.feld textarea { min-height: 9.5rem; resize: vertical; }
.feld input:focus, .feld select:focus, .feld textarea:focus {
  border-color: var(--gruen);
  outline: 2px solid var(--gruen-linie);
  outline-offset: 0;
}
.pflicht { color: var(--gruen-tief); }

.einwilligung {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--ink-soft);
  margin-bottom: 1.3rem;
}
.einwilligung input { margin-top: .28rem; flex: none; width: 1.1rem; height: 1.1rem; }

/* Honeypot – für Menschen unsichtbar, für Bots ein Köder */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.form-status { margin: 1rem 0 0; font-size: .95rem; min-height: 1.4em; }
.form-status.ok { color: var(--gruen-tief); font-weight: 600; }
.form-status.error { color: #a4342c; font-weight: 600; }

.hinweis {
  background: var(--sand-wash);
  border-left: 4px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: .95rem;
}
.hinweis p:last-child { margin-bottom: 0; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--gruen-dunkel);
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  padding: clamp(2.5rem, 2rem + 2vw, 3.5rem) 0 2rem;
}
.footer-grid h3 {
  color: #fff;
  font-family: var(--font-akzent);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .45rem; }
.site-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-marke img {
  width: 172px;
  background: #fff;
  padding: .5rem .7rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem 1.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: .85rem;
}
.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---- Rechtsseiten --------------------------------------------------------- */
.legal .prose h2 { margin-top: 2.4rem; font-size: 1.3rem; }
.legal .prose h2:first-of-type { margin-top: 0; }
.legal .prose { font-size: 1rem; }
.platzhalter {
  background: var(--sand-wash);
  border-bottom: 2px dotted var(--sand);
  padding: 0 .2em;
  font-style: italic;
}

/* ---- Bewegung ------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: calc(var(--stagger, 0) * 70ms);
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}

@media print {
  .site-header, .site-footer, .cta-band, .hero-actions, .filter-bar { display: none; }
  body { color: #000; background: #fff; }
}
