/* medicina.berlin – Static HTML Version
   Design: "Klinische Stille" – Cormorant Garamond + Poppins, Plum + Magenta
   Exact 1:1 port from React/Tailwind source
*/

/* ─── LOCAL FONTS ───────────────────────────────────────────────── */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/poppins-300.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poppins-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/poppins-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/poppins-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/cormorant-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/cormorant-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-400i.ttf') format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/cormorant-600i.ttf') format('truetype');
}

/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum:          #3d0030;   /* oklch(0.22 0.12 320) */
  --magenta:       #7a1f6e;   /* oklch(0.42 0.22 330) */
  --magenta-light: #a0438f;
  --ivory:         #faf5fa;
  --ivory-dark:    #f3eaf3;
  --border:        #e8d8e8;
  --gray-text:     #6b6b6b;
  --gray-light:    #6b7280;
  --white:         #ffffff;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Poppins', system-ui, sans-serif;
  --radius-sm:     2px;
  --container-max: 1200px;
  --container-pad: 1.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gray-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--plum);
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ─── CONTAINER ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* ─── ACCENT LINE ───────────────────────────────────────────────── */
.accent-line {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--magenta);
  margin-bottom: 1rem;
}
.accent-line.center { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--plum);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
  font-family: var(--font-body);
  box-sizing: border-box;
}
.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--plum);
  background: transparent;
  border: 1px solid var(--plum);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  font-family: var(--font-body);
  box-sizing: border-box;
}
.btn-outline:hover { background: #f9f4f9; }

.btn-outline-magenta {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--magenta);
  background: transparent;
  border: 1px solid var(--magenta);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  font-family: var(--font-body);
  box-sizing: border-box;
}
.btn-outline-magenta:hover { background: var(--ivory); }

/* ─── NAVBAR ────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 12px rgba(61,0,48,0.07);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .navbar-inner { height: 5rem; } }

.nav-logo { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--plum);
}
@media (min-width: 768px) { .nav-logo-name { font-size: 1.5rem; } }
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  font-family: var(--font-body);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #374151;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--magenta); }

.nav-cta {
  margin-left: 0.25rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--magenta);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

/* Telefon-CTA in Navigation */
.nav-tel {
  margin-left: 0.25rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--plum);
  border: 1.5px solid var(--plum);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-tel:hover { background: var(--plum); color: white; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #374151;
  font-family: var(--font-body);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--magenta); }
.nav-dropdown-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(61,0,48,0.10);
  min-width: 200px;
  padding: 0.75rem 0 0.5rem;
  z-index: 200;
  /* Unsichtbare Brücke verhindert Hover-Lücke */
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #374151;
  font-family: var(--font-body);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--magenta); background: var(--ivory); }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #374151;
  transition: transform 0.2s, opacity 0.2s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(61,0,48,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  padding: 1.5rem var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  font-family: var(--font-body);
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--magenta); }
.mobile-menu .btn-primary { margin-top: 0.5rem; text-align: center; width: 100%; padding: 0.75rem; }
.mobile-menu-section { display: flex; flex-direction: column; gap: 0.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); margin-bottom: 0.5rem; }
.mobile-menu-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--magenta); font-family: var(--font-body); padding: 0.25rem 0; }

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.93) 42%, rgba(255,255,255,0.65) 62%, rgba(255,255,255,0.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 7rem;
  padding-bottom: 5rem;
  max-width: 42rem;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--plum);
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: #374151;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.hero-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  font-family: var(--font-body);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ─── SECTIONS ──────────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-ivory { background: var(--ivory-dark); }
.section-white { background: var(--white); }

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .accent-line { margin: 0 auto 1rem; }

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.7;
  max-width: 40rem;
  font-family: var(--font-body);
}

/* ─── SCHWERPUNKTE GRID ─────────────────────────────────────────── */
.schwerpunkte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .schwerpunkte-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .schwerpunkte-grid { grid-template-columns: repeat(4, 1fr); } }

