/*
Theme Name: Buchvirtuosen
Theme URI: https://buchvirtuosen.de
Author: Maria Lengemann
Author URI: https://maria-lengemann.de
Description: Eigenes WordPress-Theme für die Buchvirtuosen Ghostwriting-Agentur. 7 Page-Templates plus Blog (single, archive, search, 404). 9 Custom Post Types für FAQs, Kundenstimmen, Prozess-Schritte, Preis-Pakete, Preistabellen-Zeilen, Cards (Genre/Persona/Buchform/...), Team-Mitglieder, Timeline-Einträge und Netzwerk-Bubbles — alles editierbar im WP-Admin. Customizer für globale Inhalte, integriertes Kontaktformular, Impressum + Datenschutz mit Platzhaltertext.
Version: 3.5.3
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buchvirtuosen
Tags: custom-menu, featured-images, threaded-comments, translation-ready, custom-logo, block-styles
*/

/* ==========================================================================
   1. CSS Custom Properties (Design-Tokens)
   ========================================================================== */
:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d5a3d;
  --green-light: #3d7a52;
  --green-accent: #4e9968;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --cream: #faf8f3;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #3d3d3d;
  --text-light: #6b6b6b;
  --border: #e8e0d4;
  --ink: #12211a;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ==========================================================================
   3. Navigation
   ========================================================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,58,42,0.97);
  backdrop-filter: blur(8px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-logo img { max-height: 40px; width: auto; }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--gold); }
.nav-cta a, a.nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  padding: 0.5rem 1.3rem; border-radius: 2px; font-weight: 700 !important;
}
.nav-toggle {
  display: none; background: transparent; border: 0; color: var(--white);
  font-size: 1.5rem; cursor: pointer;
}

/* ==========================================================================
   4. Breadcrumb
   ========================================================================== */
.breadcrumb { padding: 100px 5% 0; background: var(--cream); }
.breadcrumb.dark { background: var(--ink); }
.breadcrumb-inner {
  max-width: 1180px; margin: 0 auto;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-light);
}
.breadcrumb.dark .breadcrumb-inner { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb.dark a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: var(--green-accent); }
.breadcrumb.dark a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--green-accent); }
.breadcrumb.dark .current { color: var(--gold); }

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--green-dark);
  padding: 0.9rem 2rem; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: all 0.2s; border: 0; cursor: pointer;
  font-family: "Lato", sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; border: 1.5px solid var(--border); color: var(--text-mid);
  padding: 0.9rem 2rem; font-size: 0.9rem; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--green-accent); color: var(--green-dark); }
.btn-outline-light {
  display: inline-block; border: 1.5px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 0.9rem 2rem; font-size: 0.9rem; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================================
   6. Common Section Layout
   ========================================================================== */
section { padding: 80px 5%; }
.section-inner, .inner { max-width: 1180px; margin: 0 auto; }
.section-label, .sec-label, .hero-label {
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green-accent); margin-bottom: 0.8rem;
}
.hero-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.hero-label::before {
  content: ""; display: block; width: 30px; height: 1px; background: var(--green-accent);
}
.section-title, .sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 700;
  color: var(--green-dark); line-height: 1.25; margin-bottom: 1.2rem;
}
.section-title em, .sec-title em { font-style: italic; color: var(--green-accent); }
.section-sub, .sec-sub {
  font-size: 1rem; color: var(--text-light); line-height: 1.85; max-width: 680px;
}

/* ==========================================================================
   7. Trust Pills & Tags
   ========================================================================== */
.trust-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--text-mid);
  background: var(--white); border: 1px solid var(--border);
  padding: 0.4rem 0.9rem; border-radius: 20px;
}
.trust-pill::before { content: "\2713"; color: var(--green-accent); font-weight: 700; }
.trust-row.dark .trust-pill {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.trust-row.dark .trust-pill::before { color: var(--gold); }
.trust-row.center { justify-content: center; }
.trust-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.82rem;
}
.trust-item::before { content: "\2713"; color: var(--gold); font-weight: 700; }
.tag {
  font-size: 0.72rem; padding: 0.25rem 0.7rem; border-radius: 20px;
  border: 1px solid var(--border); color: var(--text-mid); background: var(--cream);
}

/* ==========================================================================
   8. Hero Variants
   ========================================================================== */
/* Generic hero (cream bg) */
.page-hero { background: var(--cream); padding: 3rem 5% 5rem; }
.page-hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 5rem;
  align-items: center;
}
.page-hero-inner.center { grid-template-columns: 1fr; max-width: 860px; text-align: center; }
.page-hero-inner.center .hero-label { display: inline-flex; }
.page-hero-inner.center .hero-label::after {
  content: ""; display: block; width: 30px; height: 1px; background: var(--green-accent);
}
.page-hero-inner.center .trust-row { justify-content: center; }
.page-hero h1, .page-hero .h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700;
  color: var(--green-dark); line-height: 1.2; margin-bottom: 1.2rem;
}
.page-hero h1 em { font-style: italic; color: var(--green-accent); }
.page-hero-sub {
  font-size: 1.05rem; color: var(--text-light); line-height: 1.85;
  margin-bottom: 2rem; max-width: 600px;
}
.page-hero-inner.center .page-hero-sub { margin-left: auto; margin-right: auto; }

/* Dark/cinematic hero (Roman & Belletristik) */
.page-hero.dark {
  background: var(--ink); padding: 4rem 5% 6rem;
  overflow: hidden; position: relative;
}
.page-hero.dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(78,153,104,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero.dark::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.page-hero.dark .page-hero-inner { position: relative; z-index: 1; align-items: start; grid-template-columns: 1fr 400px; }
.page-hero.dark h1 { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.8rem); line-height: 1.15; }
.page-hero.dark h1 em { color: var(--gold); }
.page-hero.dark .page-hero-sub { color: rgba(255,255,255,0.6); max-width: 540px; }

/* ==========================================================================
   9. Sticky Card (Hero-Sidebar)
   ========================================================================== */
