/* ============================================================
   Garten & Upcycling – Gemeinsames Stylesheet (alle Seiten)
   Dark Liquid Glassmorphism. Zero JavaScript.
   Enthaelt alle Korrekturen: Kontrast, :focus-visible,
   fokussierbare Menue-Checkbox, prefers-reduced-motion,
   Skip-Link, lokale Schrift, TOC/FAQ/Autor/Breadcrumb.
   ============================================================ */

/* ------------------------------------------------------------
   LOKALE SCHRIFT (kein Google-CDN -> DSGVO-konform)
   Variable Font: ein File deckt Gewicht 400–800 ab.
   ------------------------------------------------------------ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

/* ============================================================
   0. RESET & GRUNDVARIABLEN
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #131316;
  --bg-gradient: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(74, 222, 128, 0.16), transparent),
                 radial-gradient(ellipse 60% 50% at 90% 10%, rgba(56, 189, 248, 0.10), transparent),
                 var(--bg-primary);

  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-strong: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: 16px;

  --accent: #4ade80;
  --accent-dark: #22c55e;
  --accent-soft: rgba(74, 222, 128, 0.15);

  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  /* KORREKTUR (Item 28a): heller Grauton fuer WCAG-AA-Kontrast (zuvor zu dunkel) */
  --text-tertiary: #86868b;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --shadow-glass-hover: 0 16px 48px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 64px 0; }

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 20px;
  color: var(--text-primary);
}

h3 { font-size: 1.15rem; margin-bottom: 8px; }

p { color: var(--text-secondary); margin-bottom: 16px; font-size: 1.02rem; }

article a:not(.btn-glass) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
article a:not(.btn-glass):hover { color: var(--text-primary); }

/* ============================================================
   ZUGAENGLICHKEIT: Skip-Link + globaler Fokus-Stil
   ============================================================ */
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 300;
  padding: 12px 20px;
  background: var(--accent);
  color: #06140b;
  font-weight: 700;
  border-radius: 12px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* KORREKTUR (Item 28c): sichtbarer Fokusring, nur bei Tastatur */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Inline-SVG-Icons (Item 20): ersetzen Emojis, rendern OS-uebergreifend gleich */
svg.icon {
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

/* ============================================================
   1. LIQUID GLASSMORPHISM – Basiskomponente
   ============================================================ */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  position: relative;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0) 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Liquid Glass Button */
.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow-glass);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-glass:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glass-hover);
  background: rgba(255, 255, 255, 0.12);
}

.btn-glass:active { transform: translateY(0); }

.btn-glass.btn-accent {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.35), rgba(34, 197, 94, 0.2));
  border-color: rgba(74, 222, 128, 0.4);
}

.btn-glass.btn-accent:hover {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.5), rgba(34, 197, 94, 0.3));
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   2. HEADER
   ============================================================ */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.6);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.logo { font-size: 1.15rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.logo .icon { width: 1.4em; height: 1.4em; color: var(--accent); }
.logo span { color: var(--accent); }

nav.main-nav ul { display: flex; gap: 28px; }
nav.main-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
nav.main-nav a:hover { color: var(--text-primary); }

/* Pure-CSS mobile menu toggle (kein JavaScript)
   KORREKTUR (Item 28b): KEIN display:none. Die Checkbox bleibt im
   DOM und tastatur-fokussierbar (visually-hidden Muster). */
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
  padding: 4px;
}
.nav-toggle-label span {
  width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px;
}
/* Fokusring wandert auf das sichtbare Label, wenn die Checkbox Fokus hat */
.nav-toggle:focus-visible + .nav-toggle-label {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}