.schwerpunkt-card { display: block; cursor: pointer; }
.schwerpunkt-img {
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 4/3;
  background: #f9f4f9;
}
.schwerpunkt-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.schwerpunkt-card:hover .schwerpunkt-img img { transform: scale(1.05); }
.schwerpunkt-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.schwerpunkt-card:hover h3 { color: var(--magenta); }
.schwerpunkt-card p {
  font-size: 0.75rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.schwerpunkt-more {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
  font-family: var(--font-body);
  transition: text-decoration 0.2s;
}
.schwerpunkt-card:hover .schwerpunkt-more { text-decoration: underline; }

/* ─── POSITIONIERUNG (2-col) ────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }

.feature-cards { display: flex; flex-direction: column; gap: 1rem; }
.feature-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
}
.feature-bar {
  width: 3px;
  height: 2.5rem;
  background: var(--magenta);
  flex-shrink: 0;
  border-radius: 2px;
  margin-top: 2px;
}
.feature-card-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
}
.feature-card-text {
  font-size: 0.75rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* ─── QUOTES GRID ───────────────────────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 640px)  { .quotes-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .quotes-grid { grid-template-columns: repeat(3, 1fr); } }

.quote-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.quote-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--plum);
  line-height: 1.5;
}

/* ─── SCHRITTE ──────────────────────────────────────────────────── */
.schritte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px)  { .schritte-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .schritte-grid { grid-template-columns: repeat(4, 1fr); } }

.schritt-nr {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.schritt-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.5rem;
}
.schritt-text {
  font-size: 0.8rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.7;
  font-family: var(--font-body);
}

/* ─── CTA SECTION ───────────────────────────────────────────────── */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  background: var(--ivory-dark);
}
.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-body);
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}

/* ─── PAGE HEADER ───────────────────────────────────────────────── */
.page-header {
  padding: 9rem 0 4rem;
  background: var(--ivory-dark);
  border-bottom: 1px solid var(--border);
}
.page-header .section-eyebrow { margin-bottom: 0.5rem; }
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #4b5563;
  max-width: 40rem;
  line-height: 1.7;
  font-family: var(--font-body);
}

.page-header-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ─── CONTENT SECTIONS ──────────────────────────────────────────── */
.content-section { padding: 5rem 0; }
.content-section.alt { background: var(--ivory-dark); }

.leistungen-liste {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px)  { .leistungen-liste { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .leistungen-liste { grid-template-columns: repeat(3, 1fr); } }

.leistung-item {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.leistung-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--plum);
  margin-bottom: 0.5rem;
}
.leistung-item p {
  font-size: 0.8rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.6;
  font-family: var(--font-body);
}

.highlight-box {
  background: var(--ivory);
  border-left: 3px solid var(--magenta);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  color: #374151;
  font-family: var(--font-body);
}

/* ─── METHODEN ──────────────────────────────────────────────────── */
.methoden-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .methoden-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .methoden-grid { grid-template-columns: repeat(3, 1fr); } }

.methode-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.methode-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.methode-item span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--plum);
  font-family: var(--font-body);
}

