/* ============================================================
   Sehende Hände – Main Stylesheet
   Basiert auf Layout 04 · Dark & Cream · Bento Grid
   CI-Farben: Grün #61B700 + Orange #FF8243
   DSGVO-konform · Keine externen Requests
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── Design Tokens – CI pur + Dark ── */
:root {
  /* Hintergründe */
  --bg-dark:    #111410;
  --bg-card:    #1a1e17;
  --bg-lift:    #222820;
  --bg-cream:   #f5f0e8;
  --bg-cream-d: #ece5da;
  --bg-white:   #ffffff;

  /* Text */
  --text-dark:  #111410;
  --text-cream: #f0ede6;
  --text-dim:   rgba(240,237,230,.85);
  --text-muted-d: #888178;

  /* Akzentfarben – CI */
  --accent:     #61b700;     /* CI Grün = Primär */
  --accent-l:   #72d400;     /* Grün Hover */
  --accent-dim: rgba(97,183,0,.18);
  --accent-sec: #ff8243;     /* CI Orange = CTAs */
  --accent-sec-l:#ff9a66;    /* Orange Hover */

  /* Linien */
  --line-d:     rgba(255,255,255,.08);
  --line-l:     rgba(17,20,16,.1);

  /* Schriften – lokal geladen */
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;

  /* Radien */
  --r-sm:   0.25rem;
  --r-md:   0.75rem;
  --r-lg:   1.25rem;
  --r-xl:   2rem;
  --r-pill: 9999px;

  /* Layout */
  --container:  1280px;
  --section-py: clamp(5rem, 9vw, 8rem);
  --header-h:   68px;

  /* Animation */
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ── Body ── */
body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-cream);
  line-height: 1.6;
}

/* ── WordPress: Admin-Bar Offset ── */
body.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar #site-header { top: 46px; }
}

/* ── Type Scale ── */
.t-hero {
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.t-section {
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
}
.t-card {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.t-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

/* ── Skip-Link (Barrierefreiheit) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--bg-dark);
  padding: .75rem 1.5rem;
  border-radius: var(--r-md);
  font-weight: 700;
  z-index: 200;
  transition: top .3s;
}
.skip-link:focus {
  top: 1rem;
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: background .4s ease, box-shadow .4s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

#site-header.scrolled {
  background: rgba(17,20,16,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line-d);
}

/* Logo */
.logo-link { display: flex; align-items: center; }
.logo-img { height: 38px; width: auto; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 2.25rem; }
.main-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color .2s;
}
.main-nav a:hover,
.main-nav a:focus { color: var(--text-cream); }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { color: var(--text-cream); }

/* Nav CTA Button */
.nav-cta {
  padding: .5rem 1.25rem;
  border: 1px solid var(--accent-sec);
  color: var(--accent-sec);
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--accent-sec); color: var(--bg-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text-cream);
  display: block;
  transition: all .3s var(--ease-expo);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
#mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(17,20,16,.98);
  backdrop-filter: blur(24px);
  padding: 2rem 1.5rem;
  gap: .75rem;
  z-index: 99;
  transform: translateX(100%);
  transition: transform .4s var(--ease-expo);
  overflow-y: auto;
}
#mobile-nav.open { transform: translateX(0); }
#mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-cream);
  padding: .6rem 0;
  border-bottom: 1px solid var(--line-d);
}
.mobile-cta-nav {
  margin-top: 1.5rem;
  background: var(--accent-sec) !important;
  color: var(--bg-dark) !important;
  text-align: center;
  border-radius: var(--r-md) !important;
  padding: 1rem !important;
  border-bottom: none !important;
}

/* ─────────────────────────────────────────
   HERO – Split Layout
───────────────────────────────────────── */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: var(--bg-dark);
  overflow: hidden;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(2.5rem, 4vw, 4rem);
  position: relative;
  z-index: 2;
  margin-left: clamp(2.5rem, 6vw, 6rem);
  max-width: min(620px, 52vw);
  background: rgba(17,20,16,.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--accent);
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem; height: 2px;
  background: var(--accent);
}

