/* =========================================================
   Praxis Schneider · Diabeteszentrum Oberhausen
   Design system — fresh & medical, petrol/teal, classic-serious
   ========================================================= */

:root {
  /* Surfaces */
  --bg:        oklch(0.993 0.004 200);
  --bg-soft:   oklch(0.975 0.010 195);
  --bg-mint:   oklch(0.963 0.016 188);
  --white:     #ffffff;

  /* Petrol / deep sections */
  --petrol:        oklch(0.475 0.066 209);
  --petrol-deep:   oklch(0.345 0.050 211);
  --petrol-ink:    oklch(0.265 0.040 212);

  /* Accent teals */
  --teal:      oklch(0.640 0.094 193);
  --teal-soft: oklch(0.760 0.072 188);
  --mint:      oklch(0.870 0.052 180);

  /* Urgent (Notfall / Rezept) — muted warm */
  --coral:     oklch(0.640 0.130 34);
  --coral-soft:oklch(0.940 0.034 40);

  /* Amber accent — warmth & friendliness (Focus-Auszeichnung) */
  --amber:      oklch(0.770 0.130 75);
  --amber-deep: oklch(0.560 0.110 62);

  /* Text */
  --ink:       oklch(0.275 0.022 220);
  --ink-soft:  oklch(0.470 0.020 218);
  --ink-faint: oklch(0.620 0.016 214);

  /* Lines / shadow — papercut: crisp edges + hard offset shadows */
  --line:      oklch(0.905 0.012 205);
  --line-soft: oklch(0.945 0.008 202);
  --edge:      oklch(0.890 0.013 205);
  /* Quiet & flat: minimal soft shadows, hairline-led */
  --shadow-sm: 0 1px 2px rgba(28,68,78,.04), 0 1px 3px rgba(28,68,78,.04);
  --shadow-md: 0 6px 18px rgba(28,68,78,.06);
  --shadow-lg: 0 16px 44px rgba(28,68,78,.09);
  --shadow-press: none;

  /* Type */
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:  "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm — quiet: gentle, calm corners */
  --r-sm: 6px;
  --r-md: 9px;
  --r-lg: 13px;
  --r-xl: 18px;
  --container: 1320px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--petrol-ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--petrol); text-decoration: none; }
a:hover { color: var(--petrol-deep); }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

section { position: relative; }
.section-pad { padding-block: clamp(56px, 8vw, 104px); }

/* ---------- Eyebrow / kicker ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.kicker.on-dark { color: var(--teal-soft); }
.kicker.on-dark::before { background: var(--teal-soft); }

.section-title { font-size: clamp(30px, 4vw, 46px); }
.lead { font-size: clamp(19px, 2.2vw, 22px); color: var(--ink-soft); line-height: 1.55; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --bg: var(--petrol);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--petrol); color: #fff; }
.btn-primary:hover { background: var(--petrol-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-teal { background: var(--teal); color: var(--petrol-ink); }
.btn-teal:hover { background: var(--teal-soft); color: var(--petrol-ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: #fff; color: var(--petrol); border-color: var(--line); }
.btn-ghost:hover { color: var(--petrol-deep); border-color: var(--teal-soft); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-coral { background: var(--coral); color:#fff; }
.btn-coral:hover { filter: brightness(.96); transform: translateY(-2px); box-shadow: var(--shadow-md); color:#fff; }
.btn-lg { padding: 16px 32px; font-size: 17.5px; }
.btn-on-dark { background: #fff; color: var(--petrol-deep); border-color: #fff; }
.btn-on-dark:hover { background: var(--mint); color: var(--petrol-ink); border-color: var(--mint); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* =========================================================
   Top utility bar
   ========================================================= */
.utility {
  background: var(--petrol-deep);
  color: oklch(0.92 0.02 195);
  font-size: 14.5px;
}
.utility .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 42px; flex-wrap: wrap; }
.utility-list { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.utility-item { display: inline-flex; align-items: center; gap: 7px; color: oklch(0.90 0.02 195); white-space: nowrap; flex: none; }
.utility-item svg { width: 15px; height: 15px; opacity: .85; }
.utility a.utility-item:hover { color: #fff; }
.utility-date { color: oklch(0.78 0.02 195); white-space: nowrap; flex: none; }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }

.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 6px;
  background: linear-gradient(150deg, var(--petrol), var(--teal));
  display: grid; place-items: center; flex: none;
  box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 25px; height: 25px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--petrol-ink); letter-spacing: -.01em; white-space: nowrap; }
