/* ============================================================
   winterhartepalmen.de – Hauptstylesheet
   Ästhetik: Botanisch-Editorial, warm, clean, vertrauenswürdig
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;0,700;0,800;1,600;1,700&family=Lato:wght@300;400;700&display=swap');

/* ── CSS-Variablen ─────────────────────────────────────────── */
:root {
  --gruen-dunkel:    #1E3A1E;
  --gruen-mittel:    #2D5C2D;
  --gruen-hell:      #3D7A3D;
  --gruen-accent:    #4A8C4A;
  --gruen-zart:      #D6E8D6;
  --gruen-ultra:     #EEF5EE;
  --creme:           #F7F3EC;
  --creme-dunkel:    #EDE7DB;
  --sand:            #E8DFD0;
  --braun-warm:      #7A5C3A;
  --text-dunkel:     #1A2A1A;
  --text-mittel:     #3D4D3D;
  --text-hell:       #4E6250;
  --weiss:           #FFFFFF;
  --schatten-soft:   0 2px 16px rgba(30,58,30,0.08);
  --schatten-mittel: 0 4px 32px rgba(30,58,30,0.13);
  --schatten-stark:  0 8px 48px rgba(30,58,30,0.20);
  --radius-s:        8px;
  --radius-m:        14px;
  --radius-l:        24px;
  --radius-xl:       40px;
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:       1280px;
  --section-pad:     clamp(60px, 8vw, 100px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--creme);
  color: var(--text-dunkel);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── Typografie ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--gruen-dunkel);
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-mittel); font-size: 1rem; line-height: 1.75; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gruen-hell);
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 28px;
  background: var(--gruen-hell);
  opacity: 0.5;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  overflow: visible;
}

/* Screen-reader only – visuell unsichtbar, für SEO und Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 40px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gruen-mittel);
  color: var(--weiss);
  box-shadow: 0 4px 16px rgba(45,92,45,0.35);
}
.btn-primary:hover {
  background: var(--gruen-dunkel);
  box-shadow: 0 6px 24px rgba(45,92,45,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gruen-dunkel);
  border: 2px solid var(--gruen-dunkel);
}
.btn-outline:hover {
  background: var(--gruen-dunkel);
  color: var(--weiss);
}

.btn-white {
  background: var(--weiss);
  color: var(--gruen-dunkel);
}
.btn-white:hover {
  background: var(--creme);
  transform: translateY(-1px);
}

/* ── Temperatur-Badge ──────────────────────────────────────── */
.temp-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gruen-mittel);
  color: var(--weiss);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.temp-badge.orange { background: #8B5E3C; }
.temp-badge.dark   { background: var(--gruen-dunkel); }

/* ── Schwierigkeit-Badge ───────────────────────────────────── */
.difficulty-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-hell);
  padding: 3px 8px;
  background: var(--creme-dunkel);
  border-radius: 12px;
}

/* ═══════════════════════════════════════════════════════════
   GRADIENT STRIP + NAVIGATION
   ═══════════════════════════════════════════════════════════ */

/* Streifen oberhalb */
.nav-gradient-strip {
  height: 5px;
  background: linear-gradient(to right, #628333, #27401a);
  position: sticky;
  top: 0;
  z-index: 101;
}

/* Header – sticky, scrollt mit der Seite */
.site-header {
  position: sticky;
  top: 5px;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(30,58,30,0.10);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(30,58,30,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 83px;
  gap: 0;
}

/* Logo als Bild */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: 28px;
}
.site-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

/* Haupt-Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dunkel);
  border-radius: var(--radius-s);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-link:focus {
  color: var(--gruen-mittel);
  background: var(--gruen-ultra);
}
.nav-link .chevron {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform var(--transition);
  opacity: 0.5;
}
.nav-item:hover .chevron { transform: rotate(180deg); opacity: 1; }

/* Hover-Bridge – unsichtbares Rechteck zwischen Nav-Link und Dropdown
   verhindert dass der Hover-Status bricht wenn man zum Submenü fährt */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 16px;       /* überbrückt den 12px-Abstand zum Dropdown */
  z-index: 1;
}