@media (max-width: 720px) {
  nav.main-nav {
    position: fixed;
    inset: 0 0 0 30%;
    background: rgba(10, 10, 12, 0.92);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-left: 1px solid var(--glass-border);
    padding: 100px 30px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  nav.main-nav ul { flex-direction: column; gap: 26px; }
  .nav-toggle:checked ~ nav.main-nav { transform: translateX(0); }
  .nav-toggle-label { display: flex; }
}

/* ============================================================
   3. HERO
   ============================================================ */
.hero {
  padding: 90px 0 70px;
  text-align: center;
}

.hero .eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  max-width: 760px;
  margin: 0 auto 22px;
  background: linear-gradient(180deg, #ffffff 30%, #b9b9c0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .subhead {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   4. BREADCRUMB
   ============================================================ */
.breadcrumb { margin: 24px 0 4px; font-size: 0.85rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb .sep { color: var(--text-tertiary); }
.breadcrumb [aria-current="page"] { color: var(--text-primary); font-weight: 600; }

/* ============================================================
   5. ARTIKEL / EINLEITUNG
   ============================================================ */
article.post { padding-top: 0; }

.post-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--text-tertiary);
  font-size: 0.88rem;
  margin-bottom: 28px;
}
.post-meta span { display: inline-flex; align-items: center; gap: 7px; }
.post-meta .icon { color: var(--accent); }
.post-meta time { color: var(--text-tertiary); }

.updated-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.intro p { font-size: 1.08rem; }
.intro strong { color: var(--text-primary); }

/* Artikel-Bild mit Bildunterschrift (Item 27) */
figure.article-figure { margin: 34px 0; }
figure.article-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
}
figure.article-figure figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  text-align: center;
}

/* ============================================================
   6. INHALTSVERZEICHNIS (TOC)
   ============================================================ */
nav.toc {
  padding: 26px 30px;
  margin: 36px 0;
}
nav.toc h2 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
nav.toc h2 .icon { color: var(--accent); }
nav.toc ol { counter-reset: toc; list-style: none; }
nav.toc li {
  counter-increment: toc;
  position: relative;
  padding-left: 34px;
  margin-bottom: 11px;
}
nav.toc li::before {
  content: counter(toc);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50%;
}
nav.toc a { color: var(--text-secondary); transition: color 0.25s ease; }
nav.toc a:hover { color: var(--accent); }

/* ============================================================
   7. VIDEO-RETENTIONSBEREICH
   ============================================================ */
.video-feature {
  padding: 42px;
  margin: 48px 0;
  text-align: center;
}

.video-feature .video-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.video-feature h2 { margin-bottom: 22px; }

.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  margin-bottom: 26px;
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   8. LISTEN, MATERIAL- & HINWEISBOXEN
   ============================================================ */
.materials-box {
  padding: 30px 32px;
  margin: 30px 0;
}

.materials-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

/* Gruener Kreis mit weissem Haken als Inline-SVG (kein Emoji) */
.materials-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23071a0e' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}

.steps-list { counter-reset: step; margin: 24px 0; }
.steps-list > li {
  counter-increment: step;
  position: relative;
  padding-left: 46px;
  margin-bottom: 30px;
}
.steps-list > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
}
.steps-list h3 { margin-bottom: 8px; }
.steps-list figure { margin: 14px 0 0; }
.steps-list figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
}

/* Sicherheitshinweis-Box */
aside.safety-box {
  padding: 22px 26px;
  margin: 26px 0;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
}
aside.safety-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  margin-bottom: 8px;
}
aside.safety-box p { margin-bottom: 0; color: var(--text-secondary); }

/* Zusammenfassungs-Box (aside) */
aside.tip-box {
  padding: 26px 28px;
  margin: 40px 0;
}
aside.tip-box h3 { color: var(--accent); margin-bottom: 10px; }
aside.tip-box ul li { color: var(--text-secondary); margin-bottom: 6px; padding-left: 18px; position: relative; }
aside.tip-box ul li::before { content: "•"; color: var(--accent); position: absolute; left: 0; }

/* ============================================================
   9. FAQ
   ============================================================ */
.faq-list { margin-top: 26px; }
.faq-item {
  padding: 22px 28px;
  margin-bottom: 16px;
}
.faq-item h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.faq-item p { margin-bottom: 0; }

/* ============================================================
   10. AUTOR-/KANAL-BOX (E-E-A-T)
   ============================================================ */
.author-box {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 30px 32px;
  margin: 52px 0;
}
.author-box .author-avatar {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  flex-shrink: 0;
  border: 1px solid var(--glass-border);
}
.author-box h3 { color: var(--accent); margin-bottom: 6px; }
.author-box p { margin-bottom: 14px; }
@media (max-width: 560px) {
  .author-box { flex-direction: column; gap: 16px; }
}

/* ============================================================
   11. GRID: WEITERE PROJEKTE
   ============================================================ */
.related-section h2 { text-align: center; margin-bottom: 8px; }
.related-section .section-sub {
  text-align: center;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 44px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 720px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}

.video-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glass-hover);
}

.video-card .thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: linear-gradient(135deg, #1b2b20, #10151a);
  overflow: hidden;
}

