/* =============================================================
   GET VITAL – main.css
   Einheitliche Design-Datei für alle Seiten
   Ersetzt: style.css + index.css + alle Inline-Styles
   ============================================================= */


/* ── 1. FONTS ─────────────────────────────────────────────── */
/* Keine externen Fonts – Arial (System-Font) */


/* ── 2. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Farben – öffentliche Seite (Konzept) */
  --c-primary:      #2D5016;
  --c-primary-dk:   #1e3a0e;
  --c-primary-lt:   #3d6b1f;
  --c-secondary:    #F7F3ED;
  --c-accent:       #C17A3A;
  --c-accent-dk:    #a0622d;
  --c-muted:        #8BAF6B;
  --c-text:         #2A2A2A;
  --c-text-light:   #666666;
  --c-white:        #ffffff;
  --c-border:       #ddd8d0;

  /* Farben – Legacy (Admin, Formulare) */
  --c-lime:         #b9cf19;
  --c-dark:         #494440;
  --c-dark-lt:      #3f3b39;

  /* Typografie */
  --f-heading:  Georgia, 'Times New Roman', serif;
  --f-body:     Arial, sans-serif;

  /* Layout */
  --max-w:      1200px;
  --pad-x:      clamp(1.25rem, 5vw, 3.5rem);
  --gap:        clamp(1.5rem, 3vw, 2.5rem);

  /* Effekte */
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow:     0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg:  0 8px 48px rgba(0, 0, 0, 0.14);
  --t:          0.2s ease;
}


/* ── 3. RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--f-body);
  font-size: 1.1625rem;
  line-height: 2.5;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; margin: 0; padding: 0; }


/* ── 4. TYPOGRAFIE ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  line-height: 1.2;
  
  margin: 0 0 0.75em;
  color: #3f3b39;
  font-weight: 700;
}
h1 {font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p {
  margin: 0 0 1rem;
  font-size: 1.5 rem;
  line-height: 1.7;
}

a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--t);
}
a:hover { color: var(--c-accent); }

strong { font-weight: 600; }
cite   { font-style: italic; }

/* Legacy heading-Farben (für Admin-Seiten) */
.admin-page h2 { color: var(--c-lime); }
.admin-page h3 { color: var(--c-dark); text-transform: uppercase; letter-spacing: 0.05em; }


/* ── 5. SEITENSTRUKTUR (3-DIV) ────────────────────────────── */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-header {
  /* Sticky Navigation */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.page-body {
  flex: 1;
  background: var(--c-white);
}

/* ── SEITENLAYOUT: Zwei-Spalten-Raster ──────────────────────
 * Einheitliche Struktur für alle Inhaltsseiten (pages/ + admin/).
 * Ausnahmen (z. B. Nachrichten mit Gleich-Spalten) weiterhin inline.
 * ──────────────────────────────────────────────────────────── */
.page-cols {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Linke Hauptspalte (~70 %) */
.col-main {
  flex: 7;
  min-width: 260px;
}

/* Linke Hauptspalte mit gestapelten Cards (mehrere Cards untereinander) */
.col-main-stack {
  flex: 7;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Rechte Seitenspalte (~30 %) */
.col-side {
  flex: 3;
  min-width: 200px;
}

/* Mobile: beide Spalten übereinander */
@media (max-width: 700px) {
  .col-main,
  .col-side { flex: 1 1 100%; min-width: 0; }
}


/* Content-Wrapper */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Section-Abstände */
.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}


/* ── 6. SITE HEADER & NAVIGATION ──────────────────────────── */
.site-header {
  background: #3f3b39;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  position: relative;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo img {
  width: auto;
  height: auto;
  max-width: 260px;
}
@media (max-width: 768px) {
  .header-logo img { max-width: 220px; }
}

/* Nav-Bereich */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-nav > a {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.header-nav > a:hover {
  color: #b9cf19;
  background: rgba(255, 255, 255, 0.08);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--t), background var(--t);
  user-select: none;
}
.nav-dropdown-toggle:hover {
  color: #b9cf19;
  background: rgba(255, 255, 255, 0.08);
}
.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 0.7em;
  opacity: 0.7;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: #2e2b29;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 2000;
}

/* Desktop: Hover öffnet */
@media (hover: hover) and (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu { display: block; }
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--t), color var(--t);
}
.nav-dropdown-menu a:last-child { border-bottom: 0; }
.nav-dropdown-menu a:hover {
  background: rgba(185, 207, 25, 0.15);
  color: #b9cf19;
}

