@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ============================================================
   ZAHNÄRZTE AUF DER HOLTENAUER – DR. DOMINIK HUNOLD
   Redesign: Dunkles Charcoal + Warm-Kupfer-Akzent
   Angelehnt an das bestehende Jimdo-Design + moderne Enhancements
   Mobile-first, responsive (768px, 1024px)
   ============================================================ */


/* ────────────────────────────────────────────
   1. CSS-VARIABLEN
──────────────────────────────────────────── */
:root {
  /* Hauptfarben */
  --color-dark:          #0d0d0d;
  --color-dark-2:        #151515;
  --color-dark-3:        #1e1e1e;

  /* Warm-Kupfer / Gold */
  --color-copper:        #9D8060;
  --color-copper-light:  #C4A882;
  --color-copper-pale:   #2a2318;
  --color-copper-bg:     #111008;

  /* Neutral – Dark Theme */
  --color-white:         #ffffff;
  --color-off-white:     #181818;
  --color-border:        rgba(255,255,255,0.09);
  --color-text:          #e8e3dc;
  --color-text-muted:    #b0a99f;
  --color-text-light:    #6e6a65;

  /* Typografie */
  --font-heading:  'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-body:     'Nunito', 'Helvetica Neue', Arial, sans-serif;

  /* Nav-Höhe */
  --nav-height: 68px;

  /* Übergänge */
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --duration: 0.4s;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-copper: 0 8px 32px rgba(122,102,82,0.25);

  /* Radien */
  --radius:    4px;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  /* Abstände */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 7rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--color-copper);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--color-copper-light); }

:focus-visible {
  outline: 2px solid var(--color-copper);
  outline-offset: 3px;
}

ul[role="list"], ol[role="list"] { list-style: none; }

/* ────────────────────────────────────────────
   3. LAYOUT-HELFER
──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-lg); }
}

.centered { text-align: center; }

/* ────────────────────────────────────────────
   4. TYPOGRAFIE
──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  color: #f4f0ea;
}

/* Abschnitts-Titel (große spaced-caps Ästhetik wie original) */
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: var(--space-sm);
}

.section-title--light { color: var(--color-white); }

/* Dekor-Trennstrich */
.title-divider {
  width: 0;
  max-width: 92vw;
  height: 2px;
  background: var(--color-copper);
  margin-bottom: var(--space-md);
  transition: width 0.8s 0.4s var(--ease-out);
}
.title-divider.centered { margin-inline: auto; }
.reveal.visible .title-divider { width: 48px; }

/* Einleitungstext */
.section-intro {
  max-width: 660px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

/* ────────────────────────────────────────────
   5. BUTTONS (Pill-Stil wie original)
──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

/* Dunkel (wie die original Pill-Buttons) */
.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.btn-dark:hover {
  background: var(--color-dark-2);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* Kupfer / Primary */
.btn-copper,
.btn-primary {
  background: var(--color-copper);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.btn-copper:hover,
.btn-primary:hover {
  background: var(--color-copper-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-copper);
}

/* Weiß (auf dunklem Hintergrund) */
.btn-white {
  background: rgba(255,255,255,0.07);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-white:hover {
  background: rgba(255,255,255,0.13);
  color: var(--color-white);
  transform: translateY(-2px);
  border-color: var(--color-copper);
}

/* Umrandeter Button */
.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.8);
}

/* ────────────────────────────────────────────
   6. SHIMMER-ANIMATION (CTA-Button)
──────────────────────────────────────────── */
@keyframes shimmerSlide {
  0%   { left: -100%; }
  55%  { left: 120%; }
  100% { left: 120%; }
}

.shimmer-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.3) 50%, transparent 65%);
  animation: shimmerSlide 3s ease-in-out infinite;
  pointer-events: none;
}

/* ────────────────────────────────────────────
   7. NAVIGATION
──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* Ausgangszustand: transparent/dunkel wie auf der echten Seite */
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

/* Beim Scrollen: noch solider + Schatten */
.site-header.scrolled {
  background: rgba(26, 26, 26, 0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.navbar { height: var(--nav-height); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo/Praxisname */
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  line-height: 1.2;
  color: var(--color-white);
}

.nav-logo-icon {
  height: 26px;
  width: auto;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5px;
}

.nav-logo-primary {
  display: block;
  height: 17px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-logo-secondary {
  font-size: 0.5rem;
  color: var(--color-copper-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
  text-align: right;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-white);
  transition: transform var(--duration) var(--ease), opacity var(--duration);
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Menü – Mobile */
.nav-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(26,26,26,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-sm) 0 var(--space-md);
  flex-direction: column;
}

.nav-menu.open { display: flex; }

.nav-link {
  display: block;
  padding: 0.7rem var(--space-md);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--duration), background var(--duration);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
  background: rgba(122,102,82,0.15);
}

.nav-link.active { color: var(--color-copper-light); }

/* ── NAV CHATBOT WIDGET ── */
.nav-chat-wrap {
  display: flex;
  align-items: center;
  margin-left: var(--space-sm);
}
.nav-chat-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 4px 6px 4px 14px;
  gap: 6px;
  transition: border-color 0.2s;
}
.nav-chat-form:focus-within {
  border-color: rgba(157,128,96,0.5);
}
.nav-chat-input {
  background: none;
  border: none;
  outline: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  width: 170px;
}
.nav-chat-input::placeholder { color: var(--color-text-light); }
.nav-chat-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--color-copper);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-chat-btn:hover { background: var(--color-copper-light); }
.nav-chat-btn svg { width: 13px; height: 13px; }