.video-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card .thumb .play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card .thumb .play-badge span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.video-card .thumb .play-badge .icon { width: 22px; height: 22px; }

.video-card .card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.video-card p { font-size: 0.92rem; margin-bottom: 18px; flex: 1; }
.video-card .btn-glass { font-size: 0.86rem; padding: 11px 20px; }

/* Grosse Artikel-Karte (Hub-Startseite) */
.feature-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  margin: 8px 0 12px;
}
@media (min-width: 760px) {
  .feature-card { grid-template-columns: 1.1fr 1fr; align-items: stretch; }
}
.feature-card .feature-media {
  position: relative;
  min-height: 220px;
  background: linear-gradient(135deg, #1b2b20, #10151a);
}
.feature-card .feature-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.feature-card .feature-body { padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; }
.feature-card .feature-body .eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.feature-card .feature-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.feature-card .feature-body p { margin-bottom: 22px; }

/* ============================================================
   12. ABONNIEREN-BANNER
   ============================================================ */
.subscribe-section { padding-bottom: 120px; }

.subscribe-banner {
  padding: 46px 36px;
  text-align: center;
  background: linear-gradient(160deg, rgba(74, 222, 128, 0.14), rgba(255,255,255,0.04));
}

.subscribe-banner h2 { margin-bottom: 10px; }
.subscribe-banner p { max-width: 480px; margin: 0 auto 26px; }

.sticky-sub-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px 12px 22px;
  width: min(560px, calc(100% - 32px));
}

.sticky-sub-bar .msg { font-size: 0.88rem; font-weight: 600; flex: 1; }
.sticky-sub-bar .msg small { display: block; font-weight: 400; color: var(--text-secondary); font-size: 0.78rem; }
.sticky-sub-bar .btn-glass { white-space: nowrap; padding: 11px 20px; font-size: 0.86rem; }

@media (max-width: 560px) {
  .sticky-sub-bar { flex-direction: column; padding: 18px; text-align: center; }
}

/* ============================================================
   13. LEGAL / EINFACHE INHALTSSEITEN
   ============================================================ */
.page-head {
  padding: 120px 0 20px;
}
.page-head h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 10px;
}
.page-head p { color: var(--text-secondary); }

.legal-content { padding: 20px 0 120px; }
.legal-content .glass { padding: 34px 38px; margin-bottom: 24px; }
.legal-content h2 { font-size: 1.4rem; margin: 8px 0 14px; }
.legal-content h3 { color: var(--text-primary); margin: 22px 0 8px; }
.legal-content p, .legal-content li { color: var(--text-secondary); }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-content dl { margin-bottom: 16px; }
.legal-content dt { color: var(--text-primary); font-weight: 700; margin-top: 14px; }
.legal-content dd { color: var(--text-secondary); }

/* Deutlich sichtbarer PLATZHALTER-/Rechtshinweis */
.review-notice {
  padding: 20px 24px;
  margin-bottom: 28px;
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  background: rgba(74, 222, 128, 0.08);
}
.review-notice strong { color: var(--accent); }
.placeholder {
  color: var(--accent);
  font-weight: 700;
  background: rgba(74, 222, 128, 0.12);
  padding: 1px 6px;
  border-radius: 5px;
}

.contact-methods { display: grid; gap: 18px; margin-top: 20px; }
@media (min-width: 640px) { .contact-methods { grid-template-columns: 1fr 1fr; } }
.contact-methods .glass { padding: 26px 28px; }
.contact-methods h3 { display: flex; align-items: center; gap: 10px; color: var(--accent); margin-bottom: 8px; }

/* ============================================================
   14. FOOTER
   ============================================================ */
footer.site-footer {
  border-top: 1px solid var(--glass-border);
  padding: 46px 0 140px;
  color: var(--text-tertiary);
  font-size: 0.86rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

footer.site-footer nav ul { display: flex; gap: 20px; flex-wrap: wrap; }
footer.site-footer nav a { color: var(--text-tertiary); transition: color 0.3s ease; }
footer.site-footer nav a:hover { color: var(--text-primary); }

/* ============================================================
   15. RESPONSIVE ANPASSUNGEN
   ============================================================ */
@media (min-width: 768px) {
  section { padding: 90px 0; }
  .hero { padding: 130px 0 90px; }
}

/* ============================================================
   16. BEWEGUNGSREDUZIERUNG (Item 28d)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .btn-glass:hover,
  .video-card:hover,
  .feature-card:hover { transform: none; }
}
