/* ============================================================
   SELAVRIX HUB – STYLE.CSS
   Textured Modern / Warm Crafted / Vertical Garden
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Colors */
  --clr-bg:          #f5f0e8;
  --clr-bg-warm:     #ede7d9;
  --clr-surface:     #faf7f2;
  --clr-surface-2:   #f0ead9;
  --clr-primary:     #3b5e3a;
  --clr-primary-dk:  #2a4529;
  --clr-primary-lt:  #5a8c59;
  --clr-accent:      #c87941;
  --clr-accent-lt:   #e8a96a;
  --clr-accent-dk:   #a05e2e;
  --clr-text:        #2c2416;
  --clr-text-muted:  #6b5f4e;
  --clr-text-light:  #9c8e7a;
  --clr-border:      #ddd4c0;
  --clr-white:       #faf7f2;

  /* Gradients */
  --grad-hero:       linear-gradient(135deg, #2a4529 0%, #3b5e3a 40%, #5a8c59 100%);
  --grad-section:    linear-gradient(160deg, #f5f0e8 0%, #ede7d9 100%);
  --grad-card:       linear-gradient(145deg, #faf7f2 0%, #f0ead9 100%);
  --grad-footer:     linear-gradient(160deg, #3b5e3a 0%, #2a4529 50%, #1e3320 100%);
  --grad-accent:     linear-gradient(135deg, #c87941 0%, #a05e2e 100%);
  --grad-newsletter: linear-gradient(135deg, #c87941 0%, #e8a96a 50%, #c87941 100%);

  /* Typography */
  --ff-base:   'Plus Jakarta Sans', sans-serif;
  --fs-xs:     0.75rem;
  --fs-sm:     0.875rem;
  --fs-base:   1rem;
  --fs-md:     1.125rem;
  --fs-lg:     1.25rem;
  --fs-xl:     1.5rem;
  --fs-2xl:    clamp(1.5rem, 3vw, 2rem);
  --fs-3xl:    clamp(2rem, 4vw, 2.75rem);
  --fs-hero:   clamp(2.4rem, 5.5vw, 4rem);
  --fw-light:  300;
  --fw-reg:    400;
  --fw-med:    500;
  --fw-semi:   600;
  --fw-bold:   700;
  --fw-xbold:  800;
  --lh-tight:  1.15;
  --lh-base:   1.65;
  --lh-loose:  1.8;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;
  --r-full: 999px;

  /* Shadows */
  --sh-xs:  0 1px 3px rgba(44,36,22,0.06), 0 1px 2px rgba(44,36,22,0.04);
  --sh-sm:  0 2px 8px rgba(44,36,22,0.08), 0 1px 3px rgba(44,36,22,0.05);
  --sh-md:  0 4px 20px rgba(44,36,22,0.10), 0 2px 8px rgba(44,36,22,0.06);
  --sh-lg:  0 8px 40px rgba(44,36,22,0.12), 0 4px 16px rgba(44,36,22,0.08);
  --sh-xl:  0 16px 60px rgba(44,36,22,0.15), 0 8px 24px rgba(44,36,22,0.10);
  --sh-hero: 0 24px 80px rgba(44,36,22,0.20), 0 12px 32px rgba(44,36,22,0.12);

  /* Transitions */
  --tr-fast: 0.2s ease;
  --tr-base: 0.3s ease;
  --tr-slow: 0.5s ease;
  --tr-reveal: 0.65s cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --max-w: 1200px;
  --header-h: 70px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-base);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--tr-base); }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: var(--ff-base); border: none; background: none; }
input, textarea, select { font-family: var(--ff-base); }

/* ── SVG NOISE TEXTURE FILTER ───────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
}

/* ── GLOBAL COMPONENTS ──────────────────────────────────────── */
.global-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.02em;
  transition: all var(--tr-base);
  min-height: 44px;
  white-space: nowrap;
}
.global-cta--primary {
  background: var(--grad-accent);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(200,121,65,0.30), 0 2px 6px rgba(200,121,65,0.15);
}
.global-cta--primary:hover {
  background: linear-gradient(135deg, #a05e2e 0%, #c87941 100%);
  box-shadow: 0 6px 24px rgba(200,121,65,0.40), 0 3px 10px rgba(200,121,65,0.20);
  transform: translateY(-1px);
  color: var(--clr-white);
}
.global-cta--ghost {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.global-cta--ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.70);
  color: var(--clr-white);
}
.global-cta--outline {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}
.global-cta--outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-4);
}
.section-label--light { color: var(--clr-accent-lt); }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--tr-reveal), transform var(--tr-reveal);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── GLOBAL HEADER ──────────────────────────────────────────── */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--tr-base);
}
.global-header.scrolled {
  box-shadow: var(--sh-md);
}
.global-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.global-header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.global-header__logo-img { width: 36px; height: 36px; }
.global-header__logo-text {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  letter-spacing: -0.01em;
}
.global-header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.global-header__nav-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-med);
  color: var(--clr-text-muted);
  position: relative;
  padding-bottom: 2px;
}
.global-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  border-radius: var(--r-full);
  transition: width var(--tr-base);
}
.global-header__nav-link:hover { color: var(--clr-primary); }
.global-header__nav-link:hover::after { width: 100%; }
.global-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.global-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: var(--r-full);
  transition: all var(--tr-base);
}
.global-header__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.global-header__hamburger.active span:nth-child(2) { opacity: 0; }
.global-header__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.global-header__mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.global-header__mobile-menu.open { max-height: 400px; }
.global-header__mobile-link {
  display: block;
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-med);
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--tr-fast), color var(--tr-fast);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.global-header__mobile-link:hover {
  background: var(--clr-bg-warm);
  color: var(--clr-primary);
}