/* ── CHATBOT PANEL ── */
.chatbot-panel {
  position: fixed;
  bottom: 96px; right: 20px;
  width: min(340px, calc(100vw - 32px));
  max-height: calc(100vh - 128px);
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 10px 48px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9997;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.chatbot-panel.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.chatbot-convo {
  flex: 1; overflow-y: auto;
  padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 120px; max-height: 300px;
  scrollbar-width: none;
}
.chatbot-convo::-webkit-scrollbar { display: none; }
.chatbot-msg { display: flex; flex-direction: column; max-width: 82%; }
.chatbot-msg.bot { align-self: flex-start; }
.chatbot-msg.user { align-self: flex-end; }
.chatbot-bubble {
  padding: 8px 12px; border-radius: 10px;
  font-size: 13px; font-family: var(--font-body);
  font-weight: 300; line-height: 1.55;
}
.chatbot-msg.bot .chatbot-bubble {
  background: rgba(255,255,255,0.07); color: var(--color-text);
  border: 1px solid var(--color-border); border-bottom-left-radius: 3px;
}
.chatbot-msg.user .chatbot-bubble {
  background: var(--color-copper); color: #fff;
  font-weight: 400; border-bottom-right-radius: 3px;
}
.chatbot-time { font-size: 10px; color: var(--color-text-light); margin-top: 3px; font-family: var(--font-body); }
.chatbot-msg.user .chatbot-time { text-align: right; }
.chatbot-typing { display: flex; gap: 4px; align-items: center; padding: 4px 2px; }
.chatbot-typing span { width: 5px; height: 5px; background: var(--color-copper); border-radius: 50%; animation: cbDot 1.2s ease-in-out infinite; }
.chatbot-typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes cbDot { 0%,80%,100%{transform:scale(.7);opacity:.4;} 40%{transform:scale(1);opacity:1;} }
.chatbot-panel-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; color: var(--color-text-light);
  cursor: pointer; font-size: 15px; line-height: 1; padding: 4px; z-index: 1;
  transition: color 0.15s;
}
.chatbot-panel-close:hover { color: var(--color-text); }
.chatbot-input-row {
  display: flex; gap: 7px; align-items: center;
  padding: 10px 12px;
  border-top: 1px solid var(--color-border);
  background: var(--color-dark-2); flex-shrink: 0;
}
.chatbot-panel-input {
  flex: 1; background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border); border-radius: 8px;
  padding: 7px 11px; font-family: var(--font-body);
  font-size: 13px; font-weight: 300; color: var(--color-text); outline: none;
}
.chatbot-panel-input:focus { border-color: rgba(157,128,96,0.5); }
.chatbot-panel-input::placeholder { color: var(--color-text-light); }
.chatbot-panel-send {
  width: 32px; height: 32px;
  background: var(--color-copper); border: none; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.15s;
}
.chatbot-panel-send:hover { background: var(--color-copper-light); }
.chatbot-panel-send svg { width: 13px; height: 13px; }

@media (max-width: 1023px) {
  .chatbot-panel { width: 100%; border-radius: 0; bottom: 0; right: 0; }
  .nav-chat-wrap { display: none !important; }
}

/* Desktop ab 1024px */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 0;
  }

  .nav-link {
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius);
  }

  .nav-link:hover,
  .nav-link.active { background: rgba(255,255,255,0.06); }

  .nav-cta-btn { margin: 0 0 0 0.5rem; }
}

/* ────────────────────────────────────────────
   8. HERO
──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  max-height: 980px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hintergrundbild-Container für Ken Burns */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: var(--color-dark);
}

/* Hero-Slideshow: alle Slides übereinandergestapelt */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  will-change: transform, opacity;
}
.hero-slide.active { opacity: 1; }

/* Jeder Slide bekommt seinen eigenen Ken-Burns-Zoom */
.hero-slide:nth-child(1) { animation: kbSlide1 9s ease-in-out infinite alternate; }
.hero-slide:nth-child(2) { animation: kbSlide2 11s ease-in-out infinite alternate; }
.hero-slide:nth-child(3) { animation: kbSlide3 10s ease-in-out infinite alternate; }
.hero-slide:nth-child(4) { animation: kbSlide4 12s ease-in-out infinite alternate; }

@keyframes kbSlide1 {
  from { transform: scale(1.00) translate(0%,   0%); }
  to   { transform: scale(1.10) translate(-1%,   0.5%); }
}
@keyframes kbSlide2 {
  from { transform: scale(1.06) translate(0.5%,  0%); }
  to   { transform: scale(1.00) translate(-0.5%, -0.5%); }
}
@keyframes kbSlide3 {
  from { transform: scale(1.08) translate(-0.5%, 0.5%); }
  to   { transform: scale(1.02) translate(0.8%,  0%); }
}
@keyframes kbSlide4 {
  from { transform: scale(1.02) translate(0%,    0.5%); }
  to   { transform: scale(1.10) translate(-0.8%, -0.3%); }
}

/* Zweischichtiger Overlay: warm/dunkel wie das echte Design */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 18, 16, 0.55) 0%,
    rgba(15, 14, 12, 0.45) 50%,
    rgba(20, 18, 16, 0.70) 100%
  );
}


/* Hero-Textinhalt */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding-top: var(--nav-height);
  padding-inline: var(--space-sm);
  max-width: 900px;
}

.hero-pretitle {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-copper-light);
  margin-bottom: var(--space-sm);
  /* Einblend-Animation */
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.3s forwards;
}

/* H1: spaced-caps Stil wie auf der echten Seite */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.18;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.55s forwards;
}

.hero-title-sub {
  display: block;
  font-size: 0.55em;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5em;
}

.hero-slogan {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-lg);
  font-weight: 300;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1.05s forwards;
}

/* Scroll-Pfeil */
.hero-scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  animation: bounceDown 2.5s ease-in-out infinite;
  transition: color var(--duration);
}
.hero-scroll-down:hover { color: rgba(255,255,255,0.9); }
.hero-scroll-down svg { width: 32px; height: 32px; }

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

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

.hero-word {
  display: inline-block;
  /* Initialzustand wird von GSAP gesetzt; Fallback ohne JS: sofort sichtbar */
}

/* ────────────────────────────────────────────
   9. WILLKOMMEN-SEKTION
──────────────────────────────────────────── */
.section-welcome {
  background: var(--color-dark);
  padding-block: var(--space-2xl);
  position: relative;
}
.section-welcome::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--color-off-white);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.welcome-inner {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}


.welcome-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: #f0ece6;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.welcome-body {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* ────────────────────────────────────────────
   10. LEISTUNGS-KACHELN
──────────────────────────────────────────── */
.section-leistungen {
  background: var(--color-off-white);
  padding-block: var(--space-2xl);
  position: relative;
}
.section-leistungen::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--color-dark);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

@media (min-width: 600px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .leistungen-grid { grid-template-columns: repeat(4, 1fr); }
}

