/* ============================================================
   Naturheilpraxis Meiningen – Shared Stylesheet
   ============================================================ */

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

/* Skip to main content (Barrierefreiheit) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--stone);
  color: #fff;
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  font-size: .88rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

:root {
  --sage:     #d4a017;
  --sage-lt:  #f5f0e0;
  --sage-mid: #e8c55a;
  --stone:    #1a1a1a;
  --stone-mid:#555555;
  --cream:    #f8f8f8;
  --warm:     #eeeeee;
  --gold:     #d4a017;
  --gold-lt:  #fdf3d0;
  --white:    #ffffff;
  --radius:   4px;
  --ff-head:  'Playfair Display', Georgia, serif;
  --ff-body:  'Jost', sans-serif;
}

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

body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--stone);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ──────────── UTILS ──────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover { background: #b8880e; border-color: #b8880e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,.3); }
.btn-outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn-outline:hover { background: var(--sage); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: #b8880e; border-color: #b8880e; transform: translateY(-2px); }

.section-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .75rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--stone);
  line-height: 1.25;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-title--light { color: var(--white); }
.divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}

/* image placeholder */
.img-placeholder {
  background: #e8e4dd;
  border: 1px dashed var(--sage-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--stone-mid);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  aspect-ratio: 4/3;
}
.img-placeholder--tall { aspect-ratio: 3/4; }
.img-placeholder--wide { aspect-ratio: 16/9; }
.img-placeholder svg { width: 32px; height: 32px; opacity: .4; }

/* ──────────── NAV ──────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247,244,239,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--warm);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--warm);
  border: 1px dashed var(--sage-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--stone-mid);
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1.15; }
.nav-logo-text span:not(:last-child) {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--stone);
}
.nav-logo-text span:last-child {
  display: block;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-family: var(--ff-body);
  font-weight: 700;
  color: var(--stone);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .04em;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active { font-weight: 500; }

.nav-cta {
  padding: .55rem 1.4rem;
  font-size: .78rem;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--stone);
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--warm);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: .25rem;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--stone);
  font-size: .95rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--warm);
}
.mobile-menu a.active { color: var(--sage); font-weight: 500; }
.mobile-menu a:last-child { border-bottom: none; }

/* ──────────── PAGE HERO (inner pages) ──────────── */
.page-hero {
  margin-top: 72px;
  background: var(--stone);
  padding: 4rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,160,23,.08) 0%, transparent 65%);
}
.page-hero .container { position: relative; }
.page-hero .section-label { color: var(--sage-mid); }
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--sage-mid); }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 560px;
  line-height: 1.75;
}
.page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ──────────── HOME HERO ──────────── */
#hero {
  margin-top: 72px;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 0;
}
.hero-tagline {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 4.5vw, 3.6rem);
  line-height: 1.22;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.hero-tagline em { font-style: italic; color: var(--sage); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--stone-mid);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--stone-mid);
  letter-spacing: .04em;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.hero-image {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 72px);
}
.hero-img-placeholder {
  width: 100%;
  height: calc(100vh - 72px);
  display: block;
  object-fit: cover;
  object-position: center 80%;
}
.hero-pill {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: 60px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-pill-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-pill-text strong { display: block; font-size: .85rem; font-weight: 500; color: var(--stone); }
.hero-pill-text span { font-size: .72rem; color: var(--stone-mid); }

/* ──────────── TICKER ──────────── */
.ticker-wrap {
  background: var(--stone);
  padding: .9rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  padding: 0 2.5rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: .9;
}
.ticker-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 2.5rem;
  vertical-align: middle;
}

/* ──────────── BESCHWERDEN ──────────── */
.beschwerden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.beschwerden-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.beschwerden-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage-mid);
  font-size: .9rem;
  color: var(--stone-mid);
  transition: border-color .2s, transform .2s;
}
.beschwerden-item:hover { border-left-color: var(--sage); transform: translateX(4px); }
.beschwerden-item svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.beschwerden-visual { position: relative; overflow: visible; }
.stat-card {
  position: absolute;
  background: var(--white);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.stat-card-1 { bottom: -1.5rem; right: -1.5rem; }
.stat-card-2 { top: 2rem; left: -1.5rem; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
}
.stat-label { font-size: .72rem; color: var(--stone-mid); letter-spacing: .06em; margin-top: .2rem; }

/* ──────────── SERVICE CARDS (home) ──────────── */
.leistungen-section { background: var(--stone); }
.leistungen-section .section-label { color: var(--sage-mid); }
.leistungen-section .section-title { color: var(--white); }
.leistungen-section .divider { background: var(--gold); }
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.leistungen-grid .leistung-card:nth-child(-n+3) { grid-column: span 2; }
.leistungen-grid .leistung-card:nth-child(n+4)  { grid-column: span 3; }
.leistung-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 2rem;
  transition: background .25s, transform .25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.leistung-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.leistung-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--sage);
  opacity: 0;
  transition: opacity .25s;
}
.leistung-card:hover::before { opacity: 1; }
.leistung-card h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .75rem;
}
.leistung-card p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.leistung-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.25rem;
}
.leistung-tag {
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sage-mid);
  background: rgba(212,160,23,.12);
  padding: .25rem .65rem;
  border-radius: 20px;
}

