:root {
  --c-bg: #f7f5f0;
  --c-dark: #1a2318;
  --c-primary: #2d5a1b;
  --c-primary-mid: #3d7a25;
  --c-primary-light: #5a9e38;
  --c-accent: #c8a84b;
  --c-accent-light: #e8c96a;
  --c-surface: #ffffff;
  --c-surface-tint: #eef3eb;
  --c-text: #2a2a2a;
  --c-text-muted: #6b7280;
  --c-border: #d4ddd0;
  --grad-primary: linear-gradient(135deg, #2d5a1b 0%, #3d7a25 50%, #5a9e38 100%);
  --grad-accent: linear-gradient(135deg, #c8a84b 0%, #e8c96a 100%);
  --grad-hero: linear-gradient(135deg, #1a2318 0%, #2d5a1b 40%, #3d7a25 70%, #5a9e38 100%);
  --grad-warm: linear-gradient(135deg, #f7f5f0 0%, #eef3eb 100%);
  --shadow-sm: 0 1px 3px rgba(26,35,24,0.08), 0 1px 2px rgba(26,35,24,0.04);
  --shadow-md: 0 4px 12px rgba(26,35,24,0.10), 0 2px 4px rgba(26,35,24,0.06);
  --shadow-lg: 0 10px 30px rgba(26,35,24,0.12), 0 4px 8px rgba(26,35,24,0.08);
  --shadow-xl: 0 20px 50px rgba(26,35,24,0.15), 0 8px 16px rgba(26,35,24,0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.grad-txt {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.cookie-bar {
  background: var(--c-dark);
  color: #fff;
  padding: 0.6rem 1.5rem;
  position: fixed;
  z-index: 2000;
  width: 100%;
  bottom: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, padding 0.3s;
  max-height: fit-content;
  overflow: hidden;

  &.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
  }

  & .cookie-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  & .cookie-txt {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 0.5rem;

    & i { color: var(--c-primary-light); }

    & a {
      color: var(--c-accent-light);
      text-decoration: underline;
      transition: opacity 0.2s;
      &:hover { opacity: 0.8; }
    }
  }

  & .cookie-btns {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  & .cookie-decline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Source Sans 3', sans-serif;
    min-height: 32px;
    &:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
  }

  & .cookie-accept {
    background: var(--grad-primary);
    border: none;
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    min-height: 32px;
    &:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
  }
}


.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);

  &.hdr-full {
    background: rgba(247,245,240,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
    padding: 0.9rem 0;
  }

  &.hdr-mini {
    background: transparent;
    border-bottom: none;
    padding: 1rem 0;
    pointer-events: none;

    & .hdr-inner {
      opacity: 0;
      pointer-events: none;
    }
  }
}

.hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: opacity 0.2s;

  &:hover { opacity: 0.8; }
  & img { width: 36px; height: 36px; }

  & span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 2rem;

  & a {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--c-text);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.2s;

    &::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 2px;
      background: var(--grad-primary);
      transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
      border-radius: 2px;
    }

    &:hover { color: var(--c-primary); }
    &:hover::after { width: 100%; }
  }
}

.hdr-cta {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-primary) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: var(--shadow-md) !important;

  &:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-lg) !important;
  }
  &:active { transform: translateY(0) !important; }
  &::after { display: none !important; }

  & .dot {
    width: 7px; height: 7px;
    background: var(--c-accent-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}


.mini-pill {
  display: none;
  position: fixed;
  top: 1rem; right: 1.5rem;
  z-index: 1001;
  background: var(--grad-primary);
  border-radius: 50px;
  padding: 0.6rem 1.1rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  pointer-events: all;
  transition: transform 0.2s, box-shadow 0.2s;

  &:hover { transform: scale(1.05); box-shadow: var(--shadow-xl); }

  & span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
  }

  & .hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;

    & i {
      width: 18px; height: 2px;
      background: #fff;
      border-radius: 2px;
      display: block;
    }
  }
}

.mini-pill.show { display: flex; }


.mob-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;

  & span {
    width: 24px; height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
  }
}


