/* MKG Spandau - Main Stylesheet */

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

:root {
  --navy: #294079;
  --navy-light: #2a3a5c;
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --white: #ffffff;
  --off-white: #F8F5F2;
  --gray-light: #f0ede8;
  --gray: #8a8a8a;
  --text-dark: #1a1a1a;
  --text-body: #5F5F5F;
  --text-extra: #294079;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --font-default: #5F5F5F;
  --font-dark: #000;
  --font-light: #fff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Jost', var(--font-sans);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; }

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ───────── NAVBAR ───────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
#navbar-appointment {display: none;}
.navbar.scrolled #navbar-appointment {display: inline-flex;}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1900px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--navy);
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
}
.logo-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  display: block;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  font-size: 16px;
  transition: background 0.2s;
  text-decoration: none;
}
.nav-icon:hover { background: var(--gray-light); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ───────── HERO ───────── */
.hero {
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #FFFFFF 20.24%, #F7F5F2 100%);
  border-bottom: solid 2px #F7F5F2;
}
.hero-container {
  max-width: 1900px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy {
  max-width: 720px;
}
.hero-label {
  font-size: 13px;
  color: var(--text-extra);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero h1 {
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: 1.15;
}
.hero-description {
  max-width: 640px;
  margin-top: 16px;
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.6;
}
.hero-notice {
  max-width: 640px;
  margin-top: 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.55;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  height: clamp(460px, 42vw, 680px);
  background: url("/_src/2026-02-09_15-16-35.webp") no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,39,68,0.15) 100%);
}
.hero-image-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
  text-align: center;
  padding: 24px;
}

/* ───────── APPOINTMENT PREP ───────── */
.appointment-prep {
  margin-top: 4rem;
}
.appointment-prep-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(41,64,121,0.22);
}
.appointment-prep-label {
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.appointment-prep h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  margin-bottom: 10px;
}
.appointment-prep-copy p:not(.appointment-prep-label) {
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 560px;
}
.appointment-prep-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.appointment-action {
  min-height: 122px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.appointment-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
}
.appointment-action:focus-visible {
  outline: 3px solid rgba(201,168,76,0.55);
  outline-offset: 3px;
}
.appointment-action strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.appointment-action small {
  display: block;
  color: var(--text-body);
  font-size: 12px;
  line-height: 1.45;
}
.appointment-action > i {
  color: var(--gold);
}
.appointment-action-qr,
.appointment-action-icon {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.appointment-action-qr img {
  width: 72px;
  height: 72px;
  display: block;
}
.appointment-action-icon i {
  color: var(--navy);
  font-size: 28px;
}

/* ───────── SERVICES ───────── */
.services {
  padding: 80px 0;
}
.services-header {
  margin-bottom: 48px;
}
.services-label {
  font-size: 13px;
  color: var(--text-extra);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.services h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
}
.services-header p {
  margin-top: 16px;
  color: var(--text-body);
  line-height: 1.7;
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 18px;
}
.service-card h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.service-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  margin-top: 24px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ───────── DECISION LOGIC ───────── */
.decision-logic {
  padding: 82px 0;
  background: var(--off-white);
}
.decision-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: start;
}
.decision-label {
  font-size: 13px;
  color: var(--text-extra);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.decision-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 16px;
}
.decision-header p:not(.decision-label) {
  color: var(--text-body);
  line-height: 1.75;
  max-width: 520px;
}
.decision-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}
.decision-card {
  border-radius: var(--radius);
  padding: 28px;
  min-height: 100%;
  border: 1px solid rgba(41,64,121,0.1);
}
.decision-card--positive {
  background: var(--white);
  box-shadow: var(--shadow);
}
.decision-card--muted {
  background: rgba(255,255,255,0.62);
}
.decision-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.decision-card-heading span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.decision-card--positive .decision-card-heading span {
  background: var(--navy);
  color: var(--white);
}
.decision-card--muted .decision-card-heading span {
  background: var(--gray-light);
  color: var(--text-body);
}
.decision-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--navy);
}
.decision-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.decision-card li {
  position: relative;
  padding-left: 24px;
  color: var(--text-body);
  line-height: 1.55;
  font-size: 14px;
}
.decision-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.decision-card--positive li::before {
  content: "✓";
  color: var(--navy);
}
.decision-card--muted li::before {
  content: "×";
  color: var(--gray);
}