/* Dropdown – hell, schwebend */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--weiss);
  border: 1px solid rgba(30,58,30,0.12);
  border-radius: var(--radius-m);
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown-Einträge: nur Text, kein Icon */
.nav-dropdown a,
.nav-dropdown a.dd-entry {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition);
  min-height: 48px;
  justify-content: center;
}
.nav-dropdown a:hover { background: var(--gruen-ultra); }
.nav-dropdown a strong {
  display: block;
  font-weight: 700;
  font-size: 0.845rem;
  color: var(--gruen-dunkel);
  line-height: 1.3;
}
.nav-dropdown a span {
  font-size: 0.74rem;
  color: var(--text-hell);
  margin-top: 1px;
}
.nav-dropdown .dd-alle strong { color: var(--gruen-mittel); }
.nav-dropdown .dd-divider {
  height: 1px;
  background: var(--creme-dunkel);
  margin: 5px 4px;
}

/* ── Rechter Bereich + Shop-Pill-Reste: alles entfernt ─── */

/* Mobil Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gruen-dunkel);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════════
   HERO-PALMEN BANNER (unter dem Hero)
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--creme);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 88px);
  max-height: 750px;
}

/* Bild liegt als absoluter Hintergrund hinter allem */
.hero-right {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

/* Text-Seite: links, nimmt ~55% ein, liegt über dem Bild */
.hero-left {
  position: relative;
  z-index: 2;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 80px) clamp(32px, 5vw, 72px);
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 22px;
}

.hero-title .highlight {
  color: var(--gruen-mittel);
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mittel);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Trust-Items mit Häkchen statt Emojis */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mittel);
  letter-spacing: 0.02em;
}
.trust-item .ti-icon {
  width: 22px;
  height: 22px;
  background: var(--gruen-mittel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* SVG-Häkchen per CSS */
.trust-item .ti-icon::before {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: var(--gruen-mittel);
  color: var(--weiss);
  border-radius: 50%;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(45,92,45,0.40);
  z-index: 3;
}
.hero-badge .badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
}
.hero-badge .badge-txt {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  margin-top: 5px;
  opacity: 0.88;
}

/* ═══════════════════════════════════════════════════════════
   VIELFALT / KATEGORIEN
   ═══════════════════════════════════════════════════════════ */
.section-vielfalt {
  padding: var(--section-pad) 0;
  background: var(--weiss);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-header .section-label {
  justify-content: center;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  margin: 0 auto;
  font-size: 1.05rem;
}

.kategorie-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.kat-card {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
  background: var(--creme);
}
.kat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten-mittel), 0 0 0 2px #628333;
}

.kat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.kat-card:hover img { transform: scale(1.05); }

.kat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,38,18,0.88) 0%, rgba(18,38,18,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
}

.kat-overlay h3 {
  color: var(--weiss);
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.kat-overlay p {
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  line-height: 1.45;
  margin-bottom: 12px;
}
.kat-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--weiss);
  font-size: 1rem;
}
.kat-card:hover .kat-arrow {
  background: var(--weiss);
  color: var(--gruen-dunkel);
}

/* ═══════════════════════════════════════════════════════════
   USP / FEATURES
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   USP – animierter Gradient + Canvas-Lichteffekt
   ═══════════════════════════════════════════════════════════ */