.mob-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 20px rgba(26,35,24,0.12), 0 -1px 4px rgba(26,35,24,0.06);
  padding: 0.4rem 0 calc(0.4rem + env(safe-area-inset-bottom));
  justify-content: space-around;
  align-items: stretch;

  & .mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: var(--c-text-muted);
    font-size: 0.62rem;
    font-weight: 500;
    padding: 0.4rem 0.3rem;
    transition: color 0.2s;
    min-height: 52px;
    justify-content: center;
    flex: 1;
    border-radius: var(--radius-sm);
    margin: 0.2rem;

    & i {
      font-size: 1.15rem;
      transition: transform 0.2s;
    }

    &:hover { color: var(--c-primary); }
    &:hover i { transform: translateY(-2px); }

    &.active {
      color: var(--c-primary);
      background: var(--c-surface-tint);
    }

    &.active i { color: var(--c-primary); }
  }
}


.hero {
  background: var(--grad-hero);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;

  & .hero-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  & .geo-circle {
    position: absolute;
    border-radius: 50%;

    &.geo-c1 {
      width: 600px; height: 600px;
      top: -200px; right: -100px;
      background: radial-gradient(circle, rgba(90,158,56,0.15) 0%, transparent 70%);
      border: 1px solid rgba(255,255,255,0.08);
    }

    &.geo-c2 {
      width: 300px; height: 300px;
      bottom: -100px; left: 10%;
      border: 1px solid rgba(200,168,75,0.2);
      background: transparent;
    }
  }

  & .geo-rect {
    position: absolute;

    &.geo-r1 {
      width: 200px; height: 200px;
      top: 20%; right: 15%;
      border: 1px solid rgba(255,255,255,0.06);
      transform: rotate(15deg);
    }
  }

  & .geo-dots {
    position: absolute;
    top: 30%; left: 5%;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 16px 16px;
  }

  & .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
  }

  & .hero-content { z-index: 1; }

  & .hero-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    margin-bottom: 1.5rem;

    & span {
      color: var(--c-accent-light);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
  }

  & .hero-h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;

    & .grad-txt {
      background: var(--grad-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
  }

  & .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.7;
  }

  & .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }

  & .hero-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;

    & .meta-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255,255,255,0.65);
      font-size: 0.82rem;

      & i { color: var(--c-accent-light); font-size: 0.9rem; }
    }
  }

  & .hero-visual { z-index: 1; }

  & .hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);

    &::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(45,90,27,0.2) 0%, transparent 60%);
      z-index: 1;
    }
  }

  & .hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
    &:hover { transform: scale(1.03); }
  }

  & .hero-badge {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    background: rgba(26,35,24,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 0.7rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;

    & i { color: var(--c-primary-light); }
    & span { color: #fff; font-size: 0.85rem; font-weight: 600; }
  }
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad-primary);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;

  &:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  &:active { transform: translateY(-1px); }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.3);

  &:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
  }
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--c-primary);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--c-primary);

  &:hover { background: var(--c-primary); color: #fff; }
}


.deco-strip {
  padding: 1.2rem 0;
  background: var(--c-surface-tint);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;

  & .deco-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  & .ds-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--c-primary-light);
    flex-shrink: 0;
  }

  & .ds-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    max-width: 80px;
  }

  & .ds-ico {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-primary);
    border-radius: 50%;
    flex-shrink: 0;

    & i { color: #fff; font-size: 0.75rem; }
  }
}

.deco-strip-geo {
  background: linear-gradient(90deg, var(--c-surface-tint), #e8f0e4, var(--c-surface-tint));
  padding: 0.5rem 0;
  border: none;

  & .geo-strip-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--c-primary-light), var(--c-accent), var(--c-primary-light), transparent);
    width: 100%;
  }
}


