/*
Theme Name: Derma Mainz
Theme URI: https://www.derma-mainz.de
Author: Hautärzte am Fastnachtsbrunnen
Author URI: https://www.derma-mainz.de
Description: Modernes WordPress-Theme für die dermatologische Fachpraxis Derma Mainz – Hautärzte am Fastnachtsbrunnen, Mainz. Seit 1993.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: derma-mainz
Tags: medical, one-page, responsive, custom-colors
*/

/* =========================================================================
   Derma Mainz — Design Tokens
   Foundation: #3c5a82 slate · #ffb4aa coral · #aabed7 mist · Quicksand
   ========================================================================= */
:root {
  /* SLATE */
  --slate-50:  #F1F4F9;
  --slate-100: #DDE5EE;
  --slate-200: #B9C5D6;
  --slate-300: #8FA1BA;
  --slate-400: #6580A2;
  --slate-500: #3C5A82;
  --slate-600: #2E4665;
  --slate-700: #21344B;
  --slate-800: #152233;
  --slate-900: #0A111B;

  /* CORAL */
  --coral-50:  #FFF3F1;
  --coral-100: #FFE2DC;
  --coral-200: #FFCFC5;
  --coral-300: #FFB4AA;
  --coral-400: #F49A8D;
  --coral-500: #E47567;
  --coral-600: #C75A4D;
  --coral-700: #A03F34;
  --coral-800: #6E2A22;
  --coral-900: #401814;

  /* MIST */
  --mist-50:  #F4F6FA;
  --mist-100: #E5EAF2;
  --mist-200: #CFD8E5;
  --mist-300: #AABED7;
  --mist-400: #8FA5C2;
  --mist-500: #6E89AC;
  --mist-600: #527096;
  --mist-700: #3A567B;

  /* PAPER */
  --paper-0:   #FFFFFF;
  --paper-50:  #FAFBFC;
  --paper-100: #F4F6FA;
  --paper-200: #E8ECF2;
  --paper-300: #D5DCE6;
  --paper-400: #B1B9C5;
  --paper-500: #7E8693;
  --paper-600: #5C6470;
  --paper-700: #3F4856;
  --paper-800: #232A36;
  --paper-900: #131822;

  --success:    #3E8A6B;
  --success-bg: #E4F0EB;
  --warning:    #C68B3F;
  --danger:     #C75A4D;
  --info:       #3C5A82;

  --color-primary:       var(--slate-500);
  --color-accent:        var(--coral-300);
  --color-secondary:     var(--mist-300);

  --bg-page:      var(--paper-100);
  --bg-surface:   var(--paper-0);
  --bg-elevated:  var(--paper-50);
  --bg-sunken:    var(--paper-200);
  --bg-inverse:   var(--slate-500);

  --fg-default:   var(--slate-500);
  --fg-strong:    var(--slate-700);
  --fg-muted:     var(--paper-600);
  --fg-subtle:    var(--paper-500);
  --fg-faint:     var(--paper-400);
  --fg-link:      var(--coral-500);
  --fg-link-hover:var(--coral-600);

  --border-default: var(--paper-300);
  --border-subtle:  var(--paper-200);
  --border-accent:  var(--coral-300);

  --font-display: 'Quicksand', 'Avenir Next', system-ui, sans-serif;
  --font-body:    'Quicksand', 'Avenir Next', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --tracking-display: 0.06em;
  --tracking-body:    0;
  --tracking-eyebrow: 0.18em;
  --tracking-button:  0.14em;

  --radius-xs:    4px;
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --radius-pill:  999px;

  --shadow-xs: 0 1px 2px rgba(19,24,34,.04);
  --shadow-sm: 0 2px 6px rgba(19,24,34,.06), 0 1px 2px rgba(19,24,34,.04);
  --shadow-md: 0 8px 24px rgba(19,24,34,.10), 0 2px 6px rgba(19,24,34,.06);
  --shadow-lg: 0 24px 56px rgba(19,24,34,.12), 0 6px 14px rgba(19,24,34,.08);
  --shadow-focus: 0 0 0 3px rgba(255,180,170,.50);

  --ease-out:  cubic-bezier(0.22,0.61,0.36,1);
  --ease-in:   cubic-bezier(0.55,0.06,0.68,0.19);
  --dur-fast:  120ms;
  --dur-base:  220ms;
  --dur-slow:  400ms;

  --content-narrow:  640px;
  --content-regular: 880px;
  --content-wide:    1180px;
  --content-max:     1440px;

  --brand-band:      5px solid var(--coral-300);
  --brand-h1-accent: 5px solid var(--mist-300);
}

/* =========================================================================
   Base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 148px; /* 92px nav + ~56px banner */
  background: var(--bg-page);
  color: var(--fg-default);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--coral-300); color: var(--slate-700); }
a {
  color: var(--fg-link);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--fg-link-hover); text-decoration: underline; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; }
p { margin: 0 0 1em; }
h1,h2,h3,h4,h5,h6 { margin: 0; }

/* =========================================================================
   Layout
   ========================================================================= */
.wrap        { width: 100%; max-width: var(--content-wide);   margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: var(--content-regular); }
.wrap-max    { max-width: var(--content-max); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--coral-500);
}
.eyebrow::before,
.eyebrow::after {
  content: ""; display: inline-block; width: 24px; height: 1.5px;
  background: var(--coral-500);
}
.eyebrow.plain::before,
.eyebrow.plain::after { display: none; }

.h-section {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px,4vw,44px);
  line-height: 1.08; letter-spacing: var(--tracking-display);
  text-transform: uppercase; color: var(--fg-strong);
  margin: 14px 0 18px; text-wrap: balance;
}