.section-usp {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(135deg, #1a3a1a 0%, #234f24 50%, #1a3a1a 100%);
  overflow: hidden;
}
/* Composited breathing-light overlay statt background-position Animation */
.section-usp::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(80,140,60,0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 75% 30%, rgba(60,120,40,0.12) 0%, transparent 60%);
  animation: uspBreath 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes uspBreath {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* Canvas für fliegende Lichtpunkte */
/* Wind-Animationen – drei verschiedene Rhythmen für natürlichen Effekt */
@keyframes windLeft {
  0%   { transform: rotate(-4deg) translateX(0px); }
  30%  { transform: rotate(-1deg) translateX(6px); }
  60%  { transform: rotate(-5deg) translateX(-4px); }
  100% { transform: rotate(-4deg) translateX(0px); }
}
@keyframes windRight {
  0%   { transform: rotate(6deg) translateX(0px); }
  35%  { transform: rotate(3deg) translateX(-8px); }
  65%  { transform: rotate(8deg) translateX(4px); }
  100% { transform: rotate(6deg) translateX(0px); }
}
@keyframes windDown {
  0%   { transform: translateX(0px) translateY(0px); }
  40%  { transform: translateX(10px) translateY(-6px); }
  70%  { transform: translateX(-6px) translateY(4px); }
  100% { transform: translateX(0px) translateY(0px); }
}

/* Basis für alle drei Palmblätter */
.usp-palm {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.55;
}

/* Links am Browserrand */
.usp-palm-left {
  left: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(-4deg);
  height: 240%;
  width: auto;
  transform-origin: left center;
  animation: windLeft 9s ease-in-out infinite;
}

/* Rechts am Browserrand */
.usp-palm-right {
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(6deg);
  height: 90%;
  width: auto;
  transform-origin: right center;
  animation: windRight 11s ease-in-out infinite;
}

/* Unten unter den Kästchen */
.usp-palm-down {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: auto;
  transform-origin: bottom center;
  animation: windDown 13s ease-in-out infinite;
  opacity: 0.30;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 20px;
  border-radius: var(--radius-l);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(4px);
  transition: transform 0.4s ease, background 0.4s ease;
}
.usp-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.11);
}

.usp-icon {
  width: 68px;
  height: 68px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.90);
  box-shadow: 0 0 20px rgba(100,200,100,0.15);
  transition: box-shadow 0.4s ease;
}
.usp-item:hover .usp-icon {
  box-shadow: 0 0 30px rgba(120,220,120,0.30);
}
.usp-icon svg {
  width: 32px;
  height: 32px;
}

.usp-label, .usp-item h4 {
  font-size: 0.80rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  font-family: 'Montserrat', sans-serif;
}
.usp-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   BELIEBTE PALMEN
   ═══════════════════════════════════════════════════════════ */
.section-palmen {
  padding: var(--section-pad) 0;
  background: #f4efe5;
  position: relative;
  overflow: hidden;
}

/* bg-palme links, geht von oben nach unten durch die Sektion */
.palmen-deko-blatt {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  max-width: 55%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section-row-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.section-row-header .alle-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gruen-mittel);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: var(--transition);
  padding: 7px 16px 7px 12px;
  border-radius: 30px;
  border: 1.5px solid transparent;
  text-decoration: none;
}
.section-row-header .alle-link:hover {
  color: var(--gruen-dunkel);
  border-color: var(--gruen-dunkel);
  background: rgba(45,92,45,0.06);
  gap: 10px;
}

.palmen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.palm-card {
  position: relative;
  background: var(--weiss);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--schatten-soft);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.palm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--schatten-mittel);
}

.palm-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.palm-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.palm-card:hover .palm-card-img img { transform: scale(1.06); }

.palm-card-badges {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Badges über Bildern: weißer Hintergrund damit sie auf jedem Motiv lesbar sind */
.palm-card-badges .diff-badge {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-color: rgba(255,255,255,0.5);
  color: var(--text-dunkel);
}
.palm-card-badges .temp-badge {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.palm-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.palm-card-body .palm-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gruen-dunkel);
  margin: 0;
}
.palm-card-body .palm-latin {
  font-size: 0.8rem;
  color: var(--text-hell);
  font-style: italic;
}
.palm-card-body p {
  font-size: 0.875rem;
  color: var(--text-mittel);
  line-height: 1.6;
  flex: 1;
}
.palm-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--creme-dunkel);
}
.palm-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gruen-ultra);
  color: var(--gruen-dunkel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.palm-card:hover .palm-card-arrow {
  background: var(--gruen-dunkel);
  color: var(--weiss);
}

/* ═══════════════════════════════════════════════════════════
   ÜBER / INFO SECTION
   ═══════════════════════════════════════════════════════════ */
.section-ueber {
  padding: var(--section-pad) 0;
  background: var(--weiss);
}

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.ueber-img-wrap {
  position: relative;
}

.ueber-img-wrap .main-img {
  width: 100%;
  border-radius: var(--radius-l);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--schatten-mittel);
}