.sec {
  padding: 6rem 0;

  & .sec-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  & .sec-label {
    display: inline-block;
    background: var(--c-surface-tint);
    color: var(--c-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid var(--c-border);
  }

  & .sec-label-inv {
    background: rgba(255,255,255,0.1);
    color: var(--c-accent-light);
    border-color: rgba(255,255,255,0.2);
  }

  & .sec-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--c-dark);
  }

  & .sec-sub {
    font-size: 1.05rem;
    color: var(--c-text-muted);
    max-width: 560px;
    line-height: 1.7;
  }

  & .sec-head {
    margin-bottom: 3rem;

    &.off-left { max-width: 600px; }
    &.centered { text-align: center; & .sec-sub { margin: 0 auto; } }
    &.off-right { margin-left: auto; max-width: 600px; }
  }
}


.sec-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;

  &.sec-split-rev {
    direction: rtl;
    & > * { direction: ltr; }
  }
}

.split-img {
  position: relative;

  & a {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s, box-shadow 0.3s;

    &:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
  }

  & img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s;
  }

  & a:hover img { transform: scale(1.04); }
}

.img-caption {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-top: 0.8rem;
  text-align: center;
  font-style: italic;
}

.split-txt {
  & p {
    color: var(--c-text-muted);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.8;
  }

  & .sec-title { margin-bottom: 1.2rem; }
}


.themen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.crd {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;

  &:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-primary-light);
  }
}

.crd-thema {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.8rem;
  text-decoration: none;
  color: inherit;

  & .crd-ico-wrap {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
  }

  & .crd-ico { color: #fff; font-size: 1.2rem; }

  & .crd-txt {
    flex: 1;

    & h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      color: var(--c-dark);
    }

    & p {
      font-size: 0.88rem;
      color: var(--c-text-muted);
      line-height: 1.6;
    }
  }

  & .crd-arrow {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    transition: transform 0.2s, color 0.2s;
    margin-top: 0.2rem;
    flex-shrink: 0;
  }

  &:hover .crd-arrow {
    transform: translateX(4px);
    color: var(--c-primary);
  }
}


.holz-vergleich {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.holz-item {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  transition: box-shadow 0.2s;

  &:hover { box-shadow: var(--shadow-md); }

  & strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--c-dark);
  }

  & span { font-size: 0.82rem; color: var(--c-text-muted); }
}

.holz-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.4rem;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;

  &.holz-badge-warn {
    background: #fef3cd;
    color: #856404;
    border-color: #fde68a;
  }

  &.holz-badge-bad {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fca5a5;
  }
}


.schichten-flow {
  max-width: 700px;
  margin: 0 auto;
}

.schicht-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;

  & .schicht-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
  }

  & .schicht-body {
    flex: 1;
    padding-bottom: 0.5rem;

    & h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.4rem;
    }

    & p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.6;
    }
  }
}

.schicht-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--c-primary-light), var(--c-accent));
  margin-left: 23px;
  border-radius: 2px;
  opacity: 0.5;
}


.inv-sec {
  background: var(--grad-hero) !important;
  color: #fff;

  & .sec-title { color: #fff; }
  & .sec-sub { color: rgba(255,255,255,0.75); }
}


.pflanzen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0;
}

.pflanze-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--c-surface-tint);
  border: 1px solid var(--c-border);
  color: var(--c-primary);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;

  &:hover {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
  }
}


.schnecken-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.crd-schnecke {
  padding: 1.8rem;

  & .schnecke-ico { font-size: 1.5rem; margin-bottom: 0.8rem; }

  & h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 0.5rem;
  }

  & p {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

.eff-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;

  &.eff-gut { background: #dcfce7; color: #166534; }
  &.eff-mittel { background: #fef3cd; color: #856404; }
}

.schnecken-img-row {
  & a {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    &:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  }

  & img { width: 100%; height: 280px; object-fit: cover; }
}


.saison-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.saison-col {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}

.saison-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;

  & i { font-size: 1.3rem; }
  & h3 { font-size: 1rem; font-weight: 700; color: #fff; }

  &.winter {
    background: linear-gradient(135deg, #1e3a5f, #2d5a8e);
    & i { color: #93c5fd; }
  }

  &.fruehling {
    background: var(--grad-primary);
    & i { color: var(--c-accent-light); }
  }
}

.saison-steps { padding: 1.2rem; }

.saison-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--c-border);

  &:last-child { border-bottom: none; }

  & .step-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--c-primary-light);
    flex-shrink: 0;
    padding-top: 0.15rem;
    min-width: 24px;
  }

  & strong {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-dark);
    margin-bottom: 0.2rem;
  }

  & p { font-size: 0.83rem; color: var(--c-text-muted); line-height: 1.5; }
}