.brand-sub { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--teal); white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600; font-size: 16.5px; color: var(--ink-soft);
  padding: 10px 15px; border-radius: 4px; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--petrol-deep); background: var(--bg-soft); }
.nav-links a.active { color: var(--petrol-deep); background: var(--bg-mint); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 5px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--petrol-ink); border-radius: 2px; transition: .25s; }

/* =========================================================
   Hero
   ========================================================= */
.hero { background: linear-gradient(180deg, var(--bg-mint), var(--bg) 78%); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding-block: clamp(48px, 6vw, 86px);
}
.hero .hero-title { font-size: clamp(28px, 3vw, 42px); line-height: 1.08; letter-spacing: -.02em; }
.hero .hero-title .accent { color: var(--petrol); }
.hero-lead { font-size: clamp(19px, 2.1vw, 23px); color: var(--ink-soft); max-width: 33ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
.hero-trust .pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; color: var(--ink-soft);
}
.hero-trust .pill svg { width: 18px; height: 18px; color: var(--teal); flex:none; }

.hero-visual { position: relative; }
.hero-figure { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.6; }
.hero-badge {
  position: absolute; left: -22px; bottom: 36px;
  background: #fff; border-radius: var(--r-lg); padding: 18px 22px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px; max-width: 270px;
}
.hero-badge .num { font-family: var(--serif); font-weight: 700; font-size: 34px; color: var(--petrol); line-height: 1; }
.hero-badge .seal { width: 54px; height: 54px; flex: none; object-fit: contain; }
.hero-badge .lbl { font-size: 14px; color: var(--ink-soft); line-height: 1.32; }
.hero-badge .lbl b { color: var(--petrol-ink); font-weight: 700; }

/* =========================================================
   Image placeholder
   ========================================================= */
.ph {
  position: relative; width: 100%; height: 100%;
  background-color: var(--bg-soft);
  background-image:
    repeating-linear-gradient(135deg,
      transparent 0 13px,
      color-mix(in oklch, var(--teal) 16%, transparent) 13px 14px);
  display: grid; place-items: center; color: var(--petrol);
}
.ph::after {
  content: attr(data-label);
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--petrol); background: rgba(255,255,255,.82);
  padding: 7px 13px; border-radius: 4px; border: 1px solid var(--line);
  text-align: center; max-width: 80%;
}

/* =========================================================
   Quick-access cards (contact / hours / rezept / notfall)
   ========================================================= */
.quick { margin-top: -42px; position: relative; z-index: 5; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.qcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 22px 22px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 4px; transition: transform .18s, box-shadow .2s, border-color .2s;
}
.qcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-soft); }
.qcard .ic {
  width: 46px; height: 46px; border-radius: 6px; display: grid; place-items: center;
  background: var(--bg-mint); color: var(--petrol); margin-bottom: 12px;
}
.qcard .ic svg { width: 23px; height: 23px; }
.qcard.urgent .ic { background: var(--coral-soft); color: var(--coral); }
.qcard h3 { font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 4px; }
.qcard .big { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--petrol-ink); }
.qcard .big a { color: inherit; }
.qcard .big a:hover { color: var(--petrol); }
.qcard .sub { font-size: 14.5px; color: var(--ink-soft); }
.qcard.urgent .big { color: var(--coral); }

/* =========================================================
   Welcome / split text
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split.narrow-img { grid-template-columns: 1.1fr .9fr; }
.prose p { color: var(--ink-soft); }
.prose p strong { color: var(--ink); }
.figure-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; }

.stat-row { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 30px; }
.stat .n { font-family: var(--serif); font-weight: 700; font-size: 40px; color: var(--petrol); line-height: 1; }
.stat .l { font-size: 14.5px; color: var(--ink-soft); margin-top: 6px; max-width: 16ch; }

/* =========================================================
   Services grid
   ========================================================= */
