/* ============================================================
   Klassische Homöopathie Hattingen — V2 Stylesheet
   Style: Editorial Minimal · Cormorant Garamond + DM Sans
   Primärfarbe: #0891B2 (Platzhalter — nach Farbbeispiel Wölbert)
   ============================================================ */

:root {
  /* Brand Colors */
  --teal:         #0891B2;
  --teal-dark:    #0C3547;
  --teal-mid:     #0E6A87;
  --teal-light:   #67C7DC;
  --teal-pale:    #E8F7FB;
  --teal-faint:   #F4FBFD;

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #F9FAFB;
  --text:         #0C1F25;
  --text-muted:   #4A7080;
  --border:       #D4EAF0;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  /* Geometry */
  --radius: 0px;
  --nav-h:  68px;
  --max-w:  1160px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.1; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; }

p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
section { padding: 100px 0; }

/* ── Navigation ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(8,145,178,0.08); }

.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.nav-brand {
  display: flex; align-items: center; gap: 1rem;
}
.nav-branch {
  width: 32px; height: 32px; color: var(--teal);
}
.nav-brand-text { line-height: 1.15; }
.nav-brand-name {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600;
  color: var(--teal-dark); letter-spacing: 0.01em;
}
.nav-brand-sub {
  font-size: 0.65rem; font-weight: 500; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 0.5rem 0.9rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal); border-bottom-color: var(--teal);
}
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > a::after { content: ' ∨'; font-size: 0.65rem; }
.drop-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  min-width: 210px; padding: 0.5rem 0; z-index: 200;
}
.nav-dropdown:hover .drop-menu { display: block; }
.drop-menu a {
  display: block; padding: 0.55rem 1.25rem; font-size: 0.82rem;
  border-bottom: none; text-transform: none; letter-spacing: 0;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--teal-dark);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 0.8rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; font-weight: 500; color: var(--text);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.sub { padding-left: 1rem; color: var(--text-muted); font-size: 0.85rem; }

/* ── Hero (dark teal section) ── */
.hero {
  background: var(--teal-dark);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(8,145,178,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 32px 2rem;
  display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-text { animation: slideUp 0.9s ease both; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-line { width: 40px; height: 1px; background: var(--teal-light); }
.hero-eyebrow-text {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal-light);
}
.hero h1 { color: var(--white); margin-bottom: 1.75rem; }
.hero h1 em { color: var(--teal-light); font-style: normal; }
.hero-statement {
  color: rgba(255,255,255,0.65); font-size: 1.05rem;
  border-left: 2px solid var(--teal-light); padding-left: 1.25rem;
  margin-bottom: 2.5rem; font-style: italic;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-block {
  animation: fadeIn 1s ease 0.4s both;
  position: relative;
}
.hero-image-block img {
  width: 100%; height: 364px; object-fit: cover;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.25s; cursor: pointer; border: none;
}
.btn-light {
  background: var(--white); color: var(--teal-dark);
}
.btn-light:hover { background: var(--teal-pale); color: var(--teal); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-teal {
  background: var(--teal); color: var(--white);
}
.btn-teal:hover { background: var(--teal-mid); }
.btn-outline-dark {
  background: transparent; color: var(--teal-dark);
  border: 1px solid var(--teal-dark);
}
.btn-outline-dark:hover { background: var(--teal-dark); color: var(--white); }

/* ── Statement Band ── */
.statement-band {
  background: var(--teal); padding: 50px 0;
}
.statement-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  text-align: center;
}
.statement-inner blockquote {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--white); font-weight: 400; font-style: italic; line-height: 1.4;
}

/* ── Section Label ── */
.label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.25rem;
}
.label::before { content: ''; width: 28px; height: 1px; background: var(--teal); }

/* ── Feature Rows ── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
}
.feature-row.reverse .feature-content { order: 2; }
.feature-row.reverse .feature-img { order: 1; }

.feature-content {
  padding: 80px 70px;
  display: flex; flex-direction: column; justify-content: center;
}
.feature-content h2 { margin-bottom: 1.5rem; color: var(--teal-dark); }
.feature-content.on-dark h2 { color: var(--white); }
.feature-content.on-dark p { color: rgba(255,255,255,0.7); }
.feature-content.on-dark .label { color: var(--teal-light); }
.feature-content.on-dark .label::before { background: var(--teal-light); }
.feature-content.on-dark .bullet-row li { color: rgba(255,255,255,0.8); }
.feature-content.on-dark .bullet-row li::before { color: var(--teal-light); }

.feature-content.bg-faint { background: var(--teal-faint); }
.feature-content.bg-dark { background: var(--teal-dark); }
.feature-content.bg-white { background: var(--white); }
.feature-content.bg-pale { background: var(--teal-pale); }

.feature-img {
  position: relative; overflow: hidden; min-height: 500px;
}
.feature-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* ── Bullet Rows ── */
.bullet-row {
  display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem;
}
.bullet-row li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text-muted);
}
.bullet-row li::before {
  content: '→'; color: var(--teal); font-weight: 700; flex-shrink: 0;
}