.saison-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;

  & a {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    &:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  }

  & img { width: 100%; height: 220px; object-fit: cover; }
}


.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.wf-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;

  & .wf-ico {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    z-index: 1;
    transition: transform 0.2s, box-shadow 0.2s;

    & i { color: #fff; font-size: 1.2rem; }
  }

  &:hover .wf-ico {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
  }

  & .wf-content {
    flex: 1;
    padding: 0.5rem 0 2.5rem;

    & h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--c-dark);
      margin-bottom: 0.4rem;
    }

    & p { font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.6; }
  }

  & .wf-conn {
    position: absolute;
    left: 27px;
    top: 56px;
    width: 2px;
    height: calc(100% - 56px);
    background: linear-gradient(180deg, var(--c-primary-light), var(--c-border));
    border-radius: 2px;
  }

  &:last-child .wf-conn { display: none; }
}


.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;

  &:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--c-primary-light);
  }
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-dark);
  transition: color 0.2s;
  min-height: 44px;

  &:hover { color: var(--c-primary); }

  & .faq-ico {
    flex-shrink: 0;
    color: var(--c-primary-light);
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  }

  &[aria-expanded="true"] .faq-ico { transform: rotate(45deg); }
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);

  & p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    padding: 0 1.5rem 1.3rem;
  }

  &.open { max-height: 400px; }
}


.einkauf-liste {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.einkauf-kat {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;

  &:hover { box-shadow: var(--shadow-md); }

  & h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  & ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;

    & li {
      font-size: 0.87rem;
      color: var(--c-text-muted);
      padding-left: 1rem;
      position: relative;

      &::before {
        content: '';
        position: absolute;
        left: 0; top: 0.6em;
        width: 5px; height: 5px;
        border-radius: 50%;
        background: var(--c-primary-light);
      }
    }
  }
}


.cta-sec {
  background: var(--c-surface-tint);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.cta-inner {
  position: relative;
  overflow: hidden;
  text-align: center;

  & .cta-geo { position: absolute; inset: 0; pointer-events: none; }

  & .cta-circle {
    position: absolute;
    border-radius: 50%;

    &.c1 {
      width: 300px; height: 300px;
      top: -150px; right: -50px;
      background: radial-gradient(circle, rgba(45,90,27,0.06) 0%, transparent 70%);
      border: 1px solid rgba(45,90,27,0.08);
    }

    &.c2 {
      width: 200px; height: 200px;
      bottom: -100px; left: 5%;
      border: 1px solid rgba(200,168,75,0.15);
    }
  }

  & .cta-content {
    position: relative;
    z-index: 1;
    max-width: 540px;
    margin: 0 auto;

    & h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--c-dark);
      margin-bottom: 1rem;
    }

    & p {
      color: var(--c-text-muted);
      margin-bottom: 2rem;
      font-size: 1rem;
      line-height: 1.7;
    }
  }
}


.ftr {
  background: var(--c-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
  margin-top: auto;

  & .ftr-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
  }

  & .ftr-brand {
    & p {
      font-size: 0.88rem;
      line-height: 1.7;
      margin: 1rem 0 1.5rem;
      max-width: 340px;
      color: rgba(255,255,255,0.55);
    }
  }

  & .ftr-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: opacity 0.2s;

    &:hover { opacity: 0.8; }

    & img {
      width: 32px; height: 32px;
    }

    & span {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      color: #fff;
    }
  }

  & .ftr-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    & a, & span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;

      & i { color: var(--c-primary-light); width: 16px; }
    }

    & a:hover { color: rgba(255,255,255,0.9); }
  }

  & .ftr-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  & .ftr-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;

    & h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: #fff;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }

    & a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;
      &:hover { color: rgba(255,255,255,0.9); }
    }
  }

  & .ftr-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.2rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
  }
}