.hero-headline {
  color: var(--text-cream);
  margin-bottom: 1.25rem;
}
.hero-headline span { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  background: var(--accent-sec);
  color: var(--bg-dark);
  border-radius: var(--r-md);
  font-weight: 800;
  font-size: .975rem;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-accent:hover { background: var(--accent-sec-l); transform: translateY(-2px); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: var(--r-md);
  font-weight: 800;
  font-size: .975rem;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-green:hover { background: var(--accent-l); transform: translateY(-2px); }

.btn-outline-cream {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.75rem;
  border: 1px solid var(--line-d);
  color: var(--text-dim);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: .975rem;
  transition: border-color .2s, color .2s;
  background: none;
  cursor: pointer;
}
.btn-outline-cream:hover { border-color: var(--text-cream); color: var(--text-cream); }

.btn-accent-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  background: var(--text-dark);
  color: var(--bg-cream);
  border-radius: var(--r-md);
  font-weight: 800;
  font-size: .95rem;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.btn-accent-dark:hover { background: var(--accent); color: var(--bg-dark); }

/* SVG Icons in Buttons */
.btn-accent svg,
.btn-green svg,
.btn-outline-cream svg,
.btn-accent-dark svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* Hero right: image – Fullscreen hinter hero-left */
.hero-right {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.85);
  transition: transform 1.2s var(--ease-expo);
}
.hero-right:hover img { transform: scale(1.03); }

/* ── Hero Infobox (Glasmorphism) – Desktop: rechte Hälfte, vertikal zentriert ── */
.hero-infobox {
  position: absolute;
  left: 67%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 340px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  z-index: 10;
  text-align: center;
  animation: infoboxIn .8s var(--ease-expo) .9s both;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.hero-infobox--urgent {
  border-color: var(--accent);
  background: rgba(97,183,0,.08);
}
.hero-infobox-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .6rem;
}
.hero-infobox-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-infobox-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.hero-infobox-text {
  font-size: .875rem;
  color: var(--text-cream);
  line-height: 1.6;
}
.hero-infobox-text strong {
  color: #fff;
}
.hero-infobox-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@keyframes infoboxIn {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,20,16,.45) 0%, rgba(17,20,16,.15) 50%, transparent 75%);
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .15em;
  z-index: 10;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 2rem;
  background: currentColor;
  animation: scrollLineV 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLineV {
  0%,100% { height: 2rem; opacity: .4; }
  50%     { height: 3.5rem; opacity: 1; }
}

/* Hero reveal */
.hero-eyebrow,
.hero-headline,
.hero-sub,
.hero-actions {
  opacity: 0;
  animation: heroUp .9s var(--ease-expo) forwards;
}
.hero-eyebrow  { animation-delay: .2s; }
.hero-headline { animation-delay: .4s; }
.hero-sub      { animation-delay: .6s; }
.hero-actions  { animation-delay: .75s; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease-expo), transform .8s var(--ease-expo);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity .85s var(--ease-expo), transform .85s var(--ease-expo);
  transition-delay: var(--delay, 0ms);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity .85s var(--ease-expo), transform .85s var(--ease-expo);
  transition-delay: var(--delay, 0ms);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .8s var(--ease-expo), transform .8s var(--ease-expo);
  transition-delay: var(--delay, 0ms);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* ─────────────────────────────────────────
   SECTION SHELL
───────────────────────────────────────── */
section { padding: var(--section-py) 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem; height: 2px;
  background: var(--accent);
}
.section-eyebrow-text {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   PRAXIS – Über die Praxis (cream bg)
───────────────────────────────────────── */
#praxis {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.praxis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.praxis-text .section-eyebrow { color: var(--accent); }
.praxis-text .section-eyebrow::before { background: var(--accent); }

.praxis-headline { margin-bottom: 1.25rem; color: var(--text-dark); }
.praxis-sub {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: #5a5045;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.praxis-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.25rem;
}
.praxis-list li {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  font-size: .975rem;
  color: #5a5045;
  line-height: 1.6;
}
.praxis-list li svg {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--accent);
  margin-top: .15rem;
}