/* ── Service Grid ── */
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
  max-width: var(--max-w); margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.service-item {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem; transition: background 0.2s;
}
.service-item:hover { background: var(--teal-faint); }
.service-item h3 {
  font-size: 1.3rem; color: var(--teal-dark); margin-bottom: 0.75rem; margin-top: 1rem;
}
.service-num {
  font-family: var(--font-serif); font-size: 2.5rem;
  color: var(--teal-light); line-height: 1; font-weight: 600;
}

/* ── Testimonials ── */
.testimonial-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
  max-width: var(--max-w); margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.testi-item {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2.5rem;
}
.testi-item blockquote {
  font-family: var(--font-serif); font-size: 1.1rem; font-style: italic;
  color: var(--teal-dark); line-height: 1.6; margin-bottom: 1.5rem;
}
.testi-cite {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal);
}

/* ── Persons ── */
.persons-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  background: var(--border);
}
.person-block {
  background: var(--white);
  display: grid; grid-template-columns: 280px 1fr;
}
.person-photo {
  aspect-ratio: 3/4; overflow: hidden;
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.person-photo--small {
  aspect-ratio: unset;
  display: flex; align-items: flex-start; justify-content: center;
  background: var(--stone-light);
  padding: 2.5rem 2.5rem 0;
  border-top: 3px solid var(--teal);
}
.person-photo--small img {
  width: 180px; height: auto;
  object-fit: cover;
  display: block;
}
.person-info { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.person-info h2 { font-size: 1.8rem; color: var(--teal-dark); margin-bottom: 0.25rem; }
.person-role {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem;
}
.person-contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.3rem; }
.person-contact a { font-size: 0.85rem; color: var(--teal); }
.profile-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin: 1.25rem 0 0.4rem;
}
.sub-detail { font-size: 0.8rem; color: var(--text-muted); display: block; margin-top: 0.15rem; }
.person-contact a:hover { text-decoration: underline; }

/* ── Kosten Table ── */
.kosten-table {
  width: 100%; border-collapse: collapse; max-width: 780px;
}
.kosten-table th {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); text-align: left; padding: 0.75rem 1.25rem;
  border-bottom: 2px solid var(--teal);
}
.kosten-table td {
  padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.kosten-table td:first-child { font-weight: 600; color: var(--teal-dark); width: 200px; }
.kosten-table td:last-child { color: var(--text-muted); }
.kosten-table tr:hover td { background: var(--teal-faint); }

/* ── Contact Layout ── */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.contact-info { padding: 80px 70px; background: var(--teal-dark); }
.contact-info .label { color: var(--teal-light); }
.contact-info .label::before { background: var(--teal-light); }
.contact-info h2 { color: var(--white); margin-bottom: 2.5rem; }
.contact-persons { display: flex; flex-direction: column; gap: 2rem; }
.contact-person h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--white); margin-bottom: 0.25rem; }
.contact-person-role { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 0.75rem; }
.contact-person a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 0.2rem; transition: color 0.2s; }
.contact-person a:hover { color: var(--white); }
.contact-map { position: relative; }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.ext-links { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); }
.ext-links h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.ext-links a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; transition: color 0.2s; }
.ext-links a:hover { color: var(--teal-light); }
.ext-links a::before { content: '↗ '; font-size: 0.7rem; }

/* ── Page Hero (Unterseiten) ── */
.page-hero {
  background: var(--teal-dark); padding: 70px 0 60px;
}
.page-hero .wrap { max-width: var(--max-w); }
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--teal-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.5rem; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-top: 0.75rem; max-width: 600px; }

