/* ============================================================
   GartenInsider.ch — Haupt-Stylesheet
   ============================================================ */

/* --- Reset & Normalize --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Source Sans 3', 'Segoe UI', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: #2d5016; text-decoration: none; transition: color .2s; }
a:hover { color: #c4922a; }
ul, ol { padding-left: 1.5rem; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- CSS Custom Properties --- */
:root {
  --green-dark:    #2d5016;
  --green-mid:     #3d6b1f;
  --green-light:   #f0f5eb;
  --green-border:  #c3dba0;
  --gold:          #c4922a;
  --gold-light:    #f5e6ca;
  --white:         #ffffff;
  --gray-50:       #f9fafb;
  --gray-100:      #f3f4f6;
  --gray-200:      #e5e7eb;
  --gray-400:      #9ca3af;
  --gray-600:      #4b5563;
  --gray-800:      #1f2937;
  --text:          #1a1a1a;
  --text-muted:    #555;
  --radius:        6px;
  --radius-lg:     12px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
  --max-w:         1100px;
  --article-w:     800px;
  --transition:    .2s ease;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  letter-spacing: -.3px;
}
.site-logo span { color: var(--gold); }
.site-logo img { height: 44px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--green-dark);
  border-bottom-color: var(--green-dark);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: .6rem 1.25rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb span { margin: 0 .4rem; color: var(--gray-400); }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, #4a8026 100%);
  color: var(--white);
  padding: 5rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(196,146,42,.25);
  border: 1px solid rgba(196,146,42,.5);
  color: #f5d08a;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: #f5d08a; }
.hero p {
  font-size: 1.15rem;
  opacity: .9;
  max-width: 580px;
  margin: 0 auto 2rem;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(196,146,42,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  border-bottom: none !important;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(196,146,42,.5); }

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section { padding: 4rem 1.25rem; }
.section-alt { background: var(--green-light); }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .5rem;
}
.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 2.5rem; }
.section-header { max-width: var(--max-w); margin: 0 auto 2.5rem; }

/* ============================================================
   ARTIKEL GRID (Kacheln)
   ============================================================ */
.artikel-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.artikel-kachel {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.artikel-kachel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.kachel-img {
  aspect-ratio: 16/9;
  background: var(--green-light);
  overflow: hidden;
  position: relative;
}
.kachel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.artikel-kachel:hover .kachel-img img { transform: scale(1.04); }
.kachel-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--green-light), var(--green-border));
}
.kachel-kategorie {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 20px;
}
.kachel-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.kachel-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: .6rem;
  line-height: 1.35;
}
.kachel-body p { font-size: .92rem; color: var(--text-muted); flex: 1; margin-bottom: 1rem; }
.kachel-meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--gray-400); margin-bottom: .9rem; }
.kachel-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--green-dark);
}
.kachel-link::after { content: '→'; transition: transform .2s; }
.artikel-kachel:hover .kachel-link::after { transform: translateX(4px); }

/* Kategorie-Filter */
.kategorie-filter {
  max-width: var(--max-w);
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.filter-btn {
  padding: .5rem 1.2rem;
  border-radius: 25px;
  border: 2px solid var(--green-border);
  background: var(--white);
  color: var(--gray-600);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

/* ============================================================
   ARTIKEL-SEITE LAYOUT
   ============================================================ */
.artikel-wrapper {
  max-width: var(--article-w);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
.artikel-header { margin-bottom: 2rem; }
.artikel-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.artikel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  font-size: .88rem;
  color: var(--text-muted);
  padding: .75rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1.75rem;
}
.artikel-meta span { display: flex; align-items: center; gap: .35rem; }
.artikel-meta strong { color: var(--gray-800); }

.artikel-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--green-light);
}
.artikel-hero-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green-light), var(--green-border));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 2rem;
}

/* Einleitung */
.artikel-einleitung {
  font-size: 1.1rem;
  color: var(--gray-800);
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

/* Artikel Fliesstext */
.artikel-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 2.5rem 0 1rem;
  padding-top: .5rem;
}
.artikel-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 2rem 0 .75rem;
}
.artikel-content p { margin-bottom: 1.25rem; line-height: 1.8; color: var(--text); }
.artikel-content ul, .artikel-content ol { margin-bottom: 1.25rem; }
.artikel-content li { margin-bottom: .4rem; line-height: 1.7; }
.artikel-content strong { color: var(--gray-800); }

/* ============================================================
   SCHNELLÜBERSICHT-BOX
   ============================================================ */