.section-head {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.9fr);
  gap: 48px; align-items: end; margin-bottom: 56px;
}
.section-head .lead {
  font-size: 18px; line-height: 1.65; color: var(--slate-500); margin: 0;
  max-width: 460px; padding-bottom: 6px;
}
.section-head.center {
  display: block; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto;
}
.section-head.center .lead { margin: 0 auto; }

/* =========================================================================
   Reveal on scroll
   ========================================================================= */
.reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"].is-visible { transition-delay: 60ms; }
.reveal[data-delay="2"].is-visible { transition-delay: 120ms; }
.reveal[data-delay="3"].is-visible { transition-delay: 180ms; }
.reveal[data-delay="4"].is-visible { transition-delay: 240ms; }
.reveal[data-delay="5"].is-visible { transition-delay: 300ms; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  font-family: var(--font-body); font-weight: 700; font-size: 12px; line-height: 1;
  text-transform: uppercase; letter-spacing: var(--tracking-button);
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  padding: 14px 24px; display: inline-flex; align-items: center; gap: 10px;
  transition: all var(--dur-fast) var(--ease-out); text-decoration: none;
  white-space: nowrap;
}
.btn i { width: 14px; height: 14px; }
.btn-lg { padding: 18px 30px; font-size: 13px; }
.btn-sm { padding: 9px 16px; font-size: 11px; }
.btn-primary { background: var(--coral-300); color: var(--slate-700); }
.btn-primary:hover { background: var(--mist-300); color: #fff; text-decoration: none; }
.btn-primary:focus-visible { outline: none; box-shadow: var(--shadow-focus); }
.btn-secondary { background: transparent; color: var(--slate-500); border-color: var(--slate-500); }
.btn-secondary:hover { background: var(--slate-500); color: var(--coral-300); text-decoration: none; }
.btn-ghost {
  background: transparent; color: var(--slate-500); text-transform: none;
  letter-spacing: 0; font-weight: 600; border-radius: 8px; padding: 10px 14px;
}
.btn-ghost:hover { background: var(--mist-100); text-decoration: none; }
.btn-ghost i { color: var(--coral-500); }

.icon-btn {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--paper-300); border-radius: 999px;
  cursor: pointer; color: var(--slate-500); transition: all var(--dur-fast) var(--ease-out);
}
.icon-btn:hover { background: var(--mist-50); border-color: var(--slate-400); }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: auto;
  background: rgba(244,246,250,.84);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  border-bottom: var(--brand-band);
  box-shadow: 0 1px 0 rgba(60,90,130,.04);
  background: rgba(255,255,255,.86);
}
.header-inner {
  max-width: var(--content-max); margin: 0 auto; padding: 10px 32px;
  height: 100%;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px;
}

.brand { display: flex; align-items: center; text-decoration: none; color: inherit; }
.brand:hover { text-decoration: none; opacity: .88; }
.brand-logo-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.brand-svg-logo { display: block; height: 72px; width: auto; max-width: 340px; object-fit: contain; }
.brand-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: 12.5px; color: var(--mist-600); letter-spacing: .01em; line-height: 1;
}

@media (max-width: 960px) {
  .brand-svg-logo { height: 56px; max-width: 260px; }
}
@media (max-width: 480px) {
  .brand-svg-logo { height: 44px; max-width: 200px; }
  .brand-sub { font-size: 10.5px; }
}

.primary-nav { display: flex; gap: 4px; justify-self: center; }
.nav-link {
  position: relative;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px; color: var(--slate-500);
  padding: 11px 16px; border-radius: 999px; text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.nav-link:hover { color: var(--coral-500); text-decoration: none; }
.nav-link.active { background: var(--slate-500); color: var(--coral-300); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: var(--slate-500); text-decoration: none; padding: 11px 16px; border-radius: 999px;
  white-space: nowrap; transition: background var(--dur-fast) var(--ease-out);
}
.phone-link i { width: 18px; height: 18px; color: var(--coral-500); }
.phone-link:hover { background: var(--mist-100); text-decoration: none; }
.phone-link strong { font-weight: 700; }

.hamburger {
  display: none; background: transparent; border: none; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 999px; color: var(--slate-500);
}
.hamburger:hover { background: var(--mist-100); }

.mobile-drawer {
  position: fixed; top: 140px; left: 0; right: 0;
  background: var(--bg-surface); border-bottom: var(--brand-band);
  padding: 16px 24px 24px;
  display: none; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-md);
  z-index: 49;
}
.mobile-drawer.is-open {
  display: flex;
  animation: drawerIn 220ms var(--ease-out);
}
@keyframes drawerIn { from { transform: translateY(-8px); opacity: 0; } to { transform: none; opacity: 1; } }
.mobile-link {
  padding: 16px 6px; font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-decoration: none; color: var(--slate-500);
  border-bottom: 1px solid var(--paper-200);
  display: flex; align-items: center; justify-content: space-between;
  text-transform: uppercase; letter-spacing: .08em;
}
.mobile-link i { color: var(--coral-500); }
.mobile-link:hover { color: var(--coral-500); text-decoration: none; }
.mobile-link:last-of-type { border-bottom: none; }
.mobile-drawer .btn { margin-top: 12px; justify-content: center; }

/* =========================================================================
   ORZ INFO-BANNER
   ========================================================================= */