.ueber-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gruen-dunkel);
  color: var(--weiss);
  border-radius: var(--radius-m);
  padding: 20px 24px;
  box-shadow: var(--schatten-mittel);
  max-width: 200px;
}
.ueber-img-badge .big-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--weiss);
}
.ueber-img-badge .big-txt {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.4;
  margin-top: 4px;
}

.ueber-content .section-label { margin-bottom: 14px; }
.ueber-content h2 { margin-bottom: 20px; }
.ueber-content p { margin-bottom: 18px; }

.ueber-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.stat-box {
  background: var(--gruen-ultra);
  border-radius: var(--radius-m);
  padding: 18px 20px;
  border-left: 3px solid var(--gruen-mittel);
}
.stat-box .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gruen-dunkel);
}
.stat-box .stat-txt {
  font-size: 0.8rem;
  color: var(--text-mittel);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   RATGEBER SECTION
   ═══════════════════════════════════════════════════════════ */
.section-ratgeber {
  padding: var(--section-pad) 0;
  background: var(--creme);
}

.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rat-card {
  background: var(--weiss);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--schatten-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.rat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten-mittel);
}

.rat-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.rat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.rat-card:hover .rat-card-img img { transform: scale(1.05); }

.rat-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rat-tag {
  display: inline-block;
  background: var(--gruen-ultra);
  color: var(--gruen-mittel);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.rat-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.rat-card-body p {
  font-size: 0.875rem;
  flex: 1;
  margin-bottom: 18px;
}
.rat-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gruen-mittel);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.rat-card:hover .rat-card-link { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   HYBRID SECTION
   ═══════════════════════════════════════════════════════════ */
.section-hybride {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #52702C 0%, #3E5A24 100%);
  position: relative;
  overflow: hidden;
}
/* Sanfter Abdunklungsverlauf unten */
.section-hybride::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(40,56,20,0.55));
  pointer-events: none;
  z-index: 1;
}

/* Palm-right: komplett sichtbar, kein Abschneiden */
.hybride-palm-right {
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-40%);
  height: 110%;
  width: auto;
  opacity: 0.50;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transform-origin: right center;
  animation: windRight 11s ease-in-out infinite;
}

/* Palm-down links unten in der Hybride-Sektion */
.hybride-palm-down {
  position: absolute;
  left: 0;
  bottom: -70px;
  width: auto;
  height: 55%;
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transform-origin: bottom left;
  animation: windLeft 13s ease-in-out infinite;
}

.section-hybride .section-label { color: rgba(255,255,255,0.6); }
.section-hybride .section-label::before,
.section-hybride .section-label::after { background: rgba(255,255,255,0.3); }
.section-hybride .section-header { position: relative; z-index: 2; }
.section-hybride h2 { color: var(--weiss); margin-bottom: 14px; }
.section-hybride .section-header p { color: rgba(255,255,255,0.72); }

.hybrid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.hybrid-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.hybrid-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.30);
  transform: translateY(-3px);
}

/* Bild-Bereich oben in der Karte */
.hc-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.hc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.hybrid-card:hover .hc-img-wrap img {
  transform: scale(1.05);
}