/* Praxis image card */
.praxis-card {
  background: var(--bg-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.praxis-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.7);
  transition: transform .9s var(--ease-expo);
}
.praxis-card:hover img { transform: scale(1.04); }
.praxis-card-label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(17,20,16,.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-d);
  color: var(--text-cream);
  padding: .6rem 1.1rem;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
}

/* ─────────────────────────────────────────
   ZERTIFIZIERUNGEN – Logo Strip
───────────────────────────────────────── */
#zertifizierungen {
  background: var(--bg-cream-d);
  padding: 3rem 0;
  border-top: 1px solid var(--line-l);
  border-bottom: 1px solid var(--line-l);
}
.zert-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.zert-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #8a7d6e;
  white-space: nowrap;
  flex-shrink: 0;
}
.zert-logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.zert-name {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #8a7d6e;
  transition: color .2s;
}
.zert-name:hover { color: var(--text-dark); }
.zert-logos img {
  height: 2.5rem;
  width: auto;
  filter: grayscale(1) opacity(.5);
  transition: filter .3s;
}
.zert-logos img:hover { filter: grayscale(0) opacity(1); }

/* ─────────────────────────────────────────
   LEISTUNGEN – Bento Grid
───────────────────────────────────────── */
#leistungen {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
}

.leistungen-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.leistungen-headline { color: var(--text-cream); }
.leistungen-sub {
  max-width: 360px;
  font-size: .975rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: .875rem;
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  cursor: pointer;
}
.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.85);
  transition: transform .8s var(--ease-expo), filter .4s;
}
.bento-item:hover img { transform: scale(1.06); filter: brightness(.95); }

/* Grid placement – 5 Kacheln */
.bento-1 { grid-column: 1 / 6;  grid-row: 1 / 3; min-height: 420px; }
.bento-2 { grid-column: 6 / 10; grid-row: 1 / 2; }
.bento-3 { grid-column: 10/ 13; grid-row: 1 / 2; }
.bento-4 { grid-column: 6 / 9;  grid-row: 2 / 3; }
.bento-5 { grid-column: 9 / 13; grid-row: 2 / 3; }

.bento-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(17,20,16,.7) 0%, transparent 45%);
}
.bento-category {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .75;
  margin-bottom: .2rem;
}
.bento-num {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: .4rem;
}
.bento-title {
  font-size: clamp(.9rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: var(--text-cream);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.bento-1 .bento-content { padding: 2rem; }
.bento-1 .bento-title { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

/* Bento item ohne Bild (Icon-Kachel) */
.bento-item--icon {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line-d);
  transition: border-color .25s;
}
.bento-item--icon:hover { border-color: var(--accent); }
.bento-item--icon .bento-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ─────────────────────────────────────────
   BEHANDLUNG & SERVICE – Cards (dark bg)
───────────────────────────────────────── */
#behandlung {
  background: var(--bg-card);
  border-top: 1px solid var(--line-d);
}

.service-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.service-header .section-eyebrow { justify-content: center; }
.service-headline { color: var(--text-cream); }
.service-sub {
  margin-top: .75rem;
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: var(--text-dim);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.service-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-lift);
  border: 1px solid var(--line-d);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  flex: 1;
  transition: border-color .25s;
}
.service-card:hover { border-color: var(--accent); }

.service-card-icon { width: 2.25rem; height: 2.25rem; color: var(--accent); }
.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-cream);
  letter-spacing: -.015em;
}
.service-card-desc {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* Center: tall image */
.service-center {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.service-center img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 520px;
}
.service-center-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17,20,16,.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-d);
  color: var(--text-cream);
  padding: .75rem 1.5rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  font-size: .875rem;
  font-weight: 600;
  text-align: center;
}
.service-center-badge span {
  display: block;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .2rem;
}