.leistung-card {
  background: var(--color-off-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.leistung-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Bild-Bereich */
.leistung-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-dark-3);
}

.leistung-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.leistung-card:hover .leistung-card-img img { transform: scale(1.06); }

/* Icon-Badge auf dem Bild */
.leistung-badge {
  position: absolute;
  bottom: var(--space-xs);
  right: var(--space-xs);
  width: 40px; height: 40px;
  background: var(--color-copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding: 9px;
}
.leistung-badge svg { width: 100%; height: 100%; }

/* Kacheltext */
.leistung-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.leistung-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 0.6rem;
}

.leistung-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.leistung-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-copper);
  transition: gap var(--duration);
  margin-top: auto;
}
.leistung-link:hover { gap: 0.7rem; color: var(--color-copper-light); }
.leistung-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ────────────────────────────────────────────
   11. ÜBER UNS / PRAXIS-TEASER
──────────────────────────────────────────── */
.section-about {
  background: var(--color-dark);
  padding-block: var(--space-2xl);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 260px;
  background: var(--color-dark-3);
}

.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }

/* Dekorativer Rahmen-Akzent */
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60%; height: 60%;
  border: 1px solid var(--color-copper-pale);
  border-radius: var(--radius-xl);
  z-index: -1;
  pointer-events: none;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: #f0ece6;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.about-body {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.about-features {
  list-style: none;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--color-text);
}

.feature-check {
  color: var(--color-copper);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────
   12b. STATS – ZAHLEN & FAKTEN
──────────────────────────────────────────── */
.section-stats {
  background: var(--color-dark-2);
  padding-block: var(--space-2xl);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--color-border);
}

@media (max-width: 767px) {
  .stat-item:nth-child(3) { border-left: none; }
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 200;
  color: var(--color-copper-light);
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.05em;
}

.stat-suffix {
  font-size: 0.45em;
  color: var(--color-copper);
  font-weight: 300;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ────────────────────────────────────────────
   12. MITGLIEDSCHAFTEN / LOGOS
──────────────────────────────────────────── */
.section-logos {
  background: var(--color-off-white);
  padding-block: var(--space-xl);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.logos-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.55;
  transition: opacity var(--duration);
  text-align: center;
}

.logo-item:hover { opacity: 1; }

.logo-item img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter var(--duration);
}
.logo-item:hover img { filter: grayscale(0); }

.logo-item span {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  max-width: 120px;
  line-height: 1.4;
}

/* ────────────────────────────────────────────
   13. INVISALIGN SECTION
──────────────────────────────────────────── */
.section-invisalign {
  background: var(--color-dark);
  padding-block: var(--space-xl);
}

.invisalign-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .invisalign-inner {
    flex-direction: row;
    text-align: left;
  }
}

.invisalign-logo {
  height: 64px;
  width: auto;
  flex-shrink: 0;
}

.invisalign-text h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.invisalign-text p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ────────────────────────────────────────────
   14. CTA-BANNER
──────────────────────────────────────────── */
.section-cta-banner {
  background: var(--color-dark);
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* Dezenter Hintergrundeffekt */
.section-cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(122,102,82,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cta-banner-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.cta-banner-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cta-banner-actions { align-items: flex-end; }
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color var(--duration);
}
.cta-phone:hover { color: var(--color-white); }
.cta-phone svg { width: 18px; height: 18px; }

/* ────────────────────────────────────────────
   15. FOOTER
──────────────────────────────────────────── */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-sm);
}

.footer-contact a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.3rem;
  transition: color var(--duration);
}
.footer-contact a:hover { color: var(--color-copper-light); }

/* Öffnungszeiten-Tabelle */
.footer-hours {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.825rem;
}
.footer-hours td {
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.65);
  vertical-align: top;
}
.footer-hours td:first-child {
  width: 108px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.footer-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-xs);
  line-height: 1.6;
}

/* Footer-Nav */
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-nav a {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--duration), padding-left var(--duration);
}
.footer-nav a:hover {
  color: var(--color-copper-light);
  padding-left: 4px;
}

.footer-tagline {
  margin-top: var(--space-md);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  font-style: italic;
}

/* Unterzeile */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: var(--space-sm);
}
.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ────────────────────────────────────────────
   16. SCROLL-REVEAL
──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
  opacity: 1;
}

/* Linke Variante (für Über-uns-Bild) */
.reveal-left {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-left.visible {
  opacity: 1;
}

/* GSAP übernimmt Animationen – CSS-Transition deaktivieren */
.gsap-ready .reveal,
.gsap-ready .reveal-left,
.gsap-ready .title-divider {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left { opacity: 1; transform: none; transition: none; }
  .hero-slide           { animation: none; transition: none; }
  .hero-slide.active    { opacity: 1; }
  .shimmer-btn::after   { animation: none; }
  .hero-scroll-down     { animation: none; }
  .hero-pretitle, .hero-title, .hero-slogan, .hero-cta-group {
    animation: none; opacity: 1;
  }
  .hero-word            { animation: none; opacity: 1; transform: none; }
}

/* ────────────────────────────────────────────
   17. SEITENKOPF (Unterseiten)
──────────────────────────────────────────── */
.page-hero {
  background: var(--color-dark);
  height: 70vh;
  min-height: 406px;
  max-height: 686px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
}

/* Kompakte Variante für Seiten ohne Bild (Impressum, Datenschutz, Team) */
.page-hero--compact {
  height: auto;
  min-height: unset;
  max-height: unset;
  padding-top: calc(var(--nav-height) + var(--space-md));
  padding-bottom: var(--space-md);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
}

/* Zarter radialer Hintergrundglow */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at top, rgba(122,102,82,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.6rem;
}

.page-hero p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  max-width: 600px;
  margin-inline: auto;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--color-copper-light); }
.breadcrumb span { margin-inline: 0.4rem; }

/* ────────────────────────────────────────────
   18. LEISTUNGEN-DETAILSEITE
──────────────────────────────────────────── */
.leistung-detail {
  padding-block: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}
.leistung-detail:last-child { border-bottom: none; }

.leistung-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .leistung-detail-grid { grid-template-columns: 1fr 1fr; }

  .leistung-detail:nth-child(even) .leistung-detail-grid { direction: rtl; }
  .leistung-detail:nth-child(even) .leistung-detail-grid > * { direction: ltr; }
}