/* Sprach-Umschalter */
.header-lang {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.header-lang a {
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.25rem 0.3rem;
  border-radius: 4px;
  opacity: 0.65;
  transition: opacity var(--t), background var(--t);
  text-decoration: none;
}
.header-lang a:hover  { opacity: 1; background: rgba(255, 255, 255, 0.08); }
.header-lang a.active { opacity: 1; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t);
  flex-shrink: 0;
}
.hamburger:hover { background: rgba(255, 255, 255, 0.1); }

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

/* Hamburger – offen */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #2e2b29;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid #b9cf19;
    padding: 0.5rem 0;
    gap: 0;
    z-index: 999;
  }

  .header-nav.is-open { display: flex; }

  .header-nav > a {
    padding: 0.8rem 1.25rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    width: 100%;
    padding: 0.8rem 1.25rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  /* Hover-Dropdown auf Mobile aus */
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  /* JS-Toggle auf Mobile */
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    position: static;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.25);
  }
  .nav-dropdown-menu a { padding-left: 2rem; }

  .header-lang {
    margin: 0.5rem 0 0;
    padding: 0.5rem 1.25rem;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}


/* ── 7. HERO SLIDESHOW ─────────────────────────────────────── */
.hero {
  position: relative;
  height: clamp(380px, 58vh, 700px);
  overflow: hidden;
  background: var(--c-primary-dk);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
  will-change: opacity;
}

.hero-img.is-active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 58, 14, 0.50) 0%,
    rgba(30, 58, 14, 0.70) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-x);
  z-index: 2;
}