.sticky-card {
  background: var(--green-dark); border-radius: 8px; padding: 2.5rem;
  position: sticky; top: 90px;
}
.sticky-card.dark-bordered {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.3);
  backdrop-filter: blur(10px);
}
.sticky-card-title {
  font-family: "Playfair Display", serif; font-size: 1.4rem;
  color: var(--white); margin-bottom: 0.8rem;
}
.sticky-card-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.8rem;
}
.sticky-card .btn-primary { width: 100%; text-align: center; display: block; margin-bottom: 1rem; }
.sticky-card-divider, .sticky-divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.5rem 0;
}
.sticky-card-list, .sticky-list {
  display: flex; flex-direction: column; gap: 0.7rem; list-style: none;
}
.sticky-card-list li, .sticky-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5;
}
.sticky-card-list li::before, .sticky-list li::before {
  content: "\2713"; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ==========================================================================
   10. Front Page Hero (Startseite)
   ========================================================================== */
.front-hero {
  min-height: 100vh; background: var(--green-dark);
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 72px; position: relative; overflow: hidden;
}
.front-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(78,153,104,0.12) 0%, transparent 65%);
}
.front-hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8% 6% 8% 10%; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ""; display: block; width: 30px; height: 1px; background: var(--gold);
}
.front-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 1.5rem;
}
.front-hero h1 em { font-style: italic; color: var(--gold); }
.front-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.85;
}
.front-hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.front-hero-trust {
  margin-top: 3rem; display: flex; gap: 2rem; flex-wrap: wrap;
}
.front-hero-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 6% 8% 6% 4%; position: relative; z-index: 2;
}
.hero-book-stack { position: relative; width: 340px; height: 420px; }
.book-card { position: absolute; border-radius: 4px; }
.book-card.main {
  width: 280px; height: 370px; top: 0; left: 30px;
  background: linear-gradient(145deg, var(--green-mid), var(--green-dark));
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.book-card.main::before {
  content: "\275D"; position: absolute; top: 2rem; left: 2rem;
  font-size: 3rem; color: var(--gold); opacity: 0.5;
  font-family: "Playfair Display", serif;
}
.book-card.accent {
  width: 200px; height: 260px; bottom: 0; left: 0;
  background: var(--gold); transform: rotate(-5deg); z-index: -1;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.book-card-title {
  font-family: "Playfair Display", serif; font-size: 1.2rem;
  color: var(--white); line-height: 1.3; margin-bottom: 0.5rem;
}
.book-card-author {
  font-size: 0.78rem; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 1rem;
}
.hero-badge {
  position: absolute; top: -1rem; right: -1rem;
  width: 90px; height: 90px; background: var(--gold); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; font-size: 0.65rem; font-weight: 700; color: var(--green-dark);
  text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.3;
}

/* ==========================================================================
   11. Logobar
   ========================================================================== */
.logobar {
  padding: 32px 5%; background: var(--cream);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.logobar-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.logobar-label {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light); white-space: nowrap;
}
.logobar-items { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.logobar-item {
  font-family: "Playfair Display", serif; font-size: 0.95rem; font-weight: 600;
  color: var(--text-light); opacity: 0.5; letter-spacing: 0.05em;
}

/* ==========================================================================
   12. Card Grids (generic)
   ========================================================================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.two-col-text h2 {
  font-family: "Playfair Display", serif; font-size: 2rem;
  color: var(--green-dark); margin-bottom: 1rem; line-height: 1.3;
}
.two-col-text h2 em { font-style: italic; color: var(--green-accent); }
.two-col-text p {
  color: var(--text-light); font-size: 0.97rem; line-height: 1.85; margin-bottom: 1rem;
}
.two-col-text p strong { color: var(--text-dark); }

/* Why-Cards */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 6px; padding: 2rem;
}
.why-card .icon { font-size: 1.6rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: "Playfair Display", serif; font-size: 1.05rem;
  color: var(--green-dark); margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* Buchformen */
.buchformen-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.buchform-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 2rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.buchform-card:hover {
  border-color: var(--green-accent);
  box-shadow: 0 8px 32px rgba(26,58,42,0.08);
}
.buchform-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--green-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
}
.buchform-text h3 {
  font-family: "Playfair Display", serif; font-size: 1.1rem;
  color: var(--green-dark); margin-bottom: 0.4rem;
}
.buchform-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 0.8rem; }
.buchform-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* Zielgruppen-Cards */
.zg-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3.5rem;
}
.zg-card {
  border: 1.5px solid var(--border); border-radius: 6px;
  padding: 2.5rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.zg-card:hover {
  border-color: var(--green-accent);
  box-shadow: 0 8px 32px rgba(26,58,42,0.08);
}
.zg-icon {
  width: 52px; height: 52px; background: var(--green-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.3rem; color: var(--gold);
}
.zg-card h3 {
  font-family: "Playfair Display", serif; font-size: 1.3rem;
  color: var(--green-dark); margin-bottom: 0.8rem;
}
.zg-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.2rem; }
.zg-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Persona Cards (Sachbuch) */
.zg-personas {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.persona-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 6px; padding: 1.8rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.persona-card:hover {
  border-color: var(--green-accent);
  box-shadow: 0 6px 24px rgba(26,58,42,0.08);
}
.persona-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.persona-card h3 {
  font-family: "Playfair Display", serif; font-size: 1rem;
  color: var(--green-dark); margin-bottom: 0.5rem;
}
.persona-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }
.persona-example {
  margin-top: 0.8rem; font-size: 0.78rem; color: var(--green-accent); font-style: italic;
  border-top: 1px solid var(--border); padding-top: 0.7rem;
}

/* Buchtypen */
.buchtypen-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.buchtyp-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 6px; padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.buchtyp-card:hover {
  border-color: var(--green-accent);
  box-shadow: 0 8px 32px rgba(26,58,42,0.08);
}
.buchtyp-card.featured { background: var(--green-dark); border-color: transparent; }
.buchtyp-card.featured h3 { color: var(--white); }
.buchtyp-card.featured p { color: rgba(255,255,255,0.65); }
.buchtyp-card.featured .bt-tag {
  border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.06);
}
.buchtyp-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.buchtyp-icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0; color: var(--green-dark);
}
.buchtyp-card.featured .buchtyp-icon { background: rgba(201,169,110,0.2); color: var(--gold); }
.buchtyp-card h3 {
  font-family: "Playfair Display", serif; font-size: 1.15rem; color: var(--green-dark); margin: 0;
}
.buchtyp-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.2rem; }
.bt-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.bt-tag {
  font-size: 0.72rem; padding: 0.25rem 0.7rem; border-radius: 20px;
  border: 1px solid var(--border); color: var(--text-mid); background: var(--cream);
}

/* Genre-Cards (Roman) */
.genres-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem;
}
.genre-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 6px; padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.genre-card:hover {
  border-color: var(--green-accent);
  box-shadow: 0 8px 30px rgba(26,58,42,0.08);
}
.genre-card.featured { background: var(--green-dark); border-color: transparent; }
.genre-card.featured h3, .genre-card.featured .gc-sub { color: var(--white); }
.genre-card.featured p { color: rgba(255,255,255,0.6); }
.genre-card.featured .gc-tag {
  border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05);
}
.gc-emoji { font-size: 1.8rem; margin-bottom: 0.8rem; }
.genre-card h3 {
  font-family: "Playfair Display", serif; font-size: 1.1rem;
  color: var(--green-dark); margin-bottom: 0.3rem;
}
.gc-sub {
  font-size: 0.78rem; color: var(--green-accent);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.8rem;
}
.genre-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.2rem; }
.gc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.gc-tag {
  font-size: 0.72rem; padding: 0.22rem 0.65rem; border-radius: 20px;
  border: 1px solid var(--border); color: var(--text-mid); background: var(--cream);
}

/* Warum-Cards (Roman) */
.warum-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem;
}
.warum-text p { color: var(--text-light); font-size: 0.97rem; line-height: 1.9; margin-bottom: 1.1rem; }
.warum-text p strong { color: var(--text-dark); }
.warum-cards { display: flex; flex-direction: column; gap: 1rem; }
.warum-card {
  display: flex; gap: 1.2rem; padding: 1.5rem;
  border: 1px solid var(--border); border-radius: 6px; align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.warum-card:hover { border-color: var(--green-accent); box-shadow: 0 6px 24px rgba(26,58,42,0.07); }
.wc-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gold);
  flex-shrink: 0;
}
.wc-text h4 {
  font-family: "Playfair Display", serif; font-size: 1rem;
  color: var(--green-dark); margin-bottom: 0.3rem;
}
.wc-text p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ==========================================================================
   13. Leistungen (Front Page)
   ========================================================================== */