.leistung-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-dark-3);
  box-shadow: var(--shadow-md);
}
.leistung-detail-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.leistung-detail h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.leistung-detail p {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

.leistung-detail ul {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.leistung-detail ul li { margin-bottom: 0.4rem; line-height: 1.7; }

/* ────────────────────────────────────────────
   19. TEAM-SEITE
──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  background: var(--color-off-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-card-img {
  aspect-ratio: 3/4;
  background: var(--color-dark-3);
  overflow: hidden;
}
.team-card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}

.team-card-body { padding: 1.4rem; }

.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.team-card-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 0.75rem;
}

.team-card-bio {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* Lebenslauf-Timeline */
.team-cv {
  list-style: none;
  margin-top: var(--space-sm);
  border-left: 1px solid var(--color-border);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.team-cv-item {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  position: relative;
}
.team-cv-item::before {
  content: '';
  position: absolute;
  left: -1.3rem; top: 0.45rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-copper);
}
.team-cv-year {
  font-weight: 700;
  color: var(--color-copper);
  margin-right: 0.4rem;
  font-size: 0.72rem;
}

/* Staff-Liste (nur Namen, ohne Karten) */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.staff-item {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0.9rem var(--space-sm);
  text-align: center;
}

.staff-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f0ece6;
}
.staff-role {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}

/* ────────────────────────────────────────────
   20. KONTAKT-SEITE
──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-block: var(--space-2xl);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

.contact-info-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.contact-info-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  background: var(--color-copper-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-copper);
}
.contact-info-icon svg { width: 18px; height: 18px; }

.contact-info-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.93rem;
  color: var(--color-text);
  line-height: 1.65;
}

/* Formular */
.contact-form {
  background: var(--color-off-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.contact-form h2 {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.form-group { margin-bottom: var(--space-md); }

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}
.form-label .required { color: var(--color-copper); }

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text);
  background: #1e1e1e;
  transition: border-color var(--duration), box-shadow var(--duration);
  appearance: none;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-copper);
  box-shadow: 0 0 0 3px rgba(122,102,82,0.12);
}

.form-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-copper);
}
.form-checkbox-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.form-checkbox-label a { color: var(--color-copper); }

/* ────────────────────────────────────────────
   21. PRAXIS-FEATURES-GRID
──────────────────────────────────────────── */
.praxis-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .praxis-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .praxis-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.praxis-feature-card {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.praxis-feature-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--color-copper-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-copper);
}
.praxis-feature-icon svg { width: 22px; height: 22px; }

.praxis-feature-card h3 {
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.praxis-feature-card p {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ────────────────────────────────────────────
   22. KARRIERE-SEITE
──────────────────────────────────────────── */
.stellenanzeige {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  transition: box-shadow var(--duration), transform var(--duration);
}
.stellenanzeige:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stellenanzeige-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.stellenanzeige h3 {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.stellenanzeige-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-copper-pale);
  color: var(--color-copper);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
}

.stellenanzeige p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

/* ────────────────────────────────────────────
   23. LEGAL-SEITEN
──────────────────────────────────────────── */
.legal-page {
  padding-block: var(--space-2xl);
  min-height: 60vh;
}
.legal-page h1 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.legal-page h2 {
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}
.legal-page p, .legal-page address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}
.legal-page a { color: var(--color-copper); }

/* ────────────────────────────────────────────
   24. UTILITY
──────────────────────────────────────────── */
.bg-off-white { background: var(--color-off-white); }
.bg-dark      { background: var(--color-dark); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-block: var(--space-lg);
}

/* Galerie-Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-grid img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s var(--ease), filter 0.5s;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* ────────────────────────────────────────────
   TEAM-SEITE – erweiterte Elemente
──────────────────────────────────────────── */

/* CV-Timeline (Aliases für team.html) */
.team-cv-timeline {
  list-style: none;
  margin-top: var(--space-sm);
  border-left: 1px solid var(--color-border);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cv-item {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  position: relative;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cv-item::before {
  content: '';
  position: absolute;
  left: -1.3rem; top: 0.45rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-copper);
}
.cv-year {
  font-weight: 700;
  color: var(--color-copper);
  font-size: 0.72rem;
  white-space: nowrap;
  min-width: 120px;
}
.cv-desc {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

/* Skill-Tags (kleine Chips unter dem CV) */
.team-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

/* Staff-Karten mit Avatar-Initial */
.staff-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.2rem var(--space-sm);
  text-align: center;
  transition: border-color var(--duration), box-shadow var(--duration);
}
.staff-card:hover {
  border-color: var(--color-copper);
  box-shadow: var(--shadow-sm);
}
.staff-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-copper);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 auto var(--space-xs);
  letter-spacing: 0.03em;
}
.staff-photo {
  display: block;
  width: calc(100% + var(--space-sm) * 2);
  margin: calc(var(--space-sm) * -1) calc(var(--space-sm) * -1) var(--space-sm);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* ────────────────────────────────────────────
   LEISTUNGEN-SEITE – erweiterte Elemente
──────────────────────────────────────────── */

/* Schnell-Navigationsleiste */
.leistungen-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.leistungen-nav-item {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: background var(--duration), border-color var(--duration), color var(--duration);
}
.leistungen-nav-item:hover {
  background: var(--color-copper);
  border-color: var(--color-copper);
  color: var(--color-white);
}

/* Sub-Grid für Leistungs-Kacheln (Zahnerhalt) */
.leistungen-sub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .leistungen-sub-grid { grid-template-columns: repeat(2, 1fr); }
}

.leistung-sub-card {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color var(--duration), box-shadow var(--duration);
}
.leistung-sub-card:hover {
  border-color: var(--color-copper);
  box-shadow: var(--shadow-sm);
}
.leistung-sub-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}
.leistung-sub-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}
.leistung-sub-card ul {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  padding-left: 1.2rem;
}

.leistung-sub-icon {
  width: 40px; height: 40px;
  color: var(--color-copper);
  margin-bottom: var(--space-sm);
}
.leistung-sub-icon svg { width: 100%; height: 100%; }