/* ─── KONTAKT FORM ──────────────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) { .kontakt-grid { grid-template-columns: 1.4fr 1fr; } }

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--plum);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--magenta); }
textarea { resize: vertical; min-height: 140px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--magenta);
}
.form-check label {
  font-size: 0.75rem;
  font-weight: 300;
  color: #4b5563;
  margin: 0;
}
.form-check label a { color: var(--magenta); text-decoration: underline; }

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--magenta);
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
  font-family: var(--font-body);
  margin-top: 0.5rem;
}
.btn-submit:hover { opacity: 0.88; }
.form-status {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
}
.form-status p { margin: 0; }
.form-success { color: var(--plum); background: var(--ivory); }
.form-error { color: #7f1d1d; background: #fff7f7; border-color: #e7b7b7; }


.kontakt-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.kontakt-info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.kontakt-info-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plum);
  font-family: var(--font-body);
  margin-bottom: 0.2rem;
}
.kontakt-info-item p, .kontakt-info-item a {
  font-size: 0.875rem;
  font-weight: 300;
  color: #4b5563;
  font-family: var(--font-body);
  line-height: 1.6;
}
.kontakt-info-item a:hover { color: var(--magenta); }

.kontakt-hinweis {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--ivory);
  border-left: 3px solid var(--magenta);
  font-size: 0.8rem;
  font-weight: 300;
  color: #374151;
  font-family: var(--font-body);
  line-height: 1.6;
}

/* ─── NEWS ──────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px)  { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }

.news-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.3s;
}
.news-card:hover { box-shadow: 0 4px 24px rgba(61,0,48,0.1); }
.news-card-img { aspect-ratio: 16/9; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 1.5rem; }
.news-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.news-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  font-family: var(--font-body);
}
.news-date {
  font-size: 0.7rem;
  color: #6b7280;
  font-family: var(--font-body);
}
.news-card h3 {
  font-size: 1.25rem;
  color: var(--plum);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.news-card p {
  font-size: 0.8rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.7;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.news-keywords { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.news-keyword {
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  background: var(--ivory);
  color: var(--magenta);
  border-radius: 2px;
  font-family: var(--font-body);
}
.news-more {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
  font-family: var(--font-body);
}
.news-more:hover { text-decoration: underline; }

/* ─── KOSTEN GRID ───────────────────────────────────────────────── */
.kosten-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .kosten-grid { grid-template-columns: repeat(3, 1fr); } }

.kosten-item {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
}
.kosten-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.kosten-preis {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--magenta);
  margin-bottom: 0.75rem;
}
.kosten-item p {
  font-size: 0.8rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* ─── ANSATZ GRID ───────────────────────────────────────────────── */
.ansatz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .ansatz-grid { grid-template-columns: repeat(3, 1fr); } }

.ansatz-item { text-align: center; }
.ansatz-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.ansatz-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.ansatz-item p {
  font-size: 0.8rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.footer-inner { padding: 3rem 0 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.6;
  font-family: var(--font-body);
}
.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  font-family: var(--font-body);
  margin-bottom: 0.75rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col a {
  font-size: 0.75rem;
  font-weight: 300;
  color: #4b5563;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--magenta); }
.footer-col a.footer-phone { font-weight: 500; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p, .footer-bottom span {
  font-size: 0.7rem;
  color: #6b7280;
  font-family: var(--font-body);
}
.footer-bottom a { color: #6b7280; transition: color 0.2s; }
.footer-bottom a:hover { color: #4b5563; }
.footer-legal { display: flex; gap: 1rem; }

/* ─── TEXT COLOR UTILITIES ──────────────────────────────────────── */
.text-body     { color: var(--text-body); }
.text-secondary { color: var(--text-secondary); }
.text-meta     { color: var(--text-meta); }

/* ─── ANIMATIONS (CSS only) ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }
.fade-up-6 { animation-delay: 0.6s; }
.fade-up-7 { animation-delay: 0.7s; }

/* Scroll-triggered: add .visible class via JS */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── UTILITIES ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.max-w-prose { max-width: 40rem; }
em { font-style: italic; color: var(--magenta); }


/* ===== AKTUELLES ===== */
.aktuelles-header {
  padding: 8rem 0 4rem;
  background-color: #f7f0f7;
}

.aktuelles-header-inner {
  max-width: 720px;
}

.aktuelles-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  color: #3d0030;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.aktuelles-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  margin-top: 1rem;
}

.aktuelles-section {
  padding: 5rem 0;
  background: #fff;
}

/* Praxis-Meldungen auf aktuelles.html */
.aktuelles-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e8dde8;
}

.aktuelles-meldung {
  display: block;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e8dde8;
}

.aktuelles-meldung-meta {
  margin-bottom: 0.85rem;
}

.aktuelles-meldung-content {
  max-width: 58rem;
}

.aktuelles-meldung-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--plum);
  margin: 0 0 1rem;
}

.aktuelles-meldung-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.aktuelles-meldung-content p:last-child {
  margin-bottom: 0;
}

.menopause-meldung-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.menopause-siegel-wrap {
  width: 12.5rem;
  margin: 0;
}

.menopause-siegel {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.buch-meldung-layout {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.buch-cover-link {
  display: block;
  width: 100%;
  border: 1px solid #e8dde8;
}

.buch-cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.buch-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--magenta);
  text-decoration: none;
  text-transform: uppercase;
}

.buch-link:hover,
.buch-cover-link:hover {
  opacity: 0.8;
}

/* Kleine Praxisgalerie auf die-praxis.html */
.praxis-galerie-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.praxis-mini-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(17rem, 5fr);
  grid-template-areas:
    "empfang bemer";
  gap: 1.25rem;
  align-items: start;
  margin-top: 2.5rem;
}