.schnelluebersicht {
  background: var(--green-light);
  border-left: 4px solid var(--green-dark);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.schnelluebersicht h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
}
.schnelluebersicht table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.schnelluebersicht tr { border-bottom: 1px solid var(--green-border); }
.schnelluebersicht tr:last-child { border-bottom: none; }
.schnelluebersicht td { padding: .5rem .25rem; vertical-align: top; }
.schnelluebersicht td:first-child { font-weight: 700; width: 38%; color: var(--green-dark); }
.achtung-row td { color: #8b2500 !important; }
.achtung-row td:first-child { color: #8b2500 !important; }

/* ============================================================
   INHALTSVERZEICHNIS
   ============================================================ */
.inhaltsverzeichnis {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.inhaltsverzeichnis h3 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--gray-600) !important;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 .9rem !important;
}
.inhaltsverzeichnis ol { padding-left: 1.2rem; }
.inhaltsverzeichnis li { margin-bottom: .35rem; }
.inhaltsverzeichnis a { color: var(--green-dark); font-size: .95rem; font-weight: 500; }
.inhaltsverzeichnis a:hover { color: var(--gold); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section { margin: 3rem 0; }
.faq-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover, .faq-question[aria-expanded="true"] {
  background: var(--green-light);
  color: var(--green-dark);
}
.faq-icon { font-size: 1.25rem; transition: transform .2s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.25rem 1.25rem; font-size: .97rem; color: var(--text-muted); line-height: 1.75; }
.faq-answer.open { display: block; }

/* ============================================================
   AFFILIATE PRODUKTKARTEN
   ============================================================ */
.affiliate-kasten {
  background: var(--gold-light);
  border: 1px solid #e8c87a;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2.5rem 0;
}
.affiliate-kasten-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.affiliate-produkte { display: grid; gap: 1rem; }
.affiliate-produkt {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: box-shadow var(--transition);
}
.affiliate-produkt:hover { box-shadow: var(--shadow-md); }
.affiliate-produkt-info { flex: 1; }
.affiliate-produkt-info h4 { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: .25rem; }
.affiliate-produkt-info p { font-size: .88rem; color: var(--text-muted); margin: 0; }
.affiliate-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold);
  color: var(--white) !important;
  font-size: .88rem;
  font-weight: 700;
  padding: .6rem 1.2rem;
  border-radius: 25px;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--transition);
  border-bottom: none !important;
}
.affiliate-btn:hover { background: #a87820; }
.affiliate-hinweis {
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-200);
}

/* Inline Affiliate-Link */
.affiliate-inline { color: var(--gold) !important; font-weight: 600; }
.affiliate-inline:hover { color: var(--green-dark) !important; }

/* ============================================================
   PFLANZENPORTRÄT STECKBRIEF
   ============================================================ */
.steckbrief {
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 2rem 0;
}
.steckbrief h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.25rem !important;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--green-border);
  margin-top: 0 !important;
}
.steckbrief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem .5rem;
}
.steckbrief-item { display: flex; flex-direction: column; }
.steckbrief-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--green-dark);
  opacity: .75;
}
.steckbrief-value { font-size: .95rem; color: var(--gray-800); font-weight: 500; }

/* ============================================================
   NEWSLETTER CTA
   ============================================================ */
.newsletter-cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.newsletter-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  margin-bottom: .75rem;
}
.newsletter-cta p { opacity: .85; margin-bottom: 2rem; font-size: 1.05rem; }
.newsletter-form { display: flex; gap: .75rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: .85rem 1.25rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}
.newsletter-form button {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: #a87820; }
.newsletter-disclaimer { font-size: .8rem; opacity: .6; margin-top: .75rem; }

/* ============================================================
   PFLANZENPORTRÄT TEASER
   ============================================================ */
.pflanzen-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.pflanze-kachel {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding: 1.5rem 1rem 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pflanze-kachel:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pflanze-icon { font-size: 2.75rem; margin-bottom: .75rem; }
.pflanze-kachel h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-800); margin-bottom: .4rem; }
.pflanze-kachel p { font-size: .85rem; color: var(--text-muted); margin-bottom: .9rem; }
.pflanze-link { font-size: .85rem; font-weight: 700; color: var(--green-dark); }

/* ============================================================
   FAZIT-BOX
   ============================================================ */
.fazit-box {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 2.5rem 0;
}
.fazit-box h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem !important;
  color: var(--green-dark) !important;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}
.fazit-box p { color: var(--gray-800); margin-bottom: .75rem; }
.fazit-box p:last-child { margin-bottom: 0; }

/* ============================================================
   INTERNER LINK KASTEN
   ============================================================ */
.weiterlesung {
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.weiterlesung::before { content: '📖'; font-size: 1.2rem; flex-shrink: 0; }

/* ============================================================
   ÜBER MICH / STATISCHE SEITEN
   ============================================================ */
.page-wrapper {
  max-width: var(--article-w);
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}
.page-wrapper h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--green-dark);
  margin-bottom: 1.75rem;
}
.page-wrapper h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--gray-800);
  margin: 2.5rem 0 .9rem;
}
.page-wrapper p { margin-bottom: 1.25rem; line-height: 1.8; color: var(--text); }
.page-wrapper ul { margin-bottom: 1.25rem; }
.page-wrapper li { margin-bottom: .4rem; line-height: 1.7; }

/* Autor-Box */
.autor-box {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.75rem;
  margin: 2rem 0 3rem;
  align-items: flex-start;
}
.autor-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--green-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}
.autor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.autor-info h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; color: var(--green-dark); margin: 0 0 .5rem; }
.autor-info p { font-size: .95rem; color: var(--text-muted); margin-bottom: .5rem; }
.autor-info p:last-child { margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-800);
  color: #d1d5db;
  padding: 3.5rem 1.25rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p { font-size: .9rem; line-height: 1.7; opacity: .8; max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { color: #9ca3af; font-size: .9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: #6b7280;
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: #6b7280; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Header */
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    border-bottom: 3px solid var(--green-dark);
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .85rem 0; border-bottom: 1px solid var(--gray-100); font-size: 1.05rem; border-left: none; }
  .site-nav a:last-child { border-bottom: none; }

  /* Hero */
  .hero { padding: 3.5rem 1.25rem 3rem; }

  /* Steckbrief */
  .steckbrief-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Affiliate Produkt */
  .affiliate-produkt { flex-direction: column; align-items: flex-start; }

  /* Autor */
  .autor-box { flex-direction: column; }

  /* Artikel meta */
  .artikel-meta { gap: .5rem .75rem; }
}

@media (max-width: 480px) {
  .artikel-grid { grid-template-columns: 1fr; }
  .pflanzen-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
img[loading="lazy"] { opacity: 0; transition: opacity .3s; }
img.loaded { opacity: 1; }