/* ───────── DOCTOR ───────── */
.doctor {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.doctor-bar {
  background: var(--navy-light);
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.doctor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.doctor-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 24px;
  color: var(--white);
}
.doctor-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 16px;
}
.doctor-text .highlight {
  color: var(--white);
  font-weight: 500;
}
.doctor-text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s;
}
.doctor-text a:hover { color: var(--gold); }
.doctor-image {
  border-radius: var(--radius);
  overflow: hidden;
  width: min(100%, 360px);
  aspect-ratio: 3 / 4;
  justify-self: end;
  background: linear-gradient(135deg, #3a5080, #2a3a5c);
  display: flex; align-items: center; justify-content: center;
}
.doctor-image img,
.team-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.doctor-image-placeholder {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  text-align: center;
  padding: 24px;
}

/* ───────── TEAM ───────── */
.team {
  padding: 80px 0;
  background: var(--off-white);
}
.team--reverse {
  background: var(--white);
}
.team .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.team-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
  background: linear-gradient(135deg, #c5d4e0, #a8b8c8);
  display: flex; align-items: center; justify-content: center;
}
.team-image-placeholder {
  color: rgba(0,0,0,0.3);
  font-size: 16px;
  text-align: center;
  padding: 24px;
}
.team-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 20px;
}
.team-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 12px;
}
.team-text ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}
.team-text li {
  position: relative;
  padding-left: 28px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.55;
}
.team-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy);
  font-weight: 700;
}
.team-text .highlight {
  font-weight: 600;
  color: var(--text-dark);
}

/* ───────── LEISTUNGEN ───────── */
.leistungen {
  padding: 80px 0;
}
.leistungen h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  text-align: center;
  color: var(--navy);
  margin-bottom: 48px;
}
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.leistung-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.leistung-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.leistung-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.leistung-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ───────── SECTIONED PAGES ───────── */
.page-hero-section {
  padding: 72px 0 0;
  background: linear-gradient(165deg, #FFFFFF 20.24%, #F7F5F2 100%);
  border-bottom: solid 2px #F7F5F2;
}
.page-hero-container {
  max-width: 1900px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.page-hero-layout--full {
  grid-template-columns: 1fr;
}
.page-hero-copy {
  max-width: 720px;
}
.page-hero-layout--full .page-hero-copy {
  max-width: none;
}
.section-label {
  font-size: 13px;
  color: var(--text-extra);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-copy h2,
.section-header h2,
.section-cta h2 {
  color: var(--navy);
  line-height: 1.18;
}
.page-hero-copy h1 {
  font-size: clamp(40px, 4.2vw, 60px);
  margin-bottom: 18px;
}
.page-hero-copy p {
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.page-hero-placeholder,
.page-hero-media {
  min-height: 460px;
  height: clamp(460px, 42vw, 680px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(41,64,121,0.88), rgba(42,58,92,0.92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.74);
  text-align: center;
  padding: 32px;
  overflow: hidden;
}
.page-hero-media {
  padding: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.page-hero-placeholder i {
  font-size: 64px;
  color: rgba(255,255,255,0.62);
}
.page-hero-placeholder span {
  font-size: 17px;
  line-height: 1.5;
}
.section-band {
  padding: 84px 0;
}
.section-band--light {
  background: var(--off-white);
}
.section-band--white {
  background: var(--white);
}
.section-band--navy {
  background: var(--navy);
  color: var(--white);
}
.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 60px;
  align-items: center;
}
.section-split--image-left .section-copy {
  order: 2;
}
.section-split--image-left .section-placeholder,
.section-split--image-left .section-image {
  order: 1;
}
.section-copy h2,
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 18px;
}
.section-copy p,
.section-header p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.section-copy-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  list-style: none;
}
.section-copy-subtitle {
  margin: 20px 0 8px;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
}
.section-copy-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
}
.section-copy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy);
  font-weight: 700;
}
.section-copy-note {
  margin-top: 18px;
  color: var(--text-body);
  font-weight: 600;
}
.section-band--navy .section-label,
.section-band--navy .section-copy h2,
.section-band--navy .section-copy p,
.section-band--navy .section-copy-subtitle,
.section-band--navy .section-copy-list li,
.section-band--navy .section-copy-note {
  color: var(--white);
}
.section-band--navy .section-copy-list li::before {
  color: var(--gold-light);
}
.section-placeholder {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(41,64,121,0.88), rgba(42,58,92,0.92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.74);
  text-align: center;
  padding: 32px;
}
.section-placeholder i {
  font-size: 56px;
  color: rgba(255,255,255,0.62);
}
.section-placeholder span {
  font-size: 16px;
  line-height: 1.5;
}
.section-image {
  min-height: 360px;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}