/* ────────────────────────────────────────────
   TEAM-PAGE – Foto-Grid + Modal
──────────────────────────────────────────── */
.tp-intro {
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-inline: auto;
  text-align: center;
}

.tp-section-heading {
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-copper);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}

/* Foto-Grid – ZFA */
.tp-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.tp-grid .tp-card {
  flex: 0 0 calc(50% - 0.75rem);
}

@media (min-width: 600px) {
  .tp-grid .tp-card { flex: 0 0 calc(33.333% - 1rem); }
}

@media (min-width: 1024px) {
  .tp-grid .tp-card { flex: 0 0 calc(25% - 1.125rem); }
}

/* Foto-Grid – Ärzte (featured, max 3 Spalten) */
.tp-grid--featured .tp-card {
  flex: 0 0 calc(50% - 0.75rem);
}
@media (min-width: 600px) {
  .tp-grid--featured .tp-card { flex: 0 0 calc(33.333% - 1rem); }
}

/* Karte */
.tp-card {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.tp-card:focus-visible { outline: 2px solid var(--color-copper); outline-offset: 4px; border-radius: var(--radius-lg); }
.tp-card--static { cursor: default; }

/* Foto-Bereich */
.tp-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-off-white);
}
.tp-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.6s var(--ease);
  display: block;
}
.tp-card:hover .tp-photo-wrap img { transform: scale(1.04); }

/* Hover-Overlay */
.tp-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.tp-card:hover .tp-photo-overlay { opacity: 1; }
.tp-photo-overlay svg { width: 28px; height: 28px; }
.tp-photo-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Beschriftung */
.tp-caption {
  padding: 0.75rem 0.2rem 0;
}
.tp-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: #f0ece6;
  margin-bottom: 0.15rem;
}
.tp-caption span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* ─── MODAL ─── */
.tp-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.tp-modal.is-open {
  pointer-events: all;
  opacity: 1;
}

.tp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tp-modal-panel {
  position: relative;
  z-index: 1;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  width: min(580px, calc(100vw - 2rem));
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl);
  transform: translateY(24px);
  transition: transform 0.35s var(--ease);
}
.tp-modal.is-open .tp-modal-panel { transform: translateY(0); }

.tp-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: background var(--duration), color var(--duration);
}
.tp-modal-close:hover { background: var(--color-copper); color: #fff; border-color: var(--color-copper); }
.tp-modal-close svg { width: 16px; height: 16px; }

/* Modal-Inhalt */
.tpm-header {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}
.tpm-photo {
  width: 90px; height: 110px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}
.tpm-title h2 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #f0ece6;
  margin-bottom: 0.3rem;
}
.tpm-title p {
  font-size: 0.8rem;
  color: var(--color-copper);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tpm-bio {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.tpm-cv-heading {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-copper);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.tpm-cv-list {
  list-style: none;
  border-left: 1px solid var(--color-border);
  padding-left: var(--space-sm);
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tpm-cv-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.82rem;
  line-height: 1.5;
  position: relative;
}
.tpm-cv-list li::before {
  content: '';
  position: absolute;
  left: calc(var(--space-sm) * -1 - 3px);
  top: 0.45em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-copper);
}
.tpm-year {
  color: var(--color-copper);
  font-weight: 600;
  min-width: 130px;
  flex-shrink: 0;
}
.tpm-desc { color: var(--color-text); }

.tpm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tpm-tag {
  font-size: 0.72rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(157,128,96,0.12);
  border: 1px solid rgba(157,128,96,0.3);
  color: var(--color-copper-light);
  letter-spacing: 0.03em;
}


/* ────────────────────────────────────────────
   KONTAKT – NEUE STRUKTUR (denta1-Stil)
──────────────────────────────────────────── */

/* Info-Leiste */
.ck-bar-section {
  background: var(--color-dark-2);
  padding-block: var(--space-xl);
}

.ck-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (min-width: 768px) {
  .ck-bar {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }
}

.ck-tile {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ck-divider {
  width: 1px;
  background: var(--color-border);
  margin-block: var(--space-lg);
}

@media (max-width: 767px) {
  .ck-divider {
    width: auto;
    height: 1px;
    margin: 0;
    margin-inline: var(--space-xl);
  }
}

.ck-tile-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-copper-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-copper);
  margin-bottom: 0.5rem;
}
.ck-tile-icon svg { width: 22px; height: 22px; }

.ck-tile-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-copper);
  font-family: var(--font-body);
}

.ck-tile-value {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ck-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-copper);
  text-decoration: none;
  margin-top: 0.75rem;
  transition: color var(--duration);
}
.ck-tile-link svg { width: 13px; height: 13px; }
.ck-tile-link:hover { color: var(--color-copper-light); }

.ck-contact-link {
  text-decoration: none;
  color: var(--color-text);
  transition: color var(--duration);
  line-height: 1.8;
}
.ck-contact-link:hover { color: var(--color-copper-light); }
.ck-phone { font-size: 1.15rem; font-weight: 600; color: #f0ece6; }

.ck-hours {
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--color-text);
}
.ck-hours td:first-child {
  padding-right: 1.2rem;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

/* Formular-Sektion */
.ck-form-section {
  padding-block: var(--space-2xl);
  background: var(--color-dark);
}

.ck-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .ck-form-wrap {
    grid-template-columns: 1fr 1.6fr;
    align-items: start;
  }
}

.ck-form-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #f0ece6;
  margin-bottom: var(--space-sm);
}
.ck-form-intro p {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-top: var(--space-md);
}

.ck-form {
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.ck-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 600px) {
  .ck-form-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e6a65' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

/* Anfahrt-Sektion */
.ck-anfahrt-section {
  padding-block: var(--space-2xl);
  background: var(--color-dark-2);
}

.ck-anfahrt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-block: var(--space-xl);
}

@media (min-width: 600px) {
  .ck-anfahrt-grid { grid-template-columns: repeat(3, 1fr); }
}

.ck-anfahrt-card {
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: border-color var(--duration), transform var(--duration);
}
.ck-anfahrt-card:hover {
  border-color: rgba(157,128,96,0.35);
  transform: translateY(-4px);
}

.ck-anfahrt-icon {
  width: 52px; height: 52px;
  background: var(--color-copper-pale);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-copper);
  margin-bottom: var(--space-md);
}
.ck-anfahrt-icon svg { width: 24px; height: 24px; }