/* ──────────── ABLAUF ──────────── */
.ablauf-section { background: #f0f0f0; }
.ablauf-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.ablauf-steps::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sage), transparent);
}
.ablauf-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  position: relative;
}
.ablauf-step:last-child { padding-bottom: 0; }
.ablauf-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ablauf-body h4 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: .35rem;
}
.ablauf-body p { font-size: .88rem; color: var(--stone-mid); }

/* ──────────── TEAM CARD ──────────── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}
.team-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #e0e0e0 0%, #cccccc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone-mid);
  text-align: center;
  padding: 1rem;
}
.team-body { padding: 1.75rem; }
.team-body h3 { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 600; color: var(--stone); }
.team-role {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin: .4rem 0 1rem;
}
.team-body p { font-size: .88rem; color: var(--stone-mid); line-height: 1.7; }

/* ──────────── VERTRAUEN / BEWERTUNGEN ──────────── */
.vertrauen-section { background: var(--cream); }
.bewertungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.bewertung-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  border: 1px solid var(--warm);
}
.bewertung-stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.bewertung-text { font-size: .9rem; color: var(--stone-mid); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.bewertung-autor { font-size: .78rem; font-weight: 500; color: var(--stone); letter-spacing: .04em; }

.quali-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.quali-item {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--warm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.quali-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-color: var(--sage-mid);
}
.quali-item .img-placeholder { margin-bottom: 1rem; border-radius: 4px; }
.quali-item p { font-size: .8rem; color: var(--stone-mid); }
.quali-item--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.quali-item__hint {
  display: block;
  margin-top: .75rem;
  font-size: .72rem;
  color: var(--sage);
  opacity: 0;
  transition: opacity .25s ease;
}
.quali-item--link:hover .quali-item__hint { opacity: 1; }

/* ──────────── ÖFFNUNGSZEITEN ──────────── */
.oz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: stretch;
}
.oz-grid > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: start;
}
.oz-table {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--warm);
}
.oz-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--warm);
}
.oz-row:last-child { border-bottom: none; }
.oz-row:hover { background: var(--sage-lt); }
.oz-day { font-weight: 500; font-size: .9rem; color: var(--stone); }
.oz-time { font-size: .88rem; color: var(--stone-mid); }
.oz-special {
  background: var(--sage-lt);
  border: 1px dashed var(--sage-mid);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: .84rem;
  color: var(--stone-mid);
  margin-top: 1rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.oz-special svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; margin-top: 1px; }

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--warm);
  border-radius: 8px;
  border: 1px dashed var(--sage-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--stone-mid);
  font-size: .82rem;
  letter-spacing: .06em;
  text-align: center;
  padding: 1rem;
}
.map-placeholder svg { width: 36px; height: 36px; opacity: .45; }
.map-addr { margin-top: 1.25rem; font-size: .88rem; color: var(--stone-mid); line-height: 1.7; }
.map-addr strong { color: var(--stone); font-weight: 500; }

/* Map Consent Overlay */
.map-consent-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--warm);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  z-index: 1;
}
.map-consent-overlay svg { width: 40px; height: 40px; opacity: .4; color: var(--stone-mid); }
.map-consent-text { font-size: .88rem; color: var(--stone-mid); max-width: 280px; line-height: 1.6; margin: 0; }
.map-consent-legal { font-size: .75rem; color: var(--stone-mid); opacity: .75; margin: 0; }
.map-consent-legal a { color: var(--sage); }

/* ──────────── KONTAKT / FORM ──────────── */
.kontakt-dark { background: var(--stone); }
.kontakt-dark .section-label { color: var(--sage-mid); }
.kontakt-dark .section-title { color: var(--white); }
.kontakt-dark .divider { background: var(--gold); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.kontakt-grid > div:first-child {
  display: flex;
  flex-direction: column;
}
.kontakt-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 3rem;
}
.kontakt-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.kontakt-card:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.kontakt-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(212,160,23,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontakt-card-icon svg { width: 20px; height: 20px; color: var(--sage-mid); }
.kontakt-card-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-mid); margin-bottom: .25rem; }
.kontakt-card-value { font-size: 1rem; color: var(--white); font-weight: 400; }