/* Text-Bereich */
.hybrid-card h3, .hybrid-card h4 {
  color: var(--weiss);
  font-size: 0.95rem;
  margin-bottom: 7px;
  padding: 18px 18px 0;
}
.hybrid-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.55;
  padding: 0 18px;
  flex: 1;
}
.hc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 12px 18px 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  gap: 8px;
}
.hc-temp {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   TEMPERATUR-VERGLEICH
   ═══════════════════════════════════════════════════════════ */
.section-temp {
  padding: var(--section-pad) 0;
  background: var(--weiss);
}

/* Scroll-Wrapper für mittlere Bildschirme */
.temp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-l);
  box-shadow: var(--schatten-soft);
  margin-top: 36px;
}

.temp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.temp-table thead {
  background: var(--gruen-dunkel);
  color: var(--weiss);
}
.temp-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.temp-table tbody tr {
  border-bottom: 1px solid var(--creme-dunkel);
  transition: background var(--transition);
}
.temp-table tbody tr:last-child { border-bottom: none; }
.temp-table tbody tr:hover { background: var(--gruen-ultra); }
.temp-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--text-mittel);
  white-space: nowrap;
}
.temp-table td:first-child {
  font-weight: 700;
  color: var(--gruen-dunkel);
  white-space: normal; /* Artname darf umbrechen */
  min-width: 140px;
}
/* Hinweis-Spalte auf kleinen Screens ausblenden */
.col-hinweis { }

.difficulty-stars { display: none; }

/* ── Schwierigkeits-Badges ──────────────────────────────── */
.diff-badge {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  border-width: 1px;
  border-style: solid;
  white-space: nowrap;
}
.diff-einfach        { color: #1a5c1a; background: rgba(26,92,26,0.10);   border-color: #1a5c1a; }
.diff-mittel         { color: #2d7a2d; background: rgba(45,122,45,0.10);  border-color: #2d7a2d; }
.diff-fortgeschritten{ color: #8a6800; background: rgba(200,160,0,0.10);  border-color: #b38a00; }
.diff-anspruchsvoll  { color: #b84a00; background: rgba(200,80,0,0.10);   border-color: #b84a00; }
.diff-profi          { color: #9b1a1a; background: rgba(155,26,26,0.10);  border-color: #9b1a1a; }

/* Hybridkarten Footer */
.hc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  gap: 8px;
}
.hc-temp {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
/* Diff-Badge auf dunklem Hintergrund (Hybridsektion) */
.section-hybride .diff-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.section-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gruen-mittel) 0%, var(--gruen-dunkel) 100%);
  position: relative;
  overflow: hidden;
}
/* Palmblatt-Bild rechts */

/* Palm-left mittig unten – nur Blattspitzen ragen ins Bild */
.cta-palm-center {
  position: absolute;
  bottom: -114%;
  left: 50%;
  transform: translateX(-50%);
  height: 180%;
  width: auto;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  transform-origin: bottom center;
  animation: windDown 10s ease-in-out infinite;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Headline mit Sand-Farbverlauf */
.cta-text h2 {
  margin-bottom: 12px;
  background: linear-gradient(135deg, #F7F3EC 0%, #E8C882 45%, #F2E0A8 75%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-text p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 520px; }
.cta-buttons { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* Footer-Logo als Bild in #F7F3ED getönt */
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  /* Logo auf hellem Sand-Ton färben */
  filter: brightness(0) saturate(100%) invert(97%) sepia(5%) saturate(300%) hue-rotate(10deg) brightness(98%);
  opacity: 0.88;
}

/* medienplus Credit-Link */
.footer-credit {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-credit:hover { color: rgba(255,255,255,0.9); }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.section-faq {
  padding: var(--section-pad) 0;
  background: var(--creme);
}

.faq-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 90px;
}
.faq-sidebar .section-label { margin-bottom: 14px; }
.faq-sidebar h2 { margin-bottom: 18px; }
.faq-sidebar p { margin-bottom: 28px; font-size: 0.9rem; }

.faq-cats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.faq-cat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--weiss);
  border: 1px solid var(--creme-dunkel);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mittel);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.faq-cat-btn:hover, .faq-cat-btn.active {
  background: var(--gruen-dunkel);
  color: var(--weiss);
  border-color: var(--gruen-dunkel);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--weiss);
  border-radius: var(--radius-m);
  border: 1px solid var(--creme-dunkel);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--gruen-zart);
  box-shadow: var(--schatten-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  gap: 16px;
}
.faq-question h3, .faq-question h4 {
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: var(--text-dunkel);
  line-height: 1.4;
  margin: 0;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gruen-ultra);
  color: var(--gruen-dunkel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
  font-weight: 300;
  line-height: 1;
  user-select: none;
}
.faq-item.open .faq-toggle {
  background: var(--gruen-dunkel);
  color: var(--weiss);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer {
  max-height: 600px;
}
.faq-answer-inner {
  padding: 0 22px 22px;
  border-top: 1px solid var(--creme-dunkel);
  padding-top: 16px;
}
.faq-answer-inner p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mittel);
  margin-bottom: 10px;
}
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.faq-answer-inner ul li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 0.875rem;
  color: var(--text-mittel);
}
.faq-answer-inner ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gruen-mittel);
  font-weight: 700;
}
.faq-tip {
  background: var(--gruen-ultra);
  border-left: 3px solid var(--gruen-mittel);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  margin-top: 10px;
  font-size: 0.83rem;
  color: var(--gruen-dunkel);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(160deg,
    #1E3A1E 0%,
    #243f1f 35%,
    #1a341a 65%,
    #162c16 100%);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo .logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--weiss);
  fill: none;
  stroke-width: 1.5;
}
.footer-logo .logo-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--weiss);
}