.orz-banner {
  background: var(--slate-600);
  color: var(--paper-0); padding: 14px 0;
  border-top: 3px solid var(--coral-400);
}
.orz-banner-inner { display: flex; align-items: center; }
.orz-banner-text { font-size: 16px; line-height: 1.5; animation: orz-pulse 3s ease-in-out infinite; }
.orz-banner-text strong { font-weight: 700; font-size: 17px; }
.orz-short { display: none; }
@keyframes orz-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .65; }
}
@media (max-width: 680px) {
  .orz-banner { padding: 11px 0; }
  .orz-banner-text { font-size: 13.5px; }
  .orz-long { display: none; }
  .orz-short { display: inline; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  padding: 110px 0 72px;
  border-bottom: var(--brand-band);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 80% 0%, var(--coral-50) 0%, transparent 55%),
              linear-gradient(180deg, var(--paper-50) 0%, var(--paper-100) 100%);
  z-index: -1;
}
.hero-top {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-bottom: 56px;
  text-align: center;
}
.hero-text {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-display {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px,4.2vw,56px);
  line-height: 1.05; letter-spacing: .025em; text-transform: uppercase;
  margin: 22px 0 0; color: var(--slate-600);
}
.hero-display .line { display: block; white-space: nowrap; }
.hero-display .accent {
  display: inline-block; position: relative; color: var(--slate-600);
}
.hero-display .accent::after {
  content: ""; position: absolute; left: -1%; right: -1%; bottom: 6%;
  height: .38em; background: var(--coral-200);
  z-index: -1; border-radius: 4px; transform: skewX(-6deg);
}
.hero-tagline {
  display: block; margin-top: 24px;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(17px,1.6vw,21px); line-height: 1.5; letter-spacing: 0;
  text-transform: none; color: var(--mist-600); max-width: 640px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: center; margin-top: 36px;
}
.hero-meta-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 13.5px;
  color: var(--slate-500); text-decoration: none;
}
.hero-meta-link i { width: 16px; height: 16px; color: var(--coral-500); }
.hero-meta-link:hover { color: var(--coral-500); text-decoration: none; }

.hero-banner-wrap {
  padding: 0 32px 56px;
  max-width: var(--content-wide);
  margin: 0 auto;
}
.hero-banner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1800 / 760;
  max-height: 520px;
  background: var(--mist-100);
}
.hero-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-banner::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(33,52,75,0) 55%, rgba(33,52,75,.22) 100%);
}
.hero-banner::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background: var(--coral-300); z-index: 2;
}

.hero-chip {
  position: absolute; top: 22px; left: 22px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--slate-500);
}
.hero-chip .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--success); box-shadow: 0 0 0 4px rgba(62,138,107,.18);
}

.hero-info {
  margin-top: 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg-surface);
  border: 1px solid var(--paper-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.hi-status {
  padding: 22px 26px;
  background: var(--slate-500);
  color: var(--paper-0);
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  position: relative;
}
.hi-status::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--coral-300);
}
.hi-status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,180,170,.18); color: var(--coral-300);
  padding: 5px 12px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 10.5px;
  letter-spacing: .16em; text-transform: uppercase;
}
.hi-status-pill .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--success); box-shadow: 0 0 0 4px rgba(62,138,107,.22);
}
/* Geschlossen-Zustand: Punkt gedämpft/grau */
.hero-chip.is-closed .dot,
.hi-status-pill.is-closed .dot {
  background: var(--paper-400); box-shadow: 0 0 0 4px rgba(126,134,147,.18);
}
.hi-status h3 {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--mist-300); line-height: 1.2; margin: 0;
}
.hi-today {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  font-variant-numeric: tabular-nums; color: var(--coral-300); margin: 0;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px;
  letter-spacing: .02em; line-height: 1.25;
}
.hi-today .sep { opacity: .5; font-weight: 400; }
.hi-closed { color: var(--mist-300); font-size: 15px; font-weight: 500; font-style: italic; }
.hi-status .btn { margin-top: 8px; padding: 10px 18px; font-size: 11px; }
.hi-status .btn-primary:hover { background: var(--paper-0); color: var(--slate-500); }

.hi-week { padding: 18px 26px; background: var(--bg-surface); display: flex; flex-direction: column; gap: 10px; }
.hi-week .eyebrow { font-size: 11px; }
.hi-week-table { width: 100%; border-collapse: collapse; }
.hi-week-table th, .hi-week-table td {
  padding: 6px 0; border-bottom: 1px solid var(--paper-200);
  font-family: var(--font-body); font-size: 13px; vertical-align: baseline;
}
.hi-week-table tr:last-child th,
.hi-week-table tr:last-child td { border-bottom: none; }
.hi-week-table th { text-align: left; font-weight: 700; color: var(--slate-600); width: 28%; }
.hi-week-table td { text-align: right; color: var(--slate-500); font-variant-numeric: tabular-nums; font-weight: 500; }
.hi-week-table tr.is-today th,
.hi-week-table tr.is-today td { color: var(--coral-700); font-weight: 700; }
.hi-week-table tr.is-today th::before {
  content: ""; display: inline-block;
  width: 4px; height: 4px; border-radius: 999px; background: var(--coral-500);
  margin-right: 8px; vertical-align: middle;
}
.hi-week-table tr.is-closed td { font-style: italic; color: var(--paper-500); font-weight: 400; }

.hero-motif {
  position: absolute; left: -100px; bottom: -80px;
  width: 220px; height: 220px;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 8px; opacity: .08; pointer-events: none; transform: rotate(-12deg);
}
.hero-motif span { display: block; border-radius: 16px; }
.hero-motif span:nth-child(1) { background: var(--slate-500); }
.hero-motif span:nth-child(2) { background: var(--coral-300); }
.hero-motif span:nth-child(3) { background: var(--coral-300); }
.hero-motif span:nth-child(4) { background: var(--slate-500); }

/* =========================================================================
   STATS
   ========================================================================= */