.ck-anfahrt-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #f0ece6;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.ck-anfahrt-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* Karte */
.ck-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 460px;
}

.ck-map-consent {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  background: var(--color-dark-3);
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.ck-map-consent svg {
  width: 52px;
  height: 52px;
  color: var(--color-copper);
  margin-bottom: var(--space-sm);
}

.ck-map-address {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.6;
}

.ck-map-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  max-width: 420px;
  line-height: 1.7;
}

.ck-map-note a { color: var(--color-copper-light); text-decoration: underline; }

.ck-map-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-sm);
}

.ck-map-frame {
  display: none;
}

/* CTA-Box */
.ck-cta-section {
  padding-block: var(--space-xl) var(--space-2xl);
  background: var(--color-dark);
}

.ck-cta-box {
  background: linear-gradient(135deg, #1a1509 0%, #1e1a10 50%, var(--color-dark-3) 100%);
  border: 1px solid rgba(157,128,96,0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .ck-cta-box {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.ck-cta-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #f0ece6;
  margin-bottom: 0.4rem;
}
.ck-cta-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.ck-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-copper);
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background var(--duration), transform var(--duration), box-shadow var(--duration);
  box-shadow: 0 4px 20px rgba(157,128,96,0.3);
}
.ck-cta-phone:hover {
  background: var(--color-copper-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(157,128,96,0.4);
}
.ck-cta-phone-icon {
  display: flex;
  width: 26px; height: 26px;
}
.ck-cta-phone-icon svg { width: 22px; height: 22px; }

/* btn-lg utility */
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}

/* ══════════════════════════════════════
   KONTAKT – TERMIN-KACHELN
══════════════════════════════════════ */
.ck-termin-section {
  padding: var(--space-xl) 0 0;
  background: var(--color-dark);
}
.ck-termin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
@media (max-width: 600px) {
  .ck-termin-grid { grid-template-columns: 1fr; }
}
.ck-termin-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: transform 0.22s, box-shadow 0.22s;
}
.ck-termin-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.ck-termin-card--primary {
  background: linear-gradient(135deg, var(--color-copper) 0%, #b8966e 100%);
  color: #fff;
}
.ck-termin-card--outline {
  background: transparent;
  border: 1.5px solid rgba(157,128,96,0.35);
  color: var(--color-text);
}
.ck-termin-card--outline:hover {
  border-color: var(--color-copper);
  background: rgba(157,128,96,0.06);
}
.ck-termin-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ck-termin-card--primary .ck-termin-icon {
  background: rgba(255,255,255,0.2);
}
.ck-termin-card--outline .ck-termin-icon {
  background: rgba(157,128,96,0.12);
  color: var(--color-copper);
}
.ck-termin-icon svg { width: 22px; height: 22px; }
.ck-termin-label {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 600;
  opacity: 0.75;
}
.ck-termin-card--primary .ck-termin-label { color: rgba(255,255,255,0.8); }
.ck-termin-card--outline .ck-termin-label { color: var(--color-copper); }
.ck-termin-title {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400;
  line-height: 1.2;
}
.ck-termin-card--primary .ck-termin-title { color: #fff; }
.ck-termin-card--outline .ck-termin-title { color: #f0ece6; }
.ck-termin-sub {
  font-size: 0.82rem; line-height: 1.65;
}
.ck-termin-card--primary .ck-termin-sub { color: rgba(255,255,255,0.75); }
.ck-termin-card--outline .ck-termin-sub { color: var(--color-text-muted); }
.ck-termin-arrow {
  margin-top: auto;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 6px;
}
.ck-termin-card--primary .ck-termin-arrow { color: rgba(255,255,255,0.9); }
.ck-termin-card--outline .ck-termin-arrow { color: var(--color-copper); }

/* ══════════════════════════════════════
   WUNSCHTERMIN WIDGET
══════════════════════════════════════ */
.wt-card {
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.wt-head {
  background: linear-gradient(135deg, #111 0%, #1a1409 100%);
  border-bottom: 1px solid rgba(157,128,96,0.2);
  padding: 22px 24px 18px;
}
.wt-head-label {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-copper); margin-bottom: 6px; font-family: var(--font-body);
}
.wt-head-title {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400;
  color: #f0ece6; line-height: 1.25;
}
.wt-head-title em { font-style: italic; color: var(--color-copper-light); }
.wt-head-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 5px; }
.wt-dots {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 0 6px; background: var(--color-dark-3);
}
.wdot {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.15);
  transition: all 0.3s;
}
#d1 { background: var(--color-copper); transform: scale(1.4); }
.wt-body { padding: 18px 24px 24px; }
.wt-err {
  background: rgba(192,90,58,0.1); border: 1px solid rgba(192,90,58,0.3);
  border-radius: var(--radius-lg); padding: 10px 14px;
  font-size: 0.8rem; color: #e07a5f; margin-bottom: 14px;
}
.wt-step-title {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500;
  color: #f0ece6; margin-bottom: 6px; padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.wt-step-sub { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 14px; }
.wt-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-copper); margin-bottom: 8px;
}
.wt-status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 4px; }
.wt-status-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 20px 12px; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg); background: var(--color-dark-2);
  text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.wt-status-card:hover { border-color: var(--color-copper); }