.leistungen { background: var(--cream); }
.leistungen-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem;
}
.leistungen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.leistung-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.leistung-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(26,58,42,0.1); }
.leistung-num {
  font-family: "Playfair Display", serif; font-size: 2.2rem; font-weight: 700;
  color: var(--green-light); opacity: 0.25; line-height: 1; margin-bottom: 0.5rem;
}
.leistung-card h3 {
  font-family: "Playfair Display", serif; font-size: 1.1rem;
  color: var(--green-dark); margin-bottom: 0.6rem;
}
.leistung-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.leistung-card.highlight { background: var(--green-dark); border-color: transparent; }
.leistung-card.highlight .leistung-num { color: var(--gold); opacity: 0.4; }
.leistung-card.highlight h3 { color: var(--white); }
.leistung-card.highlight p { color: rgba(255,255,255,0.65); }

/* ==========================================================================
   14. Prozess
   ========================================================================== */
.prozess-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.prozess-item {
  display: grid; grid-template-columns: 72px 1fr; gap: 2rem;
  padding: 2.5rem 0; border-bottom: 1px solid var(--border); align-items: start;
}
.prozess-item:last-child { border-bottom: none; }
.prozess-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-size: 1.1rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0;
}
.prozess-content h3 {
  font-family: "Playfair Display", serif; font-size: 1.15rem;
  color: var(--green-dark); margin-bottom: 0.5rem;
}
.prozess-content p { font-size: 0.92rem; color: var(--text-light); line-height: 1.75; }
.prozess-detail { margin-top: 0.8rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.prozess-badge {
  font-size: 0.75rem; padding: 0.3rem 0.8rem; border-radius: 20px;
  background: var(--cream); border: 1px solid var(--border); color: var(--text-mid);
}

/* Prozess Steps Horizontal (Front Page) */
.prozess-steps-row {
  margin-top: 4rem; display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.prozess-steps-row::before {
  content: ""; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: var(--border); z-index: 0;
}
.prozess-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 1rem; position: relative; z-index: 1;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-size: 1.1rem; font-weight: 700;
  color: var(--gold); margin-bottom: 1.2rem; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,58,42,0.2);
}
.step-title {
  font-family: "Playfair Display", serif; font-size: 1rem;
  color: var(--green-dark); margin-bottom: 0.5rem;
}
.step-text { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* Prozess-Karten 2-Col (Roman) */
.prozess-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-bottom: 4rem;
}
.prozess-intro p { color: var(--text-light); font-size: 0.97rem; line-height: 1.85; }
.prozess-cards-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.pstep {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pstep:hover { border-color: var(--green-accent); box-shadow: 0 6px 24px rgba(26,58,42,0.07); }
.pstep-num {
  font-family: "Playfair Display", serif; font-size: 2rem; font-weight: 700;
  color: var(--gold); opacity: 0.5; line-height: 1; margin-bottom: 0.8rem;
}
.pstep h3 {
  font-family: "Playfair Display", serif; font-size: 1.05rem;
  color: var(--green-dark); margin-bottom: 0.5rem;
}
.pstep p { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; }

/* Prozess-Liste Sachbuch (numbered with side text) */
.prozess-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem;
}
.prozess-steps-vertical { display: flex; flex-direction: column; gap: 0; }
.prozess-steps-vertical .pstep {
  display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
  align-items: start; background: transparent; border-radius: 0;
}
.prozess-steps-vertical .pstep:last-child { border-bottom: none; }
.prozess-steps-vertical .pstep:hover { box-shadow: none; border-color: var(--border); }
.prozess-steps-vertical .pstep-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; opacity: 1;
  margin: 0; flex-shrink: 0;
}

/* Ablauf-Schritte (Kontakt) */
.ablauf { background: var(--cream); padding: 80px 5%; }
.ablauf-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3rem; position: relative;
}
.ablauf-grid::before {
  content: ""; position: absolute; top: 30px;
  left: calc(12.5% + 1px); right: calc(12.5% + 1px);
  height: 1px; background: var(--border); z-index: 0;
}
.ablauf-step { text-align: center; position: relative; z-index: 1; }
.abl-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green-dark); border: 3px solid var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-size: 1.2rem; font-weight: 700;
  color: var(--gold); margin: 0 auto 1.2rem;
}
.ablauf-step h4 {
  font-family: "Playfair Display", serif; font-size: 0.97rem;
  color: var(--green-dark); margin-bottom: 0.4rem;
}
.ablauf-step p { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; }
.abl-time {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 0.5rem; font-weight: 700;
}

/* ==========================================================================
   15. Kosten/Preise (Tabellen)
   ========================================================================== */
.kosten-table {
  margin-top: 3rem; border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.kosten-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.kosten-row:last-child { border-bottom: none; }
.kosten-row.header { background: var(--green-dark); }
.kosten-cell { padding: 1.2rem 1.5rem; font-size: 0.9rem; color: var(--text-light); }
.kosten-row.header .kosten-cell {
  color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700;
}
.kosten-cell strong { color: var(--text-dark); }
.kosten-note {
  margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-light);
  line-height: 1.7; display: flex; gap: 0.5rem;
}
.kosten-note::before { content: "\2139"; color: var(--green-accent); font-size: 1rem; flex-shrink: 0; }