.stats { background: var(--bg-surface); border-bottom: 1px solid var(--paper-200); }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); padding: 28px 0; gap: 24px; }
.stat { display: flex; align-items: center; gap: 16px; padding: 8px 16px; border-left: 1px solid var(--paper-200); }
.stat:first-child { border-left: none; }
.stat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--coral-50); color: var(--coral-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-icon i { width: 22px; height: 22px; stroke-width: 1.5; }
.stat-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.stat-body strong {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--slate-600); line-height: 1.15; letter-spacing: .02em; white-space: nowrap;
}
.stat-body span {
  font-family: var(--font-body); font-size: 12px; color: var(--mist-500);
  letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.services { padding: 112px 0; background: var(--paper-100); position: relative; }
.services-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 40px; }
.filter-chip {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 700; color: var(--slate-500);
  text-transform: uppercase; letter-spacing: .1em;
  background: var(--bg-surface); border: 1px solid var(--paper-300); border-radius: 999px;
  padding: 10px 18px; cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out); white-space: nowrap;
}
.filter-chip:hover { border-color: var(--slate-500); }
.filter-chip.active { background: var(--slate-500); color: var(--coral-300); border-color: var(--slate-500); }

.services-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }
.svc-card {
  grid-column: span 4;
  background: var(--bg-surface); border: 1px solid var(--paper-200);
  border-radius: var(--radius-md); padding: 26px 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px; text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: var(--shadow-xs);
}
.svc-card.has-img { padding-top: 0; gap: 12px; min-height: 0; }

/* Bild-Bereich */
.svc-card-media {
  margin: 0 -24px;
  margin-top: -26px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}
.svc-card.feature .svc-card-media {
  margin: 0 -32px;
  margin-top: -32px;
}
.svc-card-media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.45s var(--ease-out);
}
.svc-card:hover .svc-card-media img { transform: scale(1.05); }

/* Tag unterhalb des Bildes */
.svc-card.has-img .svc-tag { align-self: flex-start; }
.svc-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--coral-300); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--mist-200); text-decoration: none; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover .svc-arrow { transform: translate(3px,-3px); color: var(--coral-500); }
.svc-card.feature {
  grid-column: span 6;
  background: var(--slate-500); color: var(--paper-0);
  border-color: var(--slate-500); min-height: 260px; padding: 32px;
}
.svc-card.feature::after { background: var(--coral-300); transform: scaleX(1); height: 5px; }
.svc-card.feature .svc-title { color: var(--paper-0); }
.svc-card.feature .svc-desc { color: var(--mist-100); }
.svc-card.feature .svc-icon { background: var(--coral-300); color: var(--slate-500); }
.svc-card.feature .svc-more { color: var(--coral-300); }

.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--coral-100); color: var(--coral-700);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-icon i { width: 24px; height: 24px; stroke-width: 1.5; }
.svc-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  margin: 0; line-height: 1.2; color: var(--slate-600);
}
.svc-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.55; color: var(--slate-500); margin: 0; flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.svc-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--coral-600);
  text-transform: uppercase; letter-spacing: .12em;
}
.svc-arrow { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease-out); color: var(--coral-500); }
.svc-tag {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: var(--mist-50); color: var(--mist-600);
}
.svc-card.feature .svc-tag { background: rgba(255,180,170,.15); color: var(--coral-300); }

/* =========================================================================
   WERTE
   ========================================================================= */
.werte { padding: 112px 0; background: var(--bg-surface); position: relative; }
.werte::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: var(--paper-200);
}
.werte-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 24px; }
.wert { position: relative; padding-top: 32px; border-top: 1px solid var(--paper-300); }
.wert-num {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: .14em; color: var(--coral-500);
  position: absolute; top: -10px; left: 0; background: var(--bg-surface); padding-right: 12px;
}
.wert h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; line-height: 1.2;
  margin: 0 0 16px; color: var(--slate-600); text-wrap: balance;
}
.wert p { margin: 0; color: var(--slate-500); font-size: 15px; line-height: 1.65; }
.werte-quote {
  margin: 80px auto 0; max-width: 800px; padding: 40px 48px;
  background: var(--paper-100); border-radius: var(--radius-md);
  border-left: 5px solid var(--coral-300); position: relative;
}
.werte-quote p {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(20px,2.2vw,26px); line-height: 1.4; color: var(--slate-600);
  margin: 0 0 14px; text-wrap: balance;
}
.werte-quote cite {
  font-family: var(--font-body); font-style: normal; font-size: 12px;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--coral-600);
}

/* =========================================================================
   TEAM
   ========================================================================= */
.team { padding: 112px 0; background: var(--paper-100); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: var(--bg-surface); border: 1px solid var(--paper-200);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--dur-base) var(--ease-out); box-shadow: var(--shadow-xs);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-portrait { aspect-ratio: 4/5; overflow: hidden; background: var(--mist-100); position: relative; }
.team-portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease-out); display: block; }
.team-card:hover .team-portrait img { transform: scale(1.04); }
.team-portrait::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background: var(--coral-300);
}
.team-role-pill {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--slate-500);
}
.team-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 6px; }
.team-name {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  line-height: 1.2; margin: 0; color: var(--slate-600);
  text-transform: uppercase; letter-spacing: .04em;
}
.team-title { font-size: 14px; line-height: 1.55; color: var(--mist-600); margin: 0; }
.team-bio { margin-top: 14px; border-top: 1px solid var(--paper-200); padding-top: 12px; }
.team-bio summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral-400); user-select: none;
}
.team-bio summary::-webkit-details-marker { display: none; }
.team-bio summary i { width: 14px; height: 14px; transition: transform .25s var(--ease-out); flex-shrink: 0; }
.team-bio[open] summary i { transform: rotate(180deg); }
.team-bio ul {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: flex; flex-direction: column; gap: 7px;
}
.team-bio ul li {
  font-size: 13px; line-height: 1.5; color: var(--mist-600);
  padding-left: 14px; position: relative;
}
.team-bio ul li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--coral-300);
}
.team-bio-lang {
  margin: 10px 0 0; font-size: 12.5px; color: var(--mist-500); padding-left: 14px;
}
.team-specialties {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 12px; border-top: 1px solid var(--paper-200); margin-top: 4px;
}
.team-specialties span {
  font-size: 11px; padding: 4px 10px;
  background: var(--mist-50); color: var(--slate-500); border-radius: 999px; font-weight: 600;
}
.team-staff {
  margin-top: 48px; padding-top: 36px;
  border-top: 1px solid var(--paper-200);
}
.team-staff-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mist-500); margin: 0 0 20px;
}
.team-staff-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px 32px;
}
.team-staff-list li {
  display: flex; flex-direction: column; gap: 2px;
}
.staff-name {
  font-size: 14px; font-weight: 600; color: var(--slate-600);
}
.staff-role {
  font-size: 13px; color: var(--mist-500);
}