.wt-status-icon { font-size: 1.6rem; }
.wt-status-name { font-family: var(--font-heading); font-size: 1rem; color: #f0ece6; }
.wt-status-hint { font-size: 0.72rem; color: var(--color-text-muted); line-height: 1.5; }
.wt-name-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wt-input {
  width: 100%; padding: 10px 13px;
  background: var(--color-dark-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); color: var(--color-text);
  font-family: var(--font-body); font-size: 0.9rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wt-input:focus { border-color: var(--color-copper); box-shadow: 0 0 0 3px rgba(157,128,96,0.12); }
.wt-textarea { min-height: 80px; resize: vertical; line-height: 1.6; margin-bottom: 14px; }
.wt-callback-box {
  background: rgba(157,128,96,0.07); border: 1px solid rgba(157,128,96,0.2);
  border-radius: var(--radius-lg); padding: 16px 18px; margin-bottom: 4px;
}
.wt-callback-title { font-family: var(--font-heading); font-size: 1rem; color: #f0ece6; margin-bottom: 6px; }
.wt-callback-sub { font-size: 0.78rem; color: var(--color-text-muted); line-height: 1.65; }
.wt-tiles { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 6px; }
.wt-tile {
  display: inline-block; padding: 6px 14px;
  border: 1px solid rgba(157,128,96,0.25); border-radius: 999px;
  font-size: 0.78rem; color: var(--color-copper); background: transparent;
  cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.wt-tile:hover { border-color: var(--color-copper); background: rgba(157,128,96,0.08); }
.wt-tile.selected { background: var(--color-copper); border-color: var(--color-copper); color: #fff; }
.wt-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.wt-btn-back {
  padding: 10px 18px; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  background: transparent; color: var(--color-text-muted);
  font-family: var(--font-body); font-size: 0.85rem; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.wt-btn-back:hover { border-color: var(--color-copper); color: var(--color-copper); }
.wt-btn-next {
  padding: 10px 22px; border: none; border-radius: var(--radius-lg);
  background: var(--color-copper); color: #fff;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.wt-btn-next:hover { background: var(--color-copper-light); transform: translateY(-1px); }
.wt-btn-submit {
  flex: 1; padding: 12px; border: none; border-radius: var(--radius-lg);
  background: var(--color-copper); color: #fff;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 16px rgba(157,128,96,0.3);
}
.wt-btn-submit:hover { background: var(--color-copper-light); transform: translateY(-1px); }
.wt-divider { height: 1px; background: var(--color-border); margin: 14px 0; }
.wt-privacy { font-size: 0.72rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 16px; }
.wt-privacy a { color: var(--color-copper); }
.wt-ok-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(157,128,96,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.6rem; }
.wt-ok-title { font-family: var(--font-heading); font-size: 1.8rem; color: #f0ece6; margin-bottom: 10px; }
.wt-ok-text { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.8; }

/* Wunschtermin section wrapper on index.html */
.section-wunschtermin {
  padding: var(--space-2xl) 0;
  background: var(--color-dark-2);
}
.section-wunschtermin .section-intro {
  max-width: 520px;
  margin: var(--space-md) auto 0;
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  text-align: center;
}

/* ══════════════════════════════════════
   WUNSCHTERMIN MODAL
══════════════════════════════════════ */
.wt-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
.wt-modal.open {
  display: flex;
}
.wt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  animation: wtFadeIn 0.25s ease;
}
.wt-modal-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: var(--radius-xl);
  box-sizing: border-box;
  min-width: 0;
  animation: wtSlideUp 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.wt-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.wt-modal-close:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.wt-modal-close svg { width: 16px; height: 16px; }
@keyframes wtFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes wtSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ────────────────────────────────────────────
   LEISTUNGEN KARTEN-GRID
──────────────────────────────────────────── */
.leistungen-karten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-block: var(--space-2xl);
}
@media (max-width: 1024px) {
  .leistungen-karten-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .leistungen-karten-grid {
    grid-template-columns: 1fr;
  }
}
.leistungen-karte {
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.leistungen-karte:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-copper);
}
.leistungen-karte-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.leistungen-karte-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.leistungen-karte:hover .leistungen-karte-img img {
  transform: scale(1.04);
}
.leistungen-karte-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-xs);
}
.leistungen-karte-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
  margin: 0;
  transition: color 0.2s;
}
.leistungen-karte:hover .leistungen-karte-body h3 {
  color: var(--color-copper-light);
}
.leistungen-karte-body p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

/* ────────────────────────────────────────────
   21. SERVICE SLIDER
──────────────────────────────────────────── */
.service-slider-wrap {
  position: relative;
  padding-inline: 0;
}

.slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.slider-viewport::-webkit-scrollbar { display: none; }
.slider-viewport:active { cursor: grabbing; }

.slider-track {
  display: flex;
  gap: var(--space-lg);
}

.slider-track .leistungen-karte {
  flex: 0 0 calc((100% - 2 * var(--space-lg)) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .slider-track .leistungen-karte {
    flex: 0 0 calc((100% - var(--space-lg)) / 2);
  }
}

@media (max-width: 600px) {
  .slider-track .leistungen-karte {
    flex: 0 0 100%;
  }
}

.slider-btn {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slider-btn:hover {
  background: var(--color-copper);
  border-color: var(--color-copper);
}

.slider-btn:disabled {
  opacity: 0.25;
  pointer-events: none;
}

.slider-btn-prev { left: -22px; }
.slider-btn-next { right: -22px; }

@media (max-width: 768px) {
  .slider-btn-prev { left: 6px; }
  .slider-btn-next { right: 6px; }
}

.slider-btn svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-lg);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.slider-dot.active {
  background: var(--color-copper);
  transform: scale(1.4);
}

/* ────────────────────────────────────────────
   21b. MAGAZINE SLIDER CARD
──────────────────────────────────────────── */
.leistungen-karte--mag {
  position: relative;
  min-height: 340px;
  background: var(--color-dark-3);
  border-color: transparent;
}
.leistungen-karte--mag .leistungen-karte-img {
  position: absolute;
  inset: 0;
  aspect-ratio: unset;
  height: 100%;
  border-radius: 0;
}
.leistungen-karte--mag .leistungen-karte-img img {
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.7);
}
.leistungen-karte--mag:hover .leistungen-karte-img img {
  transform: scale(1.07);
  filter: brightness(0.5);
}
.leistungen-karte--mag .leistungen-karte-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(157, 128, 96, 0.55) 0%,
    rgba(13, 13, 13, 0.1) 60%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.leistungen-karte--mag:hover .leistungen-karte-img::after { opacity: 1; }
.leistungen-karte--mag .leistungen-karte-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(10,9,8,0.96) 0%, rgba(10,9,8,0.7) 55%, transparent 100%);
  padding: 1.6rem 1.4rem 1.2rem;
  transform: translateY(calc(100% - 3.6rem));
  transition: transform 0.42s var(--ease);
}
.leistungen-karte--mag:hover .leistungen-karte-body { transform: translateY(0); }
.leistungen-karte--mag .leistungen-karte-body h3 {
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
}
.leistungen-karte--mag .leistungen-karte-body p {
  font-size: 0.84rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s 0.1s var(--ease), transform 0.3s 0.1s var(--ease);
}
.leistungen-karte--mag:hover .leistungen-karte-body p {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────────────────
   22. PRAXIS-GALERIE (Mosaik)
──────────────────────────────────────────── */
.praxis-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 12px;
  margin-top: var(--space-xl);
}

