/* ============================================================
   DIY Finanzcoaching – Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #1a1a18;
  --paper: #f5f2eb;
  --cream: #ede9df;
  --accent: #2d5a3d;
  --accent-light: #4a8c5f;
  --gold: #b8973a;
  --muted: #7a7668;
  --border: #d4cfc3;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves=4/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.nav--hidden { transform: translateY(-100%); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span { color: var(--ink); font-weight: 400; font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.2s;
}

.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent-light); }

/* ── BURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.nav-burger span:nth-child(3) { width: 65%; }
nav.nav--open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.nav--open .nav-burger span:nth-child(2) { opacity: 0; }
nav.nav--open .nav-burger span:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(245, 242, 235, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 8vw 4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-drawer.nav-drawer--open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.nav-drawer-link::after {
  content: '→';
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s;
}

.nav-drawer-link:hover { color: var(--accent); }
.nav-drawer-link:hover::after { transform: translateX(4px); }
.nav-drawer-link:first-child { border-top: 1px solid var(--border); }

.nav-drawer-meta {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.nav-drawer-meta a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-drawer-cta {
  margin-top: 2.5rem;
  width: 100%;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background-image: url('Assets/Banner_Startseite.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* Warm dark overlay so text stays readable */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 18, 14, 0.82) 0%,
    rgba(20, 18, 14, 0.72) 48%,
    rgba(20, 18, 14, 0.20) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
  padding: 6rem 5vw 6rem 8vw;
  position: relative;
  z-index: 1;
}

/* Textfarben für dunklen Hintergrund */
.hero .hero-eyebrow { color: var(--gold); }
.hero .hero-eyebrow::before { background: var(--gold); }
.hero h1 { color: var(--paper); }
.hero h1 em { color: var(--gold); }
.hero .hero-lead { color: rgba(245, 242, 235, 0.75); }

.hero .btn-secondary {
  color: var(--paper);
  border-color: rgba(245, 242, 235, 0.35);
  background: rgba(245, 242, 235, 0.07);
  backdrop-filter: blur(4px);
}
.hero .btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(184, 151, 58, 0.12);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 6vw;
  opacity: 0;
  animation: fadeIn 1s 0.6s forwards;
  z-index: 1;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 242, 235, 0.04);
  pointer-events: none;
  z-index: 1;
}

.stat-card {
  position: relative;
  z-index: 2;
}

.hero-right::before {
  content: '€';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-55%, -52%);
  font-family: 'Playfair Display', serif;
  font-size: 26rem;
  font-weight: 700;
  color: rgba(184, 151, 58, 0.08);
  pointer-events: none;
  line-height: 1;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

.badge {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(45, 90, 61, 0.08);
  border: 1px solid rgba(45, 90, 61, 0.2);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }

.btn-secondary {
  color: var(--ink);
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); background: rgba(45,90,61,0.04); }


.stat-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  max-width: 360px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.stat-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
  font-weight: 500;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.stat-row:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.stat-name { font-size: 0.85rem; color: var(--muted); }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.stat-value.highlight { color: var(--accent); }

.stat-diff {
  margin-top: 1.4rem;
  padding: 0.9rem 1.1rem;
  background: rgba(45,90,61,0.07);
  border-radius: 2px;
  border-left: 2px solid var(--accent);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

/* ── HERO TRUST COLUMN ── */
.hero-trust {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 380px;
  width: 100%;
}

.hero-trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-trust-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero-trust-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--border);
  background: var(--paper);
  transition: background 0.2s;
}
.hero-trust-item:last-child { border-bottom: none; }
.hero-trust-item:hover { background: var(--cream); }

.hero-trust-icon {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
  width: 20px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  text-align: center;
}

.hero-trust-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.hero-trust-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

.hero-trust-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1.2rem;
  border-left: 2px solid var(--border);
  margin: 0;
}

/* ── SECTION SHARED ── */
section { padding: 7rem 8vw; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
}

/* ── PROBLEM SECTION ── */
.problem {
  background: var(--cream);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem .section-label { color: var(--accent); }
.problem .section-label::before { background: var(--accent); }
.problem .section-title { color: var(--ink); }
.problem .section-sub { color: var(--muted); }

.problem-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.problem-header { }

.problem-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--ink);
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  border-left: 2px solid var(--accent);
  background: var(--cream);
  border-radius: 0 2px 2px 0;
  position: relative;
  align-self: center;
}

.problem-quote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.15;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.problem-addendum {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  border-left: 2px solid var(--border);
  padding-left: 1.5rem;
}

/* ── FAQ SECTION ── */
.faq {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--paper);
  transition: background 0.2s;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2rem;
  text-align: left;
  gap: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent);
  transition: transform 0.3s, background 0.2s;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.faq-item.faq-open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 2rem;
}