/* =========================================================================
   PRAXIS
   ========================================================================= */
.praxis { padding: 112px 0; background: var(--bg-surface); }
.praxis-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: stretch; }
.praxis-info { display: flex; flex-direction: column; gap: 28px; }
.praxis-card {
  background: var(--paper-50); border: 1px solid var(--paper-200);
  border-radius: var(--radius-md); padding: 28px 32px;
}
.praxis-card h3 {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--slate-600);
  margin: 0 0 18px; display: flex; align-items: center; gap: 10px;
}
.praxis-card h3 i { width: 16px; height: 16px; color: var(--coral-500); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 8px 0; border-bottom: 1px solid var(--paper-200);
  font-size: 14px; color: var(--slate-500); font-variant-numeric: tabular-nums;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .day { width: 32%; font-weight: 700; }
.hours-table .closed { color: var(--paper-500); font-style: italic; }
.hours-table tr.today { color: var(--coral-700); }
.hours-table tr.today td { color: var(--coral-700); }
.hours-table tr.today .day::before {
  content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 999px;
  background: var(--coral-500); margin-right: 10px; vertical-align: middle;
}
.hours-note {
  margin-top: 16px; padding: 14px 16px;
  background: var(--mist-50); border-radius: var(--radius-sm);
  font-size: 13px; color: var(--slate-500); line-height: 1.55; display: flex; gap: 10px;
}
.hours-note i { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--slate-500); }
.contact-rows { display: flex; flex-direction: column; gap: 16px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14.5px; line-height: 1.5; color: var(--slate-500);
}
.contact-row i { width: 18px; height: 18px; margin-top: 2px; color: var(--coral-500); flex-shrink: 0; }
.contact-row strong { display: block; color: var(--slate-600); margin-bottom: 2px; font-weight: 700; }
.contact-row a { color: var(--coral-600); }

.praxis-map {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--paper-200);
  background: var(--mist-50); position: relative; min-height: 480px;
  box-shadow: var(--shadow-sm);
}
.praxis-map iframe { display: block; width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }

/* 2-Klick Google Maps Consent */
.map-consent {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  background: var(--mist-50);
  border-radius: var(--radius-md);
}
.map-consent-inner {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center; padding: 32px 40px; max-width: 380px;
}
.map-consent-inner > i { width: 40px; height: 40px; color: var(--coral-500); }
.map-consent-inner p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--slate-500); }
.map-consent-inner a { color: var(--coral-600); }
.map-consent-links { font-size: 13px; }
.map-consent-links a { display: inline-flex; align-items: center; gap: 5px; color: var(--slate-500); text-decoration: underline; }
.map-consent-links a:hover { color: var(--coral-600); }
.map-consent-links i { width: 13px; height: 13px; }
.map-frame { position: absolute; inset: 0; }
.praxis-map .pin {
  position: absolute; top: 46%; left: 54%;
  transform: translate(-50%,-100%);
}
.pin-dot {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--coral-300); border: 4px solid var(--paper-0);
  box-shadow: var(--shadow-md); position: relative; z-index: 1;
}
.pin-pulse {
  position: absolute; inset: -10px; border-radius: 999px;
  border: 2px solid var(--coral-300);
  animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { transform: scale(.6); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.pin-label {
  position: absolute; left: 50%; bottom: 100%; transform: translate(-50%,-8px);
  background: var(--slate-500); color: var(--coral-300);
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 700; font-size: 11.5px;
  letter-spacing: .12em; text-transform: uppercase; white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.pin-label::after {
  content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--slate-500);
}
.map-overlay { position: absolute; right: 16px; top: 16px; display: flex; flex-direction: column; gap: 8px; z-index: 2; }
.map-overlay .btn {
  background: var(--bg-surface); color: var(--slate-500); border: 1px solid var(--paper-300);
  box-shadow: var(--shadow-xs);
}
.map-overlay .btn:hover { border-color: var(--coral-300); color: var(--coral-600); text-decoration: none; }

/* =========================================================================
   AKTUELLES
   ========================================================================= */
.aktuelles { padding: 112px 0; background: var(--paper-100); border-top: 1px solid var(--paper-200); }
.aktuelles-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; grid-auto-flow: dense; }
.news-card.tone-laser .img::after { background: linear-gradient(135deg, #f5c842 0%, #e8843a 100%); }
.news-card.tone-laser .img-num { font-size: 56px; letter-spacing: -.02em; }
.news-card {
  background: var(--bg-surface); border: 1px solid var(--paper-200);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: all var(--dur-base) var(--ease-out);
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--mist-200); text-decoration: none; }
.news-card .img { aspect-ratio: 16/9; background: var(--mist-100); position: relative; overflow: hidden; }
.news-card .img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 500ms var(--ease-out);
}
.news-card:hover .img img { transform: scale(1.04); }
.news-card .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(30,40,60,.45) 100%);
}
.news-cat-pill {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  padding: 5px 11px; border-radius: 999px;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--coral-500);
}
.news-card .body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card .cat {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--coral-500);
}
.news-card h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  line-height: 1.25; margin: 0; color: var(--slate-600);
  text-transform: uppercase; letter-spacing: .03em; text-wrap: balance;
}
.news-card p { margin: 0; font-size: 14px; color: var(--slate-500); line-height: 1.55; }
.news-card .more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 4px;
  font-size: 11px; font-weight: 700; color: var(--coral-600);
  text-transform: uppercase; letter-spacing: .14em;
}
.news-card .more i { width: 12px; height: 12px; }
.news-card.feature { grid-row: span 2; }
.news-card.feature .img { aspect-ratio: 4/3; }
.news-card.feature h3 { font-size: 22px; }