.praxis-mini-item {
  margin: 0;
  overflow: hidden;
  background: #efe8ee;
}

.praxis-mini-item--empfang {
  grid-area: empfang;
}

.praxis-mini-item--bemer {
  grid-area: bemer;
}

.praxis-mini-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.praxis-mini-image--bemer {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ivory);
}

.praxis-mini-item figcaption {
  padding: 1.2rem 1.3rem 1.35rem;
}

.praxis-mini-label {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--magenta);
  text-transform: uppercase;
}

.praxis-mini-item figcaption p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

.praxis-intro--text {
  grid-template-columns: minmax(0, 1fr);
}

.praxis-galerie-header {
  margin-top: 4.5rem;
}

.praxis-slidergalerie {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.5rem;
  margin-bottom: 5rem;
}

.praxis-slidergalerie-item {
  margin: 0;
  overflow: hidden;
  background: var(--ivory-dark);
}

.praxis-slidergalerie-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.praxis-ausstattung-detail {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.praxis-ausstattung-detail img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  background: transparent;
}

.praxis-ausstattung-detail h3 {
  margin: 0.65rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--plum);
}

.praxis-ausstattung-detail p {
  max-width: 38rem;
  margin: 0;
  color: var(--text-secondary);
}

@media (max-width: 980px) {
  .praxis-slidergalerie {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .aktuelles-meldung {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }

  .menopause-meldung-layout {
    grid-template-columns: 1fr;
  }

  .menopause-siegel-wrap {
    max-width: 10rem;
  }

  .buch-meldung-layout {
    grid-template-columns: 6.5rem minmax(0, 1fr);
    gap: 1.25rem;
  }

  .praxis-mini-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "empfang"
      "bemer";
    gap: 1rem;
  }

  .praxis-slidergalerie {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 3.5rem;
  }

  .praxis-ausstattung-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
  }
}

.aktuelles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .aktuelles-grid {
    grid-template-columns: 1fr;
  }
}

.aktuelles-card {
  display: flex;
  flex-direction: column;
  border-top: 2px solid #e8dde8;
  padding-top: 1.75rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.aktuelles-card:hover {
  opacity: 0.85;
}

.aktuelles-card:hover .aktuelles-card-titel {
  color: #7a1f6e;
}

.aktuelles-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.aktuelles-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: #7a1f6e;
  background: #f7f0f7;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.02em;
}

.aktuelles-datum {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #aaa;
}

.aktuelles-card-titel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #3d0030;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  transition: color 0.2s ease;
}

.aktuelles-card-teaser {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.25rem;
}

.aktuelles-weiterlesen {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #7a1f6e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

/* ─── METHODEN-KARTEN (methoden.html) ───────────────────────────── */
.methode-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-top: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.methode-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.methode-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.2;
  margin: 0;
}
.methode-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: #374151;
  line-height: 1.75;
  margin: 0;
}