/* Pakete-Grid */
.pakete-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; margin-top: 3rem; align-items: start;
}
.paket-card {
  border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.paket-card:hover { border-color: var(--green-accent); box-shadow: 0 12px 40px rgba(26,58,42,0.1); }
.paket-card.featured { border-color: var(--gold); box-shadow: 0 8px 32px rgba(201,169,110,0.2); }
.paket-header { padding: 2rem 1.8rem 1.5rem; background: var(--cream); }
.paket-card.featured .paket-header { background: var(--green-dark); }
.paket-badge {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; background: var(--gold); color: var(--green-dark);
  padding: 0.25rem 0.7rem; border-radius: 20px; font-weight: 700; margin-bottom: 0.8rem;
}
.paket-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.paket-name {
  font-family: "Playfair Display", serif; font-size: 1.15rem; font-weight: 700;
  color: var(--green-dark); margin-bottom: 0.3rem;
}
.paket-card.featured .paket-name { color: var(--white); }
.paket-sub { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1.2rem; }
.paket-card.featured .paket-sub { color: rgba(255,255,255,0.55); }
.paket-preis { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.3rem; }
.paket-ab { font-size: 0.75rem; color: var(--text-light); margin-right: 0.2rem; }
.paket-card.featured .paket-ab { color: rgba(255,255,255,0.5); }
.paket-zahl {
  font-family: "Playfair Display", serif; font-size: 2rem; font-weight: 700;
  color: var(--green-dark);
}
.paket-card.featured .paket-zahl { color: var(--gold); }
.paket-einheit { font-size: 0.8rem; color: var(--text-light); }
.paket-card.featured .paket-einheit { color: rgba(255,255,255,0.5); }
.paket-umfang { font-size: 0.78rem; color: var(--text-light); font-style: italic; }
.paket-card.featured .paket-umfang { color: rgba(255,255,255,0.4); }
.paket-body {
  padding: 1.5rem 1.8rem 2rem; background: var(--white);
  flex: 1; display: flex; flex-direction: column;
}
.paket-card.featured .paket-body { background: rgba(26,58,42,0.03); }
.paket-includes {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 1rem;
}
.paket-card.featured .paket-includes { color: rgba(255,255,255,0.4); }
.paket-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.paket-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--text-mid); line-height: 1.5;
}
.paket-features li::before {
  content: "\2713"; color: var(--green-accent); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.paket-features li.extra::before { color: var(--gold); }
.paket-features li.muted { color: var(--text-light); }
.paket-features li.muted::before { content: "\2014"; color: var(--border); font-weight: 400; }
.paket-cta {
  display: block; text-align: center; margin-top: 1.8rem; padding: 0.85rem;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: all 0.2s;
}
.paket-cta-outline { border: 1.5px solid var(--border); color: var(--green-dark); }
.paket-cta-outline:hover { border-color: var(--green-accent); }
.paket-cta-gold { background: var(--gold); color: var(--green-dark); }
.paket-cta-gold:hover { background: var(--gold-light); }

/* Einzelpreise (Detail-Tabellen) */
.ep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.ep-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.ep-header {
  background: var(--green-dark); padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.ep-icon { font-size: 1.4rem; color: var(--gold); }
.ep-header-text h3 {
  font-family: "Playfair Display", serif; font-size: 1.1rem;
  color: var(--white); margin-bottom: 0.15rem;
}
.ep-header-text span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.ep-body { padding: 1.8rem 2rem; }
.ep-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border); gap: 1rem;
}
.ep-row:last-child { border-bottom: none; }
.ep-label { font-size: 0.9rem; color: var(--text-mid); }
.ep-label small { display: block; font-size: 0.75rem; color: var(--text-light); margin-top: 0.1rem; }
.ep-price {
  font-family: "Playfair Display", serif; font-size: 1.1rem; font-weight: 700;
  color: var(--green-dark); white-space: nowrap; flex-shrink: 0;
}
.ep-price.gold { color: var(--gold); }

/* Vergleichstabelle (Sachbuch) */
.vergleich-table { margin-top: 3rem; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.vt-row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.vt-row:last-child { border-bottom: none; }
.vt-row.header { background: var(--green-dark); }
.vt-cell { padding: 1.1rem 1.5rem; font-size: 0.9rem; color: var(--text-light); }
.vt-row.header .vt-cell {
  color: rgba(255,255,255,0.7); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
}
.vt-row.header .vt-cell:nth-child(3) { color: var(--gold); }
.vt-row:nth-child(even) { background: var(--cream); }
.vt-cell strong { color: var(--text-dark); }
.vt-check { color: var(--green-accent); font-weight: 700; }
.vt-no { color: #ccc; }
.vt-cell.highlight { font-weight: 700; color: var(--green-dark); }

/* Hinweis-Banner (Preise) */
.hinweis-banner { background: var(--green-dark); padding: 20px 5%; }
.hinweis-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.hinweis-icon { font-size: 1.4rem; flex-shrink: 0; color: var(--gold); }
.hinweis-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.hinweis-text strong { color: var(--gold); }

/* ==========================================================================
   16. Inbegriffen / Vertrauen
   ========================================================================== */
.ib-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.ib-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 6px; padding: 1.8rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ib-card:hover { border-color: var(--green-accent); box-shadow: 0 6px 24px rgba(26,58,42,0.07); }
.ib-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold); margin-bottom: 1rem;
}
.ib-card h4 {
  font-family: "Playfair Display", serif; font-size: 1rem;
  color: var(--green-dark); margin-bottom: 0.4rem;
}
.ib-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

/* Vertrauen-Strip */
.vertrauen { background: var(--cream); padding: 60px 5%; }
.vt-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.vt-item { text-align: center; padding: 2rem 1rem; }
.vt-icon { font-size: 2rem; margin-bottom: 0.8rem; color: var(--green-accent); }
.vt-title {
  font-family: "Playfair Display", serif; font-size: 1rem;
  color: var(--green-dark); margin-bottom: 0.4rem;
}
.vt-text { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; }

/* ==========================================================================
   17. Vorteile (Front Page)
   ========================================================================== */