/* Overlay-Inhalt: Label + Buttons auf der Diashow */
.hero-overlay-content {
  text-align: center;
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Hero Buttons (auf der Diashow) */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* hero-intro: Section unter der Diashow */
.hero-intro {
  background: var(--c-white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.hero-intro h1 {
  margin-bottom: 2rem;
  white-space: nowrap;
}

/* Zwei-Spalten unter der Überschrift */
.hero-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.hero-col-anim {
  min-height: 420px;
  border: 2px dashed #d0d0c8;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  padding: 0;
}

.hero-col-anim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.hero-col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-intro h1 { white-space: normal; }
  .hero-cols { grid-template-columns: 1fr; }
  .hero-col-anim { min-height: 180px; }
}


/* ── 8. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}
.btn-primary:hover {
  background: var(--c-accent-dk);
  border-color: var(--c-accent-dk);
  color: var(--c-white);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--c-white);
  color: var(--c-white);
}

.btn-green {
  background: #b9cf19;
  color: #3f3b39;
  border-color: #b9cf19;
}
.btn-green:hover {
  background: #a3b816;
  border-color: #a3b816;
  color: #3f3b39;
}

/* Standard-Button (Basis für alle Aktionsbuttons im Projekt) */
.btn-success, .btn-success2 {
  display: inline-block;
  text-align: center;
  background: var(--c-lime) !important;
  color: #4b4d4d !important;
  padding: 0.75rem 1.4rem;
  border: 0;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.btn-success2 { width: 30%; margin-left: 20px; }
.btn-success:hover, .btn-success2:hover {
  background: #4b4d4d !important;
  color: #fff !important;
}
.btn-primary-legacy {
  background: #4b4d4d;
  border: 0;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 1rem;
}


/* ── 9. HOMEPAGE – SEKTIONEN ──────────────────────────────── */

/* --- Drei Säulen --- */
.pillars-section {
  background: var(--c-secondary);
}
.pillars-section .section-title {
  text-align: center;
  color: #b9cf19;
  margin-bottom: var(--gap);
  font-family: var(--f-heading);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.pillar {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid #b9cf19;
  text-align: center;
}
.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-family: var(--f-heading);
  font-size: 1.15rem;
  color: #4b4d4d;
  margin-bottom: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}
.pillar p { font-size: 0.9rem; color: var(--c-text-light); margin: 0; }

/* --- Trust/Zitat --- */
.trust-section {
  background: #b9cf19;
  text-align: center;
}
.trust-section blockquote {
  font-family: var(--f-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: #3f3b39;
  max-width: 780px;
  margin: 0 auto 1.25rem;
  line-height: 1.45;
}
.trust-section cite {
  font-family: var(--f-body);
  font-size: 0.875rem;
  color: #4b4d4d;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* --- Leistungs-Karten --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.service-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-family: var(--f-heading);
  font-size: 1.15rem;
  color: #4b4d4d;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--c-text-light);
  flex: 1;
  margin-bottom: 1rem;
}
.service-card .card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #b9cf19;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
}
.service-card .card-link:hover { color: #94b300; }

/* --- Kundenstimme --- */
.testimonial-section { background: var(--c-secondary); }
.testimonial {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--f-heading);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--c-text);
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.testimonial blockquote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--c-primary);
  opacity: 0.12;
  position: absolute;
  top: -0.75rem;
  left: 1.25rem;
  font-family: var(--f-heading);
  line-height: 1;
  pointer-events: none;
}
.testimonial cite {
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--c-text-light);
  font-style: normal;
}

/* --- Beratungsformen --- */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.mode-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.mode-card:hover {
  border-color: #b9cf19;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.mode-card h3 {
  font-family: var(--f-heading);
  font-size: 0.95rem;
  color: #4b4d4d;
  margin-bottom: 0.4rem;
  text-transform: none;
  letter-spacing: 0;
}
.mode-card p { font-size: 0.82rem; color: var(--c-text-light); margin: 0; }

/* --- Wissen-Teaser --- */
.knowledge-section { background: #b9cf19; }
.knowledge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--gap) * 2);
  align-items: center;
}
.knowledge-text h2 {
  font-family: var(--f-heading);
  color: #3f3b39;
}
.knowledge-text p {
  color: #4b4d4d;
  font-size: 0.95rem;
}
.knowledge-text .knowledge-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3f3b39;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.knowledge-text .knowledge-link:hover { color: #000; }

/* --- CTA-Bereich --- */
.cta-section {
  background: var(--c-secondary);
  text-align: center;
}
.cta-section h2 {
  font-family: var(--f-heading);
  color: #b9cf19;
}
.cta-section p {
  max-width: 580px;
  margin: 0 auto 2rem;
  color: var(--c-text-light);
}


/* ── 10. SITE FOOTER ───────────────────────────────────────── */
.site-footer {
  background: #3f3b39;
  color: rgba(255, 255, 255, 0.80);
  font-family: var(--f-body);
  font-size: 1rem;
}

.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem var(--pad-x) 2rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* Spalte 1: Marke */
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--f-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--c-muted);
  margin: 0 0 0.75rem;
}
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* Spalten 2–4: Links */
.footer-col h4 {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  padding: 0.25rem 0;
  font-size: 1rem;
  transition: color var(--t);
}
.footer-col a:hover { color: #b9cf19; }

.footer-contact p {
  margin: 0.25rem 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer-Bottom */
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--t);
}
.footer-bottom a:hover { color: #b9cf19; }

/* Disclaimer */
.footer-disclaimer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--pad-x) 0;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.40);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-contact a {
  display: inline;
  padding: 0;
  white-space: nowrap;
}

