/* ==========================================================================
   Gärtnerei Locherhof — Demo-Gestaltungsvorschlag
   Charakter: Refined Rustic — verwurzelter Familienbetrieb, natürliche Wärme,
   handwerklicher Stolz. Klare Linien, organische Akzente, Erdung.
   Palette: Waldgrün #3A7D21 · Kupfer/Terrakotta #C4813A · Creme #F5F0E6 ·
            Dunkelgrün #1A3310 · Hellgrün #EDF3E6
   Schriften: Newsreader (Headlines, lokal) + Be Vietnam Pro (Body, lokal)
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/newsreader-italic.woff2") format("woff2");
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../fonts/be-vietnam-pro-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../fonts/be-vietnam-pro-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../fonts/be-vietnam-pro-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Designsystem ---------- */
:root {
  --gruen: #3A7D21;          /* frisches Pflanzgrün - Leitfarbe */
  --gruen-dark: #2d6419;     /* Hover auf Grün */
  --gruen-pale: #7db85f;     /* helles Grün auf dunklem Grund */
  --erde: #C4813A;           /* Kupfer/Terrakotta - Akzent */
  --erde-dark: #a36a27;      /* Hover auf Erde */
  --erde-pale: #d9a872;      /* helles Erde auf dunklem Grund */
  --creme: #F5F0E6;          /* warmes Off-White - Grundton */
  --dunkel: #1A3310;         /* tiefes Waldgrün - Überschriften/Text */
  --dunkel-soft: #3a5028;    /* abgesetzter Fließtext */
  --hell: #EDF3E6;           /* sehr helles Grün - Sektionshintergründe */
  --hell-deep: #dce8d0;      /* etwas dunkleres Hellgrün - Linien */
  --line: #ccd9b8;           /* Trennlinien auf hellem Grund */
  --line-dark: rgba(245, 240, 230, 0.14);

  --font-head: "Newsreader", Georgia, serif;
  --font-body: "Be Vietnam Pro", "Segoe UI", sans-serif;

  --container: 1140px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.04rem;
  line-height: 1.72;
  color: var(--dunkel);
  background-color: var(--creme);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--erde-dark); text-decoration: none; }
a:hover { color: var(--dunkel); }

::selection { background: var(--erde); color: var(--creme); }

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dunkel);
  text-wrap: balance;
  hyphens: manual;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.mark { color: var(--gruen); }
.mark-erde { color: var(--erde); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--erde-dark);
  margin-bottom: 0.9rem;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--dunkel-soft);
  max-width: 36em;
}

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--dunkel);
  color: rgba(245, 240, 230, 0.88);
  font-family: var(--font-body);
  font-size: 0.79rem;
  text-align: center;
  padding: 0.45rem var(--pad);
  line-height: 1.4;
}
.demo-bar strong { color: var(--erde-pale); }

/* ---------- Header / Navigation ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--creme);
  border-bottom: 1px solid var(--line);
}

.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--dunkel);
}

/* Inline-SVG Emblem: stilisierter Blumentopf mit Sprossen */
.brand__emblem {
  width: 44px;
  height: 44px;
  flex: none;
}

.brand__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  color: var(--dunkel);
}
.brand__name small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.71rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--erde-dark);
  margin-top: 0.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.8rem);
}
.nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--dunkel);
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav a:hover { color: var(--gruen-dark); }
.nav a[aria-current="page"] { border-bottom-color: var(--gruen); }

.nav__cta {
  background: var(--gruen);
  color: var(--creme) !important;
  padding: 0.55rem 1.15rem !important;
  border-bottom: none !important;
  font-variant-numeric: tabular-nums;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--gruen-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 10px;
  border-radius: 2px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--dunkel);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