.section-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}
.profile-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: center;
}
.profile-card {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #d7dde6, #b8c4d4);
  box-shadow: 0 18px 48px rgba(41,64,121,0.16);
}
.profile-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(41,64,121,0), rgba(41,64,121,0.58));
  pointer-events: none;
}
.profile-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  object-fit: cover;
}
.profile-card-placeholder {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(41,64,121,0.35);
  font-size: 72px;
}
.profile-copy h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.14;
  margin-bottom: 18px;
}
.profile-copy p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.profile-roles {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  list-style: none;
}
.profile-roles li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.45;
}
.profile-roles li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}
.profile-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.profile-highlights article {
  padding: 20px 18px;
  border-radius: 10px;
  background: var(--off-white);
  border: 1px solid rgba(41,64,121,0.1);
}
.profile-highlights strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px;
}
.profile-highlights span {
  display: block;
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.45;
}
.section-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-card-grid {
  display: grid;
  gap: 22px;
}
.section-card-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.section-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.section-grid-label {
  margin: -12px 0 22px;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}
.section-card {
  border: 1px solid rgba(41,64,121,0.1);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px 26px;
  min-height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.section-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.section-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-band--white .section-card {
  background: var(--off-white);
}
.section-band--white .section-card-icon {
  background: var(--white);
}
.section-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-card p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}
.section-card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-card-link:hover {
  color: var(--gold);
}
.section-grid-outro {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}
.section-process {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
  align-items: start;
}
.process-list {
  display: grid;
  gap: 16px;
}
.process-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(41,64,121,0.1);
}
.process-item span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
}
.process-item h3 {
  font-family: var(--font-sans);
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 8px;
}
.process-item p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}
.info-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}
.info-panel .btn-primary {
  margin-top: 18px;
}
.info-panel-grid {
  display: grid;
  gap: 16px;
}
.info-panel-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid rgba(41,64,121,0.1);
}
.info-panel-card--highlight {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}
.info-panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(41,64,121,0.12);
}
.info-panel-card h3 {
  font-family: var(--font-sans);
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 8px;
}
.info-panel-card p,
.info-panel-card li {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}
.info-panel-card p + p {
  margin-top: 8px;
}
.info-panel-card ul {
  margin: 12px 0 0 18px;
}
.info-panel-card--highlight h3,
.info-panel-card--highlight p,
.info-panel-card--highlight li {
  color: var(--white);
}
.info-panel-card--highlight .info-panel-icon {
  background: rgba(255,255,255,0.14);
  color: var(--gold-light);
  box-shadow: none;
}
.section-cta {
  padding: 84px 0;
  background: var(--white);
}
.section-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid rgba(41,64,121,0.08);
}
.section-cta h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
}
.section-cta p {
  color: var(--text-body);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 26px;
}
.section-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ───────── ROUTE SECTION ───────── */
.route-section {
  padding: 84px 0;
  background: var(--off-white);
}
.route-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
  align-items: start;
}
.route-copy h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy);
  margin-bottom: 16px;
}
.route-copy p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.route-card-grid {
  display: grid;
  gap: 16px;
}
.route-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(41,64,121,0.1);
}
.route-card--highlight {
  background: var(--navy);
  border-color: transparent;
}
.route-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.route-card h3 {
  font-family: var(--font-sans);
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 8px;
}
.route-card p,
.route-card li {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}
.route-card p + p {
  margin-top: 6px;
}
.route-card ul {
  margin: 10px 0 0 18px;
}
.route-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.route-card--highlight h3,
.route-card--highlight p,
.route-card--highlight li,
.route-card--highlight .route-card-link {
  color: var(--white);
}
.route-card--highlight .route-card-icon {
  background: rgba(255,255,255,0.14);
  color: var(--gold-light);
}