/* ── 11. FORMULARE ─────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--c-text);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-family: var(--f-body);
  font-size: 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  color: var(--c-text);
  transition: border-color var(--t), box-shadow var(--t);
  box-sizing: border-box;
  margin: 0 0 0.8rem;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #b9cf19;
  box-shadow: 0 0 0 3px rgba(185, 207, 25, 0.18);
}

.form-check-input {
  width: 1.3em;
  height: 1.3em;
  border-radius: 0.35em;
  border: 1px solid #888;
  margin-right: 10px;
  accent-color: var(--c-primary);
}
.checkbox-grid { column-count: 2; column-gap: 40px; }
.checkbox-grid label { display: block; margin-bottom: 10px; font-size: 1rem; }
.checkbox-grid input[type="checkbox"] { transform: scale(1.3); margin-right: 8px; accent-color: var(--c-lime); }

.form-check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 20px; }

.form-section {
  margin-bottom: 30px;
  padding: 20px;
  background: var(--c-white);
  border: 2px solid var(--c-lime);
  border-radius: 8px;
}
.form-section h4 { margin-bottom: 15px; color: #4b4d4d; border-bottom: 1px solid #ccc; padding-bottom: 5px; }


/* ── 12. CARDS & TABELLEN (Admin) ─────────────────────────── */
.card {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  background: var(--c-white);
  overflow: hidden;
}
.card-header {
  font-weight: 600;
  padding: 10px 15px;
  border-bottom: 1px solid var(--c-border);
  background: #f5f5f5;
  font-family: var(--f-body);
}
.card-body { padding: 10px; }

table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-body);
}
table th, table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--c-border);
}
table th {
  background: var(--c-secondary);
  font-weight: 600;
  font-size: 0.85rem;
}
.table td, .table th { border: 1px solid var(--c-border); }

.bg-secondary { background: #4b4d4d !important; color: #fff; }
.bg-success   { background: var(--c-lime) !important; color: #4b4d4d; }

/* Krankheiten / Beschwerden */
.krankheiten-tabelle { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.krankheit-eintrag { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--c-border); padding: 6px 0; }
.krankheit-name { flex: 1; font-weight: 500; color: var(--c-text); }
.checkbox-paar { display: flex; gap: 20px; }
.checkbox-paar input[type="checkbox"] { transform: scale(1.2); margin-right: 6px; accent-color: var(--c-lime); }


/* ── Admin-Nav (rechte Spalte Dashboard) ─────────────────── */
.admin-nav-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t), color var(--t);
  text-decoration: none;
}
.admin-nav-link:last-child { border-bottom: 0; }
.admin-nav-link:hover {
  background: #f7f3ed;
  color: var(--c-lime);
}

/* ── 13. UTILITY KLASSEN ──────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--c-text-light); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.d-flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Legacy Layout */
.row { display: flex; gap: 20px; }
.col-70 { width: 70%; }
.col-30 { width: 30%; padding: 0 20px; }