/* ---------- Organischer Sektionsteiler (Wellenform) ---------- */
.wave-divider {
  height: 28px;
  background-repeat: repeat-x;
  background-size: 120px 28px;
  background-position: center top;
}
.wave--creme-to-hell {
  background-color: var(--hell);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 28'%3E%3Cpath fill='%23F5F0E6' d='M0 0 Q30 20 60 10 Q90 0 120 14 L120 0 Z'/%3E%3C/svg%3E");
}
.wave--hell-to-creme {
  background-color: var(--creme);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 28'%3E%3Cpath fill='%23EDF3E6' d='M0 0 Q30 20 60 10 Q90 0 120 14 L120 0 Z'/%3E%3C/svg%3E");
}
.wave--creme-to-dunkel {
  background-color: var(--dunkel);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 28'%3E%3Cpath fill='%23F5F0E6' d='M0 0 Q30 20 60 10 Q90 0 120 14 L120 0 Z'/%3E%3C/svg%3E");
}
.wave--dunkel-to-creme {
  background-color: var(--creme);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 28'%3E%3Cpath fill='%231A3310' d='M0 0 Q30 20 60 10 Q90 0 120 14 L120 0 Z'/%3E%3C/svg%3E");
}
.wave--hell-to-dunkel {
  background-color: var(--dunkel);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 28'%3E%3Cpath fill='%23EDF3E6' d='M0 0 Q30 20 60 10 Q90 0 120 14 L120 0 Z'/%3E%3C/svg%3E");
}
.wave--dunkel-to-hell {
  background-color: var(--hell);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 28'%3E%3Cpath fill='%231A3310' d='M0 0 Q30 20 60 10 Q90 0 120 14 L120 0 Z'/%3E%3C/svg%3E");
}

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--hell { background: var(--hell); }
.section--dunkel {
  background: var(--dunkel);
  color: var(--creme);
}
.section--dunkel h1,
.section--dunkel h2,
.section--dunkel h3 { color: var(--creme); }
.section--dunkel .eyebrow { color: var(--erde-pale); }
.section--dunkel p { color: rgba(245, 240, 230, 0.82); }
.section--dunkel a { color: var(--erde-pale); }
.section--dunkel a:hover { color: var(--creme); }

.section__head {
  max-width: 44em;
  margin-bottom: clamp(2rem, 5vw, 3.2rem);
}
.section__head p { color: var(--dunkel-soft); margin-top: 0.9rem; font-weight: 300; }
.section--dunkel .section__head p { color: rgba(245, 240, 230, 0.78); }

/* Kleines Emblem-Marker vor Abschnittstiteln */
.section-marker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.section-marker svg {
  width: 20px;
  height: 20px;
  color: var(--gruen);
  flex: none;
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(3.5rem, 9vw, 7rem);
  background: linear-gradient(135deg, var(--creme) 0%, var(--hell) 60%, #d9ecca 100%);
  position: relative;
  overflow: hidden;
}

/* Dezente Textur via SVG-Noise-Filter im Pseudo-Element */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
}

.hero h1 {
  margin-bottom: 1.3rem;
  font-style: italic;
}
.hero h1 em { font-style: normal; }
.hero .lead { margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Rechte Seite Hero: Jahres-Badge und dekoratives Element */
.hero__art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.badge {
  width: clamp(140px, 15vw, 180px);
  aspect-ratio: 1;
  border: 2px solid var(--gruen);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 5px var(--creme),
    inset 0 0 0 7px var(--gruen),
    0 4px 20px rgba(58, 125, 33, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  transform: rotate(-5deg);
  background: var(--creme);
  color: var(--gruen-dark);
}
.badge__seit {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-indent: 0.28em;
}
.badge__year {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--dunkel);
}
.badge__label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-indent: 0.18em;
  border-top: 1px solid var(--gruen);
  padding-top: 0.32rem;
  margin-top: 0.25rem;
  color: var(--gruen-dark);
}

/* Großes dekoratives Spross-Ornament */
.hero__ornament {
  width: clamp(140px, 18vw, 200px);
  color: var(--hell-deep);
}
.hero__ornament .orn-erde { color: var(--erde); opacity: 0.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 0.8rem 1.75rem;
  border: 2px solid var(--dunkel);
  color: var(--dunkel);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 2px;
}
.btn:hover { background: var(--dunkel); color: var(--creme); }

.btn--solid { background: var(--dunkel); color: var(--creme); }
.btn--solid:hover { background: var(--gruen); border-color: var(--gruen); color: var(--creme); }

.btn--gruen { background: var(--gruen); border-color: var(--gruen); color: var(--creme); }
.btn--gruen:hover { background: var(--gruen-dark); border-color: var(--gruen-dark); color: var(--creme); }

.btn--light { border-color: rgba(245, 240, 230, 0.7); color: var(--creme); }
.btn--light:hover { background: var(--creme); color: var(--dunkel); border-color: var(--creme); }