/* ── Accordion (Behandlung) ── */
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; background: none; border: none; padding: 1.75rem 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
}
.accordion-trigger h3 {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--teal-dark);
  transition: color 0.2s;
}
.accordion-trigger:hover h3 { color: var(--teal); }
.accordion-icon { font-size: 1.25rem; color: var(--teal); transition: transform 0.3s; flex-shrink: 0; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 0 2rem; }
.accordion-item.open .accordion-body { display: block; }
.accordion-inner { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.accordion-img { overflow: hidden; }
.accordion-img img { width: 100%; height: 240px; object-fit: cover; }

/* ── Statement Block ── */
.highlight-band {
  background: var(--teal-pale); border-left: 3px solid var(--teal);
  padding: 1.5rem 2rem; margin: 2rem 0;
}
.highlight-band p {
  font-family: var(--font-serif); font-style: italic; font-size: 1.05rem;
  color: var(--teal-dark); margin: 0;
}

/* ── Footer ── */
.site-footer { background: var(--text); padding: 70px 0 30px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.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.07);
  margin-bottom: 2rem;
}
.footer-brand-name { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── Prose (Legal) ── */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.4rem; color: var(--teal-dark); margin: 2.5rem 0 0.75rem; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.prose h3 { font-size: 1rem; color: var(--text); margin: 1.5rem 0 0.5rem; font-family: var(--font-sans); }
.prose p, .prose li { font-size: 0.9rem; color: var(--text-muted); }
.prose ul { margin: 0.75rem 0 1rem 1.5rem; }
.prose ul li { list-style: disc; margin-bottom: 0.3rem; }
.prose a { color: var(--teal); }
.prose a:hover { text-decoration: underline; }
.placeholder-note {
  background: #FEF3C7; border: 1px solid #F59E0B; padding: 0.75rem 1rem;
  font-size: 0.8rem; color: #92400E; margin: 1.5rem 0; font-weight: 600;
}

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── Keyframes ── */
@keyframes slideUp  { from { opacity:0; transform: translateY(40px); } to { opacity:1; transform: none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .person-block { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .wrap { padding: 0 1.25rem; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image-block { display: none; }

  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-content { order: 1; }
  .feature-row.reverse .feature-img { order: 2; }
  .feature-img { min-height: 280px; position: relative; }
  .feature-content { padding: 2.5rem 1.5rem; }

  .service-grid { grid-template-columns: 1fr; }
  .testimonial-row { grid-template-columns: 1fr; }
  .persons-grid { grid-template-columns: 1fr; }
  .person-block { grid-template-columns: 1fr; }
  .person-photo { aspect-ratio: 16/9; }

  .contact-split { grid-template-columns: 1fr; }
  .contact-info { padding: 2.5rem 1.5rem; }
  .contact-map { height: 300px; position: relative; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .accordion-inner { grid-template-columns: 1fr; }
  .accordion-img { display: none; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   Hero — Pfad-Links
   ============================================================ */
.hero-paths {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-path {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.hero-path svg { opacity: 0.6; flex-shrink: 0; }
.hero-path-arrow { margin-left: 0.25rem; opacity: 0.4; font-size: 0.85em; }
.hero-path:hover {
  background: rgba(255,255,255,0.08);
  color: #fff; border-color: rgba(255,255,255,0.35);
}
.hero-path:hover .hero-path-arrow { opacity: 0.8; }

/* ============================================================
   Startseite — Zwei Säulen
   ============================================================ */
.two-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: var(--max-w); margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.pillar {
  display: block; text-decoration: none;
  padding: 4rem 3.5rem;
  position: relative;
  transition: background 0.25s;
}
.pillar--dark { background: var(--teal-dark); }
.pillar:not(.pillar--dark) { background: var(--white); border-right: 1px solid var(--stone); }
.pillar:not(.pillar--dark):hover { background: var(--stone-light); }
.pillar--dark:hover { background: #0a2e3f; }

.pillar-icon {
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.pillar--dark .pillar-icon { color: rgba(255,255,255,0.5); }

.pillar-num {
  display: block;
  font-family: var(--font-serif); font-size: 0.85rem; font-style: italic;
  color: var(--teal); letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.pillar--dark .pillar-num { color: rgba(255,255,255,0.35); }

.pillar h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--teal-dark); margin-bottom: 1rem;
  line-height: 1.2;
}
.pillar--dark h2 { color: #fff; }

.pillar p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 1.25rem;
}
.pillar--dark p { color: rgba(255,255,255,0.55); }

.pillar .bullet-row { margin-bottom: 2rem; }
.pillar--dark .bullet-row li { color: rgba(255,255,255,0.65); }
.pillar--dark .bullet-row li::before { color: rgba(255,255,255,0.3); }

.pillar-link {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal);
}
.pillar--dark .pillar-link { color: rgba(255,255,255,0.5); }
.pillar:hover .pillar-link { color: var(--teal-dark); }
.pillar--dark:hover .pillar-link { color: #fff; }

@media (max-width: 768px) {
  .two-pillars { grid-template-columns: 1fr; }
  .pillar { padding: 2.5rem 1.5rem; }
  .pillar:not(.pillar--dark) { border-right: none; border-bottom: 1px solid var(--stone); }
  .hero-paths { gap: 0.5rem; }
  .hero-path { font-size: 0.73rem; padding: 0.45rem 0.75rem; }
}

/* ============================================================
   Energetische Heilarbeit — Veranstaltungen Feature
   ============================================================ */
.veranstaltungen-feature {
  display: grid; grid-template-columns: 420px 1fr;
  min-height: 560px;
  max-width: var(--max-w);
  margin: 0 auto 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.10);
}
.veranstaltungen-img {
  overflow: hidden;
}
.veranstaltungen-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.veranstaltungen-text {
  background: var(--teal-dark); color: #fff;
  padding: 4rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.veranstaltungen-text .label { color: rgba(255,255,255,0.4); }
.veranstaltungen-text h2 {
  color: #fff; font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 1rem 0 1.5rem; line-height: 1.25;
}
.veranstaltungen-text p {
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  line-height: 1.7; margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .veranstaltungen-feature { grid-template-columns: 1fr; }
  .veranstaltungen-img { height: 300px; }
  .veranstaltungen-text { padding: 2.5rem 1.5rem; }
}

/* ============================================================
   Energetische Heilarbeit
   ============================================================ */
.feature-intro { max-width: 720px; }
.feature-intro .lead-text {
  font-family: var(--font-serif); font-size: 1.2rem;
  color: var(--text-dark); line-height: 1.7; margin-top: 1rem;
}

.energie-block {
  display: grid; grid-template-columns: 56px 1fr; gap: 2rem;
  padding: 1.75rem 0;
}
.energie-icon {
  padding-top: 0.25rem;
  color: var(--teal);
}
.energie-content h2 {
  font-size: 1.6rem; color: var(--teal-dark); margin-bottom: 0.15rem;
}
.energie-sub {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}
.energie-content p { margin-bottom: 1rem; }
.energie-note {
  font-size: 0.8rem; color: var(--text-muted);
  border-left: 2px solid var(--teal);
  padding-left: 0.75rem; margin-top: 1rem;
}
.energie-note a { color: var(--teal); }
.energie-divider {
  border: none; border-top: 1px solid var(--stone);
  margin: 0;
}

.cta-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  background: var(--teal-dark); color: #fff;
  padding: 2.5rem 3rem; border-radius: 2px;
}
.cta-band h2 { color: #fff; font-size: 1.5rem; margin-bottom: 0.25rem; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

@media (max-width: 768px) {
  .energie-block { grid-template-columns: 1fr; gap: 1rem; }
  .energie-icon { display: none; }
  .cta-band { padding: 2rem 1.5rem; }
}

/* ============================================================
   Cookie-Banner
   ============================================================ */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--teal-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.25);
}
#cookieBanner.is-visible { transform: translateY(0); }
.cookie-text {
  flex: 1; min-width: 260px;
  font-family: var(--font-sans); font-size: 0.82rem;
  color: rgba(255,255,255,0.75); line-height: 1.5;
}
.cookie-text a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--teal); color: #fff;
  border: none; border-radius: 3px;
  padding: 0.55rem 1.25rem;
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: #0a7a9a; }
.btn-cookie-decline {
  background: transparent; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 3px;
  padding: 0.55rem 1rem;
  font-family: var(--font-sans); font-size: 0.82rem;
  cursor: pointer; white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.btn-cookie-decline:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }

/* Karten-Consent-Overlay */
.contact-map { position: relative; }
.map-consent {
  position: absolute; inset: 0;
  background: var(--stone-light);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.map-consent-inner {
  text-align: center; padding: 2rem;
  max-width: 320px;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.map-consent-inner svg { color: var(--teal); opacity: 0.6; }
.map-consent-inner p {
  font-family: var(--font-sans); font-size: 0.82rem;
  color: var(--text-muted); line-height: 1.5;
}
.btn-map-consent {
  background: var(--teal); color: #fff;
  border: none; border-radius: 3px;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.btn-map-consent:hover { background: #0a7a9a; }
.map-consent-link {
  font-family: var(--font-sans); font-size: 0.75rem;
  color: var(--text-muted); text-decoration: underline;
}