@media (max-width: 1024px) {
  .praxis-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; }
  .gallery-item--w2 { grid-column: span 2; }
}

@media (max-width: 600px) {
  .praxis-gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item--w2 { grid-column: span 1; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-dark-3);
  cursor: zoom-in;
}

.gallery-item--w2 {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease), filter 0.45s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.78);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(157, 128, 96, 0.0) 0%,
    rgba(157, 128, 96, 0.35) 100%
  );
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 0 var(--color-copper);
  transition: box-shadow 0.35s var(--ease);
  pointer-events: none;
}

.gallery-item:hover::after {
  box-shadow: inset 0 0 0 2px var(--color-copper);
}

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  animation: lbFadeIn 0.3s var(--ease);
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.gallery-lightbox-close:hover {
  background: var(--color-copper);
  border-color: var(--color-copper);
}

/* ────────────────────────────────────────────
   FLOATING CTA BUTTON
──────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-copper);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-heading);
  box-shadow: 0 8px 32px rgba(157,128,96,0.4), 0 2px 8px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
              background 0.25s, box-shadow 0.25s;
  will-change: transform, opacity;
}

.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-cta:hover {
  background: var(--color-copper-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(157,128,96,0.5), 0 4px 12px rgba(0,0,0,0.3);
  color: #fff;
}

.float-cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .float-cta {
    bottom: 1.2rem;
    right: 1rem;
    padding: 0.75rem 1.1rem;
    font-size: 0.72rem;
  }
}

/* ────────────────────────────────────────────
   SKIP NAVIGATION (Accessibility)
──────────────────────────────────────────── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--color-copper);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }

/* ────────────────────────────────────────────
   TEAM TEASER
──────────────────────────────────────────── */
.section-team-teaser {
  background: var(--color-off-white);
  padding-block: var(--space-2xl);
}

.team-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 640px;
  margin-inline: auto;
}

@media (max-width: 500px) {
  .team-teaser-grid { grid-template-columns: 1fr; max-width: 280px; }
}

.team-teaser-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.team-teaser-card:hover {
  border-color: var(--color-copper);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.team-teaser-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-copper-pale);
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.team-teaser-card:hover .team-teaser-img {
  border-color: var(--color-copper);
}

.team-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-teaser-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.team-teaser-body p {
  font-size: 0.78rem;
  color: var(--color-copper);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────
   BEWERTUNGEN / TESTIMONIALS
──────────────────────────────────────────── */
.section-reviews {
  background: var(--color-dark);
  padding-block: var(--space-2xl);
}

.reviews-source {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-sm);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.review-card:hover {
  border-color: var(--color-copper-pale);
  transform: translateY(-3px);
}

.review-stars {
  color: #C4A882;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}

.review-author {
  font-size: 0.78rem;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────
   COOKIE BANNER (DSGVO)
──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--color-dark-2);
  border-top: 1px solid var(--color-border);
  padding: 1.25rem var(--space-lg);
  transform: translateY(110%);
  transition: transform 0.45s var(--ease);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 240px; }

.cookie-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}

.cookie-text p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cookie-text a { color: var(--color-copper-light); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-decline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: var(--color-text-muted); color: var(--color-text); }

.cookie-btn-accept {
  background: var(--color-copper);
  border: none;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--color-copper-light); }

@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn-decline, .cookie-btn-accept { flex: 1; text-align: center; }
}

/* ══════════════════════════════════════
   MOBILE-OPTIMIERUNGEN (max 599px)
══════════════════════════════════════ */
@media (max-width: 599px) {

  /* Abstände reduzieren */
  :root {
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
  }


  /* Hero CTA – Buttons untereinander, volle Breite */
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    padding-inline: var(--space-md);
  }
  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }

  /* Subseiten-Hero */
  .page-hero { min-height: 300px; }
  .page-hero h1 { font-size: clamp(1.4rem, 7vw, 2rem); }
  .page-hero p  { font-size: 0.82rem; }

  /* Sektionen */
  .section-title { font-size: clamp(1.3rem, 6vw, 2rem); }

  /* Über-uns: Bild nicht zu hoch */
  .about-img-wrap { max-height: 260px; overflow: hidden; }

  /* Team-Karten: 1 Spalte auf sehr kleinen Screens */
  .tp-grid .tp-card,
  .tp-grid--featured .tp-card { flex: 0 0 100%; }

  /* Karriere / Praxis Feature-Cards: volle Breite */
  .praxis-feature-card { flex-direction: column; }

  /* CTA-Banner Aktionen: volle Breite */
  .cta-banner-actions .btn { width: 100%; text-align: center; }

  /* Wunschtermin-Formular */
  .wt-modal { padding: 0.5rem; }
  .wt-modal-inner { max-height: 96vh; }
  .wt-body { padding: 1.2rem; }

  /* Footer – 1 Spalte erzwingen */
  .footer-grid { grid-template-columns: 1fr !important; }

  /* Diagonale Trenner etwas kleiner */
  .section-welcome::after,
  .section-leistungen::after { height: 40px; }

  /* Slider-Buttons auf Mobile kleiner */
  .slider-btn { width: 36px; height: 36px; }
  .slider-btn svg { width: 14px; height: 14px; }

  /* Bewertungen */
  .review-card { padding: var(--space-md); }

  /* Modal (Team-Profile) */
  .tp-modal-panel { width: 96vw; max-height: 90vh; overflow-y: auto; }
  .tpm-header { flex-direction: column; align-items: center; text-align: center; }
  .tpm-photo { width: 100px; height: 100px; }
}

/* ────────────────────────────────────────────
   FAQ-SEKTION (Unterseiten)
──────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-md);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-cream, #f5efe6);
  margin-bottom: var(--space-xs);
  line-height: 1.4;
}

.faq-answer a {
  color: var(--color-copper);
  text-decoration: underline;
}

.faq-answer a:hover {
  color: var(--color-copper-light);
}

.faq-answer {
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin: 0;
}