.bg-soft { background: var(--bg-soft); }
.bg-mint { background: var(--bg-mint); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-soft); }
.svc .ic {
  width: 54px; height: 54px; border-radius: 6px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--bg-mint), var(--mint)); color: var(--petrol); margin-bottom: 18px;
}
.svc.feat .ic { background: linear-gradient(145deg, var(--petrol), var(--teal)); color: #fff; }
.svc .ic svg { width: 27px; height: 27px; }
.svc h3 { font-size: 22px; margin-bottom: 8px; }
.svc p { font-size: 16px; color: var(--ink-soft); margin: 0; }
.svc .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.svc .tag { font-size: 13.5px; font-weight: 600; color: var(--petrol); background: var(--bg-mint); padding: 5px 11px; border-radius: 4px; }

/* =========================================================
   Trust / certifications band
   ========================================================= */
.trust-band { background: var(--petrol-deep); color: oklch(0.93 0.018 195); }
.trust-band h2 { color: #fff; }
.trust-band .lead { color: oklch(0.85 0.025 192); }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.cert {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 26px 22px; text-align: left;
}
.cert .ic { width: 44px; height: 44px; border-radius: 5px; background: rgba(255,255,255,.10); color: var(--teal-soft); display: grid; place-items: center; margin-bottom: 16px; }
.cert .ic svg { width: 23px; height: 23px; }
.cert h3 { color: #fff; font-size: 18.5px; margin-bottom: 6px; }
.cert p { color: oklch(0.82 0.02 192); font-size: 14.5px; margin: 0; }

/* Logo strip (Zertifikate & Mitgliedschaften) on the trust band */
.logo-strip { margin-top: 40px; padding-top: 32px; border-top: 1.5px solid rgba(255,255,255,.18); }
.logo-strip .lbl { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-soft); margin-bottom: 20px; }
.logo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.logo-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  aspect-ratio: 5/3; box-shadow: none;
  display: grid; place-items: center; padding: 16px; min-width: 0; overflow: hidden;
}
.logo-tile .ph { border-radius: 0; background-color: #fff; background-image: repeating-linear-gradient(135deg, transparent 0 11px, color-mix(in oklch, var(--petrol) 12%, transparent) 11px 12px); }
.logo-tile .ph::after { font-size: 11px; padding: 5px 9px; background: #fff; color: var(--petrol); border-color: var(--line); }
.logo-tile img { max-width: 90%; max-height: 104px; width: auto; height: auto; object-fit: contain; display: block; }
a.logo-tile { transition: transform .16s ease, box-shadow .16s ease; }
a.logo-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Image cover helper */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Gallery — papercut photo cards */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.gallery-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border: 1.5px solid var(--edge); border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  transition: transform .18s ease, box-shadow .2s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery-item .cap {
  position: absolute; left: 12px; bottom: 12px;
  background: #fff; border: 1.5px solid var(--edge); border-radius: var(--r-sm);
  font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .02em;
  color: var(--petrol-ink); padding: 6px 12px; box-shadow: var(--shadow-sm);
}

/* Doctor card details */
.member { align-items: flex-start; }
.avatar { margin-top: 2px; }
.member-title { font-size: 14.5px; color: var(--ink-soft); margin: 4px 0 0; }
.quals { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.qual { font-size: 12.5px; font-weight: 600; color: var(--petrol); background: var(--bg-mint); border: 1px solid var(--line); padding: 4px 9px; border-radius: var(--r-sm); }

/* MFA / Praxisteam block */
.staff { margin-top: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: clamp(28px, 4vw, 42px); }
.staff-head { display: flex; align-items: center; gap: 18px; margin-bottom: 8px; }
.staff-head .ic { width: 56px; height: 56px; flex: none; border-radius: var(--r-md); border: 1.5px solid var(--edge); background: linear-gradient(145deg, var(--petrol), var(--teal)); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.staff-head .ic svg { width: 28px; height: 28px; }
.staff-head .n { font-family: var(--serif); font-weight: 700; font-size: clamp(26px, 3vw, 34px); color: var(--petrol-ink); line-height: 1.05; }
.staff-head .s { font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--teal); }
.staff > p { color: var(--ink-soft); max-width: 70ch; margin: 0; }
.staff-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.staff-stat { background: var(--bg-mint); border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px; }
.staff-stat .n { font-family: var(--serif); font-weight: 700; font-size: 30px; color: var(--petrol); line-height: 1; }
.staff-stat .l { font-size: 14px; color: var(--ink-soft); margin-top: 6px; text-wrap: balance; }

/* =========================================================
   Team
   ========================================================= */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .2s; display: flex; align-items: center; gap: 22px; padding: 22px 24px; }
.member:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.avatar {
  width: 88px; height: 88px; flex: none; border-radius: var(--r-md);
  border: 1.5px solid var(--edge); display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 32px; color: #fff;
  box-shadow: var(--shadow-sm); letter-spacing: .01em;
}
.member-body { padding: 0; }
.member-body h3 { font-size: 21px; margin-bottom: 3px; }
.member-role { color: var(--teal); font-weight: 700; font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase; }
.member-body p { font-size: 15px; color: var(--ink-soft); margin: 9px 0 0; }

/* =========================================================
   Online booking (123Med) CTA
   ========================================================= */
.booking {
  background: linear-gradient(135deg, var(--petrol), var(--teal));
  color: #fff; border-radius: var(--r-xl); padding: clamp(34px, 5vw, 60px);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.booking::before {
  content:""; position:absolute; inset:auto -80px -120px auto; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%); pointer-events: none;
}
.booking h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); }
.booking p { color: rgba(255,255,255,.92); font-size: 18px; margin-bottom: 0; }
.booking-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.booking-embed {
  background: rgba(255,255,255,.12); border: 1.5px dashed rgba(255,255,255,.45);
  border-radius: var(--r-lg); min-height: 210px; display: grid; place-items: center;
  text-align: center; padding: 26px; color: #fff;
}
.booking-embed .tag { font-family: var(--sans); font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.2); padding: 6px 13px; border-radius: 4px; margin-bottom: 12px; display:inline-block; }
.booking-embed p { color: rgba(255,255,255,.86); font-size: 15px; }

