/* Grundlagen und Komponenten; danach Breakpoints, Bewegung und Druck. */
:root {
  color-scheme: light;
  --ink: #3f5058;
  --heading: #245a69;
  --accent: #276879;
  --soft: #edf5f7;
  --border: #d6e4e8;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-offset, 112px) + 16px); }
body { min-height: 100vh; display: flex; flex-direction: column; margin: 0; color: var(--ink); background: #fff; font-family: 'Open Sans', 'Open Sans Fallback', sans-serif; font-size: 16px; line-height: 1.75; overflow-wrap: break-word; }
body > main { flex: 1; }
body > .site-header, body > .site-footer { width: 100%; flex-shrink: 0; }
a { color: var(--accent); text-underline-offset: 4px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, summary:focus-visible { outline: 3px solid #154b9a; outline-offset: 5px; border-radius: 2px; }
/* Preserve the original grid/flex image boxes without extra source items. */
picture { display: contents; }
picture > source { display: none; }
img { display: block; max-width: 100%; height: auto; }
figure, p, h1, h2, h3, ol, ul, dl, dd { margin: 0; }
p + p { margin-top: 16px; }
h1, h2, h3 { color: var(--heading); font-weight: 400; line-height: 1.3; }
h1 { font-size: clamp(30px, 3.05vw, 44px); letter-spacing: -.025em; }
h2 { font-size: clamp(27px, 2.5vw, 34px); letter-spacing: -.02em; margin-bottom: 20px; }
h3 { font-size: 21px; margin-bottom: 12px; }
strong { font-weight: 700; }
.wrap { max-width: 1148px; margin-inline: auto; padding-inline: 24px; }
.eyebrow { margin-bottom: 12px; color: var(--accent); font-size: 12px; line-height: 1.6; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.caption { margin-top: 12px; font-size: 13px; color: #596a72; }
.skip-link { position: absolute; top: 12px; left: 12px; z-index: 30; padding: 10px 16px; background: white; transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
/* Kopfbereich und Navigation */
.site-header { position: sticky; top: 0; z-index: 20; background: #fff; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-block: 14px; }
.brand { flex: 0 0 144px; min-height: 44px; display: flex; align-items: center; }
.brand img { width: 144px; height: calc(144px * 109 / 188); object-fit: cover; object-position: center bottom; }
.desktop-nav { min-width: 0; font-size: 15px; line-height: 1.5; }
.desktop-nav ul, .mobile-menu ul { list-style: none; padding: 0; }
.nav-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px 24px; }
.nav-list > li { flex: 0 0 auto; }
.desktop-nav a, .nav-group > summary, .mobile-menu nav a { color: #49575d; text-decoration: none; }
.nav-list > li > a, .nav-group > summary { display: flex; align-items: center; min-height: 44px; padding-block: 10px; white-space: nowrap; }
.desktop-nav a:hover, .nav-group > summary:hover, .mobile-menu nav a:hover { color: var(--accent); text-decoration: underline; }
.desktop-nav a[aria-current], .nav-group.is-active > summary, .mobile-menu nav a[aria-current] { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-group { position: relative; }
.nav-group > summary { gap: 10px; list-style: none; cursor: pointer; }
.nav-group > summary::-webkit-details-marker { display: none; }
.nav-group > summary::after { content: ''; width: 7px; height: 7px; margin-top: -4px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); }
.nav-group[open] > summary { color: var(--accent); }
.nav-group[open] > summary::after { margin-top: 4px; transform: rotate(225deg); }
.desktop-nav .nav-panel { position: absolute; top: calc(100% + 8px); left: -14px; min-width: 220px; padding: 8px; background: #fff; border: 1px solid var(--border); border-radius: 4px; box-shadow: 0 10px 24px #245a691a; }
.nav-panel a { display: block; min-height: 44px; padding: 12px 14px; border-radius: 2px; white-space: nowrap; }
.nav-panel a:hover, .nav-panel a[aria-current] { background: var(--soft); }
.desktop-nav .nav-contact { padding-inline: 16px; border-radius: 4px; background: var(--accent); color: #fff; }
.desktop-nav .nav-contact:hover { background: #205765; color: #fff; }
.desktop-nav .nav-contact[aria-current] { color: #fff; }
.mobile-menu, .mobile-contact { display: none; }
/* Kompakte, weiterhin bedienbare Navigation beim Scrollen. */
@media screen {
.site-header.is-compact { box-shadow: 0 3px 14px #245a691a; }
.site-header.is-compact .header-inner { padding-block: 6px; }
.site-header.is-compact .brand { flex-basis: 160px; min-height: 44px; display: flex; align-items: center; }
/* Show only the bottom wordmark of the original 188 × 109 px logo. */
.site-header.is-compact .brand img { width: 160px; height: 25px; object-fit: cover; object-position: center bottom; }
@media (max-width: 380px), (min-width: 641px) and (max-width: 760px) {
  .site-header.is-compact .brand { flex-basis: 112px; }
  .site-header.is-compact .brand img { width: 112px; height: 17.5px; }
}
}
/* Animate explicit logo dimensions and padding rather than switching height: auto. */
@media screen and (prefers-reduced-motion: no-preference) {
  .site-header { transition: box-shadow 240ms ease; }
  .header-inner { transition: padding-block 240ms ease; }
  .brand { transition: flex-basis 240ms ease; }
  .brand img { transition: width 240ms ease, height 240ms ease; }
}
/* Behandlungsseite: Einleitung, Anatomie, Schritte und Angebote */
.hero { background: var(--soft); border-block: 1px solid var(--border); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: 48px; padding-block: 54px; }
.lead { margin-top: 22px; font-size: 17px; }
.hero-price { margin-top: 22px; font-size: 14px; color: var(--heading); }
.hero-price span { padding-inline: 5px; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 22px; margin-top: 22px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 15px; min-height: 48px; padding: 11px 20px; border-radius: 4px; background: var(--accent); color: #fff; font-size: 15px; line-height: 1.5; text-decoration: none; }
.button:hover { background: #205765; }
.text-link { display: inline-block; font-size: 15px; }
.hero-image { width: 100%; aspect-ratio: 1.3; object-fit: cover; border-radius: 5px; }
.section { padding-block: 72px; }
.section-compact { padding-block: 56px; }
.section-intro { max-width: 760px; margin-bottom: 32px; }
.section-tint { background: #f4f8f9; border-block: 1px solid #e6eef0; }
.method-intro { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: center; gap: 48px; margin-bottom: 32px; }
.method-intro .section-intro { margin-bottom: 0; }
.method-logo { width: 360px; }
.anatomy-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.anatomy-grid figure { min-width: 0; }
.anatomy-image { background: #fde8f1; border-radius: 4px; }
.anatomy-image img { width: 100%; }
.anatomy-grid figcaption { margin-top: 12px; color: var(--heading); font-size: 14px; line-height: 1.5; text-align: center; }
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.steps li { display: flex; align-items: flex-start; gap: 20px; padding: 28px 26px; background: #fff; border: 1px solid var(--border); border-radius: 5px; }
.step-number { flex: 0 0 35px; color: #397c8d; font-size: 28px; line-height: 1.3; }
.steps li > div, .hero-grid > *, .content-split > *, .personal-grid > *, .offer-grid > *, .contact-cards > * { min-width: 0; }
.steps h3 { font-size: 19px; }
.steps p { font-size: 15px; }
.splint-block { max-width: 300px; margin: 40px auto 0; }
.splint-block img { width: 100%; border-radius: 4px; }
.splint-block figcaption { margin-top: 8px; font-size: 13px; color: #596a72; }
.personal-grid { display: grid; grid-template-columns: 220px 1fr; align-items: center; gap: 56px; max-width: 970px; margin-inline: auto; }
.portrait { width: 220px; border-radius: 5px; }
.personal-grid .text-link { margin-top: 22px; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.offer { display: flex; flex-direction: column; align-items: flex-start; padding: 32px; background: #fff; border: 1px solid var(--border); border-top: 3px solid #649ba8; border-radius: 4px; }
.offer h3 { font-size: 24px; margin-bottom: 16px; }
.offer-price { color: var(--heading); font-size: 36px; line-height: 1.3; margin-bottom: 24px; }
.offer-price span { font-size: 14px; white-space: nowrap; }
.offer ul { padding-left: 20px; padding-bottom: 28px; }
.offer li + li { margin-top: 8px; }
.offer .button, .offer .text-link { margin-top: auto; }
.additional-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
.additional-prices dl { margin-top: 18px; }
.additional-prices dl div { display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--border); padding-block: 13px; }
.additional-prices dd { color: var(--heading); white-space: nowrap; }
.contact-section > div { max-width: 760px; }
.contact-links { font-size: 19px; line-height: 2; margin-bottom: 24px; }
address { font-style: normal; font-size: 14px; }
.site-footer { background: var(--heading); color: #fff; font-size: 13px; }
.site-footer a { color: #fff; }
.site-footer a:focus-visible { outline-color: #fff; }

/* Content layouts shared by the practice pages. */
.page-intro { padding-block: 52px; background: var(--soft); border-block: 1px solid var(--border); }
.page-intro h1 { max-width: 940px; }
.page-intro .eyebrow { margin-bottom: 14px; }
.prose { max-width: 800px; }
.prose p { text-align: left; }
.prose h2:not(:first-child), .prose h3:not(:first-child) { margin-top: 34px; }
.prose ul, .prose ol, .split-copy ul { padding-left: 24px; margin-block: 20px; }
.prose li, .split-copy li { padding-left: 3px; }
.prose li + li, .split-copy li + li { margin-top: 10px; }
.prose h2 + p, .prose h3 + p { margin-top: 0; }
.content-split { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
.split-copy h2 { margin-bottom: 22px; }
.split-media img { height: auto; border-radius: 5px; }
.split-media p { font-size: .875rem; margin-top: 18px; }
.anatomy-intro .split-copy h2 { font-size: 22px; margin-bottom: 16px; }
.anatomy-media figcaption { max-width: 419px; margin-inline: auto; }
.anatomy-media img { width: 100%; max-width: 419px; margin-inline: auto; }
.concept-split { grid-template-columns: 1.25fr 1fr; align-items: start; }
.concept-split .split-media { padding-top: 10px; }
.photo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.photo-grid figure { min-width: 0; }
.photo-grid img { width: 100%; height: auto; border-radius: 5px; }
.gallery-content h2 { margin-bottom: 30px; }
.page-next { margin-top: 32px; }
.closing-line { font-size: clamp(22px, 2vw, 28px); color: var(--heading); line-height: 1.45; }
/* Kontakt und rechtliche Angaben */
.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.contact-card { padding: 26px; background: #f4f8f9; border: 1px solid var(--border); border-radius: 4px; }
.contact-card h2 { font-size: 18px; margin-bottom: 18px; }
.contact-card p { font-size: 16px; }
.route-links { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.route-app { font-weight: 700; }
.route-app:not([hidden]) + a { display: none; }
.map-content iframe { display: block; width: 100%; height: 380px; border: 1px solid var(--border); border-radius: 4px; margin-block: 20px; }
.map-content small { font-size: 14px; }
.map-consent { margin-block: 20px; }
.map-consent iframe { margin: 0; }
.map-preview { position: relative; overflow: hidden; border-radius: 4px; }
.map-preview img { width: 100%; height: 380px; object-fit: cover; object-position: 44% center; }
.map-toggle { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; }
.map-caption { position: absolute; top: calc(100% - 86px); bottom: 0; left: 0; right: 0; padding: 16px 22px; color: #fff; background: #245a69ed; pointer-events: none; transition: top .28s ease; }
.map-caption-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.map-caption strong { display: block; font-size: 17px; line-height: 1.4; }
.map-attribution { font-size: 13px; line-height: 1.5; margin-top: 4px; }
.map-attribution a { position: relative; color: inherit; pointer-events: auto; }
.map-arrow { font-size: 24px; line-height: 1; }
.map-toggle:hover + .map-caption { background: var(--heading); }
.map-toggle:focus-visible { outline: 4px solid #154b9a; outline-offset: -4px; }
.map-toggle:focus-visible + .map-caption { box-shadow: inset 0 0 0 3px #fff; }
.map-preview.is-open .map-caption { top: 0; background: var(--heading); pointer-events: auto; overflow-y: auto; }
.map-preview.is-open .map-arrow { display: none; }
.map-info { max-width: 680px; margin-top: 18px; font-size: 14px; line-height: 1.6; }
.map-info:focus { outline: none; }
.map-info a { color: inherit; }
.map-alternative { margin-top: 12px; }
.map-info-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.map-info-actions button { min-height: 44px; padding: 8px 14px; border: 1px solid #fff; border-radius: 4px; cursor: pointer; font: inherit; }
.map-confirm { background: #fff; color: var(--heading); }
.map-cancel { color: #fff; background: transparent; }
.map-caption a:focus-visible, .map-info-actions button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.map-toggle[hidden] { display: none; }
.map-status { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.review-panel { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.review-panel h2, .review-action, .review-code { margin: 0; }
.review-qr { display: block; }
.legal-content { max-width: 860px; }
.legal-content h2 { font-size: 27px; }
.legal-content h3 { font-size: 21px; }
.legal-content > h2:not(:first-child) { margin-top: 42px; }
.legal-content a { overflow-wrap: anywhere; }
.imprint-content .legal-section + .legal-section { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.imprint-content h2 { overflow-wrap: anywhere; }
.legal-details dt { font-weight: 700; }
.legal-details dd { margin-top: 4px; }
.legal-details dd + dt { margin-top: 20px; }
/* Fußbereich und Menüsymbol */
.footer-top { display: grid; grid-template-columns: .9fr 1fr 1.25fr; gap: 40px; align-items: center; padding-block: 38px; }
.footer-brand img { width: 164px; }
.footer-location, .footer-email { display: flex; gap: 16px; align-items: center; min-width: 0; }
.footer-location .location-icon, .footer-email img { width: 30px; height: 30px; flex-shrink: 0; }
.footer-top p { font-size: 14px; line-height: 1.65; }
.footer-bottom { padding-block: 20px; border-top: 1px solid #ffffff35; }
.footer-bottom nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px 24px; }
.menu-symbol { display: inline-block; width: 20px; height: 16px; border-block: 2px solid currentColor; position: relative; }
.menu-symbol::after { content: ''; position: absolute; top: 5px; left: 0; width: 100%; border-top: 2px solid currentColor; }
/* Startseite und Slideshow */
.home-hero { position: relative; min-height: clamp(380px, 41vw, 560px); display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; background: #2f565e; }
.home-slides, .home-shade { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.home-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.home-slide.is-active { opacity: 1; }
.home-slide.is-failed { display: none; }
.home-hero.is-recovering .home-slide { transition: none; }
.home-shade { top: -140px; background: linear-gradient(180deg, #0e263400, #0e263426 35px, #0e263466 85px, #0e26349e 140px, #0e2634b8 100%); }
.home-hero-copy { position: relative; isolation: isolate; width: 100%; padding-block: 52px; }
.home-hero-copy .eyebrow { color: #fff; font-size: 14px; }
.home-hero-copy h1 { max-width: 750px; color: #fff; text-wrap: balance; font-size: clamp(32px, 4vw, 52px); }
.home-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; margin-top: 24px; padding-right: 60px; }
.home-hero-offers { display: flex; flex-wrap: wrap; gap: 0 24px; list-style: none; padding: 0; }
.home-hero-offers a { display: inline-flex; align-items: center; min-height: 44px; color: #fff; text-underline-offset: 5px; }
.home-hero-actions a:focus-visible { outline-color: #fff; }
.home-action { margin-top: 26px; }

/* Responsive Regeln: breit nach schmal; danach gezielte Zwischenbereiche. */
@media (max-width: 1040px) {
  .content-split { gap: 32px; }
  .contact-cards { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .header-inner { padding-block: 12px; gap: 24px; }
  .brand { flex-basis: 137px; }
  .brand img { width: 137px; height: calc(137px * 109 / 188); }
  .desktop-nav { font-size: 14px; }
  .nav-list { column-gap: 14px; }
  .desktop-nav .nav-contact { padding-inline: 12px; }
  .hero-grid { gap: 28px; padding-block: 38px; }
  .hero-image { aspect-ratio: 1; }
  .anatomy-grid { gap: 10px; }
  .method-intro { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .method-logo { grid-row: 1; justify-self: center; }
  .steps li { padding: 22px 20px; gap: 14px; }
  .personal-grid { grid-template-columns: 190px 1fr; gap: 32px; }
}

@media (max-width: 700px) {
  .header-inner { gap: 16px; }
  .brand { flex-basis: 115px; }
  .brand img { width: 115px; height: calc(115px * 109 / 188); }
  .nav-list { column-gap: 12px; }
}

@media (max-width: 640px) {
  .wrap { padding-inline: 22px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); padding-block: 28px; gap: 26px; }
  h1 { font-size: 31px; }
  .hero .eyebrow { margin-bottom: 10px; font-size: 11px; }
  .lead { font-size: 16px; margin-top: 18px; }
  .hero-price { margin-top: 16px; }
  .actions { margin-top: 18px; gap: 16px; }
  .hero-image { height: 160px; aspect-ratio: auto; object-position: center 52%; }
  .section { padding-block: 48px; }
  .section-intro { margin-bottom: 26px; }
  .method-intro { margin-bottom: 26px; }
  .anatomy-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .anatomy-grid figure:first-child { grid-column: 1 / -1; width: calc((100% - 16px) / 2); justify-self: center; }
  .anatomy-grid figcaption { font-size: 13px; margin-top: 10px; }
  .anatomy-grid + .caption { margin-top: 22px; }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .steps li { gap: 16px; }
  .splint-block { margin-top: 30px; }
  .personal-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .portrait { width: 172px; }
  .offer-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .offer { padding: 26px 24px; }
  .offer h3 { font-size: 23px; }
  .additional-prices { grid-template-columns: minmax(0, 1fr); gap: 30px; margin-top: 30px; }
  .additional-prices dl { font-size: 15px; }
  .contact-links { font-size: 16px; }
  .desktop-nav { display: none; }
  .header-inner { gap: 8px; }
  .mobile-contact { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; flex-shrink: 0; margin-left: auto; padding: 8px 10px; border-radius: 4px; background: var(--accent); color: #fff; font-size: 14px; line-height: 1.5; text-decoration: none; }
  .mobile-contact:hover { background: #205765; color: #fff; }
  .mobile-menu { display: block; flex-shrink: 0; }
  .mobile-menu summary { cursor: pointer; color: var(--heading); list-style: none; min-height: 44px; display: flex; align-items: center; gap: 8px; padding: 5px 4px; font-size: 15px; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu nav { position: absolute; top: calc(100% - 1px); left: 0; right: 0; max-height: calc(100vh - var(--header-offset, 100px)); max-height: calc(100dvh - var(--header-offset, 100px)); overflow-y: auto; overscroll-behavior: contain; padding: 14px 22px 20px; background: #fff; border-block: 1px solid var(--border); box-shadow: 0 8px 12px #245a6910; font-size: 15px; line-height: 1.5; }
  .mobile-menu nav a { display: block; min-height: 44px; padding: 12px 10px; border-radius: 2px; }
  .mobile-menu nav a:hover, .mobile-menu nav a[aria-current] { background: var(--soft); }
  .mobile-nav-group { margin-block: 8px; padding-block: 10px 6px; border-block: 1px solid var(--border); }
  .mobile-nav-group + .mobile-nav-group { margin-top: -9px; }
  .mobile-nav-group > span { display: block; padding: 6px 10px; color: var(--heading); font-size: 13px; font-weight: 700; }
  .mobile-nav-group ul a { padding-left: 24px; }
  .mobile-menu .nav-contact { margin-top: 8px; text-align: center; background: var(--accent); color: #fff; }
  .mobile-menu .nav-contact:hover { background: #205765; color: #fff; }
  .mobile-menu .nav-contact[aria-current] { background: var(--accent); color: #fff; }
  .page-intro { padding-block: 34px; }
  .page-intro h1 { font-size: 30px; }
  .content-split { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .photo-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .gallery-content h2 { margin-bottom: 24px; }
  .contact-card { padding: 24px; }
  .map-content iframe { height: 320px; }
  .map-preview img { height: 320px; }
  .map-caption { top: var(--map-caption-top, auto); padding: 12px 14px; }
  .map-preview.is-open .map-caption { padding-block: 10px; }
  .map-caption strong { font-size: 15px; }
  .map-attribution { font-size: 12px; }
  .map-info { margin-top: 8px; font-size: 13px; line-height: 1.4; }
  .map-info-actions { gap: 10px; margin-top: 8px; }
  .map-alternative { margin-top: 8px; }
  .legal-content h2 { font-size: 25px; }
  .imprint-content h2 { font-size: 23px; }
  .footer-top { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .footer-brand { grid-column: auto; margin-bottom: 4px; }
  .footer-bottom nav { justify-content: flex-start; }
  .home-hero { min-height: 365px; }
  .home-hero-copy { padding-block: 58px 46px; }
  .home-hero-copy h1 { font-size: 34px; }
  .home-hero-actions { padding-right: 0; gap: 12px; }
  .section-compact { padding-block: 40px; }
}

@media (max-width: 360px) {
  .wrap { padding-inline: 18px; }
  h1 { font-size: 28px; }
  .hero-price { font-size: 13px; }
  .hero-price span { padding-inline: 2px; }
  .steps li { padding: 20px 16px; gap: 12px; }
  .step-number { flex-basis: 30px; font-size: 25px; }
  .offer { padding-inline: 20px; }
  .page-intro h1 { font-size: 27px; }
}

@media (min-width: 641px) and (max-width: 1040px) {
  .symptoms-title-topic { display: block; }
  .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-card:last-child { grid-column: 1 / -1; }
}

@media (min-width: 641px) and (max-width: 800px) {
  .steps, .offer-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .home-slide, .map-caption { transition: none; }
}

/* Druckansicht: gezielte Überschreibungen der vorherigen Regeln. */
@media print {
  html { scroll-behavior: auto; scroll-padding-top: 0; }
  body { display: block; min-height: 0; color: #222; font-size: 14px; line-height: 1.55; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .lead { font-size: 15px; }
  .steps h3 { font-size: 17px; }
  .steps p { font-size: 14px; }
  .splint-block { max-width: 220px; margin-top: 20px; }
  .desktop-nav, .mobile-menu, .mobile-contact, .skip-link, .page-next, .map-content iframe, .map-consent, .route-app { display: none; }
  .route-app:not([hidden]) + a { display: inline; }
  .site-header, .site-header.is-compact { position: static; box-shadow: none; }
  .header-inner, .site-header.is-compact .header-inner { padding-block: 8px; }
  .section, .section-compact, .page-intro { padding-block: 24px; }
  .hero-grid { padding-block: 24px; gap: 24px; }
  .prose ul, .prose ol, .split-copy ul { margin-block: 14px; }
  .prose li + li, .split-copy li + li { margin-top: 6px; }
  .home-hero { display: block; min-height: 0; overflow: visible; background: #fff; }
  .home-slides { position: relative; inset: auto; z-index: auto; height: 190px; }
  .home-slide { display: none; position: static; inset: auto; height: 190px; opacity: 1; transition: none; }
  .home-slide:first-child:not(.is-failed), .home-slides picture:first-child .home-slide:not(.is-failed) { display: block; }
  .home-shade { display: none; }
  .home-hero-copy { padding-block: 18px 12px; }
  .home-hero-copy .eyebrow, .home-hero-copy h1, .home-hero-offers a { color: #222; }
  .home-hero-copy h1 { font-size: 28px; }
  .home-hero-actions { margin-top: 14px; padding-right: 0; }
  .section-intro { margin-bottom: 20px; }
  .method-intro { grid-template-columns: minmax(0, 1fr) 240px; gap: 24px; margin-bottom: 20px; break-inside: avoid; break-after: avoid; }
  .method-logo { grid-row: auto; justify-self: start; width: 240px; }
  h1, h2, h3 { break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
  figure, .steps li, .offer, .contact-card, .review-panel { break-inside: avoid; }
  .review-panel { gap: 8px; }
  .review-qr { width: 120px; height: 120px; }
  .anatomy-grid { break-inside: avoid; }
  .steps { display: block; }
  .steps li + li { margin-top: 12px; }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); break-inside: avoid; gap: 16px; }
  .offer { padding: 22px; }
  .offer h3 { font-size: 21px; }
  .offer-price { font-size: 30px; }
  .additional-prices { break-inside: avoid; }
  .contact-section { break-inside: avoid; }
  .section-intro { break-inside: avoid; break-after: avoid; }
  .eyebrow, .contact-section h2 { break-after: avoid; }
  .site-footer { color: #222; background: #fff; border-top: 1px solid #999; break-inside: avoid; }
  .site-footer a { color: #222; }
  .footer-brand, .footer-email img { display: none; }
  .footer-top { display: flex; flex-wrap: wrap; gap: 8px 20px; padding-block: 5px; }
  .footer-top p { line-height: 1.45; }
  .footer-bottom { padding-block: 4px; }
  .button { background: #fff; color: #222; border: 1px solid currentColor; }
}