/* =========================================================================
   STUDIEN & REGISTER
   ========================================================================= */
.studien { padding: 112px 0; background: var(--bg-surface); border-top: 1px solid var(--paper-200); }
.studien-group { margin-top: 52px; }
.studien-group-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral-400); margin: 0 0 16px;
}
.studien-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.studien-grid--2 { grid-template-columns: repeat(2, 1fr); }
.studien-card {
  background: var(--paper-50); border: 1px solid var(--paper-200);
  border-radius: var(--radius-md); padding: 28px 26px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.studien-card:hover { box-shadow: var(--shadow-sm); border-color: var(--mist-200); }
.studien-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--coral-50); display: flex; align-items: center; justify-content: center;
}
.studien-icon i { width: 18px; height: 18px; color: var(--coral-500); }
.studien-icon--study { background: var(--mist-50); }
.studien-icon--study i { color: var(--slate-400); }
.studien-name {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--slate-600); margin: 4px 0 0; letter-spacing: .02em; text-transform: uppercase;
}
.studien-desc { font-size: 13.5px; line-height: 1.6; color: var(--mist-600); margin: 0; flex-grow: 1; }
.studien-link {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 6px;
  font-size: 13px; font-weight: 600; color: var(--coral-500); text-decoration: none;
  transition: color var(--dur-base);
}
.studien-link i { width: 13px; height: 13px; }
.studien-link:hover { color: var(--coral-700); }

/* =========================================================================
   ONLINE-REZEPTION
   ========================================================================= */
.orz-section { padding: 112px 0; background: var(--paper-100); border-top: 1px solid var(--paper-200); }
.orz-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.orz-card {
  background: var(--bg-surface); border: 1px solid var(--paper-200);
  border-radius: var(--radius-md); padding: 32px 24px 28px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  text-decoration: none; color: inherit;
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.orz-card:hover { box-shadow: var(--shadow-md); border-color: var(--coral-300); transform: translateY(-3px); text-decoration: none; }
.orz-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--coral-50); display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.orz-icon i { width: 22px; height: 22px; color: var(--coral-500); }
.orz-card strong { font-size: 16px; font-weight: 700; color: var(--slate-600); font-family: var(--font-display); }
.orz-card span { font-size: 13.5px; line-height: 1.5; color: var(--mist-500); }
.orz-hint {
  margin-top: 20px; display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--mist-400);
}
.orz-hint i { width: 14px; height: 14px; color: var(--mist-400); flex-shrink: 0; }
@media (max-width: 860px) { .orz-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .orz-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   CTA STRIP
   ========================================================================= */
.cta-strip {
  background: var(--slate-500); color: var(--paper-0);
  padding: 64px 0; position: relative; overflow: hidden;
}
.cta-strip::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background: var(--coral-300);
}
.cta-grid { display: grid; grid-template-columns: 1.4fr auto; gap: 48px; align-items: center; }
.cta-strip h2 {
  font-family: var(--font-display); font-size: clamp(26px,3.4vw,38px);
  line-height: 1.15; letter-spacing: .04em; text-transform: uppercase;
  margin: 0; color: var(--paper-0); text-wrap: balance;
}
.cta-strip h2 .accent { color: var(--coral-300); }
.cta-strip p { color: var(--mist-300); margin: 14px 0 0; font-size: 16px; line-height: 1.6; max-width: 560px; }
.cta-strip .btn-primary:hover { background: var(--paper-0); }
.cta-strip .btn-outline {
  background: transparent; color: var(--coral-300); border: 1px solid var(--coral-300);
}
.cta-strip .btn-outline:hover { background: var(--coral-300); color: var(--slate-500); }
.cta-decor {
  position: absolute; right: -60px; top: -40px;
  width: 220px; height: 220px; opacity: .08;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px;
  transform: rotate(8deg);
}
.cta-decor span { display: block; border-radius: 16px; }
.cta-decor span:nth-child(1), .cta-decor span:nth-child(4) { background: var(--paper-0); }
.cta-decor span:nth-child(2), .cta-decor span:nth-child(3) { background: var(--coral-300); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--slate-600); color: var(--mist-300); padding: 72px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1fr; gap: 56px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(170,190,215,.15);
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand .brand-mark {
  width: 52px; height: 52px; display: block; object-fit: contain;
  background: var(--paper-0); border-radius: 10px; padding: 4px; flex-shrink: 0;
}
.footer-brand strong {
  color: var(--paper-0); font-family: var(--font-display); font-weight: 700;
  font-size: 15px; letter-spacing: .08em; text-transform: uppercase; line-height: 1.3;
}
.footer-tagline {
  font-family: var(--font-display); font-style: italic; color: var(--mist-400);
  margin: 18px 0 0; font-size: 14px; line-height: 1.65; max-width: 260px;
}
.footer-h {
  font-family: var(--font-body); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700; color: var(--coral-300); margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-col li { font-size: 14px; line-height: 1.55; color: var(--mist-300); display: flex; gap: 10px; align-items: flex-start; }
.footer-col li i { width: 14px; height: 14px; margin-top: 3px; color: var(--coral-300); flex-shrink: 0; }
.footer-col a { color: var(--mist-300); text-decoration: none; font-weight: 400; transition: color .15s; }
.footer-col a:hover { color: var(--paper-0); }
.footer-hours ul { gap: 6px; }
.footer-hours li { font-variant-numeric: tabular-nums; font-size: 13px; gap: 12px; }
.footer-hours li span:first-child { color: var(--coral-300); font-weight: 700; min-width: 28px; }
.footer-nav-cta { margin-top: 8px; padding-top: 16px; border-top: 1px solid rgba(170,190,215,.15); }
.footer-nav-cta a { color: var(--coral-300) !important; font-weight: 600 !important; }
.footer-nav-cta a:hover { color: var(--paper-0) !important; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--mist-500);
  font-family: var(--font-display); font-style: italic;
}
.footer-bottom-links { display: flex; gap: 20px; font-style: normal; }
.footer-bottom-links a { color: var(--mist-400); text-decoration: none; font-weight: 500; transition: color .15s; }
.footer-bottom-links a:hover { color: var(--coral-300); }