.faq-item.faq-open .faq-answer {
  max-height: 400px;
  padding: 0 2rem 1.8rem;
}

/* ── APPROACH ── */
.approach {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 7rem 8vw;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--border);
}

.approach-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.approach-card:last-child { border-right: none; }
.approach-card:hover { background: var(--cream); }

.approach-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(45,90,61,0.1);
  line-height: 1;
  margin-bottom: 1rem;
}

.approach-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.approach-text { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.approach-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.approach-grid--4 { grid-template-columns: repeat(4, 1fr); }

.tag-red { background: rgba(180,60,60,0.08); color: #b43c3c; }
.tag-amber { background: rgba(184,151,58,0.1); color: #7a6015; }
.tag-green { background: rgba(45,90,61,0.1); color: var(--accent); }

/* ── TOPICS ── */
.topics { background: var(--cream); }

.topics-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.topic-item {
  background: var(--paper);
  padding: 2rem 2rem 2rem 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: background 0.2s;
  cursor: default;
}
.topic-item:hover { background: var(--cream); }

.topic-icon {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: rgba(45,90,61,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.topic-title { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.35rem; }
.topic-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ── COST SECTION ── */
.cost {
  background: var(--accent);
  color: var(--paper);
}

.cost .section-label { color: var(--gold); }
.cost .section-label::before { background: var(--gold); }
.cost .section-title { color: var(--paper); }
.cost .section-sub { color: rgba(245,242,235,0.7); }

.cost-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.cost-chart {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cost-bar-row { display: flex; flex-direction: column; gap: 0.5rem; }

.cost-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.84rem;
  color: rgba(245,242,235,0.8);
}
.cost-bar-label strong { color: var(--paper); font-size: 1rem; font-family: 'Playfair Display', serif; }

.cost-bar-track {
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.cost-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.16,1,0.3,1);
}
.bar-muted { background: rgba(255,255,255,0.3); }
.bar-bright { background: var(--gold); }

.cost-caption {
  font-size: 0.8rem;
  color: rgba(245,242,235,0.5);
  margin-top: 0.5rem;
  font-style: italic;
}

.cost-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cost-fact {
  padding: 1.4rem 1.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
}
.cost-fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.cost-fact-text { font-size: 0.85rem; color: rgba(245,242,235,0.7); }

/* ── ABOUT ── */
.about {
  background: var(--paper);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Abstract person placeholder */
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2d5a3d 0%, #1a1a18 100%);
}

.about-initial {
  position: absolute;
  inset: 0;
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(255,255,255,0);
  line-height: 1;
  letter-spacing: -0.04em;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-image: url('Assets/Portrait%20Bart%20gestutzt.png');
  background-repeat: no-repeat;
}

.about-name-tag {
  position: relative;
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: rgba(245,242,235,0.04);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.about-name { color: var(--paper); font-weight: 500; font-size: 0.95rem; }
.about-role { color: rgba(245,242,235,0.5); font-size: 0.8rem; }

.about-content { padding-right: 2vw; }

.about-bio {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-bio + .about-bio { margin-top: -0.5rem; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
}
.about-value::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── BLOG ── */
.blog {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.blog-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

/* ── PRICING ── */
.pricing { background: var(--cream); }

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.price-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: 'Jahresmitgliedschaft';
  position: absolute;
  top: 1.2rem;
  right: -2.5rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 3rem;
  transform: rotate(35deg);
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin: 1.5rem 0 0.4rem;
}
.price-amount sup { font-size: 1.5rem; vertical-align: super; }
.price-per { color: rgba(245,242,235,0.45); font-size: 0.85rem; margin-bottom: 2rem; }
.price-monthly { font-size: 0.85rem; color: var(--gold); margin-bottom: 2rem; }

.price-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 2rem 0; }

.price-features { display: flex; flex-direction: column; gap: 0.9rem; }
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.88rem;
  color: rgba(245,242,235,0.8);
}
.price-feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(45,90,61,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.65rem;
  color: #a8d5b5;
}

.price-cta {
  display: block;
  text-align: center;
  background: var(--paper);
  color: var(--ink);
  padding: 0.9rem;
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 2rem;
  transition: background 0.2s;
}
.price-cta:hover { background: var(--cream); }

.pricing-reasons {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.reason {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.2rem;
  align-items: flex-start;
}

.reason-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--cream);
  flex-shrink: 0;
}

.reason-title { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.3rem; }
.reason-text { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}

.contact-intro .section-sub {
  margin-top: 1rem;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-meta-item::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 2px;
  padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  align-self: flex-start;
}

.form-submit:hover { background: var(--accent); }

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: -0.5rem;
}

.form-feedback {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-feedback--success {
  display: block;
  background: #edf5f0;
  border: 1px solid #a8d4b8;
  color: var(--accent);
}

.form-feedback--error {
  display: block;
  background: #fdf3f2;
  border: 1px solid #f0b8b3;
  color: #b0352b;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(245,242,235,0.4);
  padding: 2.5rem 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: rgba(245,242,235,0.7);
  font-weight: 700;
}

footer a { color: rgba(245,242,235,0.4); text-decoration: none; }
footer a:hover { color: rgba(245,242,235,0.7); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 4rem 6vw; }
  .problem, .topics-intro, .about, .pricing-layout, .cost-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .approach-grid, .approach-grid--4 { grid-template-columns: 1fr; }
  .approach-card { border-right: none; border-bottom: 1px solid var(--border); }
  .topics-grid { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 4/5; max-height: 420px; }
  .about-visual::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 5rem 6vw; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ink);
  color: rgba(245,242,235,0.85);
  padding: 1.25rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.85rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.cookie-banner--visible { transform: translateY(0); }

.cookie-banner p { margin: 0; flex: 1; }

.cookie-banner a {
  color: rgba(245,242,235,0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner a:hover { color: var(--paper); }

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s, border-color 0.2s;
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookie-btn-accept:hover { background: var(--accent-light); border-color: var(--accent-light); }

.cookie-btn-decline {
  background: transparent;
  color: rgba(245,242,235,0.7);
}

.cookie-btn-decline:hover { background: rgba(255,255,255,0.06); }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── BLOG LIST ── */
.blog-page-hero {
  padding: 10rem 8vw 5rem;
  background: var(--ink);
  background-image: url('blog/banner.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.blog-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 18, 14, 0.82) 0%,
    rgba(20, 18, 14, 0.72) 48%,
    rgba(20, 18, 14, 0.20) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.blog-page-hero > * {
  position: relative;
  z-index: 1;
}

.blog-page-hero .section-label {
  margin-bottom: 1rem;
  color: var(--gold);
}

.blog-page-hero .section-label::before {
  background: var(--gold);
}

.blog-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 0;
}

.blog-page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.blog-hero-sub {
  font-size: 1.05rem;
  color: rgba(245, 242, 235, 0.75);
  line-height: 1.8;
  max-width: 44ch;
  align-self: end;
}

.blog-filter {
  padding: 1.8rem 8vw;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-filter-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-right: 0.5rem;
}

.filter-btn {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.blog-grid-section {
  padding: 5rem 8vw 7rem;
  background: var(--paper);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}

.blog-card-body {
  padding: 1.8rem 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-card-category {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-category::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--accent);
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.blog-card-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}

.blog-card:hover .blog-card-link { gap: 0.7rem; }

.blog-card.solo {
  grid-column: 1 / -1;
  flex-direction: row;
}

.blog-card.solo .blog-card-img {
  width: 48%;
  aspect-ratio: auto;
  flex-shrink: 0;
  border-bottom: none;
  border-right: 1px solid var(--border);
}

.blog-card.solo .blog-card-body {
  justify-content: center;
}

.blog-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
}

.blog-card.featured .blog-card-img {
  width: 48%;
  aspect-ratio: auto;
  flex-shrink: 0;
  border-bottom: none;
  border-right: 1px solid var(--border);
}

.blog-card.featured .blog-card-body {
  padding: 2.5rem 2.5rem;
  justify-content: center;
}

.blog-card.featured .blog-card-title {
  font-size: 1.8rem;
  line-height: 1.2;
}

.blog-card.featured .blog-card-excerpt {
  font-size: 0.95rem;
  max-width: 52ch;
}

.blog-cta-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 8vw;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.blog-cta-banner .section-label {
  color: var(--gold);
  justify-content: center;
}

.blog-cta-banner .section-label::before {
  background: var(--gold);
}

.blog-cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 1rem auto 1.2rem;
  max-width: 46ch;
}

.blog-cta-banner p {
  color: rgba(245,242,235,0.65);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 48ch;
  margin: 0 auto 2.5rem;
}

@media (max-width: 900px) {
  .blog-page-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 7rem;
  }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured,
  .blog-card.solo {
    flex-direction: column;
    grid-column: auto;
  }
  .blog-card.featured .blog-card-img,
  .blog-card.solo .blog-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ── BLOG POST ── */
.post-hero {
  padding-top: 80px;
  background: var(--paper);
}

.post-banner {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}

.post-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 2.5rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.post-category {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.post-category::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.post-date {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

.post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.post-lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  border-left: 2px solid var(--accent);
  padding-left: 1.4rem;
  margin-bottom: 0;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.post-body p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.post-body p em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--accent);
}

.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.post-body ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-body ul li {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.post-body ul li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.post-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  margin: 2rem 0;
  overflow: hidden;
}

.post-compare-col {
  background: var(--paper);
  padding: 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.post-compare-col.highlight {
  background: rgba(45,90,61,0.05);
}

.post-compare-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.post-compare-col.highlight .post-compare-label {
  color: var(--accent);
}

.post-compare-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.post-compare-item {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.post-compare-item::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.post-pullquote {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.post-pullquote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(184,151,58,0.2);
  line-height: 1;
  pointer-events: none;
}

.post-pullquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--paper);
  margin-bottom: 0 !important;
  position: relative;
}

.post-highlight-box {
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px;
  padding: 2rem 2.2rem;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.post-highlight-box .highlight-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.post-highlight-box .highlight-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--paper);
  line-height: 1.6;
  margin: 0;
}

.post-fazit {
  background: rgba(45,90,61,0.06);
  border: 1px solid rgba(45,90,61,0.18);
  border-radius: 2px;
  padding: 2rem 2.2rem;
  margin-top: 3.5rem;
}

.post-fazit-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.post-fazit-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.post-fazit p {
  color: var(--ink) !important;
  margin-bottom: 0.9rem !important;
}

.post-fazit p:last-child {
  margin-bottom: 0 !important;
}

/* ── POST BIBLE QUOTE ── */
.post-bible {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  font-style: italic;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.8;
}

.post-bible cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── POST TABLE ── */
.post-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.post-table th,
.post-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.post-table thead th {
  background: var(--cream);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.post-table tbody tr:last-child td {
  border-bottom: none;
}

.post-table-total td {
  border-top: 2px solid var(--ink);
  padding-top: 1rem;
}

/* ── POST EXTERNAL LINK ── */
.post-external-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
  transition: color 0.2s, border-color 0.2s;
}

.post-external-link:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
}

.post-author-bar {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.post-author-inner {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.post-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  object-fit: cover;
  object-position: center top;
  background: var(--ink);
}

.post-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.post-author-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
}

.post-author-role {
  font-size: 0.8rem;
  color: var(--muted);
}

.post-cta-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 8vw;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.post-cta-banner .section-label {
  color: var(--gold);
  justify-content: center;
}

.post-cta-banner .section-label::before {
  background: var(--gold);
}

.post-cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 1rem auto 1.2rem;
  max-width: 46ch;
}

.post-cta-banner p {
  color: rgba(245,242,235,0.65);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 48ch;
  margin: 0 auto 2.5rem;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  margin-bottom: 2rem;
}

.post-back:hover { color: var(--accent); }

.post-back::before {
  content: '←';
  font-size: 1rem;
  color: var(--accent);
}

/* ESG highlight box (sind-nachhaltige post) */
.post-esg-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
  padding: 1.6rem 2rem;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.post-esg-box .esg-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.post-esg-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.6;
}