/* =========================================================
   Job / Stellenangebot
   ========================================================= */
.job {
  background: var(--coral-soft); border: 1.5px solid color-mix(in oklch, var(--coral) 28%, transparent);
  border-radius: var(--r-xl); padding: clamp(30px, 4vw, 48px);
  display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center;
}
.job .badge { width: 64px; height: 64px; border-radius: 7px; background: var(--coral); color: #fff; display: grid; place-items: center; flex:none; }
.job .badge svg { width: 32px; height: 32px; }
.job h2 { color: var(--petrol-ink); font-size: clamp(24px, 3vw, 32px); margin-bottom: 6px; }
.job p { margin: 0; color: var(--ink-soft); }
.job-cta { display: flex; flex-direction: column; gap: 10px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--petrol-ink); color: oklch(0.84 0.02 195); padding-block: 64px 30px; font-size: 15.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: oklch(0.84 0.02 195); }
.site-footer a:hover { color: #fff; }
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-contact .row { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--teal-soft); flex: none; margin-top: 3px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: oklch(0.76 0.02 195); font-size: 15px; margin-top: 14px; max-width: 32ch; }
.footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 14px; color: oklch(0.70 0.02 195);
}
.footer-bottom a { color: oklch(0.70 0.02 195); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   Mobile sticky action bar
   ========================================================= */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 1px; background: var(--line);
  box-shadow: 0 -6px 24px rgba(20,55,60,.12);
}
.mobile-bar a {
  flex: 1; background: #fff; padding: 11px 6px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 12px; font-weight: 700; color: var(--petrol-ink);
}
.mobile-bar a svg { width: 21px; height: 21px; color: var(--petrol); }
.mobile-bar a.urgent { color: var(--coral); }
.mobile-bar a.urgent svg { color: var(--coral); }
.mobile-bar a.primary { background: var(--petrol); color: #fff; }
.mobile-bar a.primary svg { color: #fff; }

/* =========================================================
   Page hero (subpages)
   ========================================================= */
.page-hero { background: linear-gradient(180deg, var(--bg-mint), var(--bg)); padding-block: clamp(46px, 6vw, 76px) clamp(34px, 4vw, 52px); }
.breadcrumb { font-size: 14.5px; color: var(--ink-faint); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--ink-soft); font-weight: 600; }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 54px); }
.page-hero .lead { max-width: 56ch; }

/* =========================================================
   Accordion (Leistungen detail)
   ========================================================= */