/* =========================================================================
   BOOKING SHEET
   ========================================================================= */
.sheet-backdrop {
  position: fixed; inset: 0; background: rgba(33,52,75,.55);
  backdrop-filter: blur(3px); z-index: 90;
  animation: fadeIn 200ms var(--ease-out);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.booking-sheet {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(560px,100vw);
  background: var(--bg-surface); z-index: 100; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideIn 260ms var(--ease-out);
  display: flex; flex-direction: column;
  border-left: var(--brand-band);
}
.sheet-body--widget {
  padding: 0; flex: 1; display: flex; flex-direction: column;
}
.sheet-body--widget arzt-direkt-online-rezeption {
  flex: 1; display: block; min-height: 600px;
}
@keyframes slideIn { from { transform: translateX(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.sheet-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 28px 32px 18px; border-bottom: 1px solid var(--paper-200);
}
.sheet-head .eyebrow { display: block; margin-bottom: 8px; }
.sheet-head h2 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  margin: 0; line-height: 1.2; color: var(--slate-600);
  text-transform: uppercase; letter-spacing: .04em;
}
.sheet-body { padding: 24px 32px 32px; display: flex; flex-direction: column; gap: 22px; flex: 1; }
.sheet-body p.lead { font-size: 14.5px; line-height: 1.6; color: var(--slate-500); margin: 0; }
.booking-step-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--coral-500); margin: 0;
}
.booking-options { display: flex; flex-direction: column; gap: 10px; }
.booking-option {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  border: 1px solid var(--paper-300); border-radius: var(--radius-md);
  background: var(--bg-surface); text-decoration: none; color: var(--slate-500);
  cursor: pointer; transition: all var(--dur-fast) var(--ease-out);
  width: 100%; text-align: left; font-family: var(--font-body);
}
.booking-option:hover { border-color: var(--coral-300); background: var(--coral-50); }
.booking-option.primary { background: var(--coral-300); border-color: var(--coral-300); }
.booking-option.primary:hover { background: var(--mist-300); color: var(--paper-0); border-color: var(--mist-300); }
.booking-option.primary .opt-icon { background: var(--slate-500); color: var(--coral-300); }
.opt-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--coral-100); color: var(--coral-700);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.opt-icon i { width: 22px; height: 22px; }
.opt-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.opt-body strong { font-size: 15px; font-weight: 700; }
.opt-body span { font-size: 12px; opacity: .78; }
.opt-arrow { width: 16px; height: 16px; opacity: .6; flex-shrink: 0; }
.calendar-grid {
  display: grid; grid-template-columns: repeat(7,1fr); gap: 4px;
  background: var(--paper-50); padding: 14px; border-radius: var(--radius-md);
  border: 1px solid var(--paper-200);
}
.cal-head, .cal-cell {
  font-family: var(--font-body); font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  height: 38px; border-radius: 8px;
}
.cal-head { font-weight: 700; color: var(--mist-500); letter-spacing: .1em; text-transform: uppercase; font-size: 10px; height: 28px; }
.cal-cell {
  background: var(--bg-surface); color: var(--slate-500); cursor: pointer;
  border: 1px solid transparent; font-variant-numeric: tabular-nums;
  transition: all var(--dur-fast) var(--ease-out);
}
.cal-cell:hover { border-color: var(--coral-300); }
.cal-cell.muted { color: var(--paper-400); background: transparent; cursor: default; }
.cal-cell.muted:hover { border-color: transparent; }
.cal-cell.selected { background: var(--coral-300); color: var(--slate-600); font-weight: 700; }
.cal-cell.today { font-weight: 700; color: var(--coral-600); }
.slot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.slot {
  padding: 10px; border-radius: 10px; border: 1px solid var(--paper-300);
  background: var(--bg-surface); color: var(--slate-500); cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  font-variant-numeric: tabular-nums;
  transition: all var(--dur-fast) var(--ease-out);
}
.slot:hover { border-color: var(--coral-300); }
.slot.selected { background: var(--coral-300); color: var(--slate-600); border-color: var(--coral-300); font-weight: 700; }
.slot:disabled { opacity: .4; cursor: not-allowed; }
.sheet-info {
  display: flex; gap: 12px; padding: 14px 16px; background: var(--mist-50);
  border-radius: var(--radius-sm); font-size: 13px; color: var(--slate-500); line-height: 1.55;
}
.sheet-info i { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--slate-500); }
.sheet-info strong { display: block; margin-bottom: 2px; }
.sheet-footer {
  padding: 16px 32px 24px; border-top: 1px solid var(--paper-200);
  display: flex; gap: 12px; align-items: center; justify-content: space-between;
}

/* =========================================================================
   MOBILE CTA
   ========================================================================= */