.vorteile { background: var(--cream); }
.vorteile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.vorteile-list { display: flex; flex-direction: column; gap: 1.5rem; }
.vorteil-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.vorteil-icon {
  width: 44px; height: 44px; flex-shrink: 0; background: var(--green-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold); margin-top: 2px;
}
.vorteil-text h4 {
  font-family: "Playfair Display", serif; font-size: 1.05rem;
  color: var(--green-dark); margin-bottom: 0.3rem;
}
.vorteil-text p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.vorteile-visual {
  background: var(--green-dark); border-radius: 8px; padding: 3rem;
  position: relative; overflow: hidden;
}
.vorteile-visual::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%; background: rgba(201,169,110,0.07);
}
.quote-large {
  font-family: "Playfair Display", serif; font-size: 1.3rem; font-style: italic;
  color: var(--white); line-height: 1.65; margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.quote-large::before {
  content: "\275D"; display: block; font-size: 2.5rem; color: var(--gold);
  opacity: 0.5; margin-bottom: 0.5rem;
}
.quote-attr {
  font-size: 0.85rem; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase; position: relative; z-index: 1;
}

/* ==========================================================================
   18. Stats
   ========================================================================== */
.stats-bar { background: var(--green-dark); padding: 70px 5%; }
.stats-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num {
  font-family: "Playfair Display", serif; font-size: 3rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* Hero Stats (Ueber uns) */
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.hstat { background: var(--white); padding: 2rem; text-align: center; }
.hstat-num {
  font-family: "Playfair Display", serif; font-size: 2.5rem; font-weight: 700;
  color: var(--green-dark); line-height: 1;
}
.hstat-num span { color: var(--gold); }
.hstat-label {
  font-size: 0.78rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.4rem;
}
.hstat-sub { font-size: 0.82rem; color: var(--text-light); margin-top: 0.3rem; font-style: italic; }

/* ==========================================================================
   19. Testimonials
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 2rem;
}
.testi-card.cream { background: var(--cream); }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-size: 1rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.testi-role { font-size: 0.8rem; color: var(--text-light); }

/* Testi-Strip (dunkler Streifen, Buch schreiben lassen) */
.testi-strip { background: var(--green-dark); padding: 60px 5%; }
.testi-strip-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center;
}
.testi-label {
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.testi-headline {
  font-family: "Playfair Display", serif; font-size: 1.8rem;
  color: var(--white); line-height: 1.3;
}
.testi-cards-row { display: flex; flex-direction: column; gap: 1.2rem; }
.testi-mini {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 1.5rem;
}
.testi-mini-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
  line-height: 1.7; font-style: italic; margin-bottom: 1rem;
}
.testi-mini-author { display: flex; align-items: center; gap: 0.7rem; }
.testi-mini-avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-size: 0.9rem; font-weight: 700;
  color: var(--green-dark); flex-shrink: 0;
}
.testi-mini-name { font-size: 0.82rem; color: rgba(255,255,255,0.9); font-weight: 700; }
.testi-mini-role { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ==========================================================================
   20. FAQ
   ========================================================================== */
.faq-simple, .faq-grid-wrap { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 1.3rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 0.95rem; color: var(--green-dark);
  user-select: none; gap: 1rem;
}
.faq-q::after { content: "+"; font-size: 1.3rem; font-weight: 300; color: var(--green-accent); flex-shrink: 0; }
.faq-a {
  padding: 0 0 1.2rem 0; font-size: 0.9rem; color: var(--text-light);
  line-height: 1.8; display: none;
}
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-item.open .faq-a { display: block; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.faq-cta-box {
  background: var(--green-dark); border-radius: 8px; padding: 2.5rem;
  position: sticky; top: 100px;
}
.faq-cta-box h3 {
  font-family: "Playfair Display", serif; font-size: 1.5rem;
  color: var(--white); margin-bottom: 1rem;
}
.faq-cta-box p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.8rem; }
.faq-cta-box .btn-primary { width: 100%; text-align: center; display: block; }

/* ==========================================================================
   21. SEO Content / Long-form
   ========================================================================== */
.seo-content, .seo-block, .seo-section { padding: 70px 5%; background: var(--white); }
.seo-content-inner, .seo-inner { max-width: 780px; margin: 0 auto; }
.seo-content h2, .seo-inner h2 {
  font-family: "Playfair Display", serif; font-size: 1.7rem;
  color: var(--green-dark); margin-bottom: 1rem; margin-top: 2.5rem;
}
.seo-content h2:first-child, .seo-inner h2:first-child { margin-top: 0; }
.seo-content p, .seo-inner p {
  color: var(--text-light); font-size: 0.97rem;
  line-height: 1.9; margin-bottom: 1rem;
}
.seo-content p strong, .seo-inner p strong { color: var(--text-dark); }
.seo-content ul, .seo-inner ul { margin: 0.5rem 0 1rem 1.2rem; }
.seo-content ul li, .seo-inner ul li {
  color: var(--text-light); font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.4rem;
}

/* SEO mit 2 Spalten (Front Page) */
.seo-block-2col { background: var(--white); padding: 70px 5%; }
.seo-block-2col-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.seo-block-2col h2 {
  font-family: "Playfair Display", serif; font-size: 1.9rem;
  color: var(--green-dark); margin-bottom: 1rem;
}
.seo-block-2col p { color: var(--text-light); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1rem; }
.seo-block-2col p strong { color: var(--text-dark); }

/* ==========================================================================
   22. Lieferung / Liste mit Icons
   ========================================================================== */
.lieferung-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.lieferung-item {
  display: flex; gap: 1.2rem; padding: 1.4rem;
  border: 1px solid var(--border); border-radius: 6px;
  transition: border-color 0.2s;
}
.lieferung-item:hover { border-color: var(--green-accent); }
.li-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.li-text h4 {
  font-family: "Playfair Display", serif; font-size: 0.97rem;
  color: var(--green-dark); margin-bottom: 0.3rem;
}
.li-text p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

.lieferung-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.lieferung-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

/* Sidebar Boxes */
.sidebar-box {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem;
}
.sidebar-box h4 {
  font-family: "Playfair Display", serif; font-size: 1.05rem;
  color: var(--green-dark); margin-bottom: 1rem;
}
.sidebar-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.sidebar-box ul li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.87rem; color: var(--text-mid); line-height: 1.55;
}
.sidebar-box ul li::before {
  content: "\2192"; color: var(--green-accent); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

/* Sidebar-Quote (dunkel) */
.sidebar-quote, .zitat-gross {
  background: var(--ink); border-radius: 8px; padding: 2.5rem;
  position: relative; overflow: hidden;
}
.zitat-gross::before {
  content: "\275D"; position: absolute; top: -1.5rem; left: 1.5rem;
  font-family: "Playfair Display", serif; font-size: 7rem;
  color: rgba(201,169,110,0.1); line-height: 1;
}
.sidebar-quote::before {
  content: "\275D"; position: absolute; top: -0.5rem; left: 1.5rem;
  font-family: "Playfair Display", serif; font-size: 5rem;
  color: rgba(201,169,110,0.15); line-height: 1;
}
.sidebar-quote blockquote, .zitat-gross blockquote {
  font-family: "Playfair Display", serif; font-style: italic;
  font-size: 1.2rem; color: var(--white); line-height: 1.7;
  position: relative; z-index: 1; margin-bottom: 1rem;
}
.sidebar-quote cite, .zitat-gross cite {
  font-size: 0.8rem; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* Sidebar Antwortzeit */
.sidebar-antwort {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 1.8rem; text-align: center;
}
.sa-num {
  font-family: "Playfair Display", serif; font-size: 2.5rem; font-weight: 700;
  color: var(--green-dark);
}
.sa-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); margin-top: 0.2rem;
}
.sa-sub { font-size: 0.83rem; color: var(--text-light); margin-top: 0.5rem; line-height: 1.5; }

/* ==========================================================================
   23. Geschichte / Timeline (Ueber uns)
   ========================================================================== */
.geschichte-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; margin-top: 3rem;
}
.geschichte-text p { font-size: 0.97rem; color: var(--text-light); line-height: 1.9; margin-bottom: 1.1rem; }
.geschichte-text p strong { color: var(--text-dark); }
.geschichte-text blockquote {
  border-left: 3px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0;
  font-family: "Playfair Display", serif; font-style: italic;
  font-size: 1.1rem; color: var(--green-dark); line-height: 1.65;
}
.geschichte-visual { display: flex; flex-direction: column; gap: 1.2rem; }
.timeline-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0; margin-top: 6px; position: relative;
}
.tl-dot::after {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 1px; height: calc(100% + 14px); background: var(--border);
}
.timeline-item:last-child .tl-dot::after { display: none; }
.tl-content { padding-bottom: 1.5rem; }
.tl-year {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.3rem; font-weight: 700;
}
.tl-title {
  font-family: "Playfair Display", serif; font-size: 1rem;
  color: var(--green-dark); margin-bottom: 0.3rem;
}
.tl-text { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; }