.page-main {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-hero-sm {
  background: var(--grad-hero);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;

  & .page-hero-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;

    & .geo-circle {
      position: absolute;
      border-radius: 50%;

      &.geo-c1 {
        width: 400px; height: 400px;
        top: -200px; right: -100px;
        background: radial-gradient(circle, rgba(90,158,56,0.12) 0%, transparent 70%);
        border: 1px solid rgba(255,255,255,0.06);
      }
    }

    & .geo-rect {
      position: absolute;

      &.geo-r1 {
        width: 150px; height: 150px;
        bottom: 10%; left: 5%;
        border: 1px solid rgba(255,255,255,0.05);
        transform: rotate(20deg);
      }
    }
  }

  & .page-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;

    & h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: #fff;
      margin: 0.5rem 0 1rem;
    }

    & p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.75);
      max-width: 520px;
      line-height: 1.7;
    }
  }
}


.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.val-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--c-surface-tint);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  transition: box-shadow 0.2s;

  &:hover { box-shadow: var(--shadow-sm); }

  & i {
    color: var(--c-primary-light);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }

  & strong {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--c-dark);
    margin-bottom: 0.2rem;
  }

  & span { font-size: 0.87rem; color: var(--c-text-muted); line-height: 1.5; }
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.phil-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.2s;

  &:hover { background: rgba(255,255,255,0.12); }

  & i {
    font-size: 1.8rem;
    color: var(--c-accent-light);
    margin-bottom: 1rem;
    display: block;
  }

  & h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
  }

  & p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
}

.contact-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}


.begriffe-alpha {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.alpha-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-primary);
  text-decoration: none;
  transition: all 0.2s;

  &:hover {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }
}

.begriffe-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.begriffe-gruppe {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  align-items: start;
}

.gruppe-letter {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--c-border);
  line-height: 1;
  position: sticky;
  top: 100px;
}

.begriffe-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.begriff-item {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;

  &:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--c-primary-light);
  }

  & h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 0.6rem;
  }

  & p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 0.8rem;
  }
}

.begriff-tag {
  display: inline-block;
  background: var(--c-surface-tint);
  color: var(--c-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  border: 1px solid var(--c-border);
  letter-spacing: 0.05em;
}


.leserbrief-intro {
  background: var(--c-surface-tint);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;

  & p { font-size: 0.9rem; color: var(--c-text-muted); line-height: 1.7; }
}

.leserbriefe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.leserbrief-crd {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;

  &:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}

.lb-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.lb-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lb-meta {
  flex: 1;

  & strong {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-dark);
  }

  & span { font-size: 0.78rem; color: var(--c-text-muted); }
}

.lb-datum {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  flex-shrink: 0;
  font-style: italic;
}

.lb-body {
  & p {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    border-left: 3px solid var(--c-primary-light);
    padding-left: 1rem;
  }
}

.lb-thema {
  font-size: 0.75rem;
  color: var(--c-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lb-cta-box {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  color: #fff;

  & h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
  }

  & p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  & .btn-primary {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);

    &:hover {
      background: rgba(255,255,255,0.25);
      border-color: rgba(255,255,255,0.8);
    }
  }
}


.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-map {
  & .map-wrap {
    height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;

    & iframe { width: 100%; height: 100%; border: 0; display: block; }
  }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--c-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;

  &:hover { box-shadow: var(--shadow-md); }

  & i {
    color: var(--c-primary-light);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 20px;
  }

  & strong {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--c-dark);
    margin-bottom: 0.2rem;
  }

  & span, & a {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
  }

  & a:hover { color: var(--c-primary); }
}

.contact-form-wrap {
  & h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: 0.5rem;
  }

  & > p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
  }
}