.kontakt-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 2.5rem;
}
.kontakt-form h3 { font-family: var(--ff-head); font-size: 1.3rem; color: var(--white); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 300;
  transition: border-color .2s;
  outline: none;
  appearance: none;
}
.form-group select option { background: var(--stone); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage-mid); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }

/* Light form variant */
.form-light .form-group label { color: var(--stone-mid); }
.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
  background: var(--white);
  border-color: var(--warm);
  color: var(--stone);
}
.form-light .form-group input:focus,
.form-light .form-group select:focus,
.form-light .form-group textarea:focus { border-color: var(--sage); }
.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder { color: #aaa; }
.form-light .form-consent label { color: var(--stone-mid); }

.form-consent {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.form-consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--sage); flex-shrink: 0; }
.form-consent label { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ──────────── DIAGNOSTIK STEPS ──────────── */
.diagnostik-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.diagnostik-steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.diagnostik-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: .78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h4 { font-family: var(--ff-head); font-size: 1rem; font-weight: 600; color: var(--stone); margin-bottom: .3rem; }
.step-body p { font-size: .87rem; color: var(--stone-mid); }

/* ──────────── LEISTUNGEN PAGE ──────────── */
.leistungen-category { padding: 5rem 0; }
.leistungen-category:nth-child(even) { background: #f0f0f0; }
.leistungen-category:nth-child(odd) { background: var(--cream); }
.leistungen-cat-header { margin-bottom: 3rem; }
.leistungen-cat-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--stone);
}
.leistungen-cat-header h2 em { color: var(--sage); font-style: italic; }
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-item {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--warm);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-item:hover { border-color: var(--sage-mid); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.service-item-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-item-icon svg { width: 18px; height: 18px; color: var(--sage); }
.service-item h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 600; color: var(--stone); margin-bottom: .5rem; }
.service-item p { font-size: .84rem; color: var(--stone-mid); line-height: 1.65; }

/* ──────────── ÜBER UNS PAGE ──────────── */
.ueber-intro-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: center;
}
.philosophie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.philosophie-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  border-top: 3px solid var(--sage);
}
.philosophie-card h3 { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; color: var(--stone); margin-bottom: .75rem; }
.philosophie-card p { font-size: .85rem; color: var(--stone-mid); line-height: 1.65; }

.quali-list { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
.quali-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .9rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--stone-mid);
  border-left: 3px solid var(--sage-mid);
}
.quali-row svg { width: 16px; height: 16px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.quali-row strong { color: var(--stone); font-weight: 500; display: block; margin-bottom: .1rem; }

.praxisbild-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

/* ──────────── BECKENBODEN PAGE ──────────── */
.beckenboden-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.vorteil-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--warm);
  transition: border-color .2s, box-shadow .2s;
}
.vorteil-card:hover { border-color: var(--sage-mid); box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.vorteil-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.vorteil-icon svg { width: 24px; height: 24px; color: var(--sage); }
.vorteil-card h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 600; color: var(--stone); margin-bottom: .5rem; }
.vorteil-card p { font-size: .84rem; color: var(--stone-mid); line-height: 1.65; }

.beckenboden-bilder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.beschwerden-beckenboden-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 2rem;
}

/* ──────────── NEWS / ARTIKEL ──────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.article-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--warm);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.article-card:focus-within { outline: 2px solid var(--sage); outline-offset: 2px; }
.article-card-img {
  aspect-ratio: 4/3;
  flex-shrink: 0;
  border-radius: 0;
  font-size: .72rem;
}
.article-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-category {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-lt);
  padding: .2rem .65rem;
  border-radius: 20px;
  margin-bottom: .6rem;
}
.article-date { font-size: .78rem; color: var(--stone-mid); margin-bottom: .5rem; }
.article-card-body h2 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.article-card-body p { font-size: .88rem; color: var(--stone-mid); line-height: 1.65; flex: 1; }
.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--sage);
  margin-top: 1rem;
  transition: gap .2s;
  text-decoration: none;
}
.article-read-more:hover { gap: .7rem; color: var(--sage); }
.article-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--stone-mid);
  font-size: .95rem;
}
.article-empty svg { width: 48px; height: 48px; opacity: .3; margin: 0 auto 1rem; display: block; }

/* Article full-read modal */
.article-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.65);
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.article-modal.open { display: flex; }
.article-modal-inner {
  background: var(--white);
  border-radius: 12px;
  max-width: 720px;
  width: 100%;
  padding: 3rem;
  position: relative;
  margin: auto;
}
.article-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--warm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--stone-mid);
  transition: background .2s, color .2s;
  line-height: 1;
}
.article-modal-close:hover { background: var(--stone); color: var(--white); }
.article-modal-header { margin-bottom: 2rem; }
.article-modal-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--stone);
  margin-top: .75rem;
  line-height: 1.25;
}
.article-modal-body p {
  font-size: .95rem;
  color: var(--stone-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* category filter bar */
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}
.news-filter-btn {
  padding: .4rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--warm);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--stone-mid);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.news-filter-btn:hover,