.acc { display: flex; flex-direction: column; gap: 14px; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.acc-head {
  display: flex; align-items: center; gap: 18px; width: 100%;
  padding: 22px 26px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--serif); font-weight: 600; font-size: clamp(19px, 2.2vw, 24px); color: var(--petrol-ink);
}
.acc-head .ic { width: 46px; height: 46px; border-radius: 6px; background: var(--bg-mint); color: var(--petrol); display: grid; place-items: center; flex: none; }
.acc-head .ic svg { width: 24px; height: 24px; }
.acc-head .chev { margin-left: auto; width: 30px; height: 30px; display: grid; place-items: center; color: var(--petrol); transition: transform .3s; flex: none; }
.acc-item.open .acc-head .chev { transform: rotate(180deg); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner { overflow: hidden; }
.acc-body-pad { padding: 0 26px 26px 90px; }
.acc-body-pad p { color: var(--ink-soft); margin: 0 0 14px; }
.acc-body-pad ul { margin: 0; padding-left: 0; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.acc-body-pad li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: 16px; }
.acc-body-pad li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 14px; border-radius: 50%; background: var(--mint); box-shadow: inset 0 0 0 3px var(--teal); }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 30px 32px; }
.info-card h3 { font-size: 23px; margin-bottom: 18px; }
.contact-line { display: flex; gap: 15px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.contact-line:last-child { border-bottom: 0; }
.contact-line .ic { width: 42px; height: 42px; border-radius: 5px; background: var(--bg-mint); color: var(--petrol); display: grid; place-items: center; flex: none; }
.contact-line .ic svg { width: 21px; height: 21px; }
.contact-line.urgent .ic { background: var(--coral-soft); color: var(--coral); }
.contact-line .k { font-size: 13.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); }
.contact-line .v { font-family: var(--serif); font-size: 21px; color: var(--petrol-ink); }
.contact-line .v a { color: inherit; }
.contact-line .v.urgent { color: var(--coral); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 17px; }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table .day { font-weight: 700; color: var(--petrol-ink); }
.hours-table .time { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-table .closed { color: var(--ink-faint); }
.placeholder-note { font-size: 13.5px; color: var(--coral); background: var(--coral-soft); border-radius: 4px; padding: 9px 14px; margin-top: 16px; display: flex; gap: 8px; align-items: center; }
.placeholder-note svg { width: 16px; height: 16px; flex: none; }

.map-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/10; }

/* form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14.5px; font-weight: 700; color: var(--petrol-ink); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 16.5px; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 5px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px color-mix(in oklch, var(--teal) 22%, transparent);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13.5px; color: var(--ink-faint); margin-top: 4px; }

/* =========================================================
   Hero award pill
   ========================================================= */
.award-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 4px; padding: 8px 16px 8px 10px;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.award-pill .star {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: color-mix(in oklch, var(--amber) 18%, #fff);
  color: var(--amber-deep); display: grid; place-items: center;
}
.award-pill .star svg { width: 16px; height: 16px; }
.award-pill b { color: var(--petrol-ink); font-weight: 700; }

/* =========================================================
   Fact tiles (Seit 1922 · 3 Ärzte · 280 m² · ISO 9001)
   ========================================================= */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 4px 0 4px; }
.fact {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 18px 16px; box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .2s, border-color .2s;
}
.fact:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--teal-soft); }
.fact .ic { width: 38px; height: 38px; border-radius: 5px; background: var(--bg-mint); color: var(--petrol); display: grid; place-items: center; margin-bottom: 12px; }
.fact .ic svg { width: 20px; height: 20px; }
.fact .v { font-family: var(--serif); font-weight: 700; font-size: 24px; color: var(--petrol-ink); line-height: 1; }
.fact .l { font-size: 14px; color: var(--ink-soft); margin-top: 5px; }

/* =========================================================
   Welcome two-column with sidebar
   ========================================================= */
.welcome-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(34px, 4vw, 56px); align-items: start; }

/* Timeline */
.timeline { position: relative; margin: 4px 0 0; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--teal), var(--mint)); border-radius: 2px; }
.tl-item { position: relative; padding-bottom: 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -30px; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 4px var(--teal); border: 2px solid var(--bg);
}
.tl-year { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--petrol); line-height: 1; }
.tl-text { font-size: 16.5px; color: var(--ink-soft); margin-top: 5px; }