/* ── HERO ───────────────────────────────────────────────────── */
.home-hero {
  position: relative;
  background: var(--grad-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.home-hero__texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%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='400' height='400' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
}
.home-hero__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-20) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  width: 100%;
}
.home-hero__content { animation: heroEnter 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
.home-hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent-lt);
  margin-bottom: var(--sp-5);
}
.home-hero__heading {
  font-size: var(--fs-hero);
  font-weight: var(--fw-xbold);
  line-height: var(--lh-tight);
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}
.home-hero__sub {
  font-size: var(--fs-md);
  color: rgba(250,247,242,0.80);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-10);
  max-width: 520px;
}
.home-hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.home-hero__visual {
  animation: heroImgEnter 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.home-hero__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-hero);
  position: relative;
}
.home-hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}
.home-hero__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-xl);
  transition: transform 0.6s ease;
}
.home-hero__img-wrap:hover .home-hero__img { transform: scale(1.03); }

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroImgEnter {
  from { opacity: 0; transform: translateX(40px) scale(0.97); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* ── METHODE ────────────────────────────────────────────────── */
.home-methode {
  background: var(--grad-section);
  padding: var(--sp-20) 0;
}
.home-methode__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.home-methode__card {
  background: var(--grad-card);
  border-radius: var(--r-xl);
  padding: var(--sp-16) var(--sp-12);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--clr-border);
}
.home-methode__intro {
  max-width: 600px;
  margin-bottom: var(--sp-12);
}
.home-methode__heading {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-primary-dk);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}
.home-methode__lead {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  font-weight: var(--fw-light);
}
.home-methode__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}
.home-methode__step {
  padding: var(--sp-8);
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}
.home-methode__step:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.home-methode__step-num {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-xbold);
  color: var(--clr-accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.04em;
}
.home-methode__step-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--clr-primary-dk);
  margin-bottom: var(--sp-3);
}
.home-methode__step p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

/* ── KURSINHALT ─────────────────────────────────────────────── */
.home-kursinhalt {
  background: var(--clr-primary-dk);
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}
.home-kursinhalt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%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='400' height='400' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.home-kursinhalt__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.home-kursinhalt__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.home-kursinhalt__heading {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}
.home-kursinhalt__sub {
  font-size: var(--fs-md);
  color: rgba(250,247,242,0.65);
  max-width: 580px;
  margin: 0 auto;
}
.home-kursinhalt__modules {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}
.home-kursinhalt__module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--grad-card);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}
.home-kursinhalt__module:hover {
  box-shadow: var(--sh-hero);
  transform: translateY(-4px);
}
.home-kursinhalt__module--reverse { direction: rtl; }
.home-kursinhalt__module--reverse > * { direction: ltr; }
.home-kursinhalt__module-img {
  overflow: hidden;
}
.home-kursinhalt__module-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.home-kursinhalt__module:hover .home-kursinhalt__module-img img { transform: scale(1.04); }
.home-kursinhalt__module-body {
  padding: var(--sp-10) var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-kursinhalt__module-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-4);
}
.home-kursinhalt__module-body h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dk);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
}
.home-kursinhalt__module-body p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-5);
}
.home-kursinhalt__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.home-kursinhalt__list li {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  padding-left: var(--sp-5);
  position: relative;
}
.home-kursinhalt__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
}