/* ---------- Leistungs-Kacheln ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.tile {
  background: var(--creme);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gruen);
  padding: 1.7rem 1.5rem 1.4rem;
  color: var(--dunkel);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
  border-radius: 2px;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26, 51, 16, 0.1);
  color: var(--dunkel);
}
.tile:hover { border-top-color: var(--erde); }
.tile__icon { width: 38px; height: 38px; color: var(--gruen); }
.tile:hover .tile__icon { color: var(--erde); }
.tile h3 { margin-top: 0.2rem; }
.tile p { font-size: 0.93rem; color: var(--dunkel-soft); flex-grow: 1; font-weight: 300; }
.tile__more {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--erde-dark);
  margin-top: 0.3rem;
}
.tile:hover .tile__more { color: var(--dunkel); }

/* ---------- Standort-Karten ---------- */
.standorte {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.standort-card {
  background: var(--creme);
  border: 1px solid var(--line);
  padding: 2rem 1.7rem;
  border-radius: 2px;
  position: relative;
}
.standort-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gruen);
}
.standort-card.secondary::before { background: var(--erde); }
.standort-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.standort-card h3 svg { width: 20px; height: 20px; color: var(--gruen); flex: none; }
.standort-card.secondary h3 svg { color: var(--erde); }
.standort-card address { font-style: normal; color: var(--dunkel-soft); font-weight: 300; }
.standort-card .oeffz { margin-top: 1rem; }
.standort-card .oeffz strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--erde-dark);
  margin-bottom: 0.5rem;
}
.standort-card .oeffz table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  color: var(--dunkel-soft);
}
.standort-card .oeffz td { padding: 0.18rem 0; }
.standort-card .oeffz td:first-child { font-weight: 500; width: 42%; }
.standort-card .extern-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gruen-dark);
}
.standort-card .extern-link svg { width: 14px; height: 14px; }
.standort-card .extern-link:hover { color: var(--dunkel); }

/* ---------- Zahlen / Geschichte ---------- */
.figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.figure {
  border-top: 3px solid var(--erde);
  padding-top: 1.1rem;
}
.figure strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: var(--creme);
}
.figure span { font-size: 0.93rem; color: rgba(245, 240, 230, 0.78); font-weight: 300; }

/* ---------- Pflanzen-Saisonstabelle ---------- */
.saison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.saison-card {
  background: var(--creme);
  border: 1px solid var(--line);
  padding: 1.3rem 1.1rem;
  border-radius: 2px;
}
.saison-card__head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}
.saison-card__head svg { width: 18px; height: 18px; color: var(--gruen); flex: none; }
.saison-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.saison-card ul {
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
  color: var(--dunkel-soft);
  font-weight: 300;
}
.saison-card li {
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--hell-deep);
}
.saison-card li:last-child { border-bottom: none; }

/* ---------- Hofladen-Sortiment ---------- */
.sortiment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.sortiment-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.2rem 1rem;
  background: var(--hell);
  border: 1px solid var(--hell-deep);
  border-radius: 2px;
}
.sortiment-item svg {
  width: 22px;
  height: 22px;
  color: var(--gruen);
  flex: none;
  margin-top: 0.1rem;
}
.sortiment-item span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--dunkel);
}

/* ---------- Gartenservice-Karten ---------- */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.6rem;
  background: var(--creme);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
}
.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(26, 51, 16, 0.09);
}
.service-item__icon {
  width: 44px;
  height: 44px;
  background: var(--hell);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.service-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--gruen);
}
.service-item h3 { margin-bottom: 0.45rem; font-size: 1.1rem; }
.service-item p { font-size: 0.93rem; color: var(--dunkel-soft); font-weight: 300; }

/* Hinweis-Kasten (Radius) */
.hinweis {
  background: var(--hell);
  border-left: 4px solid var(--gruen);
  padding: 1.1rem 1.4rem;
  margin-top: 2.5rem;
  border-radius: 0 2px 2px 0;
  color: var(--dunkel-soft);
  font-size: 0.93rem;
}
.hinweis strong { color: var(--dunkel); font-weight: 500; }

/* ---------- Über-uns Zeitleiste ---------- */
.timeline {
  position: relative;
  padding-left: 2.4rem;
  margin-top: 1.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--hell-deep);
}
.timeline__item {
  position: relative;
  padding-bottom: clamp(1.8rem, 4vw, 2.6rem);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-2.4rem + 4px);
  top: 0.5em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gruen);
  border: 3px solid var(--creme);
  outline: 2px solid var(--gruen);
}
.timeline__year {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  color: var(--erde-dark);
  line-height: 1.2;
}
.timeline__item h3 { margin: 0.1rem 0 0.35rem; }
.timeline__item p { color: var(--dunkel-soft); font-weight: 300; max-width: 38em; }