/* Leitbild checklist */
.leitbild { background: var(--bg-mint); border-radius: var(--r-lg); padding: 28px 30px; margin-top: 34px; }
.leitbild h3 { font-size: 24px; margin-bottom: 8px; }
.leitbild .mission { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 18px; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.checklist li { position: relative; padding-left: 32px; font-size: 16px; color: var(--ink); }
.checklist li svg { position: absolute; left: 0; top: 1px; width: 21px; height: 21px; color: var(--teal); }

/* Sidebar cards */
.side-stack { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 100px; }
.side-card { border-radius: var(--r-lg); padding: 24px 24px; box-shadow: var(--shadow-md); }
.side-card.notfall { background: linear-gradient(150deg, var(--coral), oklch(0.56 0.14 32)); color: #fff; }
.side-card.notfall h3 { color: #fff; font-size: 21px; display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.side-card.notfall h3 svg { width: 24px; height: 24px; }
.nf-line { display: block; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.22); }
.nf-line:first-of-type { border-top: 0; }
.nf-line .k { font-size: 13.5px; color: rgba(255,255,255,.85); }
.nf-line .v { font-family: var(--serif); font-size: 22px; font-weight: 600; color: #fff; }
.nf-line .v a { color: #fff; }

.side-card.award { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--amber); }
.side-card.award .row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; }
.side-card.award .row + .row { border-top: 1px solid var(--line-soft); }
.side-card.award .ic { width: 44px; height: 44px; border-radius: 5px; flex: none; display: grid; place-items: center; background: color-mix(in oklch, var(--amber) 16%, #fff); color: var(--amber-deep); }
.side-card.award .ic.teal { background: var(--bg-mint); color: var(--petrol); }
.side-card.award .ic svg { width: 22px; height: 22px; }
.side-card.award h4 { font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--petrol-ink); margin: 0 0 3px; }
.side-card.award p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.cert-logos { display: flex; gap: 10px; margin-top: 14px; }
.cert-logos .ph { aspect-ratio: 3/2; border-radius: 4px; min-height: 56px; }

/* =========================================================
   Reveal animation
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  .js-reveal .reveal.in { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 540px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .cert-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .booking { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  body { font-size: 17px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 14px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .split, .split.narrow-img, .contact-grid, .welcome-grid { grid-template-columns: 1fr; gap: 34px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: 1fr; }
  .side-stack { position: static; }
  .job { grid-template-columns: 1fr; gap: 22px; text-align: left; }
  .acc-body-pad { padding-left: 26px; }
  .acc-body-pad ul { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
  .utility-list { display: none; }
  .utility .container { justify-content: center; }
}
@media (max-width: 540px) {
  .container { padding-inline: 18px; }
  .quick-grid { grid-template-columns: 1fr; }
  .svc-grid, .cert-grid, .team-grid, .facts { grid-template-columns: 1fr; }
  .logo-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .staff-stats { grid-template-columns: 1fr; }
}

/* =========================================================
   Quiet accents — flat surfaces, hairlines, soft minimal shadows
   ========================================================= */
.hero { background: linear-gradient(180deg, var(--bg-mint), var(--bg) 92%); border-bottom: 1px solid var(--line); }

/* Hero figure — clean framed photo, no offset layers */
.hero-visual { position: relative; }
.hero-figure {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.hero-badge { border: 1px solid var(--line); box-shadow: var(--shadow-md); z-index: 3; }

/* Section rhythm — quiet hairline dividers */
.bg-soft { border-block: 1px solid var(--line); }
.bg-mint { border-block: 1px solid var(--line); }

/* Feature blocks — flat, hairline-led */
.booking { box-shadow: var(--shadow-md); }
.job { box-shadow: none; }
.side-card.notfall { box-shadow: var(--shadow-sm); }
.side-card.award { box-shadow: var(--shadow-sm); }
.leitbild { border: 1px solid var(--line); box-shadow: none; }
.acc-item { box-shadow: none; }
.acc-item.open { box-shadow: var(--shadow-sm); }

/* Kicker accent — slim bar */
.kicker::before { width: 24px; height: 2px; border-radius: 2px; }

/* Cards — subtle, calm */
.qcard { box-shadow: var(--shadow-sm); }
.svc, .member, .fact, .info-card { box-shadow: none; }
.svc:hover, .member:hover, .qcard:hover, .fact:hover { box-shadow: var(--shadow-md); }
.logo-tile { box-shadow: none; }
.gallery-item { border: 1px solid var(--line); }
.gallery-item .cap { border: 1px solid var(--line); }

/* =========================================================
   Mockup hero — split with full-bleed photo + trust strip
   ========================================================= */
.hero { background: #fff; border-bottom: 0; overflow: hidden; padding: 0; }
.hero-split { display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: stretch; min-height: 580px; }
.hero-copy {
  align-self: center;
  padding-block: clamp(52px, 6vw, 96px);
  padding-right: clamp(24px, 2.5vw, 40px);
  padding-left: max(28px, calc((100vw - var(--container)) / 2 + 28px));
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 13px; font-weight: 700; font-size: 14px; letter-spacing: .15em; text-transform: uppercase; color: var(--petrol); }
.hero-eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--teal); border-radius: 2px; }
.hero-title { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3vw, 42px); line-height: 1.08; letter-spacing: -.02em; color: var(--petrol-ink); margin: 22px 0 0; }
.hero-title .accent { color: var(--petrol); }
.hero .hero-lead { max-width: 40ch; margin-top: 24px; }
.hero-photo { position: relative; min-height: 460px; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 26% 40%; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,.45) 5%, rgba(255,255,255,0) 14%),
    linear-gradient(0deg, #eef4f2 0%, rgba(238,244,242,0) 14%);
}

.hero-trust-strip { background: var(--bg-mint); border-top: 1px solid var(--line); }
.hts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-block: 28px; }
.hts-item { display: flex; align-items: center; gap: 16px; }
.hts-ic { width: 52px; height: 52px; flex: none; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--petrol); }
.hts-ic svg { width: 24px; height: 24px; }
.hts-n { font-family: var(--serif); font-weight: 700; font-size: 25px; color: var(--petrol-ink); line-height: 1.1; white-space: nowrap; }
.hts-l { font-size: 15px; color: var(--ink-soft); margin-top: 4px; }