/* ── Kosten-Info Karten ── */
.kosten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.kosten-card {
  background: var(--bg-lift);
  border: 1px solid var(--line-d);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
}
.kosten-card-title {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.kosten-card-text {
  font-size: .95rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.kosten-card-text strong {
  color: var(--text-cream);
  font-weight: 700;
}

/* ─────────────────────────────────────────
   TEAM
───────────────────────────────────────── */
#team {
  background: var(--bg-dark);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--line-d);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .25s, transform .3s var(--ease-expo);
}
.team-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.team-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.team-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.8);
  transition: transform .8s var(--ease-expo);
}
.team-card:hover .team-card-image img { transform: scale(1.05); }

.team-card-body { padding: 1.5rem; }
.team-card-role {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
}
.team-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-cream);
  letter-spacing: -.015em;
  margin-bottom: .5rem;
}
.team-card-desc {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   CTA – Termin (cream bg)
───────────────────────────────────────── */
#cta-section {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 0;
  overflow: hidden;
}
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.cta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 7vw, 7rem) clamp(2.5rem, 8vw, 8rem);
  gap: 1.5rem;
}
.cta-section-eyebrow { color: var(--accent); }
.cta-section-eyebrow::before { background: var(--accent); }
.cta-headline { color: var(--text-dark); }
.cta-sub {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: #5a5045;
  line-height: 1.75;
  max-width: 400px;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Kontakt-Infos im CTA */
.cta-contact {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: .5rem;
}
.cta-contact-line {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: #5a5045;
}
.cta-contact-line svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}
.cta-contact-line a {
  color: #5a5045;
  transition: color .2s;
}
.cta-contact-line a:hover { color: var(--accent); }

.cta-image {
  position: relative;
  overflow: hidden;
}
.cta-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.75) saturate(.9);
  transition: transform 1s var(--ease-expo);
}
.cta-image:hover img { transform: scale(1.04); }
.cta-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg-cream) 0%, transparent 25%);
  pointer-events: none;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: #080b06;
  border-top: 1px solid var(--line-d);
  color: var(--text-dim);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand .logo-img { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-desc {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-contact-line {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; margin-bottom: .4rem;
}
.footer-contact-line a { color: var(--text-dim); transition: color .2s; }
.footer-contact-line a:hover { color: var(--text-cream); }
.footer-contact-line svg { color: var(--accent); flex-shrink: 0; width: 1rem; height: 1rem; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(240,237,230,.7); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .9rem; color: var(--text-dim); transition: color .2s; }
.footer-links a:hover { color: var(--text-cream); }

.footer-bottom {
  border-top: 1px solid var(--line-d);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(240,237,230,.7); transition: color .2s; }
.footer-legal a:hover { color: var(--text-cream); }

/* ── Google Maps 2-Klick ── */
.map-consent {
  background: var(--bg-card);
  border: 1px solid var(--line-d);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.map-consent p {
  font-size: .9rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  line-height: 1.65;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 1.5rem;
  z-index: 90; width: 3.25rem; height: 3.25rem;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.whatsapp-float svg { fill: #fff; width: 1.5rem; height: 1.5rem; }

/* ─────────────────────────────────────────
   UNTERSEITEN – Content Pages
───────────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  background: var(--bg-dark);
  text-align: center;
}
.page-hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-dim);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Page Hero with Background Image */
.page-hero--image {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-top: calc(var(--header-h) + 2rem);
  overflow: hidden;
  text-align: left;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.7);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,20,16,.3) 0%, rgba(17,20,16,.7) 60%, var(--bg-cream) 100%);
}
.page-hero--image .container {
  position: relative;
  z-index: 1;
}
.page-hero--image .page-hero-headline {
  color: var(--text-cream);
  text-align: left;
}
.page-hero--image .page-hero-sub {
  color: var(--text-dim);
  margin-inline: 0;
}
.page-hero--image .breadcrumbs a { color: var(--text-dim); }
.page-hero--image .breadcrumbs span { color: rgba(240,237,230,.6); }

/* Lightbox */
.lightbox-trigger {
  position: relative;
  display: block;
  cursor: zoom-in;
}
.karte-zoom-hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(17,20,16,.75);
  backdrop-filter: blur(8px);
  color: var(--text-cream);
  font-size: .75rem;
  font-weight: 600;
  padding: .5rem .9rem;
  border-radius: var(--r-md);
  transition: background .2s;
}
.lightbox-trigger:hover .karte-zoom-hint {
  background: var(--accent-sec);
  color: var(--bg-dark);
}
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.9);
  cursor: zoom-out;
  padding: 2rem;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 16px 64px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: var(--accent-sec); }