.frm {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.frm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.frm-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;

  & label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-dark);
  }

  & input, & textarea, & select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    color: var(--c-text);
    background: var(--c-surface);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;

    &:focus {
      border-color: var(--c-primary-light);
      box-shadow: 0 0 0 3px rgba(90,158,56,0.12);
    }

    &::placeholder { color: var(--c-text-muted); }
  }

  & textarea { resize: vertical; min-height: 120px; }
}

.frm-check {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;

  & input[type="checkbox"] {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 0.2rem;
    accent-color: var(--c-primary);
    cursor: pointer;
  }

  & label {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    cursor: pointer;

    & a {
      color: var(--c-primary);
      text-decoration: underline;
      &:hover { opacity: 0.8; }
    }
  }
}

.frm-submit {
  align-self: flex-start;
  min-height: 48px;
}


.availability-sec {
  background: var(--c-surface-tint);
  border-top: 1px solid var(--c-border);
}

.avail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.avail-item {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);

  & .avail-day {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-dark);
    margin-bottom: 0.3rem;
  }

  & .avail-time {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-bottom: 0.8rem;
  }

  & .avail-bar {
    height: 6px;
    background: var(--c-border);
    border-radius: 50px;
    overflow: hidden;
  }

  & .avail-fill {
    height: 100%;
    background: var(--grad-primary);
    border-radius: 50px;
    transition: width 1s ease;

    &.avail-warn { background: var(--grad-accent); }
  }
}


.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.thanks-inner {
  max-width: 520px;
  width: 100%;
  text-align: center;

  & .thanks-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);

    & i { color: #fff; font-size: 2rem; }
  }

  & h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: 1rem;
  }

  & > p {
    font-size: 1rem;
    color: var(--c-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  & .btn-primary { margin: 0 auto 3rem; }
}

.timeline-wrap {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  text-align: left;

  & h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 1.5rem;
    text-align: center;
  }
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;

  & .tl-ico {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    & i { color: var(--c-text-muted); font-size: 0.85rem; }
  }

  & .tl-ico-active {
    background: var(--grad-primary);
    box-shadow: var(--shadow-md);
    & i { color: #fff; }
  }

  & .tl-ico-upcoming {
    background: var(--c-surface-tint);
    border: 2px dashed var(--c-border);
    & i { color: var(--c-text-muted); }
  }

  & .tl-content {
    padding-bottom: 1.5rem;

    & strong {
      display: block;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--c-dark);
      margin-bottom: 0.2rem;
    }

    & span { font-size: 0.8rem; color: var(--c-text-muted); }
  }

  &.tl-done .tl-ico {
    background: var(--grad-primary);
    & i { color: #fff; }
  }

  &.tl-upcoming .tl-content strong { color: var(--c-text-muted); }
}

.tl-connector {
  width: 2px;
  height: 20px;
  background: var(--c-border);
  margin-left: 17px;
  border-radius: 2px;

  &.tl-connector-done { background: var(--grad-primary); }
}


.legal-page {
  & .legal-hero {
    background: var(--grad-hero);
    padding: 5rem 2rem 3rem;

    & h1 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      max-width: 1280px;
      margin: 0 auto 0.5rem;
    }

    & p {
      color: rgba(255,255,255,0.65);
      font-size: 0.9rem;
      max-width: 1280px;
      margin: 0 auto;
    }
  }

  & .legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
  }

  & .legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--c-border);

    &:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    & h2 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--c-dark);
      margin-bottom: 1rem;
      padding-left: 1rem;
      border-left: 3px solid var(--c-primary-light);
    }

    & p {
      font-size: 0.9rem;
      color: var(--c-text-muted);
      line-height: 1.8;
      margin-bottom: 0.8rem;

      &:last-child { margin-bottom: 0; }
    }

    & a {
      color: var(--c-primary);
      text-decoration: underline;
      &:hover { opacity: 0.8; }
    }
  }
}