/* ── MATERIALIEN ────────────────────────────────────────────── */
.home-materialien {
  background: var(--grad-section);
  padding: var(--sp-20) 0;
}
.home-materialien__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.home-materialien__card {
  background: var(--grad-card);
  border-radius: var(--r-xl);
  padding: var(--sp-12);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--clr-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.home-materialien__heading {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dk);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}
.home-materialien__left p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-4);
}
.home-materialien__img-wrap {
  margin-top: var(--sp-8);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.home-materialien__img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home-materialien__img-wrap:hover img { transform: scale(1.04); }
.home-materialien__right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.home-materialien__item {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-6);
  background: var(--clr-surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}
.home-materialien__item:hover {
  box-shadow: var(--sh-sm);
  transform: translateX(4px);
}
.home-materialien__item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: var(--fs-md);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200,121,65,0.25);
}
.home-materialien__item h4 {
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--clr-primary-dk);
  margin-bottom: var(--sp-2);
}
.home-materialien__item p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

/* ── BEWÄSSERUNG ────────────────────────────────────────────── */
.home-bewaesserung {
  background: linear-gradient(160deg, #ede7d9 0%, #e0d8c8 100%);
  padding: var(--sp-24) 0;
}
.home-bewaesserung__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.home-bewaesserung__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.home-bewaesserung__heading {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dk);
  letter-spacing: -0.02em;
}
.home-bewaesserung__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}
.home-bewaesserung__col {
  background: var(--grad-card);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}
.home-bewaesserung__col:hover {
  box-shadow: var(--sh-xl);
  transform: translateY(-4px);
}
.home-bewaesserung__col-img {
  overflow: hidden;
  height: 220px;
}
.home-bewaesserung__col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.home-bewaesserung__col:hover .home-bewaesserung__col-img img { transform: scale(1.05); }
.home-bewaesserung__col h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dk);
  padding: var(--sp-8) var(--sp-8) var(--sp-4);
  line-height: var(--lh-tight);
}
.home-bewaesserung__col p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  padding: 0 var(--sp-8) var(--sp-5);
}
.home-bewaesserung__list {
  padding: 0 var(--sp-8) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.home-bewaesserung__list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.home-bewaesserung__list li i {
  color: var(--clr-primary-lt);
  font-size: var(--fs-xs);
  width: 16px;
  flex-shrink: 0;
}

/* ── GALERIE ────────────────────────────────────────────────── */
.home-galerie {
  background: var(--clr-bg);
  padding: var(--sp-20) 0;
}
.home-galerie__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.home-galerie__header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.home-galerie__heading {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dk);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}
.home-galerie__sub {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  max-width: 520px;
  margin: 0 auto;
}
.home-galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.home-galerie__item {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  position: relative;
  cursor: pointer;
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}
.home-galerie__item:hover {
  box-shadow: var(--sh-xl);
  transform: translateY(-5px);
}
.home-galerie__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.home-galerie__item:hover img { transform: scale(1.06); }
.home-galerie__item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-4) var(--sp-5);
  background: linear-gradient(to top, rgba(30,51,32,0.85) 0%, transparent 100%);
  color: var(--clr-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-med);
}

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.home-newsletter {
  background: var(--grad-newsletter);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}