/* Werte-Cards */
.werte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.wert-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 6px; padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wert-card:hover { border-color: var(--green-accent); box-shadow: 0 8px 30px rgba(26,58,42,0.08); }
.wert-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); margin-bottom: 1.2rem;
}
.wert-card h3 {
  font-family: "Playfair Display", serif; font-size: 1.1rem;
  color: var(--green-dark); margin-bottom: 0.5rem;
}
.wert-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* Team-Cards */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.team-card:hover { border-color: var(--green-accent); box-shadow: 0 8px 30px rgba(26,58,42,0.09); }
.team-avatar {
  width: 100%; aspect-ratio: 1; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-size: 3rem; font-weight: 700;
  color: var(--gold); position: relative; overflow: hidden;
}
.team-avatar::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(26,58,42,0.6), transparent);
}
.avatar-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 12px 12px;
}
.team-body { padding: 1.5rem; }
.team-name {
  font-family: "Playfair Display", serif; font-size: 1.1rem;
  color: var(--green-dark); margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.team-bio { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.team-tag {
  font-size: 0.72rem; padding: 0.22rem 0.65rem; border-radius: 20px;
  border: 1px solid var(--border); color: var(--text-mid);
}

/* Netzwerk-Bubbles */
.netzwerk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-top: 3rem; }
.netzwerk-bubbles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.netzwerk-bubble {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.2rem; text-align: center;
  transition: border-color 0.2s;
}
.netzwerk-bubble:hover { border-color: var(--green-accent); }
.nb-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.nb-label { font-size: 0.8rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.2rem; }
.nb-sub { font-size: 0.72rem; color: var(--text-light); }

/* Qualitaet (dunkel) */
.qualitaet { background: var(--green-dark); padding: 80px 5%; }
.qualitaet-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.qualitaet h2 {
  font-family: "Playfair Display", serif; font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--white); margin-bottom: 1.2rem; line-height: 1.3;
}
.qualitaet h2 em { font-style: italic; color: var(--gold); }
.qualitaet p { color: rgba(255,255,255,0.6); font-size: 0.97rem; line-height: 1.85; margin-bottom: 1rem; }
.qualitaet-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.qstep { display: flex; gap: 1.2rem; align-items: flex-start; }
.qstep-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,169,110,0.15); border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-size: 0.9rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0;
}
.qstep-text h4 {
  font-family: "Playfair Display", serif; font-size: 0.97rem;
  color: var(--white); margin-bottom: 0.25rem;
}
.qstep-text p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* ==========================================================================
   24. Zahlung (Preise)
   ========================================================================== */
.zahlung { background: var(--cream); padding: 80px 5%; }
.zahlung-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.zahlung-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.zstep {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem; background: var(--white); border: 1px solid var(--border); border-radius: 6px;
}
.zstep-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-size: 0.9rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0;
}
.zstep-text h4 {
  font-family: "Playfair Display", serif; font-size: 0.97rem;
  color: var(--green-dark); margin-bottom: 0.3rem;
}
.zstep-text p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }
.zahlung-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.zahlung-box { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; }
.zahlung-box h4 { font-family: "Playfair Display", serif; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 1rem; }
.zahlung-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.zahlung-box ul li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.87rem; color: var(--text-mid);
}
.zahlung-box ul li::before { content: "\2713"; color: var(--green-accent); font-weight: 700; flex-shrink: 0; }
.zahlung-highlight { background: var(--green-dark); border-radius: 8px; padding: 2rem; }
.zahlung-highlight h4 { font-family: "Playfair Display", serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.8rem; }
.zahlung-highlight p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.zahlung-highlight .big-num {
  font-family: "Playfair Display", serif; font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin: 1rem 0 0.3rem;
}
.zahlung-highlight .big-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ==========================================================================
   25. Kontakt-Formular
   ========================================================================== */
.kontakt-section { padding: 80px 5%; background: var(--white); }
.kontakt-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: start;
}
.formular h2 { font-family: "Playfair Display", serif; font-size: 1.7rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.formular h2 em { font-style: italic; color: var(--green-accent); }
.formular-sub { font-size: 0.95rem; color: var(--text-light); margin-bottom: 2.5rem; line-height: 1.75; }
.form-group { margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group label, .formular label {
  display: block; font-size: 0.82rem; font-weight: 700;
  color: var(--text-mid); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.form-group label .req, .formular label .req { color: var(--gold); }
.formular input[type=text],
.formular input[type=email],
.formular input[type=tel],
.formular select,
.formular textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border); border-radius: 4px;
  font-family: "Lato", sans-serif; font-size: 0.95rem; color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.formular input:focus, .formular select:focus, .formular textarea:focus {
  outline: none; border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(78,153,104,0.12);
}
.formular select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.formular textarea { resize: vertical; min-height: 130px; }
.form-hint { font-size: 0.77rem; color: var(--text-light); margin-top: 0.4rem; }

.buchtyp-select { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; margin-top: 0.5rem; }
.buchtyp-option { position: relative; }
.buchtyp-option input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; }
.buchtyp-label {
  display: block; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border); border-radius: 4px;
  cursor: pointer; font-size: 0.88rem; color: var(--text-mid);
  transition: border-color 0.2s, background 0.2s;
  display: flex; align-items: center; gap: 0.6rem;
}
.buchtyp-option input:checked + .buchtyp-label {
  border-color: var(--green-accent); background: rgba(78,153,104,0.06);
  color: var(--green-dark); font-weight: 700;
}
.buchtyp-label:hover { border-color: var(--green-accent); }

.budget-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-top: 0.5rem; }
.budget-opt { position: relative; }
.budget-opt input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }
.budget-lbl {
  display: block; padding: 0.7rem 0.8rem;
  border: 1.5px solid var(--border); border-radius: 4px;
  cursor: pointer; font-size: 0.83rem; color: var(--text-mid);
  text-align: center; transition: all 0.2s;
}
.budget-opt input:checked + .budget-lbl {
  border-color: var(--gold); background: rgba(201,169,110,0.08);
  color: var(--green-dark); font-weight: 700;
}
.budget-lbl:hover { border-color: var(--green-accent); }

.datenschutz-row { display: flex; gap: 0.8rem; align-items: flex-start; margin-top: 0.5rem; }
.datenschutz-row input[type=checkbox] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--green-accent); cursor: pointer;
}
.datenschutz-row label {
  font-size: 0.83rem; color: var(--text-light);
  text-transform: none; letter-spacing: 0; font-weight: 400; cursor: pointer;
}
.datenschutz-row a { color: var(--green-accent); text-decoration: none; }

.btn-submit {
  display: block; width: 100%;
  background: var(--gold); color: var(--green-dark);
  padding: 1rem 2rem; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  transition: all 0.2s; margin-top: 1.5rem;
  font-family: "Lato", sans-serif;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

.form-success {
  display: none; background: rgba(78,153,104,0.08);
  border: 1.5px solid var(--green-accent); border-radius: 6px;
  padding: 2rem; text-align: center; margin-top: 1.5rem;
}
.form-success.visible { display: block; }
.form-success h3 { font-family: "Playfair Display", serif; font-size: 1.3rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--text-light); }

.form-error {
  display: none; background: rgba(232,85,85,0.08);
  border: 1.5px solid #e85555; border-radius: 6px;
  padding: 1rem 1.5rem; margin-top: 1rem;
  font-size: 0.9rem; color: #b53939;
}
.form-error.visible { display: block; }

.kontakt-sidebar {
  display: flex; flex-direction: column; gap: 1.5rem;
  position: sticky; top: 90px;
}
.kontakt-card { background: var(--green-dark); border-radius: 8px; padding: 2.5rem; }
.kc-title { font-family: "Playfair Display", serif; font-size: 1.2rem; color: var(--white); margin-bottom: 0.6rem; }
.kc-sub { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.8rem; }
.kontakt-methoden { display: flex; flex-direction: column; gap: 1rem; }
.km-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  text-decoration: none; transition: border-color 0.2s;
}
.km-item:hover { border-color: var(--gold); }
.km-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(201,169,110,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold); flex-shrink: 0;
}
.km-text { flex: 1; }
.km-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 0.15rem; }
.km-value { font-size: 0.9rem; color: var(--white); font-weight: 700; word-break: break-all; }
.km-arrow { color: var(--gold); font-size: 0.9rem; }

/* ==========================================================================
   26. CTA Final
   ========================================================================== */