.post-esg-letter {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 1.4rem;
}

@media (max-width: 700px) {
  .post-header,
  .post-body,
  .post-author-bar { padding-left: 1.25rem; padding-right: 1.25rem; }
  .post-pullquote { padding: 1.5rem 1.5rem; }
  .post-pullquote p { font-size: 1.05rem; }
  .post-compare { grid-template-columns: 1fr; }
}

/* ── LEGAL ── */
.legal-hero {
  padding: 8rem 8vw 4rem;
  border-bottom: 1px solid var(--border);
}

.legal-hero .section-label { margin-bottom: 1rem; }

.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal-hero p {
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 4rem 8vw 6rem;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 3rem 0 0.8rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* impressum h3 style */
.legal-body h3.legal-h3-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2.5rem 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.legal-body h3.legal-h3-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

/* datenschutz h3 style */
.legal-body h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 2rem 0 0.5rem;
  color: var(--ink);
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-body ul li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  padding-left: 1.4rem;
  position: relative;
}

.legal-body ul li::before {
  content: '→';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.85rem;
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

.legal-highlight {
  background: rgba(45,90,61,0.06);
  border-left: 2px solid var(--accent);
  padding: 1.4rem 1.6rem;
  border-radius: 0 2px 2px 0;
  margin: 1.5rem 0;
}

.legal-highlight p {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.75;
}

.legal-highlight p:last-child { margin-bottom: 0; }

.legal-address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.contact-row a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-row a:hover { text-decoration: underline; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  transition: gap 0.2s;
}

.back-link:hover { gap: 0.75rem; }

.taetig-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(45,90,61,0.08);
  border: 1px solid rgba(45,90,61,0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-top: 0.5rem;
}