.home-newsletter::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.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.home-newsletter__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.home-newsletter__content {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.home-newsletter__icon {
  font-size: 2.5rem;
  color: rgba(250,247,242,0.80);
  flex-shrink: 0;
}
.home-newsletter__text { flex: 1; min-width: 240px; }
.home-newsletter__heading {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
  line-height: var(--lh-tight);
}
.home-newsletter__text p {
  font-size: var(--fs-sm);
  color: rgba(250,247,242,0.75);
}
.home-newsletter__form {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: center;
}
.home-newsletter__input {
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-full);
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.15);
  color: var(--clr-white);
  font-size: var(--fs-sm);
  min-width: 240px;
  min-height: 44px;
  transition: border-color var(--tr-base), background var(--tr-base);
  outline: none;
}
.home-newsletter__input::placeholder { color: rgba(255,255,255,0.55); }
.home-newsletter__input:focus {
  border-color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.22);
}
.home-newsletter .global-cta--primary {
  background: var(--clr-white);
  color: var(--clr-accent-dk);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.home-newsletter .global-cta--primary:hover {
  background: var(--clr-surface);
  color: var(--clr-accent-dk);
}

/* ── KONTAKT ────────────────────────────────────────────────── */
.home-kontakt {
  background: var(--grad-section);
  padding: var(--sp-24) 0;
}
.home-kontakt__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.home-kontakt__heading {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dk);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}
.home-kontakt__left p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-8);
}
.home-kontakt__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.home-kontakt__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.home-kontakt__info-item i {
  color: var(--clr-accent);
  width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.home-kontakt__info-item a:hover { color: var(--clr-primary); }
.home-kontakt__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--clr-border);
}
.home-kontakt__right {
  background: var(--grad-card);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--clr-border);
}
.home-kontakt__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.home-kontakt__field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.home-kontakt__field label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--clr-text);
}
.home-kontakt__field input,
.home-kontakt__field textarea {
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  background: var(--clr-surface);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
  outline: none;
  min-height: 44px;
  resize: vertical;
}
.home-kontakt__field input:focus,
.home-kontakt__field textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(59,94,58,0.12);
}
.home-kontakt__privacy {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}
.home-kontakt__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--clr-primary);
  flex-shrink: 0;
  cursor: pointer;
}
.home-kontakt__privacy a {
  color: var(--clr-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.home-kontakt__submit { width: 100%; justify-content: center; }

/* ── GLOBAL FOOTER ──────────────────────────────────────────── */
.global-footer {
  background: var(--grad-footer);
  padding: var(--sp-16) 0 0;
  position: relative;
  overflow: hidden;
}
.global-footer::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.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.global-footer__inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6) var(--sp-12);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
}
.global-footer__logo { width: 40px; height: 40px; margin-bottom: var(--sp-4); filter: brightness(10); }
.global-footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(250,247,242,0.65);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-5);
}
.global-footer__address {
  font-size: var(--fs-sm);
  color: rgba(250,247,242,0.50);
  line-height: var(--lh-loose);
}
.global-footer__col-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-lt);
  margin-bottom: var(--sp-5);
}
.global-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.global-footer__links a {
  font-size: var(--fs-sm);
  color: rgba(250,247,242,0.60);
  transition: color var(--tr-base);
}
.global-footer__links a:hover { color: var(--clr-white); }
.global-footer__bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: var(--sp-5) var(--sp-6);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.global-footer__bottom p {
  font-size: var(--fs-xs);
  color: rgba(250,247,242,0.40);
}
.global-footer__domain {
  font-family: monospace;
  letter-spacing: 0.05em;
}