/* ───────── CONTACT OVERVIEW ───────── */
.contact-overview {
  margin: 8px 0 56px;
}
.contact-overview-header {
  max-width: 760px;
  margin-bottom: 30px;
}
.contact-overview-header h2 {
  color: var(--navy);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.18;
  margin: 0 0 14px;
}
.contact-overview-header p:not(.section-label) {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.75;
}
.contact-overview-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: stretch;
}
.contact-info-card,
.contact-request-card {
  border-radius: var(--radius);
  border: 1px solid rgba(41,64,121,0.1);
  padding: 30px;
  background: var(--off-white);
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(41,64,121,0.12);
}
.contact-info-card .contact-card-icon {
  background: rgba(255,255,255,0.14);
  color: var(--gold-light);
  box-shadow: none;
}
.contact-info-card h3,
.contact-request-card h3 {
  font-family: var(--font-sans);
  font-size: 21px;
  margin-bottom: 14px;
}
.contact-info-card h3 {
  color: var(--white);
}
.contact-request-card h3 {
  color: var(--navy);
}
.contact-doctor-name {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-role-list,
.contact-check-list {
  list-style: none;
  display: grid;
  gap: 9px;
}
.contact-role-list {
  margin-bottom: 24px;
}
.contact-role-list li,
.contact-check-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.55;
}
.contact-role-list li {
  color: rgba(255,255,255,0.82);
}
.contact-role-list li::before,
.contact-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.contact-role-list li::before {
  color: var(--gold-light);
}
.contact-check-list li {
  color: var(--text-body);
}
.contact-check-list li::before {
  color: var(--navy);
}
.contact-address {
  margin: 22px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.86);
  font-style: normal;
  line-height: 1.7;
}
.contact-action-list {
  display: grid;
  gap: 12px;
}
.contact-action {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.contact-action:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}
.contact-action i {
  color: var(--gold-light);
  text-align: center;
}
.contact-action small {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.3;
}
.contact-action strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
}
.contact-request-card > p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
}
.contact-treatment-title {
  margin: 26px 0 12px;
  color: var(--navy);
  font-weight: 700;
}
.contact-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(41,64,121,0.12);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.content-page .contact-info-card h3,
.content-page .contact-info-card p,
.content-page .contact-info-card li,
.content-page .contact-info-card address,
.content-page .contact-info-card a,
.content-page .contact-info-card small,
.content-page .contact-info-card strong {
  color: var(--white);
}
.content-page .contact-info-card .contact-role-list li::before,
.content-page .contact-info-card .contact-action i,
.content-page .contact-info-card .contact-card-icon {
  color: var(--gold-light);
}

/* ───────── CONTENT PAGES ───────── */
.content-page {
  padding: 120px 0 80px;
  min-height: 60vh;
}
.content-page--after-hero {
  padding-top: 84px;
}
.content-page h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin-bottom: 32px;
}
.content-page h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
}
.content-page h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 12px;
}
.content-page p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}
.content-page ul, .content-page ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
.content-page li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 8px;
}
.content-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  color: var(--text-body);
}
.content-page th,
.content-page td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: left;
}
.content-page th {
  color: var(--navy);
  font-weight: 600;
}
.content-page a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.content-page a:hover {
  color: var(--gold);
}