/* Alerts */
.alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.alert-success { background: #f0f7e6; color: #2d5016; border: 1px solid var(--c-lime); }
.alert-error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fca5a5; }
.alert-info    { background: #eff6ff; color: #1d4ed8; border: 1px solid #93c5fd; }

/* Nachrichten */
.message-unread { font-weight: 700; }
.message-read   { color: #999; }
.message-read a { color: #999 !important; }
.message-read td { color: #999; }

/* Breadcrumbs / Seitentitel */
.breadcrumbs { font-size: 0.9rem; color: #666; margin: 0 0 1rem; text-transform: lowercase; }
.page-title  { font-size: 2rem; margin: 0 0 1rem; }
.section-title { font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
.bodytext  { font-size: 1.1rem; line-height: 1.6; color: #333; }

/* ── BREADCRUMB (Inhaltseiten) ────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0.85rem;
  color: var(--c-text-light);
  margin: 0 0 1.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--c-border);
  list-style: none;
}
.breadcrumb a {
  color: var(--c-text-light);
  text-decoration: none;
  transition: color var(--t);
}
.breadcrumb a:hover { color: #b9cf19; }
.breadcrumb-sep {
  margin: 0 0.45rem;
  color: #ccc;
  user-select: none;
  font-size: 0.9rem;
}
.breadcrumb-current {
  color: var(--c-text);
  font-weight: 500;
}

/* Custom List */
.custom-list { list-style-type: square; list-style-position: inside; margin: 2rem 0; padding: 0; }
.custom-list li { margin-bottom: 0.9rem; font-weight: normal; color: #333; font-size: 1.1rem; }
.custom-list li::marker { color: var(--c-lime); }

.highlight-box { background: #e9e7e7; border-radius: 10px; padding: 2rem; margin-bottom: 1.5rem; max-width: 90%; }
.highlight-box .custom-list li::marker { color: var(--c-lime); }
.highlight-box .section-title { margin-bottom: 1rem; }

.link-muted { color: #666; text-decoration: none; }


/* ── 14a. INHALTSEITEN-LAYOUT (pages/ und admin/) ─────────── */

/*
 * pages/: Content in <main>
 * admin/: Content direkt in .page-body (kein <main>)
 * Beide erhalten: links/rechts var(--pad-x) = gleich wie Logo im Header
 *                 oben 2 %, unten 4 %
 */
main,
body.admin-page .page-body {
  padding: 2% var(--pad-x) 4%;
}

/* Erste Überschrift direkt nach dem Padding – kein doppelter Abstand */
main h1,
main h2,
body.admin-page .page-body > h1,
body.admin-page .page-body > h2 {
  margin-top: 0;
}

/* ── 14b. NEUE HOMEPAGE-SEKTIONEN ─────────────────────────── */

/* Hero-Intro-Sektion (Text unter der Diashow) */
/* Label auf der Diashow (Overlay) */
.hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b9cf19;
}

/* Fakten-Streifen (kein grüner Hintergrund, kein Icon) */
.facts-strip {
  background: #494440;
  max-width: var(--max-w);
  margin: 0 auto;
}
.facts-strip-inner {
  padding: 0.85rem var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.facts-sep {
  color: #b9cf19;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Featured Service-Card */
.service-card.featured {
  border: 2px solid #b9cf19;
  position: relative;
}
.service-card.featured .featured-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: #b9cf19;
  color: #3f3b39;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Meine Haltung */
.haltung-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--gap) * 2);
  align-items: center;
}
.haltung-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b9cf19;
  margin-bottom: 0.75rem;
}
.haltung-quote {
  font-family: var(--f-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: #3f3b39;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  border-left: 3px solid #b9cf19;
}
.haltung-image img,
.haltung-image .img-placeholder {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
  display: block;
}
.img-placeholder {
  background: #ddd8d0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.85rem;
}

/* Wissenschaftliches Fundament */
.science-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-bottom: 1.25rem;
}
.science-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid #b9cf19;
}
.science-card h3 {
  color: #3f3b39;
  font-family: var(--f-heading);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  text-transform: none;
  letter-spacing: 0;
}
.science-subtitle {
  font-size: 0.78rem;
  color: #b9cf19;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.science-card p { font-size: 0.9rem; color: var(--c-text-light); }
.science-card .card-link { color: #b9cf19; font-size: 0.875rem; font-weight: 600; display: inline-block; margin-top: 0.5rem; }
.science-card .card-link:hover { color: #94b300; }

.disclaimer-box {
  background: #fdfae8;
  border: 1.5px solid #b9cf19;
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: #4b4d4d;
  line-height: 1.55;
}

/* Beratungsformate */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: 2rem;
}
.format-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.format-card:hover {
  border-color: #b9cf19;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.format-card.featured { border-color: #b9cf19; }
.format-icon { font-size: 1.8rem; margin-bottom: 0.75rem; line-height: 1; }
.format-card h3 {
  color: #3f3b39;
  font-family: var(--f-heading);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  text-transform: none;
  letter-spacing: 0;
}
.format-card p { font-size: 0.875rem; color: var(--c-text-light); margin: 0; }

/* Kundenstimmen */
.testimonials-notice {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--c-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 720px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 1.5rem;
}
.testimonial-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4.5rem;
  color: #b9cf19;
  opacity: 0.25;
  position: absolute;
  top: -0.25rem; left: 1rem;
  font-family: var(--f-heading);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card blockquote {
  font-family: var(--f-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--c-text);
  line-height: 1.65;
  margin: 0 0 1rem;
  padding-top: 1.25rem;
}
.testimonial-card cite { font-size: 0.8rem; color: var(--c-text-light); font-style: normal; }
.testimonials-link { font-size: 0.9rem; font-weight: 600; color: #b9cf19; }
.testimonials-link:hover { color: #94b300; }

/* Über mich */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--gap) * 2);
  align-items: start;
}
.about-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b9cf19;
  margin-bottom: 0.75rem;
}
.about-image img,
.about-image .img-placeholder {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  max-height: 500px;
  display: block;
}
.about-qualifications {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
}
.about-qualifications li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: var(--c-text);
  line-height: 1.5;
}
.about-qualifications li::before {
  content: '✓';
  color: #b9cf19;
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA Hinweis */
.cta-note {
  font-size: 0.82rem;
  color: var(--c-text-light);
  margin-top: 0.75rem;
}


/* ── 14. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid        { grid-template-columns: 1fr 1fr; }
  .services-grid       { grid-template-columns: 1fr 1fr; }
  .modes-grid          { grid-template-columns: repeat(3, 1fr); }
  .knowledge-inner     { grid-template-columns: 1fr; }
  .footer-main         { grid-template-columns: 1fr 1fr; }
  .formats-grid        { grid-template-columns: 1fr 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr 1fr; }
  .about-inner         { grid-template-columns: 1fr; }
  .haltung-inner       { grid-template-columns: 1fr; }
  .science-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pillars-grid        { grid-template-columns: 1fr; }
  .services-grid       { grid-template-columns: 1fr; }
  .modes-grid          { grid-template-columns: 1fr 1fr; }
  .footer-main         { grid-template-columns: 1fr; gap: 2rem; padding: 2rem var(--pad-x); }
  .footer-bottom       { justify-content: center; text-align: center; }
  .row { flex-direction: column; }
  .col-70, .col-30     { width: 100%; padding: 0; }
  .knowledge-inner     { grid-template-columns: 1fr; }
  .formats-grid        { grid-template-columns: 1fr 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .modes-grid          { grid-template-columns: 1fr; }
  .pillars-grid        { grid-template-columns: 1fr; }
  .formats-grid        { grid-template-columns: 1fr; }
  .facts-strip-inner   { gap: 0.5rem 0.75rem; font-size: 0.8rem; }
  .facts-sep           { display: none; }
}

/* ── 15. IMAGE FRAME ────────────────────────────────────────── */

.img-frame {
  border: 2px dashed #d0d0c8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ── 16. HIGHLIGHT BANNER 1 ────────────────────────────────────────── */
.highlight-banner {
  text-align: center;
  margin-bottom: 2.4rem;
  color: #333;
  background: #b9cf18;
  display: block;
  width: 100%;
  padding: 1.3rem 1.8rem;
  border-radius: 28px;
}

/* ── 17. HIGHLIGHT BANNER 2 ────────────────────────────────────────── */

.highlight-banner--outline {
  text-align: center;
 
  margin-bottom: 2.4rem;
  background: #f3f0f086;
  padding: 1.3rem 1.8rem;
  border-radius: 28px;

  border: 2px dashed #b9cf18;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Hover-Effekt */
.highlight-banner--outline:hover {
  border-color: #999; /* mittelgrau */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}