/* ============================================
   GARTENHAUSEIDEEN.DE — Design System
   Palette: Forest & Linen | Warm Modern
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --forest:     #2D5016;
  --forest-mid: #3D6B1E;
  --forest-lt:  #5A8A32;
  --sage:       #8FAF6B;
  --sage-lt:    #C5D9A8;
  --linen:      #F7F3EC;
  --linen-dark: #EDE7DA;
  --bark:       #6B4F35;
  --bark-lt:    #A07850;
  --cream:      #FFFDF8;
  --charcoal:   #1E2420;
  --gray-600:   #5A6350;
  --gray-400:   #8E9A82;
  --gray-200:   #D4DCCA;
  --white:      #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm:  0 1px 4px rgba(30,36,32,0.06);
  --shadow-md:  0 4px 16px rgba(30,36,32,0.10);
  --shadow-lg:  0 12px 40px rgba(30,36,32,0.14);
  --shadow-xl:  0 24px 64px rgba(30,36,32,0.18);

  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);

  --max-width: 1200px;
  --content-width: 780px;
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.22;
  color: var(--charcoal);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.2rem; font-weight: 600; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.text-sm   { font-size: 0.88rem; }
.text-xs   { font-size: 0.78rem; }
.text-lg   { font-size: 1.15rem; }
.text-muted { color: var(--gray-600); }
.text-forest { color: var(--forest); }
.text-bark { color: var(--bark); }
strong { font-weight: 600; }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 112px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(45,80,22,0.25);
}
.btn-primary:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,80,22,0.32);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---- BADGE ---- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-forest { background: var(--sage-lt); color: var(--forest); }
.badge-bark   { background: #EDD9C5; color: var(--bark); }
.badge-new    { background: var(--forest); color: var(--white); }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,253,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linen-dark);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--forest);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}
.nav-logo .logo-text span { color: var(--forest); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--forest);
  background: var(--sage-lt);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--linen-dark);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--gray-600);
  transition: all var(--transition);
}
.nav-dropdown-menu a:hover {
  background: var(--linen);
  color: var(--forest);
}

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 55%, var(--forest-lt) 100%);
  padding: 96px 0 80px;
  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%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--sage-lt);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #4A7A28 0%, #2D5016 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.hero-card-float {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}
.hero-card-float .icon {
  width: 40px;
  height: 40px;
  background: var(--sage-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--linen-dark);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--forest);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-lt);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon {
  width: 56px;
  height: 56px;
  background: var(--linen);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.cat-card:hover .cat-icon {
  background: var(--sage-lt);
  transform: scale(1.05);
}
.cat-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.cat-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}
.cat-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.cat-card:hover .cat-link { gap: 10px; }

/* ============================================
   ARTICLE CARDS
   ============================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--linen-dark);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.article-card-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--sage-lt) 0%, var(--linen-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.article-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
}
.article-date {
  font-size: 0.78rem;
  color: var(--gray-400);
}
.article-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  flex: 1;
  transition: color var(--transition);
}
.article-card:hover h3 { color: var(--forest); }
.article-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.65;
}
.article-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--linen-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.read-time {
  font-size: 0.78rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  background: var(--linen);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  text-align: center;
  padding: 32px 20px;
}
.trust-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.trust-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
}
.trust-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   BUYER GUIDE SECTION
   ============================================ */