/* ───────── FAQ SECTION ───────── */
.faq-section {
  padding: 88px 0;
  background: var(--off-white);
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}
.faq-layout--centered {
  display: block;
  max-width: 860px;
  margin: 0 auto;
}
.faq-label {
  font-size: 13px;
  color: var(--text-extra);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.faq-copy h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 18px;
}
.faq-copy p:not(.faq-label) {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
}
.faq-accordion {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(41,64,121,0.12);
  border-radius: 8px;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary i {
  color: var(--gold);
  font-size: 14px;
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.faq-item[open] summary i {
  transform: rotate(180deg);
}
.faq-item summary:focus-visible {
  outline: 3px solid rgba(201,168,76,0.45);
  outline-offset: -3px;
}
.faq-answer {
  padding: 0 24px 24px;
}
.faq-answer p {
  color: var(--text-body);
  line-height: 1.75;
}

/* ───────── FOOTER ───────── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer p, .footer a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  text-decoration: none;
}
.footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ───────── MOBILE NAV OVERLAY ───────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav .btn-primary {
  margin-top: 24px;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-actions .nav-icon { display: none; }
  .nav-actions .btn-primary.desktop-only { display: none; }
  .hamburger { display: flex; }

  .hero-container {
    padding-top: 40px;
    padding-bottom: 32px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-image-wrapper {
    height: 460px;
    min-height: 0;
  }
  .page-hero-container {
    padding-top: 40px;
    padding-bottom: 32px;
  }
  .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-hero-placeholder,
  .page-hero-media {
    height: 460px;
    min-height: 0;
  }

  .appointment-prep-inner {
    grid-template-columns: 1fr;
  }

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

  .decision-layout,
  .decision-cards {
    grid-template-columns: 1fr;
  }

  .doctor-content {
    grid-template-columns: 1fr;
    padding: 48px 0;
    gap: 32px;
  }
  .doctor-image {
    width: min(100%, 320px);
    justify-self: center;
    order: -1;
  }

  .team .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .team-image { height: 260px; }

  .leistungen-grid { grid-template-columns: 1fr; }

  .page-hero-section {
    padding: 112px 0 52px;
  }
  .section-split,
  .section-process,
  .profile-section,
  .info-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .route-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-overview-grid {
    grid-template-columns: 1fr;
  }
  .section-split--image-left .section-copy,
  .section-split--image-left .section-placeholder,
  .section-split--image-left .section-image {
    order: initial;
  }
  .section-placeholder,
  .section-image,
  .section-image img {
    min-height: 280px;
  }
  .profile-card,
  .profile-card img,
  .profile-card-placeholder {
    min-height: 380px;
  }
  .profile-highlights {
    grid-template-columns: 1fr;
  }
  .section-card-grid--2,
  .section-card-grid--3 {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .navbar .container { height: 60px; }
  .hero { padding-top: 60px; }
  .hero-container {
    padding-top: 32px;
    padding-bottom: 28px;
  }
  .hero h1 { font-size: 32px; }
  .hero-image-wrapper {
    height: 340px;
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
  }

  .appointment-prep {
    padding: 4px 0 18px;
  }
  .appointment-prep-inner {
    padding: 22px 18px;
  }
  .appointment-prep-actions {
    grid-template-columns: 1fr;
  }
  .appointment-action {
    min-height: 104px;
  }

  .services { padding: 48px 0; }
  .service-cards { grid-template-columns: 1fr; gap: 12px; }

  .decision-logic { padding: 54px 0; }
  .decision-card { padding: 24px 20px; }

  .leistungen { padding: 48px 0; }
  .leistung-card { padding: 28px 24px; }

  .page-hero-section { padding-top: 60px; }
  .page-hero-container {
    padding-top: 32px;
    padding-bottom: 28px;
  }
  .page-hero-copy h1 { font-size: 34px; }
  .page-hero-placeholder,
  .page-hero-media {
    height: 340px;
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
  }
  .section-band,
  .section-cta {
    padding: 54px 0;
  }
  .section-card,
  .process-item,
  .info-panel-card {
    padding: 24px 20px;
  }
  .info-panel-card {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }
  .info-panel-icon {
    width: 42px;
    height: 42px;
  }
  .section-cta-inner {
    padding: 34px 22px;
  }
  .contact-info-card,
  .contact-request-card {
    padding: 24px 20px;
  }
  .contact-chip-list {
    display: grid;
    grid-template-columns: 1fr;
  }
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .section-actions .btn-primary,
  .section-actions .btn-outline {
    justify-content: center;
    width: 100%;
  }

  .faq-section { padding: 56px 0; }
  .faq-item summary { padding: 18px 20px; }
  .faq-answer { padding: 0 20px 20px; }

  .footer { padding: 40px 0 32px; }

  .content-page { padding: 100px 0 48px; }
}

/* ───────── ANIMATIONS ───────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
