/* ── Design System ─────────────────────────────────────────────────────────── */
:root {
  --green-deep:   #1a3a2a;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --green-pale:   #d8f3dc;
  --cream:        #f8f5ef;
  --cream-dark:   #f0ebe1;
  --brown:        #8b6f47;
  --text:         #1a2e1e;
  --muted:        #5a7a60;
  --border:       rgba(45,106,79,0.15);
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --nav-h:        68px;
  --radius:       14px;
  --shadow:       0 4px 24px rgba(26,58,42,0.08);
  --shadow-lg:    0 8px 48px rgba(26,58,42,0.14);
  --transition:   0.2s ease;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Navigation ─────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: var(--green-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.site-nav.solid {
  background: var(--green-deep);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links a.active {
  color: #fff;
  border-bottom: 2px solid var(--green-light);
  padding-bottom: 4px;
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-burger:hover { background: rgba(255,255,255,0.1); }
.nav-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  padding: 0 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav-overlay.open { transform: translateY(0); }
.nav-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  flex-shrink: 0;
}
.nav-overlay-close {
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-overlay-close:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-overlay-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.nav-overlay-links a {
  color: rgba(255,255,255,0.8);
  font-size: 1.6rem;
  font-family: var(--font-head);
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition), padding-left var(--transition);
}
.nav-overlay-links a:hover,
.nav-overlay-links a.active { color: #fff; padding-left: 8px; }
.nav-overlay-links a.active { color: var(--green-light); }
.nav-overlay-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-overlay-footer a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* ── Layout Utilities ──────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 14px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
  box-shadow: 0 4px 20px rgba(45,106,79,0.3);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(45,106,79,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-mid);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--green-deep);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--green-pale);
  border-color: var(--green-pale);
  transform: translateY(-1px);
}
.btn-lg {
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 12px;
}

/* ── Cards ─────────────────────────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ── Tags / Badges ──────────────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: capitalize;
  border: 1px solid rgba(45,106,79,0.15);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.tag:hover, .tag.active {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--green-deep);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,58,42,0.82) 0%,
    rgba(26,58,42,0.55) 50%,
    rgba(26,58,42,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Page Hero (non-index) ─────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  background: var(--green-deep);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 24px 56px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 500px;
}

/* ── How It Works ──────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.step p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.step a { color: var(--green-mid); font-weight: 600; text-decoration: underline; }

/* ── Abo Section ───────────────────────────────────────────────────────────── */
.abo-section { background: var(--green-deep); }
.abo-section .section-label { color: var(--green-light); }
.abo-section .section-title { color: #fff; }
.abo-section .section-sub { color: rgba(255,255,255,0.7); }
.abo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.abo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: #fff;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.abo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-light);
  opacity: 0;
  transition: opacity var(--transition);
}
.abo-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.abo-card:hover::before { opacity: 1; }
.abo-card-tag {
  display: inline-block;
  background: rgba(82,183,136,0.2);
  color: var(--green-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.abo-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.abo-card-desc { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 24px; line-height: 1.65; }
.abo-price {
  margin-bottom: 8px;
}
.abo-price-main {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-light);
}
.abo-price-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.abo-features {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.abo-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  padding: 5px 0;
}
.abo-features li::before {
  content: '✓';
  color: var(--green-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.abo-cta {
  margin-top: 48px;
  text-align: center;
}

/* ── Gallery Grid ──────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.gallery-item {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── Philosophie ────────────────────────────────────────────────────────────── */
.philosophie-section { background: var(--cream-dark); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.pillar {
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.pillar-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.pillar p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* ── Permakultur Split ──────────────────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text { padding: 16px 0; }
.split-text .section-sub { margin-top: 16px; }
.split-text .btn { margin-top: 32px; }

/* ── Rezept Cards ───────────────────────────────────────────────────────────── */
.rezepte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.rezept-card { display: flex; flex-direction: column; }
.rezept-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.rezept-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.rezept-card:hover .rezept-card-img img { transform: scale(1.04); }
.rezept-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rezept-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}
.rezept-card-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rezept-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.rezept-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  display: flex;
  align-items: center;
  gap: 4px;
}
.rezept-card-link:hover { color: var(--green-deep); }

/* ── Rezepte Page ────────────────────────────────────────────────────────── */
.rezepte-toolbar {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.search-input {
  flex: 1;
  min-width: 240px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 0.9rem;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition);
}
.search-input:focus {
  outline: none;
  border-color: var(--green-mid);
}
.kategorie-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  align-items: center;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
}
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Rezept Detail ────────────────────────────────────────────────────────── */
.rezept-detail {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}
.rezept-hero-img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/7;
  box-shadow: var(--shadow-lg);
}
.rezept-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.rezept-detail h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--green-deep);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.rezept-section-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--green-deep);
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}
.zutaten-list {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.zutaten-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.zutaten-list li:last-child { border-bottom: none; }
.zutaten-list li::before { content: '·'; color: var(--green-light); font-weight: 700; flex-shrink: 0; }
.zubereitung-steps { counter-reset: step; }
.zubereitung-step {
  counter-increment: step;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.zubereitung-step::before {
  content: counter(step);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.zubereitung-step p { color: var(--text); line-height: 1.7; }

/* ── Kundenstimmen ──────────────────────────────────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote-stars { color: #f59e0b; letter-spacing: 2px; }
.quote-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.quote-text::before { content: '„'; font-size: 1.4rem; color: var(--green-light); line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.quote-author { font-weight: 600; font-size: 0.875rem; color: var(--green-deep); }
.quote-location { font-size: 0.8rem; color: var(--muted); }

/* ── Kontakt / Forms ────────────────────────────────────────────────────────── */
.kontakt-section { background: var(--cream-dark); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.kontakt-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 20px;
}
.kontakt-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.kontakt-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.kontakt-item-text { font-size: 0.9rem; color: var(--text); }
.kontakt-item-text strong { display: block; color: var(--green-deep); margin-bottom: 2px; }
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
}
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7a60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green-mid);
  cursor: pointer;
}
.form-check label { font-size: 0.85rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
.form-check a { color: var(--green-mid); text-decoration: underline; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
  color: var(--green-mid);
  font-size: 1.05rem;
}
.form-success.show { display: block; }

/* ── FAQ Accordion ──────────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-mid); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green-mid);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--green-light); color: var(--green-deep); }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* ── Admin Panel ─────────────────────────────────────────────────────────── */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--green-deep);
  padding: 24px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-logo {
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.admin-logo-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: #fff;
  line-height: 1.3;
}
.admin-logo-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-left-color: var(--green-light);
}
.admin-nav a .badge-count {
  margin-left: auto;
  background: var(--green-light);
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
}
.admin-main {
  background: #f5f5f0;
  padding: 32px;
  overflow-y: auto;
}
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-header h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--green-deep);
}
.admin-table {
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-collapse: collapse;
  overflow: hidden;
}
.admin-table th {
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}
.admin-table td {
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.admin-table tr:hover td { background: #fafaf8; }
.admin-table .unread td { background: #f0faf4; }
.admin-table .unread td:first-child { border-left: 3px solid var(--green-light); }
.admin-form .form-group { margin-bottom: 20px; }
.admin-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.admin-form .form-control { border-color: #dde; }
.admin-form .form-control:focus { border-color: var(--green-mid); }
.btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
  border-radius: 7px;
}
.btn-danger { background: #dc2626; color: #fff; border-color: #dc2626; }
.btn-danger:hover { background: #b91c1c; border-color: #b91c1c; }
.multi-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  max-height: 160px;
  overflow-y: auto;
}
.multi-select label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  letter-spacing: 0;
}
.multi-select label:has(input:checked) {
  background: var(--green-pale);
  border-color: var(--green-mid);
  color: var(--green-deep);
}
.multi-select input[type=checkbox] { display: none; }
.rezept-bild-preview {
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
  max-width: 200px;
}
.rezept-bild-preview img { width: 100%; display: block; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.modal-header h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--green-deep); }
.modal-close { color: var(--muted); font-size: 1.4rem; }

/* ── Blog Coming Soon ────────────────────────────────────────────────────── */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 80px 24px;
}
.coming-soon-icon { font-size: 4rem; margin-bottom: 24px; }
.coming-soon h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.coming-soon p { color: var(--muted); max-width: 400px; }

/* ── Gemüsekalender ──────────────────────────────────────────────────────── */
.kalender-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.kalender-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ── Utility ─────────────────────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.loading {
  text-align: center;
  padding: 48px;
  color: var(--muted);
  font-size: 0.9rem;
}
.loading::after { content: ''; display: block; width: 32px; height: 32px; border: 3px solid var(--green-pale); border-top-color: var(--green-mid); border-radius: 50%; margin: 16px auto 0; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.error-msg {
  text-align: center;
  padding: 32px;
  color: #dc2626;
  background: #fef2f2;
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.empty-msg {
  text-align: center;
  padding: 48px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .rezepte-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; gap: 36px; }
  .split-img { aspect-ratio: 16/9; order: -1; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 56px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .abo-cards { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .quotes-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .kontakt-info { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .rezepte-grid { grid-template-columns: 1fr; }
  .abo-card { padding: 28px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