.footer-brand p { font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.65); max-width: 260px; margin-bottom: 20px; }

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover {
  background: rgba(255,255,255,0.22);
  color: var(--weiss);
}

.footer-col-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--weiss); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.40); }
.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}
.footer-bottom .legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.40);
  transition: color var(--transition);
}
.footer-bottom .legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONEN
   ═══════════════════════════════════════════════════════════ */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-anim].visible {
  opacity: 1;
  transform: none;
}
[data-anim-delay="1"] { transition-delay: 0.1s; }
[data-anim-delay="2"] { transition-delay: 0.2s; }
[data-anim-delay="3"] { transition-delay: 0.3s; }
[data-anim-delay="4"] { transition-delay: 0.4s; }
[data-anim-delay="5"] { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────
   TABLET  1280px – Nav kompakter
───────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .kategorie-grid { grid-template-columns: repeat(3, 1fr); }
  .palmen-grid    { grid-template-columns: repeat(2, 1fr); }
  .hybrid-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .usp-grid       { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .nav-inner     { height: 68px; }
  .site-logo-img { height: 38px; }
  .nav-link {
    font-size: 0.72rem;
    padding: 6px 9px;
    letter-spacing: 0.03em;
  }
}

/* ─────────────────────────────────────────────────────────
   HERO  1024px – wechselt auf Vollbild-Textlayout
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { min-height: 500px; max-height: none; }
  .hero-left {
    width: 100%;
    padding: 56px 32px 64px;
    background: linear-gradient(to right,
      rgba(247,243,236,0.97) 0%,
      rgba(247,243,236,0.92) 55%,
      rgba(247,243,236,0.60) 85%,
      rgba(247,243,236,0.00) 100%);
  }
  .hero-right      { inset: 0; }
  .ueber-grid      { grid-template-columns: 1fr; }
  .ueber-img-wrap  { order: -1; }
  .faq-layout      { grid-template-columns: 1fr; }
  .faq-sidebar     { position: static; }
  .cta-inner       { flex-direction: column; text-align: center; }
  .cta-text p      { margin: 0 auto; }
  .ratgeber-grid   { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────────────────
   900px – Hero stärker überfärbt
───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { min-height: 520px; }
  .hero-left {
    width: 100%;
    padding: 48px 24px 56px;
    background: linear-gradient(to bottom,
      rgba(247,243,236,0.96) 0%,
      rgba(247,243,236,0.90) 65%,
      rgba(247,243,236,0.75) 100%);
  }
}

/* ─────────────────────────────────────────────────────────
   MOBIL  768px – Hamburger
───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .main-nav  { display: none !important; }
  .hamburger { display: flex; }
  .hero-badge { display: none; }

  .nav-inner     { height: 64px; }
  .site-logo-img { height: 34px; }

  /* Alle animierten Palmwedel auf Mobile ausblenden */
  .usp-palm,
  .hybride-palm-right,
  .hybride-palm-down,
  .cta-palm-center,
  .palmen-deko-blatt { display: none; }

  .kategorie-grid { grid-template-columns: repeat(2, 1fr); }
  .palmen-grid    { grid-template-columns: 1fr; }
  .usp-grid       { grid-template-columns: 1fr; }
  .section-row-header { flex-direction: column; align-items: flex-start; }
  .temp-table     { font-size: 0.82rem; min-width: 0 !important; width: 100%; }
  .temp-table thead th, .temp-table td { padding: 12px 14px; }
  .col-hinweis        { display: none !important; }
  .col-dauerfrost     { display: none !important; }
  .col-schwierigkeit  { display: none !important; }
  .temp-table td:first-child { min-width: 0 !important; white-space: normal; }
  .temp-table-wrap    { overflow-x: visible; border-radius: var(--radius-m); }
  .ratgeber-grid  { grid-template-columns: 1fr; }
  .hybrid-grid    { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom  { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILES MENÜ
   ═══════════════════════════════════════════════════════════ */

/* Overlay-Hintergrund */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 10, 0.55);
  z-index: 199;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open {
  display: block;
  opacity: 1;
}

/* Drawer von links */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 4px 0 32px rgba(0,0,0,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}

/* Drawer Header */
.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--creme-dunkel);
  background: var(--creme);
  flex-shrink: 0;
}
.mob-logo {
  height: 36px;
  width: auto;
}
.mob-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gruen-ultra);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gruen-dunkel);
  transition: var(--transition);
  flex-shrink: 0;
}
.mob-close:hover { background: var(--gruen-zart); }
.mob-close svg { width: 18px; height: 18px; }