.cta-final {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2219 100%);
  text-align: center; padding: 100px 5%; position: relative; overflow: hidden;
}
.cta-final.dark-ink { background: linear-gradient(135deg, var(--ink) 0%, #0a1810 100%); }
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(78,153,104,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner, .cta-final .cta-inner, .cta-final .section-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-label, .cta-final .label {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.cta-final h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white);
  margin-bottom: 1.2rem; line-height: 1.3;
}
.cta-final h2 em { font-style: italic; color: var(--gold); }
.cta-final p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-trust { margin-top: 2.5rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.cta-trust span {
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.cta-trust span::before { content: "\2713"; color: var(--gold); }

/* ==========================================================================
   27. Footer
   ========================================================================== */
.site-footer { background: #0f1f17; padding: 60px 5% 30px; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem;
}
.footer-brand { font-family: "Playfair Display", serif; font-size: 1.5rem; color: var(--white); margin-bottom: 1rem; }
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a, .footer-col li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover, .footer-col li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a, .footer-legal li a { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-legal a:hover, .footer-legal li a:hover { color: rgba(255,255,255,0.6); }

/* ==========================================================================
   28. Generic Helpers
   ========================================================================== */
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--green-dark); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.flex-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* WordPress Standard-Klassen */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-light); text-align: center; padding-top: 0.5rem; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute !important; width: 1px; word-wrap: normal !important;
}

/* ==========================================================================
   29. Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .site-nav { padding: 0 4%; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(26,58,42,0.98); padding: 1rem 5%; border-top: 1px solid rgba(201,169,110,0.2); }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-toggle { display: block; }

  .page-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .page-hero.dark .page-hero-inner { grid-template-columns: 1fr; }
  .sticky-card, .kontakt-sidebar { position: static; }

  .two-col, .vorteile-grid, .leistungen-header, .geschichte-grid, .netzwerk-grid, .qualitaet-inner, .lieferung-grid, .prozess-grid, .prozess-intro, .faq-grid, .faq-cols, .faq-layout, .seo-block-2col-inner, .zahlung-grid, .testi-strip-inner, .kontakt-inner, .warum-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .buchformen-grid { grid-template-columns: 1fr; }
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
  .zg-grid { grid-template-columns: 1fr; }
  .zg-personas { grid-template-columns: 1fr 1fr; }
  .buchtypen-grid { grid-template-columns: 1fr; }
  .genres-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .vt-inner { grid-template-columns: repeat(2, 1fr); }
  .pakete-grid { grid-template-columns: 1fr 1fr; }
  .ep-grid { grid-template-columns: 1fr; }
  .ib-grid { grid-template-columns: 1fr 1fr; }
  .werte-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .ablauf-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ablauf-grid::before { display: none; }
  .prozess-steps-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .prozess-steps-row::before { display: none; }
  .prozess-cards-2col { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  .front-hero { grid-template-columns: 1fr; }
  .front-hero-visual { display: none; }
  .front-hero-content { padding: 8% 6%; }
}

@media (max-width: 600px) {
  .why-grid, .leistungen-grid, .zg-personas, .genres-grid,
  .buchtypen-grid, .pakete-grid, .ib-grid, .werte-grid, .team-grid,
  .vt-inner, .netzwerk-bubbles, .ablauf-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .buchtyp-select { grid-template-columns: 1fr; }
  .budget-options { grid-template-columns: 1fr 1fr; }
  .kosten-row { grid-template-columns: 1fr; }
  .vt-row { grid-template-columns: 1fr; }
  .vt-row.header .vt-cell:not(:first-child) { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   30a. Mobile Font-Sizes — von ~14px auf 16-17px hochgesetzt
   ========================================================================== */
@media (max-width: 600px) {
	/* Root-Font hochsetzen — alle rem-basierten Werte skalieren proportional mit (+9%) */
	html { font-size: 17.5px; }
	body { line-height: 1.65; }

	/* Lange Fließtexte */
	.seo-content p, .seo-inner p,
	.two-col-text p, .geschichte-text p,
	.warum-text p, .zg-text p,
	.qualitaet p,
	.front-hero-sub, .page-hero-sub,
	.section-sub, .sec-sub,
	.formular-sub { font-size: 1rem; line-height: 1.7; }

	/* Card-Beschreibungen */
	.why-card p, .zg-card p, .genre-card p,
	.buchform-text p, .buchtyp-card p, .persona-card p,
	.wert-card p, .leistung-card p, .warum-card p,
	.vorteil-text p, .lieferung-item p, .li-text p,
	.ib-card p, .ablauf-step p,
	.pstep p, .qstep-text p, .zstep-text p,
	.step-text, .prozess-content p,
	.team-bio, .timeline-item .tl-text,
	.testi-text, .testi-mini-text { font-size: 0.95rem; line-height: 1.65; }

	/* Card-Titel und Subtitles */
	.why-card h3, .zg-card h3, .genre-card h3,
	.buchform-text h3, .buchtyp-card h3,
	.persona-card h3, .wert-card h3,
	.vorteil-text h4, .li-text h4,
	.ib-card h4, .pstep h3,
	.qstep-text h4, .zstep-text h4,
	.ablauf-step h4 { font-size: 1.05rem; }
	.testi-name, .team-name, .km-value { font-size: 0.95rem; }
	.gc-sub, .nb-sub, .persona-example { font-size: 0.85rem; }

	/* FAQ */
	.faq-q { font-size: 1rem; }
	.faq-a { font-size: 0.95rem; line-height: 1.7; }

	/* Tabellen */
	.kosten-cell, .vt-cell, .ep-label, .ep-price,
	.paket-features li { font-size: 0.95rem; }
	.ep-label small { font-size: 0.85rem; }

	/* Form-Texte */
	.formular label { font-size: 0.85rem; }
	.form-hint { font-size: 0.85rem; }
	.buchtyp-label, .budget-lbl { font-size: 0.95rem; }
	.datenschutz-row label { font-size: 0.9rem; }

	/* Footer */
	.footer-tagline { font-size: 0.95rem; }
	.footer-col ul a, .footer-col li a { font-size: 0.95rem; }
	.footer-bottom p { font-size: 0.88rem; }
	.footer-legal a { font-size: 0.88rem; }
	.footer-col h4 { font-size: 0.78rem; }

	/* Trust-Pills, Badges, Eyebrows */
	.trust-pill, .trust-item { font-size: 0.85rem; }
	.section-label, .sec-label, .hero-label { font-size: 0.78rem; }
	.prozess-badge, .tag, .gc-tag, .bt-tag, .team-tag,
	.paket-badge, .abl-time { font-size: 0.78rem; }

	/* Stats */
	.stat-label, .hstat-label { font-size: 0.85rem; }
	.hstat-sub { font-size: 0.82rem; }

	/* Hinweis-Banner */
	.hinweis-text { font-size: 0.95rem; }
	.kosten-note { font-size: 0.9rem; }

	/* CTA-Final */
	.cta-final p { font-size: 1rem; line-height: 1.7; }
	.cta-trust span { font-size: 0.85rem; }
	.cta-label, .cta-final .label { font-size: 0.78rem; }

	/* Breadcrumb */
	.breadcrumb-inner { font-size: 0.85rem; }

	/* Nav */
	.nav-links a { font-size: 0.95rem; }

	/* Kontakt-Sidebar Texte */
	.kc-sub { font-size: 0.95rem; }
	.km-label { font-size: 0.78rem; }
	.sa-label { font-size: 0.85rem; }
	.sa-sub { font-size: 0.9rem; }

	/* Sidebar-Box-Listen (Roman, Sachbuch Sidebars) */
	.sidebar-box ul li { font-size: 0.95rem; }

	/* Logobar */
	.logobar-item { font-size: 1rem; }
	.logobar-label { font-size: 0.78rem; }

	/* Quote-Blocks */
	.quote-large { font-size: 1.15rem; }
	.zitat-gross blockquote, .sidebar-quote blockquote { font-size: 1.1rem; }

	/* Preis-Pakete */
	.paket-name { font-size: 1.1rem; }
	.paket-sub { font-size: 0.88rem; }
	.paket-zahl { font-size: 1.8rem; }
	.paket-umfang { font-size: 0.85rem; }

	/* Kontaktformular Mini-Cards */
	.testi-mini-name { font-size: 0.92rem; }
	.testi-mini-role { font-size: 0.82rem; }
}

/* ==========================================================================
   30b. Mobile Responsive — Detail-Fixes (Formulare, Tabellen, kleine Screens)
   ========================================================================== */
@media (max-width: 600px) {
	/* Section-Padding kleiner auf Mobil */
	section { padding: 60px 5%; }
	.kontakt-section, .ablauf, .vertrauen, .qualitaet, .stats-bar,
	.testi-strip, .hinweis-banner, .seo-content, .seo-block-2col,
	.seo-section, .leistungen, .buchformen, .zahlung, .kosten {
		padding-left: 5%;
		padding-right: 5%;
	}

	/* iOS-Zoom verhindern (Input-Font auf 16px) */
	.formular input[type=text],
	.formular input[type=email],
	.formular input[type=tel],
	.formular select,
	.formular textarea {
		font-size: 16px;
		max-width: 100%;
	}
	.formular { min-width: 0; }
	.formular h2 { font-size: 1.4rem; }
	.formular-sub { font-size: 0.9rem; }
	.form-hint { font-size: 0.75rem; }

	/* Sticky-Cards + Sidebars werden statisch + kleineres Padding */
	.sticky-card, .kontakt-sidebar, .faq-cta-box,
	.sidebar-box, .sidebar-quote, .zitat-gross, .kontakt-card {
		position: static !important;
		padding: 1.8rem;
	}

	/* Page-Heros kleiner */
	.page-hero { padding: 2rem 5% 3rem; }
	.page-hero-inner { gap: 2rem; }
	.page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
	.page-hero-sub { font-size: 0.95rem; }

	/* Front-Page-Hero */
	.front-hero-content { padding: 14% 5% 12%; }
	.front-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
	.front-hero-sub { font-size: 0.95rem; }

	/* Kosten/Vergleichs/Einzelpreis-Tabellen umstapeln */
	.kosten-row, .vt-row { grid-template-columns: 1fr; }
	.vt-row.header .vt-cell:not(:first-child) { display: none; }
	.kosten-cell, .vt-cell { padding: 0.9rem 1.1rem; }
	.ep-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.4rem;
	}
	.ep-price { white-space: normal; }

	/* Pakete-Karten + Generic Cards: weniger Padding */
	.paket-card, .why-card, .zg-card, .genre-card, .buchform-card,
	.buchtyp-card, .persona-card, .wert-card, .leistung-card,
	.warum-card, .lieferung-item, .ib-card {
		padding: 1.5rem;
	}
	.paket-header { padding: 1.5rem 1.5rem 1.2rem; }
	.paket-body { padding: 1.2rem 1.5rem 1.5rem; }

	/* Prozess-Liste nicht zu breit */
	.prozess-item { grid-template-columns: 56px 1fr; gap: 1rem; padding: 1.5rem 0; }
	.prozess-num { width: 44px; height: 44px; font-size: 0.95rem; }

	/* Button-Reihen wickeln */
	.flex-row, .front-hero-buttons, .cta-buttons, .hero-buttons {
		gap: 0.6rem;
	}
	.btn-primary, .btn-outline, .btn-outline-light, .btn-submit {
		padding: 0.85rem 1.5rem;
		font-size: 0.85rem;
	}

	/* Trust-Pills kompakter */
	.trust-pill { font-size: 0.78rem; padding: 0.35rem 0.7rem; }

	/* Footer auf 1 Spalte */
	.footer-top { grid-template-columns: 1fr; gap: 2rem; }
	.footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
	.footer-legal { flex-wrap: wrap; gap: 0.8rem 1rem; }

	/* Nav-Logo kleiner */
	.nav-logo { font-size: 1.25rem; }

	/* CTA-Final */
	.cta-final { padding: 70px 5%; }
	.cta-final h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
	.cta-trust { gap: 1rem; }
	.cta-trust span { font-size: 0.78rem; }

	/* Stats kompakter */
	.stat-num { font-size: 2.2rem; }
	.hero-stats { grid-template-columns: 1fr 1fr; }
	.hstat { padding: 1.5rem 1rem; }
	.hstat-num { font-size: 1.8rem; }

	/* Section-Titel */
	.section-title, .sec-title { font-size: clamp(1.4rem, 5vw, 1.9rem); }

	/* Kontakt-Spezifisch */
	.kontakt-inner { gap: 2rem; }
	.formular { padding: 0; }
	.kc-title { font-size: 1.1rem; }
	.km-item { padding: 0.8rem; }
	.km-value { font-size: 0.85rem; word-break: break-word; }
	.sidebar-antwort { padding: 1.5rem; }
	.sa-num { font-size: 2rem; }

	/* Breadcrumb */
	.breadcrumb { padding-top: 90px; }
	.breadcrumb-inner { font-size: 0.75rem; flex-wrap: wrap; }
}

@media (max-width: 480px) {
	section { padding: 50px 4%; }
	.kontakt-section, .ablauf, .vertrauen, .qualitaet, .stats-bar,
	.testi-strip, .hinweis-banner, .seo-content, .seo-block-2col,
	.seo-section { padding-left: 4%; padding-right: 4%; }

	/* Budget-Optionen auf 1 Spalte */
	.budget-options { grid-template-columns: 1fr; }

	/* Buchtyp-Auswahl 1 Spalte */
	.buchtyp-select { grid-template-columns: 1fr; }

	/* Hero-Badge kleiner */
	.hero-badge {
		width: 70px; height: 70px;
		font-size: 0.55rem;
		top: -0.5rem; right: -0.5rem;
	}

	/* Front-Hero-Visual ausblenden falls noch sichtbar */
	.front-hero { grid-template-columns: 1fr; }
	.front-hero-visual { display: none; }
	.front-hero-content { padding: 16% 5% 14%; }

	/* Logo ggf. noch kleiner */
	.nav-logo { font-size: 1.1rem; }
	.nav-logo img { max-height: 32px; }
	.site-nav { padding: 0 4%; height: 64px; }

	/* Breadcrumb kleiner */
	.breadcrumb { padding-top: 80px; padding-left: 4%; padding-right: 4%; }
}

/* ==========================================================================
   30. Animations (Scroll)
   ========================================================================== */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