/* ─── ABLAUF PRAXIS (7 Schritte) ────────────────────────────────── */
.ablauf-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .ablauf-layout { grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start; }
}
.ablauf-header {
  position: sticky;
  top: 6rem;
}
.ablauf-timeline {
  display: flex;
  flex-direction: column;
}
.ablauf-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  align-items: start;
}
.ablauf-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ablauf-num {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--magenta);
  background: #f7f0f7;
  border: 1px solid #e0cce0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}
.ablauf-num-last {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
}
.ablauf-line {
  width: 1px;
  flex-grow: 1;
  min-height: 2rem;
  background: var(--border);
  margin-top: 0.25rem;
}
.ablauf-body {
  padding-bottom: 2rem;
}
.ablauf-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.ablauf-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
}

/* ─── AKTUELLES VORSCHAU (Startseite) ───────────────────────────── */
.aktuelles-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.aktuelles-preview-alle { flex-shrink: 0; align-self: flex-end; }
.aktuelles-preview-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .aktuelles-preview-layout { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
}
.aktuelles-main-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 2rem 0;
  border-top: 2px solid var(--plum);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.aktuelles-main-card:hover { opacity: 0.85; }
.aktuelles-main-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--plum);
  line-height: 1.25;
  margin: 0;
}
.aktuelles-main-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: #374151;
  line-height: 1.8;
  margin: 0;
}
.aktuelles-side-cards {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--border);
}
.aktuelles-side-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.aktuelles-side-card:hover { opacity: 0.8; }
.aktuelles-side-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.3;
  margin: 0;
}
.aktuelles-side-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}
.aktuelles-preview-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--magenta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
}
.aktuelles-preview-more {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--magenta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ─── LEISTUNGEN (leistungen.html) ──────────────────────────────── */
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px)  { .leistungen-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .leistungen-grid { grid-template-columns: repeat(3, 1fr); } }

.leistung-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  background: transparent;
}
.leistung-bar {
  width: 2px;
  height: 2.5rem;
  background: var(--magenta);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.leistung-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.leistung-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.2;
  margin: 0;
}
.leistung-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: #374151;
  line-height: 1.75;
  margin: 0;
}

/* ─── EINSATZGEBIETE ─────────────────────────────────────────────── */
.einsatz-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 0;
  margin: 2.75rem 0 0;
  max-width: none;
  border-top: 1px solid var(--border);
}

.einsatz-header {
  max-width: 52rem;
  margin: 0;
  text-align: left;
}

.einsatz-header .section-desc {
  max-width: 44rem;
  margin: 0;
}

.einsatz-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 5.4rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}
.einsatz-dot {
  width: 5px;
  height: 5px;
  border-radius: 0;
  background: var(--magenta);
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.einsatz-item span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.6;
}

.einsatz-hinweis {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  text-align: left;
  letter-spacing: normal;
}

@media (max-width: 899px) {
  .einsatz-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }
}

@media (max-width: 599px) {
  .einsatz-grid { grid-template-columns: 1fr; }
  .einsatz-item { min-height: auto; padding: 1rem 0; }
}

/* ─── INLINE-STYLE UTILITIES (refactored) ───────────────────────── */