/* Scrollbare Liste */
.mob-list {
  list-style: none;
  overflow-y: auto;
  flex: 1;
  padding: 10px 0 30px;
}

/* Einzelner Eintrag */
.mob-item {
  border-bottom: 1px solid var(--creme-dunkel);
}
.mob-item:last-child { border-bottom: none; }

/* Toggle (mit Unterpunkten) */
.mob-item-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gruen-dunkel);
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.mob-item-toggle:hover,
.mob-item.open .mob-item-toggle {
  background: var(--gruen-ultra);
}
.mob-chevron {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.5;
}
.mob-item.open .mob-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Einfacher Link ohne Sub */
.mob-link {
  display: block;
  padding: 15px 22px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gruen-dunkel);
  transition: background var(--transition);
}
.mob-link:hover { background: var(--gruen-ultra); }

/* Shop-Link im Menü: dezent hervorgehoben */
.mob-shop {
  color: var(--gruen-mittel);
}
.mob-shop::after {
  content: ' →';
  opacity: 0.6;
}

/* Submenü – Akkordeon */
.mob-sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--creme);
  border-top: 1px solid var(--creme-dunkel);
}
.mob-item.open .mob-sub {
  max-height: 600px;
}
.mob-sub li a {
  display: block;
  padding: 11px 22px 11px 34px;
  font-size: 0.875rem;
  color: var(--text-mittel);
  font-weight: 400;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background var(--transition), color var(--transition);
}
.mob-sub li:last-child a { border-bottom: none; }
.mob-sub li a:hover { background: var(--gruen-zart); color: var(--gruen-dunkel); }
.mob-sub .mob-alle {
  font-weight: 700;
  color: var(--gruen-mittel);
  padding-left: 22px;
}

/* Hamburger X-Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .kategorie-grid { grid-template-columns: 1fr; }
}