.imp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.8rem;

  & tr {
    border-bottom: 1px solid var(--c-border);

    &:last-child { border-bottom: none; }
  }

  & td {
    padding: 0.6rem 0.8rem;
    vertical-align: top;
    line-height: 1.5;

    &:first-child {
      font-weight: 600;
      color: var(--c-dark);
      width: 40%;
      background: var(--c-surface-tint);
    }

    &:last-child { color: var(--c-text-muted); }
  }

  & a {
    color: var(--c-primary);
    text-decoration: underline;
  }
}


@media (max-width: 1024px) {
  .hero .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero .hero-visual { order: -1; }
  .hero .hero-img { height: 320px; }
  .hero .hero-h1 { font-size: clamp(2rem, 5vw, 3rem); }

  .sec-split { grid-template-columns: 1fr; gap: 2rem; }
  .sec-split.sec-split-rev { direction: ltr; }
  .split-img img { height: 300px; }

  .themen-grid { grid-template-columns: 1fr; }
  .schnecken-grid { grid-template-columns: 1fr; }
  .saison-tabs { grid-template-columns: 1fr; }
  .saison-img-row { grid-template-columns: 1fr; }
  .holz-vergleich { grid-template-columns: 1fr; }
  .leserbriefe-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 2rem; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .avail-grid { grid-template-columns: 1fr; }
  .ftr .ftr-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ftr .ftr-links { grid-template-columns: repeat(3, 1fr); }
  .begriffe-gruppe { grid-template-columns: 40px 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  .hdr-nav { display: none; }
  .mob-hamburger { display: flex; }
  .mob-nav { display: flex; }

  body { padding-bottom: 70px; }

  .hero .hero-inner { padding: 6rem 1.5rem 3rem; }
  .hero .hero-meta { gap: 0.8rem; }

  .sec { padding: 4rem 0; }
  .sec .sec-inner { padding: 0 1.5rem; }

  .page-hero-sm { padding: 4rem 1.5rem 3rem; }
  .page-hero-sm .page-hero-content { padding: 0; }

  .frm-row { grid-template-columns: 1fr; }

  .themen-grid { grid-template-columns: 1fr; }

  .wf-step { gap: 1rem; }
  .wf-step .wf-ico { width: 44px; height: 44px; }
  .wf-step .wf-conn { left: 21px; }

  .ftr .ftr-inner { padding: 0 1.5rem 2rem; }
  .ftr .ftr-links { grid-template-columns: repeat(2, 1fr); }
  .ftr .ftr-bottom { padding: 1rem 1.5rem; flex-direction: column; gap: 0.3rem; text-align: center; }

  .legal-content { padding: 2rem 1.5rem 3rem; }
  .legal-hero { padding: 4rem 1.5rem 2.5rem; }

  .begriffe-gruppe { grid-template-columns: 1fr; }
  .gruppe-letter { font-size: 2rem; position: static; }

  .contact-map .map-wrap { height: 260px; }

  .deco-strip .deco-strip-inner { gap: 0; }

  .imp-table td:first-child { width: 45%; }
  .imp-table { font-size: 0.82rem; }

  .cookie-bar .cookie-bar-inner { flex-direction: column; align-items: flex-start; gap: 0.6rem; }

  .hero-badge { bottom: 1rem; left: 1rem; }
  .hero-badge span { font-size: 0.75rem; }

  .saison-tabs { grid-template-columns: 1fr; }
  .saison-img-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero .hero-h1 { font-size: 2rem; }
  .hero .hero-actions { flex-direction: column; }
  .hero .hero-actions .btn-outline { text-align: center; justify-content: center; }

  .btn-primary, .btn-outline, .btn-outline-dark {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .schicht-item { gap: 1rem; }
  .schicht-item .schicht-num { width: 40px; height: 40px; font-size: 0.95rem; }

  .ftr .ftr-links { grid-template-columns: 1fr; }

  .contact-cta-row { flex-direction: column; }
  .contact-cta-row .btn-outline { color: var(--c-primary); border-color: var(--c-primary); }
  .contact-cta-row .btn-outline:hover { background: var(--c-primary); color: #fff; }

  .lb-header { flex-wrap: wrap; }
  .lb-datum { width: 100%; }

  .avail-grid { grid-template-columns: 1fr; }
}