/* ── COOKIE CONSENT ─────────────────────────────────────────── */
.slvx-cookie-card {
  position: fixed;
  bottom: var(--sp-5);
  right: var(--sp-5);
  width: 320px;
  background: var(--grad-card);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--clr-border);
  z-index: 9998;
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  overflow: hidden;
}
.slvx-cookie-card.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.slvx-cookie-card.hidden {
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  pointer-events: none;
}
.slvx-cookie-header {
  padding: var(--sp-6) var(--sp-6) var(--sp-4);
  text-align: center;
}
.slvx-cookie-header i {
  font-size: 2rem;
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
}
.slvx-cookie-header h3 {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dk);
  margin-bottom: var(--sp-2);
}
.slvx-cookie-header p {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}
.slvx-cookie-toggles {
  padding: 0 var(--sp-6) var(--sp-4);
  display: none;
  flex-direction: column;
  gap: var(--sp-3);
  border-top: 1px solid var(--clr-border);
  margin-top: var(--sp-3);
  padding-top: var(--sp-4);
}
.slvx-cookie-toggles.open { display: flex; }
.slvx-cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.slvx-cookie-toggle-row span {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  font-weight: var(--fw-med);
}
.slvx-cookie-toggle {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}
.slvx-cookie-toggle input { opacity: 0; width: 0; height: 0; }
.slvx-cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--clr-border);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--tr-base);
}
.slvx-cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--tr-base);
  box-shadow: var(--sh-xs);
}
.slvx-cookie-toggle input:checked + .slvx-cookie-toggle-slider { background: var(--clr-primary); }
.slvx-cookie-toggle input:checked + .slvx-cookie-toggle-slider::before { transform: translateX(16px); }
.slvx-cookie-toggle input:disabled + .slvx-cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }
.slvx-cookie-btns {
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.slvx-cookie-btn {
  width: 100%;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  transition: all var(--tr-base);
  min-height: 44px;
  cursor: pointer;
  border: none;
}
.slvx-cookie-btn--accept {
  background: var(--grad-accent);
  color: var(--clr-white);
  box-shadow: 0 4px 14px rgba(200,121,65,0.30);
}
.slvx-cookie-btn--accept:hover {
  background: linear-gradient(135deg, #a05e2e 0%, #c87941 100%);
  box-shadow: 0 6px 20px rgba(200,121,65,0.40);
}
.slvx-cookie-btn--customize {
  background: transparent;
  color: var(--clr-text-muted);
  border: 1.5px solid var(--clr-border);
}
.slvx-cookie-btn--customize:hover {
  background: var(--clr-bg-warm);
  color: var(--clr-text);
}
.slvx-cookie-btn--save {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.slvx-cookie-btn--save:hover { background: var(--clr-primary-dk); }
.slvx-cookie-link {
  text-align: center;
  padding-bottom: var(--sp-2);
}
.slvx-cookie-link a {
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--tr-base);
}
.slvx-cookie-link a:hover { color: var(--clr-primary); }

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--clr-bg);
}
.legal-page main { flex: 1; }
.legal-hero {
  background: var(--grad-hero);
  padding: calc(var(--header-h) + var(--sp-12)) var(--sp-6) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-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.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.legal-hero__inner { position: relative; max-width: 700px; margin: 0 auto; }
.legal-hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-lt);
  margin-bottom: var(--sp-4);
}
.legal-hero h1 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}
.legal-hero p {
  font-size: var(--fs-base);
  color: rgba(250,247,242,0.70);
}
.legal-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-6);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-10);
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
  background: var(--grad-card);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--clr-border);
}
.legal-sidebar__title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-5);
}
.legal-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.legal-sidebar__link {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: all var(--tr-fast);
  display: block;
  line-height: var(--lh-base);
}
.legal-sidebar__link:hover { background: var(--clr-bg-warm); color: var(--clr-primary); }
.legal-sidebar__link.active { background: var(--clr-primary); color: var(--clr-white); }
.legal-mobile-toc {
  display: none;
  margin: var(--sp-6) var(--sp-6) 0;
  background: var(--grad-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
}
.legal-mobile-toc__toggle {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--clr-primary-dk);
  background: none;
  border: none;
  cursor: pointer;
  min-height: 44px;
}
.legal-mobile-toc__toggle i { transition: transform var(--tr-base); }
.legal-mobile-toc__toggle.open i { transform: rotate(180deg); }
.legal-mobile-toc__list {
  display: none;
  flex-direction: column;
  padding: var(--sp-3) var(--sp-5) var(--sp-5);
  border-top: 1px solid var(--clr-border);
  gap: var(--sp-2);
}
.legal-mobile-toc__list.open { display: flex; }
.legal-mobile-toc__list a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--tr-fast);
}
.legal-mobile-toc__list a:last-child { border-bottom: none; }
.legal-mobile-toc__list a:hover { color: var(--clr-primary); }
.legal-content {
  min-width: 0;
}
.legal-content h2 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dk);
  margin: var(--sp-10) 0 var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--clr-border);
  line-height: var(--lh-tight);
  scroll-margin-top: calc(var(--header-h) + var(--sp-8));
}
.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--clr-primary);
  margin: var(--sp-6) 0 var(--sp-3);
  scroll-margin-top: calc(var(--header-h) + var(--sp-8));
}
.legal-content p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-4);
}
.legal-content ul, .legal-content ol {
  margin: var(--sp-4) 0;
  padding-left: var(--sp-6);
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-2);
}
.legal-content a { color: var(--clr-primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--clr-primary-dk); }
.legal-content strong { color: var(--clr-text); font-weight: var(--fw-semi); }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-5) 0;
  font-size: var(--fs-sm);
}
.legal-content th {
  background: var(--clr-bg-warm);
  color: var(--clr-primary-dk);
  font-weight: var(--fw-semi);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border: 1px solid var(--clr-border);
}
.legal-content td {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  vertical-align: top;
}
.legal-content tr:nth-child(even) td { background: var(--clr-surface); }