.news-filter-btn.active {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

@media (max-width: 900px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-modal-inner { padding: 2rem 1.25rem; }
}

/* ──────────── NEWSLETTER PAGE ──────────── */
.newsletter-hero {
  background: var(--stone);
  padding: 5rem 0;
  text-align: center;
}
.newsletter-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.newsletter-form-wrap h2 { font-family: var(--ff-head); font-size: 1.8rem; color: var(--stone); margin-bottom: .5rem; }
.newsletter-form-wrap p { font-size: .92rem; color: var(--stone-mid); margin-bottom: 2rem; }
.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.newsletter-benefit {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
}
.newsletter-benefit-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sage-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.newsletter-benefit-icon svg { width: 22px; height: 22px; color: var(--sage); }
.newsletter-benefit h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 600; color: var(--stone); margin-bottom: .5rem; }
.newsletter-benefit p { font-size: .84rem; color: var(--stone-mid); }

/* ──────────── CTA BANNER ──────────── */
.cta-banner {
  background: var(--sage);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: .95rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ──────────── FOOTER ──────────── */
footer { background: #1e1e1c; padding: 3rem 0 2rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.footer-brand > a img {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.footer-brand p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  margin-top: .75rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-brand .nav-logo-text span:first-child { color: var(--white); }
.footer-col h4 {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  text-decoration: none;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-socials { display: flex; gap: .75rem; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.footer-socials a:hover { border-color: var(--sage); background: rgba(212,160,23,.15); }
.footer-socials svg { width: 14px; height: 14px; color: rgba(255,255,255,.45); }

/* ──────────── STICKY MOBILE CTA ──────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--warm);
  padding: .75rem 1rem;
  gap: .75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.sticky-mobile-cta a { flex: 1; text-align: center; font-size: .8rem; padding: .75rem 1rem; }

/* ──────────── IMPRESSUM ──────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.legal-content h2 { font-family: var(--ff-head); font-size: 1.6rem; color: var(--stone); margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.05rem; font-weight: 500; color: var(--stone); margin-top: 1.5rem; margin-bottom: .5rem; }
.legal-content p { font-size: .9rem; color: var(--stone-mid); line-height: 1.75; margin-bottom: 1rem; }
.legal-content a { color: var(--sage); }

/* ──────────── GENERIC 2-COLUMN GRID ──────────── */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 1050px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .hero-badges { display: none; }
  .hero-content { padding: 2.5rem 1.5rem 2rem; }
  .hero-actions { margin-bottom: 1.5rem; }

  /* Grids */
  .beschwerden-grid,
  .diagnostik-inner,
  .oz-grid,
  .kontakt-grid,
  .ueber-intro-grid,
  .beckenboden-intro,
  .grid-2col { grid-template-columns: 1fr; gap: 2.5rem; }

  .leistungen-grid,
  .team-grid { grid-template-columns: 1fr; }
  .leistungen-grid .leistung-card:nth-child(-n+3),
  .leistungen-grid .leistung-card:nth-child(n+4) { grid-column: span 1; }

  .bewertungen-grid { grid-template-columns: 1fr; }
  .quali-grid { grid-template-columns: 1fr 1fr; }
  .service-list-grid { grid-template-columns: 1fr 1fr; }
  .philosophie-grid { grid-template-columns: 1fr; }
  .praxisbild-grid { grid-template-columns: 1fr 1fr; }
  .vorteile-grid { grid-template-columns: 1fr; }
  .newsletter-benefits { grid-template-columns: 1fr; }
  .beschwerden-beckenboden-list { grid-template-columns: 1fr; }
  .beckenboden-bilder { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .beschwerden-visual { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .service-list-grid { grid-template-columns: 1fr; }
  .quali-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { text-align: center; }
  .newsletter-form-wrap { padding: 2rem 1.25rem; }
  .praxisbild-grid { grid-template-columns: 1fr; }
  .beckenboden-bilder { grid-template-columns: 1fr; }
  .beschwerden-beckenboden-list { grid-template-columns: 1fr; }
}

/* ──────────── FOKUS (Barrierefreiheit WCAG 2.4.7) ──────────── */
/* Tastatur-Fokusring für alle interaktiven Elemente */
a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 2px;
}
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--sage-mid);
  outline-offset: -1px;
}
details summary:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
  border-radius: 4px;
}
.news-filter-btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

/* ──────────── ANIMATIONS ──────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .fade-up.visible { opacity: 1; transform: none; }
}

/* Spacing utilities */
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }
.text-center { text-align: center; }
.mt-btn { margin-top: 2.5rem; }
.mt-btn-sm { margin-top: 1.5rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-group-center { justify-content: center; }