.guide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.guide-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.guide-aside {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--linen-dark);
}
.guide-aside h3 { margin-bottom: 20px; font-size: 1.3rem; }
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
}
.checklist li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   CTA / NEWSLETTER
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.95);
  color: var(--charcoal);
  outline: none;
}
.newsletter-form input:focus {
  background: var(--white);
}
.newsletter-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}
.footer-brand .logo-text span { color: var(--sage); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.08rem;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */
.article-hero {
  background: var(--linen);
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--linen-dark);
}
.article-hero .badge { margin-bottom: 16px; }
.article-hero h1 { margin-bottom: 20px; max-width: 820px; }
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-hero-meta span { display: flex; align-items: center; gap: 6px; }
.article-intro {
  font-size: 1.12rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 700px;
  border-left: 3px solid var(--forest);
  padding-left: 20px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
  padding: 56px 0 80px;
}
.article-content h2 {
  font-size: 1.7rem;
  margin-top: 2.4em;
  margin-bottom: 0.8em;
  padding-top: 0.5em;
  border-top: 1px solid var(--linen-dark);
}
.article-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.article-content h3 {
  font-size: 1.25rem;
  margin-top: 1.8em;
  margin-bottom: 0.7em;
}
.article-content p { line-height: 1.8; margin-bottom: 1.4em; color: var(--charcoal); }
.article-content ul, .article-content ol {
  margin: 0 0 1.4em 0;
  padding-left: 0;
}
.article-content ul li, .article-content ol li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.97rem;
  line-height: 1.7;
  border-bottom: 1px solid var(--linen-dark);
}
.article-content ul li::before {
  content: '▸';
  position: absolute;
  left: 8px;
  color: var(--forest);
  font-size: 0.75rem;
  top: 10px;
}
.article-content ol { counter-reset: ol-counter; }
.article-content ol li { counter-increment: ol-counter; }
.article-content ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background: var(--forest);
  color: white;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.toc-box {
  background: var(--linen);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 40px;
  border: 1px solid var(--linen-dark);
}
.toc-box h4 {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  counter-reset: toc-counter;
}
.toc-list li { counter-increment: toc-counter; }
.toc-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 5px 0;
  transition: color var(--transition);
}
.toc-list li a::before {
  content: counter(toc-counter);
  width: 22px;
  height: 22px;
  background: var(--forest);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toc-list li a:hover { color: var(--forest); }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.pros, .cons {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--linen-dark);
}
.pros { border-top: 3px solid #4CAF50; }
.cons { border-top: 3px solid #F44336; }
.pros h4 { color: #2E7D32; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.cons h4 { color: #C62828; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pros ul li::before { content: '+'; color: #2E7D32; font-weight: 700; font-size: 1rem; top: 7px; }
.cons ul li::before { content: '−'; color: #C62828; font-weight: 700; font-size: 1rem; top: 7px; }

.tip-box {
  background: linear-gradient(135deg, var(--sage-lt) 0%, var(--linen) 100%);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 32px 0;
  border-left: 4px solid var(--forest);
  display: flex;
  gap: 16px;
}
.tip-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.tip-box p { font-size: 0.95rem; line-height: 1.7; margin: 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--linen); }
.faq-question.open { background: var(--linen); }
.faq-chevron {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--linen-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--gray-600);
}
.faq-answer.open {
  padding: 0 22px 20px;
  max-height: 500px;
}

/* ============================================
   PRODUCT RECOMMENDATION BOX
   ============================================ */
.product-box {
  background: var(--white);
  border: 2px solid var(--sage-lt);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 40px 0;
}
.product-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product-box-header .icon { font-size: 1.3rem; }
.product-box-header h4 {
  font-size: 1rem;
  color: var(--forest);
}
.product-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--linen-dark);
  align-items: center;
}
.product-thumb {
  width: 70px;
  height: 70px;
  background: var(--linen);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.product-info { flex: 1; }
.product-name { font-weight: 600; font-size: 0.92rem; margin-bottom: 4px; }
.product-desc { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }
.product-price { font-weight: 700; color: var(--forest); font-size: 0.95rem; margin-top: 6px; }
.product-cta { flex-shrink: 0; }
.btn-amazon {
  background: #FF9900;
  color: var(--charcoal);
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-amazon:hover { background: #E68A00; transform: translateY(-1px); }
.affiliate-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--linen-dark);
}

/* ============================================
   SIDEBAR
   ============================================ */
.article-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-box h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.sidebar-articles {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sidebar-article-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.sidebar-article a {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--charcoal);
  transition: color var(--transition);
}
.sidebar-article a:hover { color: var(--forest); }
.sidebar-article span {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: block;
  margin-top: 3px;
}

/* AdSense placeholder */
.adsense-placeholder {
  background: var(--linen);
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   PAGE SPECIFIC: KATEGORIE
   ============================================ */
.page-hero {
  background: var(--linen);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--linen-dark);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p {
  font-size: 1.08rem;
  color: var(--gray-600);
  max-width: 640px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--forest); }
.breadcrumb span { color: var(--gray-200); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 720px;
  margin: 64px auto;
  padding: 0 24px 80px;
}
.legal-content h1 { margin-bottom: 8px; }
.legal-content .last-updated {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--linen-dark);
}
.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; }
.legal-content ul { margin-left: 20px; list-style: disc; margin-bottom: 1.2em; }
.legal-placeholder {
  background: var(--linen);
  border: 1px dashed var(--bark-lt);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--bark);
  margin: 6px 0;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 64px 0 80px;
}
.contact-form-group { margin-bottom: 20px; }
.contact-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
}
.contact-form-group textarea { height: 140px; resize: vertical; }

/* ============================================
   ÜBER UNS
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage-lt) 0%, var(--linen-dark) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: var(--radius-md);
  padding: 24px;
}
.value-card .icon { font-size: 1.6rem; margin-bottom: 10px; }
.value-card h4 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ============================================
   EMPFEHLUNGEN PAGE
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--linen-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img {
  aspect-ratio: 4/3;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 1rem; margin-bottom: 8px; }
.product-card-body p { font-size: 0.85rem; color: var(--gray-600); flex: 1; margin-bottom: 16px; }
.product-rating {
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.price-tag {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* ============================================
   UTILITIES & ANIMATIONS
   ============================================ */
.divider {
  height: 1px;
  background: var(--linen-dark);
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--linen-dark);
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--linen);
    margin-top: 4px;
  }

  .categories-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .pros-cons { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}