/* Content Area */
.page-content {
  padding: var(--section-py) 0;
}
.page-content--cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}
.page-content--dark {
  background: var(--bg-dark);
  color: var(--text-cream);
}

.page-content-image {
  margin: 1.5rem 0 2rem;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.page-content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}

.content-wrap {
  max-width: 800px;
  margin-inline: auto;
}
.content-wrap h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: .75rem;
  margin-top: 2rem;
}
.content-wrap p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.content-wrap ul,
.content-wrap ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.content-wrap li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: .4rem;
  list-style: disc;
}
.content-wrap ol li { list-style: decimal; }

/* FAQ Sektion */
.faq-section { margin-top: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--line-d);
  padding: 1.25rem 0;
}
.page-content--cream .faq-item {
  border-bottom-color: var(--line-l);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  background: none;
  border: none;
  color: inherit;
  text-align: left;
  width: 100%;
  padding: 0;
  font-family: inherit;
}
.faq-question svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform .3s var(--ease-expo);
}
.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-expo), padding .4s;
}
.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}
.faq-answer p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-dim);
}
.page-content--cream .faq-answer p {
  color: #5a5045;
}

/* ─────────────────────────────────────────
   BREADCRUMBS
───────────────────────────────────────── */
.breadcrumbs {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.breadcrumbs a {
  color: var(--text-dim);
  transition: color .2s;
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .separator { margin: 0 .5rem; opacity: .4; }

/* ─────────────────────────────────────────
   COOKIE CONSENT
───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--line-d);
  padding: 1.25rem;
  z-index: 150;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: .875rem;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
  min-width: 250px;
}
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .bento-1 { grid-column: 1 / 7; }
  .bento-2 { grid-column: 7 / 13; grid-row: 1; }
  .bento-3 { grid-column: 1 / 5;  grid-row: 3; }
  .bento-4 { grid-column: 5 / 9;  grid-row: 3; }
  .bento-5 { grid-column: 9 / 13; grid-row: 3; }
  .service-grid { grid-template-columns: 1fr 1.4fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #mobile-nav { display: flex; }

  /* Hero Mobile: Fullscreen Bild, Content unten */
  #hero { height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; align-items: stretch; }
  .hero-right { position: absolute; inset: 0; height: 100%; width: 100%; }
  .hero-right-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(17,20,16,.3) 30%, rgba(17,20,16,.85) 65%, var(--bg-dark) 100%);
  }
  .hero-left {
    position: relative;
    padding: 0 1.5rem 1rem;
    min-height: auto;
    justify-content: flex-end;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-left: 0;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    z-index: 2;
  }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-scroll { display: none; }

  /* Infobox auf Mobile: im Flow unter hero-left */
  .hero-infobox {
    position: relative;
    transform: none;
    left: auto; right: auto; top: auto;
    width: auto;
    max-width: 100%;
    margin: 0 1.5rem 2.5rem;
    animation-name: none;
    z-index: 2;
  }

  /* Praxis */
  .praxis-grid { grid-template-columns: 1fr; }
  .praxis-card { aspect-ratio: 3/2; max-height: 300px; }

  /* CTA */
  .cta-split { grid-template-columns: 1fr; }
  .cta-image { height: 300px; }
  .cta-image-overlay { background: linear-gradient(180deg, var(--bg-cream) 0%, transparent 30%); }

  /* Bento Grid: 1 Spalte auf Mobile für bessere Lesbarkeit */
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: .75rem; }
  .bento-1 { min-height: 280px; }
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5 { grid-column: auto; grid-row: auto; aspect-ratio: 16/9; min-height: unset; }
  .bento-1 { aspect-ratio: 4/3; min-height: 250px; }

  /* Behandlung */
  .service-grid { grid-template-columns: 1fr; }
  .service-center { display: none; }
  .service-col { gap: 1rem; }

  /* Zertifizierungen */
  .zert-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .zert-logos { gap: 1.5rem; }

  /* Footer & sonstige */
  .footer-grid { grid-template-columns: 1fr; }
  .leistungen-header { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .hero-left { padding: 2rem 1.25rem 2.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-accent, .btn-green, .btn-outline-cream { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .bento-content { padding: 1.25rem; }
  .bento-1 .bento-content { padding: 1.5rem; }
  .cookie-inner { flex-direction: column; }
}

/* ─────────────────────────────────────────
   PRINT
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   KONTAKT & ANFAHRT
   ───────────────────────────────────────── */
.kontakt-section {
  padding: var(--section-py) 0;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* Formular */
.kontakt-form-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.kontakt-form-sub {
  color: var(--text-muted-d);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Form Elements */
.sh-contact-form .form-row,
.wpcf7 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: .4rem;
}
.form-group {
  margin-bottom: .4rem;
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .1rem;
  letter-spacing: .02em;
}
/* CF7: eigene p- und br-Margins entfernen */
.wpcf7 form p { margin: 0; padding: 0; }
.wpcf7 form br { display: none; }
.wpcf7 .wpcf7-form-control-wrap { display: block; margin: 0; }
.form-group .required {
  color: var(--accent-sec);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--line-l);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox */
.form-privacy {
  margin-bottom: 1.5rem;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: #5a5045;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}
.checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CF7 Override – falls CF7 aktiv */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--line-l);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  background: var(--accent-sec);
  color: var(--bg-dark);
  border: none;
  border-radius: var(--r-md);
  font-weight: 800;
  font-size: .975rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.wpcf7 .wpcf7-submit:hover {
  background: var(--accent-sec-l);
  transform: translateY(-2px);
}

/* Kontakt Info Card */
.kontakt-card {
  background: var(--bg-white);
  border: 1px solid var(--line-l);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.kontakt-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-l);
}
.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .875rem 0;
  border-bottom: 1px solid rgba(17,20,16,.05);
}
.kontakt-item:last-child {
  border-bottom: none;
}
.kontakt-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--r-md);
  color: var(--accent);
  flex-shrink: 0;
}
.kontakt-item-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted-d);
  margin-bottom: .2rem;
}
.kontakt-item-value {
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}
a.kontakt-item-value {
  color: var(--accent);
  transition: color .2s;
}
a.kontakt-item-value:hover {
  color: var(--accent-l);
}

/* WhatsApp Button */
.kontakt-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--r-lg);
  transition: background .2s, transform .15s;
}
.kontakt-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

/* Anfahrt */
.anfahrt-section {
  padding: var(--section-py) 0;
  background: var(--bg-dark);
  color: var(--text-cream);
}
.anfahrt-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.anfahrt-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.anfahrt-karte {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.anfahrt-karte img {
  width: 100%;
  height: auto;
  display: block;
}
.anfahrt-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: .5rem;
}
.anfahrt-detail h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-cream);
  margin-bottom: .4rem;
}
.anfahrt-detail p {
  font-size: .95rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sh-contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .anfahrt-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─────────────────────────────────────────
   PRINT
   ───────────────────────────────────────── */
@media print {
  #site-header, .whatsapp-float, .cookie-banner, #mobile-nav { display: none !important; }
  body { background: #fff; color: #111; }
  section { padding: 2rem 0; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
}