/* Betrieb-Fakten */
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.fact {
  background: var(--hell);
  border-left: 4px solid var(--gruen);
  padding: 1.4rem 1.3rem;
  border-radius: 0 2px 2px 0;
}
.fact strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--dunkel);
  margin-bottom: 0.3rem;
}
.fact p { font-size: 0.93rem; color: var(--dunkel-soft); font-weight: 300; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: var(--dunkel);
  color: var(--creme);
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}
.cta-band h2 { color: var(--creme); margin-bottom: 0.9rem; }
.cta-band p {
  color: rgba(245, 240, 230, 0.82);
  max-width: 36em;
  margin-inline: auto;
  font-weight: 300;
}
.cta-band .tel {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--erde-pale);
  margin-block: 1.4rem 1.8rem;
  font-variant-numeric: tabular-nums;
  font-style: italic;
}
.cta-band .tel:hover { color: var(--creme); }

/* ---------- Kontakt-Seite ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 2rem;
}
.contact-card {
  background: var(--creme);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gruen);
  padding: 1.7rem 1.5rem;
  border-radius: 2px;
}
.contact-card.erde { border-top-color: var(--erde); }
.contact-card svg { width: 34px; height: 34px; color: var(--gruen); margin-bottom: 0.8rem; }
.contact-card.erde svg { color: var(--erde); }
.contact-card h2 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.contact-card p { color: var(--dunkel-soft); font-weight: 300; }
.contact-card address { font-style: normal; color: var(--dunkel-soft); font-weight: 300; line-height: 1.8; }
.contact-card .big {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--dunkel);
  margin-top: 0.4rem;
  overflow-wrap: anywhere;
}
.contact-card .big:hover { color: var(--erde-dark); }
.contact-card .btn { margin-top: 1.2rem; }

.oeffz-hinweis {
  margin-top: 2.2rem;
  background: var(--hell);
  border-left: 4px solid var(--gruen);
  padding: 1.3rem 1.5rem;
  border-radius: 0 2px 2px 0;
  color: var(--dunkel-soft);
  font-size: 0.93rem;
  max-width: 56em;
}
.oeffz-hinweis strong { color: var(--dunkel); font-weight: 500; }

/* ---------- Rechtsseiten ---------- */
.legal { max-width: 760px; }
.legal h1 { margin-bottom: 1.6rem; }
.legal h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2.2rem 0 0.7rem;
  color: var(--dunkel);
}
.legal p, .legal address { color: var(--dunkel-soft); font-style: normal; font-weight: 300; }
.legal p + p { margin-top: 0.8rem; }
.legal ul { padding-left: 1.3rem; color: var(--dunkel-soft); font-weight: 300; }
.legal li + li { margin-top: 0.35rem; }

.demo-note {
  background: var(--hell);
  border-left: 4px solid var(--erde);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
  color: var(--dunkel);
  border-radius: 0 2px 2px 0;
}
.demo-note strong { font-weight: 500; }

.placeholder {
  display: inline-block;
  background: var(--hell-deep);
  border: 1px dashed var(--erde);
  padding: 0.05rem 0.5rem;
  color: var(--erde-dark);
  font-size: 0.9em;
  border-radius: 2px;
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--dunkel);
  color: rgba(245, 240, 230, 0.78);
  font-size: 0.95rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-block: clamp(2.5rem, 6vw, 3.5rem) 2rem;
}
.site-foot h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--creme);
  margin-bottom: 0.8rem;
}
.site-foot ul { list-style: none; }
.site-foot li { margin-bottom: 0.45rem; font-weight: 300; }
.site-foot a { color: rgba(245, 240, 230, 0.78); }
.site-foot a:hover { color: var(--erde-pale); }

.foot-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  border-top: 1px solid var(--line-dark);
  padding-block: 1.3rem;
  font-size: 0.84rem;
  font-weight: 300;
}
.foot-meta a { color: rgba(245, 240, 230, 0.78); }
.foot-meta a:hover { color: var(--erde-pale); }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsiv: Tablet ---------- */
@media (max-width: 920px) {
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .saison-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sortiment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-list { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { flex-direction: row; justify-content: center; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .figures { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- Responsiv: Mobil ---------- */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--creme);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem var(--pad) 1.2rem;
    gap: 0.2rem;
    box-shadow: 0 8px 24px rgba(26, 51, 16, 0.1);
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.7rem 0.3rem;
    border-bottom: 1px solid var(--line);
  }
  .nav a[aria-current="page"] { border-bottom-color: var(--gruen); }
  .nav__cta { text-align: center; margin-top: 0.7rem; border-radius: 2px; }

  body.nav-open .site-head { box-shadow: 0 12px 30px rgba(26, 51, 16, 0.12); }

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

  .tiles,
  .saison-grid,
  .sortiment-grid,
  .service-list,
  .figures,
  .facts,
  .standorte,
  .contact-grid { grid-template-columns: 1fr; }

  .foot-grid { grid-template-columns: 1fr; }
  .brand__name { font-size: 1.05rem; }
  .hero__art { flex-direction: column; }
}