/* Fließtext-Varianten */
.prose {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.prose-mb15 {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}
.prose-mb2 {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-family: var(--font-body);
}
.prose-relaxed {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.9;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.prose-relaxed-mb15 {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.9;
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}
.prose-relaxed-nm {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.9;
  font-family: var(--font-body);
}
.prose-18 {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  font-family: var(--font-body);
}
.prose-175 {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 1rem;
  font-family: var(--font-body);
}
.prose-center {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-body);
}
.prose-center-mb15 {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  text-align: center;
}

/* Bild-Utilities */
.img-cover  { width: 100%; height: 100%; object-fit: cover; }
.img-contain { width: 100%; object-fit: contain; background: #f9f4f9; border-radius: 2px; }

/* Abstand-Utilities */
.mt-2rem  { margin-top: 2rem; }
.mt-25rem { margin-top: 2.5rem; }
.mb-15rem { margin-bottom: 1.5rem; }
.mb-2rem  { margin-bottom: 2rem; }

/* Layout-Utilities */
.max-w-760  { max-width: 760px; }
.max-w-760c { max-width: 760px; margin: 0 auto; }
.max-w-720c { max-width: 720px; }
.max-w-680c { max-width: 680px; margin: 0 auto; }
.flex-center-wrap { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 0.5rem; }
.flex-start { display: flex; align-items: flex-start; }

/* Inhalts-Überschrift */
.content-h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--plum);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* Zitat-Block */
.zitat-block {
  border-left: 2px solid var(--magenta);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: #faf5fa;
}
.zitat-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--plum);
  line-height: 1.6;
  margin: 0;
}

/* Hinweis-Text */
.hinweis-text {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-meta);
  font-family: var(--font-body);
  margin-top: 2rem;
  text-align: center;
  letter-spacing: 0.05em;
}

/* Icon-Größe */
.icon-lg { font-size: 1.5rem; }

/* CTA inline-flex */
.btn-inline { display: inline-flex; margin-top: 2rem; }

/* ─── SKIP NAVIGATION ────────────────────────────────────────────── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--plum);
  color: white;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 0 0 2px 2px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }

/* ─── COOKIE BANNER ──────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 760px;
  background: var(--plum);
  color: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 9000;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
}
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
.cookie-banner a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.cookie-banner a:hover { color: white; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--magenta);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 1px;
}
.cookie-btn-accept:hover { background: #9b2d8a; }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  cursor: pointer;
  border-radius: 1px;
}
.cookie-btn-decline:hover { color: white; border-color: rgba(255,255,255,0.6); }
.cookie-banner.hidden { display: none; }

/* ─── PRINT CSS ──────────────────────────────────────────────────── */
@media print {
  .navbar, .cookie-banner, .skip-nav, .burger, .mobile-menu,
  .btn-primary, .btn-secondary, .nav-cta, footer .footer-bottom,
  .reveal { display: none !important; }

  body { font-size: 11pt; color: #000; background: white; }
  .page-header { background: white !important; padding: 1cm 0 0.5cm; }
  .page-header h1 { color: #3d0030; font-size: 20pt; }
  .content-section { padding: 0.5cm 0; }
  .container { max-width: 100%; padding: 0 1cm; }
  a { color: #3d0030; text-decoration: none; }
  a[href]:after { content: " (" attr(href) ")"; font-size: 8pt; color: #666; }
  a[href^="#"]:after, a[href^="javascript"]:after { content: ""; }
  footer { border-top: 1pt solid #ccc; padding-top: 0.5cm; font-size: 9pt; }
  .footer-grid, .footer-bottom { display: block; }
  img { max-width: 100%; page-break-inside: avoid; }
  h2, h3 { page-break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
}

/* ─── KOSTEN-SEITE ──────────────────────────────────────────────── */
.kosten-gruppe {
  margin-bottom: 3rem;
}
.kosten-gruppe-titel {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.kosten-tabelle {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.kosten-tabelle td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  vertical-align: top;
  line-height: 1.6;
}
.kosten-tabelle td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 500;
  color: var(--plum);
  min-width: 120px;
  padding-left: 1.5rem;
}
.kosten-tabelle tr:last-child td {
  border-bottom: none;
}
.kosten-hinweis {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-meta);
  margin-top: 0.2rem;
}
.kosten-karten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.kosten-karte {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--ivory);
}
.kosten-preis {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--plum);
  margin: 0.75rem 0 0.5rem;
}
.prose-meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-meta);
}
@media (max-width: 640px) {
  .kosten-karten { grid-template-columns: 1fr; }
  .kosten-tabelle td:last-child { white-space: normal; }
}

/* ─── ÜBER MICH – PORTRAIT + ZITAT ─────────────────────────────── */
.ueber-portrait-wrap {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.portrait-platzhalter {
  flex-shrink: 0;
  width: 200px;
  height: 260px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.ueber-mich-zitat {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--plum);
  margin: 0 0 1rem 0;
  padding: 0;
  border: none;
}
.ueber-mich-zitat::before { content: none; }
.ueber-mich-name {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-meta);
  margin: 0;
}
@media (max-width: 640px) {
  .ueber-portrait-wrap { flex-direction: column; }
  .portrait-platzhalter { width: 100%; height: 220px; }
}

/* ─── TEAM BANNER ───────────────────────────────────────────────── */
.team-banner-section {
  padding: 2rem 0 0;
}
.team-banner-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  border-radius: 2px;
}