.mobile-cta {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40;
}
.mobile-cta .btn { width: 100%; justify-content: center; box-shadow: var(--shadow-lg); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(3) { border-left: none; }
  .svc-card { grid-column: span 6; }
  .svc-card.feature { grid-column: span 12; }
  .werte-grid { grid-template-columns: 1fr; }
  .aktuelles-grid { grid-template-columns: 1fr 1fr; }
  .news-card.feature { grid-row: auto; grid-column: span 2; }
  .studien-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .phone-link span { display: none; }
  .hamburger { display: inline-flex; }
  .praxis-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 680px) {
  body { padding-top: 118px; padding-bottom: 88px; } /* 80px nav + ~38px banner */
  .mobile-drawer { top: 118px; }
  .header-inner { padding: 0 16px; }
  .wrap { padding: 0 20px; }
  .wrap-max { padding: 0 16px; }
  .hero { padding: 40px 0 56px; }
  .hero-banner-wrap { padding: 0 16px 40px; }
  .hero-banner { aspect-ratio: 4/3; max-height: none; }
  .hero-info { grid-template-columns: 1fr; }
  .hi-status { padding: 28px; }
  .hi-week { padding: 24px 28px; }
  .stats-grid { grid-template-columns: 1fr; padding: 16px 0; gap: 8px; }
  .stat { border-left: none; border-top: 1px solid var(--paper-200); }
  .stat:first-child { border-top: none; }
  .services, .werte, .team, .praxis, .aktuelles { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card, .svc-card.feature { grid-column: auto; }
  .aktuelles-grid { grid-template-columns: 1fr; }
  .news-card.feature { grid-column: auto; }
  .studien-grid, .studien-grid--2 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .mobile-cta { display: block; }
  .cta-grid { grid-template-columns: 1fr; }
  .werte-quote { padding: 28px; }
  .booking-sheet { width: 100vw; border-left: none; }
  .hero-display { font-size: clamp(26px,7.5vw,38px); }
  .hero-display .line { white-space: normal; }
}

/* =========================================================================
   BOOKING SHEET — Fix: hidden-Attribut respektieren
   (.booking-sheet setzt display:flex und überschreibt sonst [hidden])
   ========================================================================= */
.booking-sheet[hidden] { display: none; }

/* =========================================================================
   LEISTUNG DETAIL — virtuelle Leistungs-Unterseiten (/leistungen/<slug>/)
   ========================================================================= */
.leistung-wrap { padding-top: 56px; padding-bottom: 100px; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; font-weight: 600; color: var(--paper-500);
  margin-bottom: 36px;
}
.breadcrumb a { color: var(--mist-600); text-decoration: none; }
.breadcrumb a:hover { color: var(--coral-500); }
.breadcrumb i { width: 14px; height: 14px; color: var(--paper-400); }
.breadcrumb span { color: var(--slate-600); }

.leistung-head {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-bottom: 28px; margin-bottom: 44px;
  border-bottom: var(--brand-band);
}
.leistung-head .svc-icon { width: 60px; height: 60px; border-radius: var(--radius-md); }
.leistung-head .svc-icon i { width: 30px; height: 30px; }
.leistung-head .h-section { margin: 6px 0 0; }
.leistung-head .svc-tag { margin-left: auto; }

.leistung-hero {
  margin: 0 0 44px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1800 / 1000;
  max-height: 460px;
  background: var(--mist-100);
}
.leistung-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

.leistung-main { max-width: 860px; }
.leistung-intro {
  font-size: 19px; line-height: 1.6; color: var(--slate-500);
  margin: 0 0 36px;
}
.leistung-section { margin-bottom: 34px; }
.leistung-section h2 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--slate-600);
  margin: 0 0 14px;
}
.leistung-section p { font-size: 16px; line-height: 1.7; color: var(--slate-500); margin: 0 0 14px; }
.leistung-section ul { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 10px; }
.leistung-section li {
  position: relative; padding-left: 28px;
  font-size: 16px; line-height: 1.6; color: var(--slate-500);
}
.leistung-section li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--coral-300);
}

.leistung-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--mist-600); text-decoration: none; padding: 6px 2px;
}
.leistung-back:hover { color: var(--coral-500); }
.leistung-back i { width: 16px; height: 16px; }

.leistung-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--paper-50); border: 1px solid var(--paper-200);
  border-radius: var(--radius-md); padding: 18px 20px;
}
.leistung-note i { width: 18px; height: 18px; color: var(--coral-500); flex-shrink: 0; margin-top: 2px; }
.leistung-note p { margin: 0; font-size: 14px; color: var(--slate-500); }

/* Zentrierter Medien-Slider (Galerie + Video-Slide) */
.leistung-slider { max-width: 760px; margin: 12px auto 8px; }
.leistung-slider-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--slate-600);
  margin: 0 0 16px; text-align: center;
}

.lz-slider { position: relative; }
.lz-viewport {
  overflow: hidden; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); background: var(--mist-100);
}
.lz-track { display: flex; transition: transform 420ms var(--ease-out); }
.lz-slide {
  position: relative; flex: 0 0 100%; margin: 0;
  aspect-ratio: 16 / 10; background: var(--mist-100);
}
.lz-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Video-Slide: Klick lädt den Player inline (kein neuer Tab) */
.lz-video { background: var(--slate-700); }
.lz-video .lz-video-thumb { opacity: .85; }
.lz-video-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--coral-300); color: var(--slate-600);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.lz-video-btn:hover { transform: translate(-50%,-50%) scale(1.06); background: var(--mist-300); color: #fff; }
.lz-video-btn i { width: 28px; height: 28px; margin-left: 3px; }
.lz-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lz-video.is-playing .lz-video-btn,
.lz-video.is-playing .lz-video-thumb { display: none; }

.lz-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--slate-600);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); z-index: 2; transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.lz-arrow:hover { background: #fff; color: var(--coral-600); }
.lz-arrow i { width: 20px; height: 20px; }
.lz-arrow-prev { left: 12px; }
.lz-arrow-next { right: 12px; }

.lz-dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.lz-dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: var(--paper-300); transition: background var(--dur-fast) var(--ease-out);
}
.lz-dot.is-active { background: var(--coral-400); }

@media (max-width: 860px) {
  .leistung-wrap { padding-top: 40px; padding-bottom: 72px; }
}