/* ── THANKS PAGE ────────────────────────────────────────────── */
.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #3b5e3a 0%, #2a4529 100%);
  position: relative;
  overflow: hidden;
}
.thanks-page::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.07'/%3E%3C/svg%3E");
  pointer-events: none;
}
.thanks-page main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + var(--sp-12)) var(--sp-6) var(--sp-12);
  position: relative;
}
.thanks-card {
  background: var(--grad-card);
  border-radius: var(--r-2xl);
  padding: var(--sp-16) var(--sp-12);
  box-shadow: var(--sh-hero);
  border: 1px solid rgba(255,255,255,0.15);
  max-width: 520px;
  width: 100%;
  text-align: center;
}
.thanks-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-8);
  font-size: 2rem;
  color: var(--clr-white);
  box-shadow: 0 8px 28px rgba(200,121,65,0.35);
}
.thanks-card h1 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dk);
  margin-bottom: var(--sp-5);
}
.thanks-card p {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-8);
}

/* ── IMPRESSUM SPECIFICS ────────────────────────────────────── */
.impressum-content {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-6);
}
.impressum-content h1 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dk);
  margin-bottom: var(--sp-4);
}
.impressum-content .impressum-date {
  font-size: var(--fs-sm);
  color: var(--clr-text-light);
  margin-bottom: var(--sp-10);
}
.impressum-section {
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid var(--clr-border);
}
.impressum-section:last-child { border-bottom: none; }
.impressum-section h2 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dk);
  margin-bottom: var(--sp-5);
}
.impressum-section h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--clr-primary);
  margin: var(--sp-5) 0 var(--sp-3);
}
.impressum-section p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-3);
}
.impressum-section a { color: var(--clr-primary); text-decoration: underline; }
.impressum-section table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-4) 0;
  font-size: var(--fs-sm);
}
.impressum-section th {
  background: var(--clr-bg-warm);
  color: var(--clr-primary-dk);
  font-weight: var(--fw-semi);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border: 1px solid var(--clr-border);
}
.impressum-section td {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  vertical-align: top;
}
.impressum-section tr:nth-child(even) td { background: var(--clr-surface); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .global-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

@media (max-width: 900px) {
  .global-header__nav { display: none; }
  .global-header__hamburger { display: flex; }
  .global-header__mobile-menu { display: flex; }

  .home-hero__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .home-hero__visual { display: none; }
  .home-hero { min-height: auto; padding-bottom: var(--sp-16); }

  .home-methode__grid { grid-template-columns: 1fr; }
  .home-methode__card { padding: var(--sp-8); }

  .home-kursinhalt__module { grid-template-columns: 1fr; }
  .home-kursinhalt__module--reverse { direction: ltr; }
  .home-kursinhalt__module-img img { min-height: 200px; }

  .home-materialien__card { grid-template-columns: 1fr; }

  .home-bewaesserung__cols { grid-template-columns: 1fr; }

  .home-galerie__grid { grid-template-columns: 1fr 1fr; }

  .home-kontakt__inner { grid-template-columns: 1fr; }

  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { display: none; }
  .legal-mobile-toc { display: block; }

  .global-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }

  .home-hero__heading { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .home-hero__inner { padding: var(--sp-12) var(--sp-4); }

  .home-methode { padding: var(--sp-12) 0; }
  .home-methode__card { padding: var(--sp-6); border-radius: var(--r-lg); }

  .home-kursinhalt { padding: var(--sp-12) 0; }
  .home-kursinhalt__module-body { padding: var(--sp-6); }

  .home-materialien { padding: var(--sp-12) 0; }
  .home-materialien__card { padding: var(--sp-6); border-radius: var(--r-lg); }

  .home-bewaesserung { padding: var(--sp-12) 0; }

  .home-galerie { padding: var(--sp-12) 0; }
  .home-galerie__grid { grid-template-columns: 1fr; }

  .home-newsletter__content { flex-direction: column; align-items: flex-start; gap: var(--sp-5); }
  .home-newsletter__form { flex-direction: column; width: 100%; }
  .home-newsletter__input { min-width: 100%; width: 100%; }
  .home-newsletter .global-cta { width: 100%; justify-content: center; }

  .home-kontakt { padding: var(--sp-12) 0; }
  .home-kontakt__right { padding: var(--sp-6); border-radius: var(--r-lg); }

  .global-footer__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .global-footer__bottom { flex-direction: column; align-items: flex-start; }

  .slvx-cookie-card { width: calc(100vw - var(--sp-8)); right: var(--sp-4); bottom: var(--sp-4); }

  .thanks-card { padding: var(--sp-10) var(--sp-6); }

  .legal-layout { padding: var(--sp-6); }
  .impressum-content { padding: var(--sp-6); }
}