/* Brand lockup — dash + stacked name */
.brand-mark { width: 30px; height: 4px; border-radius: 2px; background: var(--teal); box-shadow: none; }
.brand-name { font-family: var(--sans); font-weight: 800; font-size: 16.5px; letter-spacing: .02em; text-transform: uppercase; color: var(--petrol-ink); }
.brand-sub { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); }

/* Tighter nav for 7 items + 2 buttons */
.nav-links a { padding: 9px 10px; font-size: 15px; white-space: nowrap; }
.nav { gap: 18px; }
.nav-cta { gap: 10px; }
.nav-cta .btn { padding: 12px 18px; font-size: 15px; }
.nav-phone { white-space: nowrap; }

/* =========================================================
   Schwerpunkte — intro + 4 cards
   ========================================================= */
.schwer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: stretch; }
.schwer-intro { grid-column: 1 / -1; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-right: 0; margin-bottom: 6px; }
.schwer-intro .si-text { max-width: 640px; }
.schwer-intro .kicker { margin-bottom: 14px; }
.schwer-intro .section-title { font-size: clamp(26px, 2.3vw, 33px); margin-bottom: 10px; }
.schwer-intro p { color: var(--ink-soft); font-size: 16px; margin: 0; }
.schwer-intro .btn { align-self: flex-end; margin: 0; flex: none; }
.schwer-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; display: flex; flex-direction: column; transition: transform .18s, box-shadow .2s, border-color .2s; }
.schwer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-soft); }
.schwer-card .ic { color: var(--teal); margin-bottom: 18px; }
.schwer-card .ic svg { width: 34px; height: 34px; }
.schwer-card h3 { font-size: 19px; margin-bottom: 9px; }
.schwer-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 20px; }
.schwer-card .more { margin-top: auto; color: var(--petrol); font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 7px; }
.schwer-card .more svg { width: 16px; height: 16px; }

@media (max-width: 1080px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-copy { padding-inline: clamp(28px, 6vw, 64px); }
  .hero-photo { min-height: 360px; }
  .schwer-grid { grid-template-columns: repeat(3, 1fr); }
  .schwer-intro { grid-column: 1 / -1; }
  .nav-phone { display: none; }
}
@media (max-width: 620px) {
  .hts-grid { grid-template-columns: 1fr; gap: 16px; }
  .schwer-grid { grid-template-columns: 1fr; }
}