/* ─── UTILITY: FONT WEIGHT ──────────────────────────────────────── */
.fw-500 { font-weight: 500; }

/* Legal list for Datenschutz/Impressum */
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.legal-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light, #e8e4dc);
  line-height: 1.7;
  color: var(--text-body);
}
.legal-list li:last-child {
  border-bottom: none;
}

/* ===== ANFAHRT PAGE ===== */
.max-w-960 { max-width: 960px; margin: 0 auto; }
.mt-3rem   { margin-top: 3rem; }

.anfahrt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .anfahrt-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.anfahrt-info {}

.anfahrt-maps-btn {
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
}

.anfahrt-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.anfahrt-map-link {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: box-shadow 0.2s ease;
}
.anfahrt-map-link:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.18); }

.anfahrt-map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.anfahrt-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.anfahrt-map-link:hover .anfahrt-map-overlay { opacity: 1; }

.anfahrt-haus-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}

.oeffnungszeiten-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.oeffnungszeiten-table td {
  padding: 0.4rem 0;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}
.oeffnungszeiten-table td:first-child {
  font-weight: 600;
  width: 130px;
  color: var(--text-heading);
}

/* ===== PRIVATPRAXIS PAGE ===== */
.privatpraxis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .privatpraxis-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.privatpraxis-karten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pp-karte {
  border-left: 3px solid var(--plum, #6b3fa0);
  padding: 0.9rem 1.2rem;
  background: var(--surface-alt, #f9f7fb);
}
.pp-karte h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
}
.pp-karte p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.faq-liste {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .faq-liste { grid-template-columns: 1fr; }
}

.faq-item {
  border-top: 1px solid var(--border, #e5e0ec);
  padding-top: 1rem;
}
.faq-frage {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}
.faq-antwort {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* ===== ANFAHRT: Anfahrtswege-Grid ===== */
.anfahrt-wege {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-top: 2rem;
}
@media (max-width: 640px) {
  .anfahrt-wege { grid-template-columns: 1fr; gap: 1.5rem; }
}
.anfahrt-weg {
  border-top: 1px solid var(--border, #e5e0ec);
  padding-top: 1.2rem;
}
.anfahrt-weg-titel {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.anfahrt-weg p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}


/* Hilfsklassen für zugängliche Status- und Spam-Felder */
.is-hidden { display: none !important; }
.honeypot { display: none; }

/* Startseiten-Hintergrundbild ohne Inline-CSS */
.hero-bg {
  background-image: url('images/hero-praxis.webp');
  background-position: center 40%;
}

@media (max-width: 640px) {
  .hero {
    min-height: 44rem;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 7.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-eyebrow {
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    margin-bottom: 0.55rem;
  }

  .hero-desc {
    margin-bottom: 1.75rem;
    font-size: 0.825rem;
    line-height: 1.6;
  }

  .hero-btns {
    gap: 0.75rem;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    padding: 0.8rem 1.1rem;
  }
}

/* Letzter Schritt der Ablauf-Timeline ohne zusätzlichen unteren Abstand */
.ablauf-item:last-child .ablauf-body { padding-bottom: 0; }

/* Ergänzung zu regulären Sprechzeiten */
.sprechzeiten-hinweis {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
