:root {
  --green-950: #173b35;
  --green-900: #1e433d;
  --green-800: #2f4a43;
  --green-700: #4f6d1a;
  --green-600: #79a80f;
  --green-500: #8bb51a;
  --green-100: #edf4df;
  --green-50: #f7faef;
  --ink: #263b36;
  --muted: #66736d;
  --soft: #f6f8f3;
  --line: #dce6d1;
  --white: #ffffff;
  --shadow-sm: 0 12px 35px rgba(23, 59, 53, 0.08);
  --shadow-md: 0 24px 70px rgba(23, 59, 53, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --space-section: clamp(112px, 9vw, 168px);
  --space-section-tight: clamp(76px, 6vw, 112px);
  --container: min(100% - 72px, 1280px);
  --wide: min(100% - 64px, 1600px);
  --contact-footer: min(100% - 72px, 1320px);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

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

html {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--green-600);
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-950);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 16px 34px rgba(121, 168, 15, 0.24);
}

.button-primary:hover {
  background: var(--green-700);
}

.button-secondary {
  color: var(--green-950);
  border-color: rgba(121, 168, 15, 0.55);
  background: rgba(255, 255, 255, 0.84);
}

.button-secondary:hover {
  border-color: var(--green-600);
  background: var(--white);
}

.button-whatsapp {
  color: var(--green-950);
  border-color: rgba(121, 168, 15, 0.42);
  background: var(--green-50);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 230, 209, 0.7);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 214px;
  max-height: 58px;
}

.site-nav,
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--green-950);
  font-size: 0.88rem;
  font-weight: 750;
}

.site-nav a,
.main-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after,
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green-600);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 44px;
  padding: 13px 19px;
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--green-950);
}

.hero {
  position: relative;
  min-height: clamp(720px, 88vh, 980px);
  overflow: hidden;
  display: grid;
  align-items: stretch;
  background: linear-gradient(90deg, #fff 0%, #fff 42%, #f9fbf5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.12) 66%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 64%, #fff 100%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: 47% center;
  transform-origin: right center;
  filter: saturate(0.9) contrast(1.02);
  animation: heroZoom 1400ms ease-out both;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--wide);
  grid-template-columns: minmax(0, 820px) minmax(0, 1fr);
  align-items: center;
  min-height: inherit;
  padding: 96px 0 88px;
}

.hero-copy {
  max-width: 760px;
  padding-bottom: 118px;
  animation: fadeUp 520ms ease-out both;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--green-600);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.25;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--green-950);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 4.15vw, 5.35rem);
  font-weight: 850;
}

.hero-subline {
  margin-bottom: 22px;
  color: var(--green-700);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
}

.lead,
.section-heading p:not(.eyebrow),
.legal-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  line-height: 1.75;
}

.hero .lead {
  max-width: 610px;
  margin-bottom: 34px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeUp 640ms 120ms ease-out both;
}

.hero-trustline {
  max-width: 610px;
  margin: 0;
  color: var(--green-950);
  font-size: 0.98rem;
  font-weight: 850;
}

.hero-points {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: min(100%, 1500px);
  margin-inline: auto;
  padding: 18px 0;
  border-top: 1px solid rgba(121, 168, 15, 0.28);
  border-bottom: 1px solid rgba(121, 168, 15, 0.18);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  animation: fadeUp 680ms 220ms ease-out both;
}

.hero-points > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px 18px;
  padding: 8px 28px;
  border-right: 1px solid rgba(121, 168, 15, 0.2);
}

.hero-points > div:last-child {
  border-right: 0;
}

.hero-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--green-600);
  border-radius: 999px;
  color: var(--green-700);
}

.hero-icon svg,
.line-icon svg,
.reason-icon svg,
.location-detail svg,
.location-benefit-strip svg,
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-points strong {
  align-self: end;
  color: var(--green-950);
  font-size: 1.02rem;
}

.hero-points small {
  align-self: start;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.usp-section {
  padding: 0;
  background: var(--white);
}

.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - 56px, 1600px);
  border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  background: var(--white);
}

.usp-strip article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px 22px;
  align-content: start;
  min-height: 178px;
  padding: clamp(30px, 3vw, 48px) clamp(24px, 3vw, 42px);
  border-right: 1px solid rgba(220, 230, 209, 0.95);
}

.usp-strip article:last-child {
  border-right: 0;
}

.usp-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--green-600);
  border-radius: 999px;
  color: var(--green-700);
  background: rgba(245, 249, 237, 0.82);
}

.usp-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usp-strip h3 {
  grid-column: 2;
  margin: 2px 0 10px;
  color: var(--green-950);
  font-size: clamp(1rem, 1.04vw, 1.18rem);
  line-height: 1.2;
}

.usp-strip p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.section {
  padding: var(--space-section) 0;
  scroll-margin-top: 96px;
}

#top {
  scroll-margin-top: 0;
}

.section-heading {
  display: grid;
  gap: 22px;
  max-width: 960px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 3.7vw, 4.25rem);
  font-weight: 850;
}

.section-heading p {
  margin: 0 auto;
}

.section-heading.align-left p {
  margin-inline: 0;
}

.trust-section {
  padding-top: clamp(74px, 6vw, 104px);
  padding-bottom: clamp(72px, 6vw, 110px);
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.trust-section .container {
  width: min(100% - 72px, 1500px);
}

.trust-section .section-heading {
  display: block;
  max-width: 940px;
  margin: 0 0 46px;
  text-align: left;
}

.trust-section .section-heading .eyebrow {
  margin-bottom: 24px;
}

.trust-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 3vw, 3.55rem);
  line-height: 1.06;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(121, 168, 15, 0.24);
  border-bottom: 1px solid rgba(121, 168, 15, 0.18);
}

.trust-card {
  min-height: 0;
  padding: clamp(24px, 2.7vw, 36px);
  border-right: 1px solid rgba(220, 230, 209, 0.95);
  background: transparent;
  transition: transform 240ms ease, background 240ms ease;
}

.trust-card:last-child {
  border-right: 0;
}

.trust-card-large {
  background: rgba(255, 255, 255, 0.58);
}

.trust-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.72);
}

.line-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border: 1px solid var(--green-600);
  border-radius: 999px;
  color: var(--green-700);
  font-size: 0.9rem;
  font-weight: 850;
}

.trust-card h3 {
  margin-bottom: 12px;
  color: var(--green-950);
  font-size: clamp(1.08rem, 1.08vw, 1.28rem);
  line-height: 1.18;
}

.trust-card p {
  font-size: 0.95rem;
  line-height: 1.58;
}

.trust-card p,
.location-card p,
.service-card p,
.doctor-card p,
.review-card p,
.contact-card p,
.hours-card dd,
.legal-card p {
  color: var(--muted);
}

.locations-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.locations-section .container {
  width: min(100% - 64px, 1560px);
}

.locations-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.42fr) minmax(0, 1fr);
  gap: clamp(44px, 4.5vw, 76px);
  align-items: start;
}

.locations-side {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 30px;
}

.region-map {
  position: relative;
  min-height: 500px;
  border-radius: 0;
  background:
    radial-gradient(circle at 48% 47%, rgba(139, 181, 26, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(247, 250, 239, 0.8), rgba(255, 255, 255, 0.45));
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.map-area {
  fill: rgba(237, 244, 223, 0.62);
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 12;
}

.map-boundary {
  fill: none;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 5;
}

.map-route {
  fill: none;
  stroke: rgba(121, 168, 15, 0.48);
  stroke-width: 6;
  stroke-linecap: round;
}

.map-route.main {
  stroke-width: 9;
}

.map-route.soft {
  stroke: rgba(121, 168, 15, 0.26);
  stroke-dasharray: 11 18;
}

.map-label {
  position: absolute;
  left: 8%;
  top: 7%;
  color: rgba(79, 109, 26, 0.7);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-950);
  font-weight: 850;
  transition: transform 220ms ease;
}

.map-pin:hover {
  transform: translateY(-4px) scale(1.02);
}

.pin-dot {
  display: block;
  width: 24px;
  height: 24px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 12px 28px rgba(23, 59, 53, 0.18);
}

.pin-card {
  display: grid;
  gap: 2px;
  padding: 8px 12px;
  border: 1px solid rgba(220, 230, 209, 0.88);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(23, 59, 53, 0.08);
}

.pin-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.pin-lauterecken {
  left: 58%;
  top: 22%;
}

.pin-ulmet {
  left: 35%;
  top: 43%;
}

.pin-landstuhl {
  left: 61%;
  top: 78%;
}

.location-reasons {
  display: grid;
  gap: 0;
  max-width: 420px;
  margin-inline: auto;
}

.location-reasons > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(220, 230, 209, 0.85);
}

.location-reasons > div:last-child {
  border-bottom: 0;
}

.reason-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--green-600);
  background: var(--green-100);
}

.location-reasons p {
  margin: 0;
  color: var(--muted);
}

.location-reasons strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-950);
}

.locations-main {
  min-width: 0;
}

.locations-main .section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.locations-main .section-heading h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.45rem, 3.3vw, 3.95rem);
  line-height: 1.03;
}

.location-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.location-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(220, 230, 209, 0.95);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(23, 59, 53, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(23, 59, 53, 0.1);
}

.location-card img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

.location-card:nth-child(1) img {
  object-position: 48% 48%;
}

.location-card:nth-child(2) img {
  object-position: 54% 48%;
}

.location-card:nth-child(3) img {
  object-position: 50% 48%;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 30px);
}

.location-kicker {
  margin-bottom: 14px;
  color: var(--green-600);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-card h3 {
  margin-bottom: 20px;
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 1.65vw, 1.95rem);
  line-height: 1.08;
}

.location-detail {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.location-detail span {
  color: var(--green-600);
}

.location-detail a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-weight: 800;
}

.location-card .text-link {
  margin-top: auto;
  padding-top: 8px;
}

.location-benefit-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  padding: 22px 30px;
  border: 1px solid rgba(220, 230, 209, 0.85);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.location-benefit-strip > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 16px;
  padding: 4px 22px;
  border-right: 1px solid rgba(220, 230, 209, 0.9);
}

.location-benefit-strip > div:last-child {
  border-right: 0;
}

.location-benefit-strip span {
  grid-row: span 2;
  color: var(--green-600);
}

.location-benefit-strip svg {
  width: 36px;
  height: 36px;
}

.location-benefit-strip strong {
  color: var(--green-950);
}

.location-benefit-strip small {
  color: var(--muted);
  line-height: 1.45;
}

.location-chapters {
  display: grid;
  gap: clamp(42px, 5vw, 72px);
  margin-top: clamp(70px, 7vw, 118px);
}

.location-chapter {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  scroll-margin-top: 110px;
}

.location-chapter.is-reverse img {
  order: 2;
}

.location-chapter img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.location-chapter-copy {
  max-width: 620px;
}

.location-chapter h2 {
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 3vw, 3.7rem);
}

.location-chapter p:not(.eyebrow) {
  color: var(--muted);
}

.chapter-context {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(220, 230, 209, 0.9);
}

.chapter-context h3 {
  margin: 0 0 14px;
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.25;
}

.chapter-context ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chapter-context li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.chapter-context li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
}

.chapter-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(220, 230, 209, 0.95);
}

.chapter-facts span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.chapter-facts a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--green-950);
  font-weight: 850;
}

.services-section {
  overflow: hidden;
  background: var(--white);
}

.services-section .container {
  width: min(100% - 72px, 1420px);
}

.services-editorial {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(220px, 0.31fr) minmax(0, 0.72fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
}

.services-intro {
  max-width: 340px;
}

.services-intro h2 {
  margin: 0 0 20px;
  color: var(--green-950);
  font-size: clamp(2rem, 2.55vw, 3.05rem);
  line-height: 1.05;
}

.services-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.service-tabs {
  display: grid;
  border: 1px solid rgba(220, 230, 209, 0.95);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 59, 53, 0.05);
}

.service-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  color: var(--green-950);
  background: transparent;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  outline: 0;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-tab:last-child {
  border-bottom: 0;
}

.service-tab.is-active {
  color: var(--white);
  background: var(--green-950);
}

.service-tab.is-active,
.service-tab.is-active:focus-visible {
  color: var(--white);
}

.service-tab:hover {
  background: var(--green-50);
}

.service-tab.is-active:hover {
  color: var(--white);
  background: var(--green-950);
}

.service-tab:focus-visible {
  box-shadow: inset 0 0 0 2px var(--green-600);
}

.service-panels {
  position: relative;
  min-height: 340px;
}

.service-panel {
  position: absolute;
  inset: 0;
  display: none;
  grid-template-columns: minmax(230px, 1fr) minmax(180px, 0.72fr);
  gap: clamp(20px, 2.4vw, 34px);
  align-items: center;
  min-height: 340px;
  overflow: hidden;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(220, 230, 209, 0.92);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(23, 59, 53, 0.07);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-panel.is-active {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-panel h3 {
  max-width: 480px;
  margin: 0 0 16px;
  color: var(--green-950);
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  line-height: 1.08;
}

.service-panel p:not(.location-kicker) {
  max-width: 430px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.service-panel img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  opacity: 0.68;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 36px;
  border: 1px solid var(--green-600);
  border-radius: 50%;
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-top: 22px;
  color: var(--green-950);
  font-size: 0.95rem;
  font-weight: 850;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.doctors-section {
  background: var(--white);
}

.doctors-section .container {
  width: min(100% - 72px, 1320px);
}

.doctors-section .section-heading {
  grid-template-columns: minmax(320px, 0.72fr) minmax(320px, 0.78fr);
  align-items: end;
  gap: clamp(28px, 4vw, 56px);
  max-width: none;
  margin: 0 0 54px;
  text-align: left;
}

.doctors-section .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.doctors-section .section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.2rem, 2.7vw, 3.25rem);
  line-height: 1.04;
}

.doctors-section .section-heading p {
  max-width: 560px;
  margin: 0;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(22px, 3vw, 36px);
}

.doctor-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  transition: transform 240ms ease;
}

.doctor-card:hover {
  transform: translateY(-6px);
}

.doctor-card img {
  width: 100%;
  aspect-ratio: 0.94 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 520ms ease;
}

.doctor-card:hover img {
  transform: scale(1.025);
}

.portrait-timo {
  object-position: center 34%;
}

.portrait-caroline {
  object-position: center 20%;
}

.doctor-card .card-body {
  min-height: 74px;
  padding: 22px 0 0;
}

.doctor-card h3 {
  margin-bottom: 7px;
  color: var(--green-950);
  font-size: clamp(1.18rem, 1.35vw, 1.55rem);
  line-height: 1.15;
}

.doctor-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.reviews-section {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.reviews-section .section-heading {
  margin-bottom: 36px;
  max-width: 920px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
}

.review-card {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: clamp(300px, 21vw, 390px);
  padding: 28px;
  border: 1px solid rgba(220, 230, 209, 0.88);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.review-card p {
  margin: 0 0 24px;
}

.stars {
  margin-bottom: 14px;
  color: var(--green-600);
  letter-spacing: 0.12em;
}

.review-card strong {
  color: var(--green-950);
}

.review-note {
  max-width: 920px;
  margin-top: clamp(22px, 2.4vw, 34px);
}

.anchor-target {
  position: absolute;
  top: calc(var(--header-height) * -1);
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 4vw, 64px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 181, 26, 0.3), transparent 36%),
    var(--green-950);
  box-shadow: var(--shadow-md);
}

.cta-panel h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.15rem, 3.3vw, 3.55rem);
}

.cta-panel p,
.cta-points {
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(76px, 6vw, 110px);
  padding-bottom: clamp(76px, 6vw, 110px);
  background: linear-gradient(180deg, var(--white), var(--green-50));
}

.contact-section .container {
  width: var(--contact-footer);
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.54fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.contact-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(2.2rem, 3.1vw, 3.45rem);
}

.contact-copy p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contact-map-panel {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.72fr);
  gap: 20px;
  align-items: stretch;
}

.region-map.compact {
  min-height: 380px;
  border: 1px solid rgba(220, 230, 209, 0.9);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-switcher {
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(220, 230, 209, 0.92);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(23, 59, 53, 0.06);
}

.contact-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.contact-tab {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(121, 168, 15, 0.38);
  border-radius: 999px;
  color: var(--green-950);
  background: transparent;
  font-size: 0.84rem;
  font-weight: 850;
  cursor: pointer;
}

.contact-tab.is-active,
.contact-tab:hover,
.contact-tab:focus-visible {
  color: var(--white);
  background: var(--green-600);
}

.contact-place {
  display: none;
}

.contact-place.is-active {
  display: block;
}

.contact-place h3,
.legal-card h2 {
  margin-bottom: 16px;
  color: var(--green-950);
  font-size: 1.32rem;
  line-height: 1.2;
}

.contact-place p {
  color: var(--muted);
}

.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-actions a {
  padding: 8px 12px;
  border: 1px solid rgba(121, 168, 15, 0.38);
  border-radius: 999px;
  color: var(--green-950);
  font-size: 0.82rem;
  font-weight: 800;
}

.whatsapp-link {
  background: var(--green-50);
}

.hours-card dl {
  margin: 0;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(220, 230, 209, 0.9);
}

.hours-card div:last-child {
  border-bottom: 0;
}

.hours-card dt {
  color: var(--green-950);
  font-weight: 800;
}

.hours-card dd {
  margin: 0;
  white-space: nowrap;
}

.site-footer {
  color: var(--muted);
  border-top: 1px solid rgba(220, 230, 209, 0.9);
  background: linear-gradient(180deg, var(--white) 0%, var(--green-50) 100%);
}

.site-footer .container {
  width: var(--contact-footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.35fr) repeat(5, minmax(108px, 0.75fr));
  gap: 24px;
  padding: 56px 0 42px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 20px;
}

.seal-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.seal-row img {
  max-width: 76px;
  max-height: 54px;
  object-fit: contain;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: 0.95rem;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 9px;
}

.site-footer a:hover {
  color: var(--green-700);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(220, 230, 209, 0.9);
  font-size: 0.86rem;
}

.final-cta-section {
  padding: clamp(54px, 6vw, 92px) 0 clamp(42px, 5vw, 76px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(247, 250, 239, 0.72) 100%),
    var(--white);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.48fr) minmax(0, 0.52fr);
  align-items: stretch;
  width: min(100% - 72px, 1560px);
  min-height: clamp(420px, 31vw, 560px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  padding: clamp(50px, 5.2vw, 88px) clamp(44px, 5.4vw, 90px);
  padding-right: clamp(64px, 6vw, 112px);
}

.final-cta-copy h2 {
  max-width: 520px;
  margin: 0 0 20px;
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 3.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.04;
}

.final-cta-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.72;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: clamp(28px, 3vw, 38px) 0 clamp(28px, 3vw, 42px);
}

.final-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(220, 230, 209, 0.9);
  color: var(--green-950);
  font-size: 0.9rem;
  font-weight: 800;
}

.final-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.final-trust-row span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--green-600);
  border-radius: 50%;
  color: var(--green-600);
  font-size: 0.72rem;
  line-height: 1;
}

.final-cta-image {
  position: relative;
  min-width: 0;
  margin: 0 0 0 clamp(-82px, -4.2vw, -48px);
}

.final-cta-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 46%;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.92) 28%, rgba(255, 255, 255, 0.58) 62%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.final-cta-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 54% 50%;
  display: block;
}

.legal-page {
  background: var(--soft);
}

.legal-main {
  padding: 80px 0 110px;
}

.legal-hero {
  padding: 64px 0 48px;
}

.legal-hero h1 {
  margin-bottom: 24px;
}

.legal-grid,
.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.legal-content {
  grid-template-columns: 1fr;
  max-width: 980px;
}

.legal-card,
.legal-content {
  min-width: 0;
  overflow-wrap: anywhere;
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.legal-card a {
  color: var(--green-700);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes heroZoom {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    transition-duration: 0.001ms;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1280px) {
  :root {
    --container: min(100% - 48px, 1180px);
  }

  .hero {
    min-height: 820px;
  }

  .hero-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-copy {
    padding-bottom: 156px;
  }

  .usp-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usp-strip article:nth-child(2n) {
    border-right: 0;
  }

  .usp-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card:nth-child(2n) {
    border-right: 0;
  }

  .trust-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  }

  .services-editorial {
    grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  }

  .service-tabs {
    grid-column: 1;
  }

  .service-panels {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .locations-showcase,
  .reviews-layout,
  .contact-stage,
  .contact-map-panel {
    grid-template-columns: 1fr;
  }

  .locations-side {
    position: relative;
    top: auto;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
    align-items: center;
  }

  .region-map {
    min-height: 460px;
  }

  .doctor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 198px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
    background: var(--white);
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78) 54%, #fff 92%);
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: center;
    transform: none;
    animation: none;
    opacity: 0.18;
  }

  .hero-grid {
    display: block;
    width: var(--container);
    min-height: auto;
    padding: 72px 0 54px;
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 0;
  }

  .hero-points {
    position: relative;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .hero-points > div {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(121, 168, 15, 0.16);
  }

  .hero-points > div:last-child {
    border-bottom: 0;
  }

  .usp-strip {
    grid-template-columns: 1fr;
  }

  .usp-strip article,
  .usp-strip article:nth-child(2n),
  .usp-strip article:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  }

  .usp-strip article:last-child {
    border-bottom: 0;
  }

  .trust-section .section-heading,
  .services-editorial,
  .doctors-section .section-heading {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    display: none;
  }

  .service-panels {
    display: grid;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-height: 0;
    gap: 18px;
  }

  .service-panel,
  .service-panel.is-active {
    display: grid;
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    min-height: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .service-panel[aria-hidden="true"] {
    display: grid;
  }

  .service-panel img {
    order: -1;
    aspect-ratio: 16 / 9;
  }

  .locations-side {
    grid-template-columns: 1fr;
    order: 2;
  }

  .locations-main {
    order: 1;
  }

  .location-benefit-strip {
    order: 3;
  }

  .location-card-row,
  .review-grid,
  .location-benefit-strip,
  .footer-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .doctor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-chapter,
  .location-chapter.is-reverse {
    grid-template-columns: 1fr;
  }

  .location-chapter.is-reverse img {
    order: 0;
  }

  .doctor-card,
  .doctor-card:first-child,
  .doctor-card:nth-child(2),
  .doctor-card:nth-child(3) {
    transform: none;
  }

  .location-benefit-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.9);
    padding: 20px 0;
  }

  .location-benefit-strip > div:last-child {
    border-bottom: 0;
  }

  .contact-map-panel {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 32px, 100%);
  }

  .section {
    padding: 86px 0;
  }

  .brand img {
    width: 178px;
  }

  .hero-image {
    height: 100%;
    min-height: 0;
  }

  .hero-grid {
    padding-top: 42px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 8.8vw, 2.85rem);
    line-height: 1.06;
    overflow-wrap: normal;
  }

  .section-heading h2,
  .legal-hero h1 {
    font-size: clamp(2.05rem, 8.6vw, 2.75rem);
    line-height: 1.08;
  }

  .locations-main .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.9rem, 7.2vw, 2.35rem);
    line-height: 1.08;
  }

  .location-chapter h2 {
    font-size: clamp(1.9rem, 7.5vw, 2.35rem);
  }

  .action-row,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .hero-points > div,
  .hero-points > div:nth-child(-n + 2),
  .hero-points > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(121, 168, 15, 0.16);
  }

  .usp-strip {
    width: min(100% - 32px, 100%);
  }

  .usp-strip article {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  .usp-icon {
    width: 52px;
    height: 52px;
  }

  .hero-points > div:last-child {
    border-bottom: 0;
  }

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

  .trust-section .section-heading {
    margin-bottom: 42px;
  }

  .trust-section .section-heading h2 {
    font-size: clamp(2rem, 8vw, 2.55rem);
  }

  .trust-card,
  .trust-card:nth-child(-n + 2),
  .trust-card:nth-child(2n) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  }

  .trust-card:last-child {
    border-bottom: 0;
  }

  .service-panel {
    padding: 22px;
  }

  .service-panel h3 {
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    line-height: 1.12;
  }

  .service-panel p:not(.location-kicker) {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .service-panel img {
    aspect-ratio: 1.7 / 1;
  }

  .chapter-facts {
    grid-template-columns: 1fr;
  }

  .region-map {
    min-height: 360px;
    margin-inline: -8px;
  }

  .pin-card {
    padding: 7px 9px;
  }

  .pin-card small {
    display: none;
  }

  .pin-ulmet {
    left: 26%;
    top: 43%;
  }

  .pin-lauterecken {
    left: 46%;
    top: 23%;
  }

  .pin-landstuhl {
    left: 45%;
    top: 78%;
  }

  .location-benefit-strip {
    padding: 20px 24px;
  }

  .doctor-card img {
    aspect-ratio: 1.05 / 1;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-card,
  .hours-card,
  .legal-card,
  .contact-switcher {
    padding: 26px;
  }

  .contact-actions {
    display: grid;
  }

  .region-map.compact {
    min-height: 360px;
  }
}

/* Final design-system consolidation */
:root {
  --gutter: clamp(24px, 4vw, 72px);
  --reading: 680px;
  --container: min(100% - var(--gutter) * 2, 1280px);
  --wide: min(100% - var(--gutter) * 2, 1560px);
  --contact-footer: min(100% - var(--gutter) * 2, 1320px);
  --section-space: clamp(86px, 7vw, 132px);
  --section-space-tight: clamp(64px, 5vw, 96px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  font-size: 16px;
  line-height: 1.68;
}

.section {
  padding: var(--section-space) 0;
}

.eyebrow,
.location-kicker {
  margin-bottom: 18px;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.25;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 3.55vw, 4.35rem);
  line-height: 1.04;
}

h1 br {
  display: block;
}

.section-heading h2,
.trust-section .section-heading h2,
.services-intro h2,
.doctors-section .section-heading h2,
.legal-hero h1,
.location-chapter h2,
.contact-copy h2,
.locations-main .section-heading h2,
.cta-panel h2 {
  font-family: var(--font-sans);
  font-size: clamp(2.15rem, 3vw, 3.55rem);
  font-weight: 850;
  line-height: 1.08;
}

.section-heading {
  gap: 18px;
  margin-bottom: clamp(42px, 5vw, 66px);
}

.section-heading p:not(.eyebrow),
.lead,
.contact-copy p:not(.eyebrow),
.services-intro p:not(.eyebrow),
.location-chapter p:not(.eyebrow) {
  max-width: var(--reading);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.button,
.contact-tab,
.mini-actions a {
  min-height: 48px;
  border-radius: 999px;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.button:focus-visible,
.service-tab:focus-visible,
.contact-tab:focus-visible,
.text-link:focus-visible,
.map-pin:focus-visible,
.location-nav-list a:focus-visible,
.mini-actions a:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(121, 168, 15, 0.42);
  outline-offset: 4px;
}

.site-header .container,
.hero-grid,
.usp-strip,
.trust-section .container,
.services-section .container,
.doctors-section .container,
.locations-section .container,
.reviews-section .container,
.contact-section .container,
.site-footer .container {
  margin-inline: auto;
}

.hero {
  min-height: clamp(700px, 86vh, 900px);
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 46%, var(--soft) 100%);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.92) 44%, rgba(255, 255, 255, 0.22) 68%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 68%, #fff 100%);
}

.hero-image {
  width: 56%;
  object-position: center;
}

.hero-grid {
  width: var(--wide);
  grid-template-columns: minmax(0, 760px) minmax(0, 1fr);
  padding: clamp(72px, 7vw, 104px) 0 clamp(54px, 6vw, 82px);
}

.hero-copy {
  max-width: 760px;
  padding-bottom: 0;
}

.hero-subline {
  margin-bottom: 18px;
  font-size: clamp(1.16rem, 1.5vw, 1.45rem);
}

.hero .lead {
  max-width: 590px;
  margin-bottom: 30px;
}

.hero-trustline {
  max-width: 590px;
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero-points {
  bottom: 28px;
  max-width: min(100%, 1440px);
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.hero-points > div {
  grid-template-columns: 46px 1fr;
  gap: 8px 16px;
  padding: 6px clamp(18px, 2.2vw, 30px);
}

.hero-icon {
  width: 46px;
  height: 46px;
}

.hero-points strong {
  font-size: 0.98rem;
}

.hero-points small {
  font-size: 0.9rem;
}

.usp-section {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  padding: 0 0 var(--section-space-tight);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, var(--white) 82%);
}

.usp-strip {
  width: var(--wide);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid rgba(220, 230, 209, 0.9);
  border-bottom: 1px solid rgba(220, 230, 209, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.usp-strip article {
  display: flex;
  min-height: 245px;
  padding: clamp(24px, 2.5vw, 36px) clamp(18px, 2vw, 28px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  border-right: 1px solid rgba(220, 230, 209, 0.92);
}

.usp-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 16px;
  border: 0;
  background: transparent;
}

.usp-icon svg {
  width: 68px;
  height: 68px;
  stroke: var(--green-950);
  stroke-width: 1.55;
}

.usp-strip h3 {
  max-width: 210px;
  margin: 0 auto 12px;
  color: var(--green-950);
  font-size: clamp(0.98rem, 0.95vw, 1.12rem);
  line-height: 1.18;
}

.usp-strip p {
  max-width: 220px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.87rem, 0.82vw, 0.96rem);
  line-height: 1.56;
}

.usp-strip article:last-child {
  border-right: 0;
}

.trust-section {
  padding: var(--section-space) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.trust-section .container {
  width: var(--wide);
}

.trust-section .section-heading {
  max-width: none;
  margin-bottom: 42px;
}

.trust-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 3.25vw, 4rem);
}

.trust-grid {
  grid-template-columns: 1.18fr repeat(3, 1fr);
  border-top-color: rgba(121, 168, 15, 0.22);
  border-bottom-color: rgba(121, 168, 15, 0.22);
}

.trust-card {
  min-height: 300px;
  padding: clamp(28px, 3vw, 46px);
  background: transparent;
}

.trust-card-large {
  background: rgba(255, 255, 255, 0.48);
}

.trust-card h3 {
  font-size: clamp(1.1rem, 1.2vw, 1.32rem);
  line-height: 1.2;
}

.trust-card p {
  max-width: 300px;
  font-size: 0.96rem;
}

.line-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
}

.services-section {
  padding: var(--section-space) 0;
  background: var(--white);
}

.services-section .container {
  width: min(100% - var(--gutter) * 2, 1480px);
}

.services-editorial {
  grid-template-columns: minmax(260px, 0.38fr) minmax(230px, 0.28fr) minmax(0, 0.86fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: center;
}

.services-intro {
  max-width: 360px;
}

.services-intro h2 {
  font-size: clamp(2rem, 2.6vw, 3.15rem);
}

.service-tabs {
  border-radius: 18px;
  box-shadow: none;
}

.service-mobile-toggle {
  display: none;
}

.service-tab {
  min-height: 50px;
  font-size: 0.9rem;
}

.service-panels,
.service-panel {
  min-height: 390px;
}

.service-panel {
  grid-template-columns: minmax(260px, 0.9fr) minmax(240px, 0.86fr);
  padding: clamp(30px, 3.2vw, 46px);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.service-panel h3 {
  max-width: 440px;
  font-size: clamp(1.55rem, 1.9vw, 2.15rem);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
}

.service-icon svg {
  width: 23px;
  height: 23px;
}

.service-panel img {
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  opacity: 0.72;
}

.doctors-section {
  padding: var(--section-space) 0;
}

.doctors-section .container {
  width: min(100% - var(--gutter) * 2, 1360px);
}

.doctors-section .section-heading {
  grid-template-columns: minmax(320px, 0.72fr) minmax(320px, 0.78fr);
  align-items: end;
  margin-bottom: 52px;
}

.doctors-section .section-heading h2 {
  max-width: 620px;
}

.doctor-grid {
  align-items: end;
}

.doctor-card:first-child img {
  aspect-ratio: 0.92 / 1;
}

.doctor-card:not(:first-child) img {
  aspect-ratio: 0.95 / 1;
}

.doctor-card .card-body {
  padding-top: 18px;
}

.locations-section {
  padding: var(--section-space) 0;
}

.locations-section .container {
  width: var(--wide);
}

.locations-showcase {
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 0.9fr);
  gap: clamp(42px, 5vw, 84px);
}

.locations-side {
  gap: 26px;
}

.region-map {
  min-height: 460px;
}

.pin-lauterecken {
  left: 58%;
  top: 21%;
}

.pin-ulmet {
  left: 34%;
  top: 44%;
}

.pin-landstuhl {
  left: 63%;
  top: 76%;
}

.locations-main .section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.location-nav-list {
  display: grid;
  gap: 0;
  max-width: 760px;
  border-top: 1px solid rgba(220, 230, 209, 0.9);
}

.location-nav-list a {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px 22px;
  align-items: center;
  min-height: 86px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(220, 230, 209, 0.9);
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.location-nav-list a:hover {
  color: var(--green-700);
  transform: translateX(4px);
}

.location-nav-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--green-600);
  border-radius: 50%;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 850;
}

.location-nav-list strong {
  color: var(--green-950);
  font-size: 1.18rem;
  line-height: 1.2;
}

.location-nav-list small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.location-nav-list a::after {
  content: "→";
  color: var(--green-950);
  font-weight: 850;
}

.location-benefit-strip {
  margin-top: 28px;
  padding: 18px 24px;
  border-radius: 18px;
  box-shadow: none;
}

.location-benefit-strip > div {
  grid-template-columns: 38px 1fr;
  padding: 4px 18px;
}

.location-benefit-strip svg {
  width: 30px;
  height: 30px;
}

.location-chapters {
  gap: clamp(46px, 5vw, 76px);
  margin-top: clamp(62px, 6vw, 98px);
}

.location-chapter {
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1fr);
}

.location-chapter img {
  border-radius: 22px;
}

.location-chapter-copy {
  max-width: 640px;
}

.chapter-context {
  margin-top: 20px;
  padding-top: 18px;
}

.chapter-facts {
  margin-top: 22px;
  padding-top: 20px;
}

.reviews-section {
  padding: var(--section-space) 0;
}

.review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-card {
  box-shadow: none;
}

.review-note {
  max-width: 860px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.contact-section {
  padding: var(--section-space-tight) 0;
}

.contact-stage {
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
}

.contact-copy h2 {
  max-width: 520px;
}

.contact-map-panel {
  grid-template-columns: minmax(330px, 1fr) minmax(260px, 0.65fr);
}

.region-map.compact {
  min-height: 340px;
}

.contact-switcher {
  padding: clamp(24px, 2.4vw, 34px);
  box-shadow: none;
}

.site-footer {
  background: var(--green-50);
}

.footer-grid {
  gap: clamp(22px, 3vw, 38px);
  padding-top: 48px;
}

.trust-section .section-heading h2,
.services-intro h2,
.doctors-section .section-heading h2,
.locations-main .section-heading h2,
.location-chapter h2,
.reviews-section .section-heading h2,
.contact-copy h2,
.cta-panel h2 {
  font-size: clamp(2.15rem, 3vw, 3.55rem);
}

@media (max-width: 1280px) {
  .usp-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .usp-strip article {
    border-right: 1px solid rgba(220, 230, 209, 0.92);
    border-bottom: 1px solid rgba(220, 230, 209, 0.92);
  }

  .usp-strip article:nth-child(3n),
  .usp-strip article:last-child {
    border-right: 0;
  }

  .usp-strip article:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .services-editorial,
  .locations-showcase,
  .reviews-layout,
  .contact-stage,
  .contact-map-panel {
    grid-template-columns: 1fr;
  }

  .service-panels {
    grid-column: auto;
    grid-row: auto;
  }

  .locations-side {
    position: relative;
    top: auto;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  }
}

@media (max-width: 980px) {
  :root {
    --gutter: clamp(18px, 5vw, 34px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: block;
    padding-top: 64px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .usp-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usp-strip article,
  .usp-strip article:nth-child(3n),
  .usp-strip article:last-child {
    border-right: 1px solid rgba(220, 230, 209, 0.92);
    border-bottom: 1px solid rgba(220, 230, 209, 0.92);
  }

  .usp-strip article:nth-child(2n),
  .usp-strip article:last-child {
    border-right: 0;
  }

  .usp-strip article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .services-editorial,
  .doctors-section .section-heading,
  .locations-side,
  .location-chapter,
  .location-chapter.is-reverse,
  .contact-stage {
    grid-template-columns: 1fr;
  }

  .location-chapter.is-reverse img {
    order: 0;
  }

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

  .trust-card,
  .trust-card:nth-child(-n + 2),
  .trust-card:nth-child(2n) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  }

  .trust-card:last-child {
    border-bottom: 0;
  }

  .service-tabs {
    display: grid;
  }

  .service-panels {
    display: block;
    min-height: 0;
  }

  .service-panel,
  .service-panel.is-active {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .service-panel[aria-hidden="true"] {
    display: none;
  }

  .service-panel img {
    order: -1;
    aspect-ratio: 16 / 9;
  }

  .doctor-grid,
  .review-grid,
  .location-benefit-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 16px;
    --section-space: 76px;
    --section-space-tight: 60px;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.4rem);
  }

  .section-heading h2,
  .trust-section .section-heading h2,
  .services-intro h2,
  .doctors-section .section-heading h2,
  .legal-hero h1,
  .location-chapter h2,
  .contact-copy h2,
  .locations-main .section-heading h2,
  .cta-panel h2,
  .reviews-section .section-heading h2 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }

  .usp-strip {
    width: var(--container);
    grid-template-columns: 1fr;
  }

  .usp-strip article {
    min-height: 0;
    padding: 28px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.92);
  }

  .usp-strip article:nth-child(2n),
  .usp-strip article:nth-child(3n),
  .usp-strip article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.92);
  }

  .usp-strip article:last-child {
    border-bottom: 0;
  }

  .usp-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 12px;
  }

  .usp-icon svg {
    width: 56px;
    height: 56px;
  }

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

  .trust-card,
  .trust-card:nth-child(-n + 2),
  .trust-card:nth-child(2n) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  }

  .trust-card:last-child {
    border-bottom: 0;
  }

  .service-panel {
    padding: 22px;
  }

  .location-nav-list a {
    grid-template-columns: 44px 1fr;
  }

  .location-nav-list a::after {
    display: none;
  }

  .chapter-facts,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .pin-card {
    font-size: 0.86rem;
  }

  .pin-card small {
    display: none;
  }
}

@media (max-width: 360px) {
  h1 br {
    display: none;
  }

  .region-map {
    min-height: 330px;
    margin-inline: 0;
  }

  .pin-dot {
    width: 20px;
    height: 20px;
  }

  .pin-card {
    max-width: 82px;
    padding: 6px 8px;
    font-size: 0.76rem;
  }

  .pin-lauterecken {
    left: 42%;
    top: 21%;
  }

  .pin-ulmet {
    left: 22%;
    top: 43%;
  }

  .pin-landstuhl {
    left: 43%;
    top: 76%;
  }
}

/* Header proportion QA */
.site-header .container.header-inner {
  width: min(100% - 56px, 1500px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 72px);
  min-height: 72px;
}

.brand img {
  width: clamp(178px, 10.5vw, 204px);
  max-height: 50px;
}

.site-nav {
  justify-self: center;
  gap: clamp(20px, 2vw, 30px);
  font-size: 0.86rem;
}

.header-cta {
  min-height: 44px;
  padding: 0 24px;
  font-size: 0.83rem;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .site-header .container.header-inner {
    width: min(100% - 40px, 100%);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.82rem;
  }

  .header-cta {
    padding-inline: 18px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    display: flex;
    min-height: 70px;
  }

  .brand img {
    width: 178px;
  }
}

/* Treatment journey section */
.treatment-section {
  overflow: hidden;
  padding: clamp(78px, 6.5vw, 118px) 0 clamp(80px, 6.5vw, 124px);
  background: var(--white);
}

.treatment-section .treatment-stage {
  width: var(--wide);
}

.treatment-hero {
  position: relative;
  min-height: clamp(300px, 25vw, 430px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(220, 230, 209, 0.95);
}

.treatment-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 38%, rgba(255, 255, 255, 0.72) 56%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0.96) 100%);
}

.treatment-hero img {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(62%, 980px);
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  opacity: 0.84;
}

.treatment-copy {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  padding: clamp(30px, 4vw, 68px) 0;
}

.treatment-copy .eyebrow {
  margin-bottom: 22px;
}

.treatment-copy h2 {
  max-width: 1010px;
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 3.9vw, 4.65rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.treatment-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.28vw, 1.42rem);
  line-height: 1.48;
}

.treatment-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(220, 230, 209, 0.95);
}

.treatment-step {
  position: relative;
  display: grid;
  min-height: clamp(290px, 20vw, 365px);
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  padding: clamp(28px, 2.5vw, 42px) clamp(28px, 2.8vw, 44px) clamp(28px, 2.5vw, 40px);
  border-right: 1px solid rgba(220, 230, 209, 0.95);
}

.treatment-step:last-child {
  border-right: 0;
}

.step-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: clamp(24px, 2.2vw, 40px);
  border: 1px solid rgba(121, 168, 15, 0.75);
  border-radius: 999px;
  color: var(--green-700);
  font-size: 1rem;
  font-weight: 850;
}

.step-icon {
  display: block;
  width: clamp(66px, 4.5vw, 84px);
  height: clamp(66px, 4.5vw, 84px);
  margin: 0 0 clamp(22px, 2vw, 34px);
  color: var(--green-700);
}

.step-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.treatment-step h3 {
  max-width: 330px;
  margin: 0 0 16px;
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
}

.treatment-step p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.68;
}

.treatment-step::after {
  content: "";
  align-self: end;
  width: 46px;
  height: 2px;
  margin-top: clamp(22px, 2.2vw, 34px);
  background: var(--green-600);
}

@media (max-width: 1180px) {
  .treatment-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-step {
    min-height: 330px;
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  }

  .treatment-step:nth-child(2n) {
    border-right: 0;
  }

  .treatment-step:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .treatment-section {
    padding: 68px 0 78px;
  }

  .treatment-section .treatment-stage {
    width: var(--container);
  }

  .treatment-hero {
    min-height: 0;
    padding-top: 150px;
  }

  .treatment-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.97) 42%, rgba(255, 255, 255, 1) 100%);
  }

  .treatment-hero img {
    inset: 0 0 auto 0;
    width: 100%;
    height: 210px;
    opacity: 0.58;
  }

  .treatment-copy {
    padding: 26px 0 34px;
  }

  .treatment-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.25rem);
    line-height: 1.02;
  }

  .treatment-copy p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 1rem;
  }

  .treatment-steps {
    grid-template-columns: 1fr;
  }

  .treatment-step,
  .treatment-step:nth-child(2n),
  .treatment-step:nth-last-child(-n + 2) {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  }

  .treatment-step:last-child {
    border-bottom: 0;
  }

  .step-number {
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
  }

  .step-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
  }
}

/* Services editorial QA */
.services-section {
  padding: clamp(92px, 7vw, 132px) 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 239, 0.46) 0%, rgba(255, 255, 255, 0) 34%),
    var(--white);
}

.services-section .container {
  width: min(100% - 72px, 1560px);
}

.services-editorial {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(270px, 0.72fr) minmax(600px, 1.76fr);
  gap: clamp(36px, 4.4vw, 72px);
  align-items: start;
}

.services-intro {
  max-width: 390px;
  padding-top: 10px;
}

.services-intro h2 {
  margin: 0 0 24px;
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: clamp(2.45rem, 3.1vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
}

.services-intro p:not(.eyebrow) {
  max-width: 360px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.74;
}

.services-all-link {
  margin-top: 42px;
  color: var(--green-700);
}

.service-tabs {
  counter-reset: service;
  display: grid;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-tab {
  counter-increment: service;
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  align-items: center;
  min-height: 74px;
  padding: 0 0;
  border: 0;
  border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  color: var(--ink);
  background: transparent;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.2;
  transition: color 220ms ease, transform 220ms ease;
}

.service-tab::before {
  content: counter(service, decimal-leading-zero);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-tab::after {
  content: "›";
  justify-self: end;
  color: var(--green-950);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 220ms ease, color 220ms ease;
}

.service-tab:last-child {
  border-bottom: 1px solid rgba(220, 230, 209, 0.95);
}

.service-tab.is-active,
.service-tab.is-active:focus-visible,
.service-tab.is-active:hover,
.service-tab[aria-current="true"] {
  color: var(--green-700);
  background: transparent;
  box-shadow: none;
}

.service-tab.is-active::before,
.service-tab[aria-current="true"]::before {
  color: var(--green-600);
}

.service-tab.is-active::after,
.service-tab[aria-current="true"]::after {
  color: var(--green-700);
  transform: translateX(4px);
}

.service-tab.is-active {
  transform: translateX(8px);
}

.service-tab.is-active::marker {
  color: var(--green-600);
}

.service-tab.is-active::before {
  position: relative;
}

.service-tab.is-active::after {
  font-weight: 700;
}

.service-tab:hover {
  color: var(--green-700);
  background: transparent;
}

.service-tab:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 3px rgba(121, 168, 15, 0.22);
}

.service-tab.is-active > *,
.service-tab[aria-current="true"] > * {
  color: inherit;
}

.service-panels {
  position: relative;
  min-height: clamp(610px, 42vw, 700px);
}

.service-panel {
  position: absolute;
  inset: 0;
  display: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(290px, 1fr);
  gap: clamp(28px, 3vw, 52px);
  align-items: center;
  min-height: clamp(610px, 42vw, 700px);
  padding: clamp(30px, 2.8vw, 48px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 58%, rgba(247, 250, 239, 0.34) 100%);
  box-shadow: none;
}

.service-panel.is-active {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-panel > div {
  min-width: 0;
}

.service-icon {
  display: none;
}

.service-panel .location-kicker {
  margin-bottom: 22px;
}

.service-panel h3 {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2.55vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
}

.service-panel p:not(.location-kicker) {
  max-width: 500px;
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.74;
}

.service-benefits {
  display: grid;
  gap: 14px;
  max-width: 500px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.service-benefits li {
  position: relative;
  min-height: 28px;
  padding-left: 40px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

.service-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--green-600);
  border-radius: 999px;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 850;
}

.service-panel .text-link {
  margin-top: 34px;
}

.service-panel img {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: clamp(300px, 26vw, 410px);
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
  opacity: 0.88;
}

#service-panel-aesthetik img {
  object-position: 72% center;
}

@media (max-width: 1180px) {
  .services-editorial {
    grid-template-columns: minmax(240px, 0.75fr) minmax(260px, 0.85fr);
  }

  .service-panels {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .services-section .container {
    width: var(--container);
  }

  .services-editorial {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-intro {
    max-width: 680px;
  }

  .service-tabs {
    display: none;
  }

  .service-panels {
    display: grid;
    gap: 0;
    min-height: 0;
  }

  .service-panel,
  .service-panel.is-active,
  .service-panel[aria-hidden="true"] {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 0;
    border-top: 1px solid rgba(220, 230, 209, 0.95);
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .service-panel:last-child {
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  }

  .service-mobile-toggle {
    order: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    gap: 12px;
    align-items: center;
    width: 100%;
    min-height: 72px;
    padding: 18px 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
    font-size: 1rem;
    font-weight: 760;
    text-align: left;
  }

  .service-mobile-toggle span {
    color: var(--green-600);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .service-mobile-toggle::after {
    content: "›";
    justify-self: end;
    color: var(--green-700);
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 220ms ease;
  }

  .service-mobile-toggle[aria-expanded="true"] {
    color: var(--green-700);
  }

  .service-mobile-toggle[aria-expanded="true"]::after {
    transform: rotate(90deg);
  }

  .service-mobile-toggle:focus-visible {
    outline: 3px solid rgba(121, 168, 15, 0.24);
    outline-offset: 4px;
    border-radius: 8px;
  }

  .service-panel > div,
  .service-panel img {
    display: none;
  }

  .service-panel.is-mobile-open > div,
  .service-panel.is-mobile-open img {
    display: block;
  }

  .service-panel.is-mobile-open > div {
    order: 1;
  }

  .service-panel.is-mobile-open img {
    order: 2;
  }

  .service-panel.is-mobile-open {
    padding-bottom: 30px;
  }

  .service-panel::before {
    content: attr(aria-labelledby);
    display: none;
  }

  .service-panel img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin-top: 24px;
  }

  .service-panel h3 {
    font-size: clamp(1.8rem, 7vw, 2.75rem);
  }
}

/* Location editorial QA */
.locations-section {
  padding: clamp(96px, 8vw, 142px) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 250, 239, 0.42) 0%, rgba(255, 255, 255, 0) 34%),
    var(--white);
}

.locations-section .container {
  width: min(100% - 72px, 1560px);
}

.locations-showcase {
  display: grid;
  grid-template-columns: minmax(430px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(44px, 4.6vw, 78px);
  align-items: stretch;
}

.locations-copy,
.locations-map-wrap {
  min-width: 0;
}

.locations-copy {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.locations-copy .section-heading {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.locations-copy .section-heading h2 {
  margin: 0 0 26px;
  color: var(--green-950);
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 2.45vw, 3.15rem);
  font-weight: 700;
  line-height: 1.04;
}

.locations-copy .section-heading p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.74;
}

.location-reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  margin: clamp(34px, 3.5vw, 52px) 0 0;
  border-top: 1px solid rgba(220, 230, 209, 0.92);
  border-bottom: 1px solid rgba(220, 230, 209, 0.92);
}

.location-reasons > div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 26px;
  border: 0;
  border-right: 1px solid rgba(220, 230, 209, 0.92);
}

.location-reasons > div:last-child {
  border-right: 0;
}

.reason-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--green-600);
  background: var(--green-100);
}

.reason-icon svg {
  width: 24px;
  height: 24px;
}

.location-reasons p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.44;
}

.location-reasons strong {
  display: block;
  min-height: calc(2 * 1.16em);
  margin-bottom: 8px;
  color: var(--green-950);
  font-size: 0.94rem;
  line-height: 1.16;
}

.locations-map-wrap {
  display: grid;
  gap: 22px;
}

.locations-map-wrap .region-map {
  min-height: clamp(440px, 34vw, 620px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 46% 46%, rgba(139, 181, 26, 0.16), transparent 32%),
    radial-gradient(circle at 70% 54%, rgba(139, 181, 26, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(247, 250, 239, 0.82), rgba(255, 255, 255, 0.5));
  box-shadow: none;
}

.locations-map-wrap .map-area {
  fill: rgba(237, 244, 223, 0.72);
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 10;
}

.locations-map-wrap .map-boundary {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 5;
}

.locations-map-wrap .map-route {
  stroke: rgba(121, 168, 15, 0.32);
  stroke-width: 5;
}

.locations-map-wrap .map-route.main {
  stroke-width: 8;
}

.locations-map-wrap .map-label {
  left: 6%;
  top: 7%;
}

.locations-map-wrap .pin-lauterecken {
  left: 64%;
  top: 20%;
}

.locations-map-wrap .pin-ulmet {
  left: 34%;
  top: 44%;
}

.locations-map-wrap .pin-landstuhl {
  left: 60%;
  top: 76%;
}

.locations-map-wrap .map-pin {
  z-index: 2;
  gap: 12px;
  text-decoration: none;
}

.locations-map-wrap .pin-dot {
  width: 26px;
  height: 26px;
  border: 5px solid var(--white);
  background: var(--green-600);
  box-shadow: 0 16px 30px rgba(23, 59, 53, 0.18);
}

.locations-map-wrap .pin-card {
  padding: 8px 12px;
  border: 1px solid rgba(220, 230, 209, 0.82);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.locations-map-wrap .pin-card strong {
  color: var(--green-950);
  font-size: 0.94rem;
  line-height: 1.1;
}

.locations-map-wrap .pin-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.location-map-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(220, 230, 209, 0.92);
  border-bottom: 1px solid rgba(220, 230, 209, 0.92);
}

.location-map-nav a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 16px 24px;
  border-right: 1px solid rgba(220, 230, 209, 0.92);
  color: var(--green-950);
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.location-map-nav a:last-child {
  border-right: 0;
}

.location-map-nav a::after {
  content: "→";
  color: var(--green-700);
  font-weight: 850;
}

.location-map-nav a:hover {
  color: var(--green-700);
  transform: translateY(-2px);
}

.location-map-nav span {
  color: var(--green-600);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.location-map-nav strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.2;
}

.location-chapters {
  display: grid;
  gap: 0;
  margin-top: clamp(46px, 5vw, 78px);
  border-top: 1px solid rgba(220, 230, 209, 0.92);
}

.location-chapter {
  display: grid;
  grid-template-columns: minmax(360px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(42px, 5vw, 84px);
  align-items: start;
  padding: clamp(34px, 4.2vw, 58px) 0;
  border-bottom: 1px solid rgba(220, 230, 209, 0.92);
  scroll-margin-top: 112px;
}

.location-chapter.is-reverse {
  grid-template-columns: minmax(0, 0.55fr) minmax(360px, 0.45fr);
}

.location-chapter.is-reverse .location-chapter-copy {
  order: 1;
}

.location-chapter.is-reverse img {
  order: 2;
}

.location-chapter img {
  width: 100%;
  height: clamp(310px, 23vw, 420px);
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.location-chapter:nth-child(1) img {
  object-position: 48% 48%;
}

.location-chapter:nth-child(2) img {
  object-position: 54% 48%;
}

.location-chapter:nth-child(3) img {
  object-position: 50% 48%;
}

.location-chapter-copy {
  display: grid;
  max-width: none;
  min-width: 0;
}

.location-chapter h2 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--green-950);
  font-size: clamp(2rem, 2.4vw, 3.1rem);
  line-height: 1.08;
}

.location-chapter p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.chapter-context {
  max-width: 760px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(220, 230, 209, 0.9);
}

.chapter-context h3 {
  margin: 0 0 13px;
  color: var(--green-950);
  font-size: 0.98rem;
}

.chapter-context ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chapter-context li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.52;
}

.chapter-context li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
}

.chapter-facts {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: 0;
  max-width: 780px;
  margin: 28px 0 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(220, 230, 209, 0.92);
}

.chapter-facts span {
  display: block;
  min-height: 76px;
  padding: 0 clamp(22px, 2vw, 34px);
  border-right: 1px solid rgba(220, 230, 209, 0.92);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.chapter-facts span:first-child {
  padding-left: 0;
}

.chapter-facts span:last-child {
  border-right: 0;
  padding-right: 0;
}

.chapter-facts a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--green-950);
  font-weight: 850;
}

.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(121, 168, 15, 0.5);
  border-radius: var(--radius-button);
  color: var(--green-950);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.mini-actions a:first-child {
  color: var(--white);
  border-color: var(--green-600);
  background: var(--green-600);
  box-shadow: 0 14px 34px rgba(121, 168, 15, 0.18);
}

@media (max-width: 1180px) {
  .locations-showcase,
  .location-chapter,
  .location-chapter.is-reverse {
    grid-template-columns: 1fr;
  }

  .locations-copy .section-heading {
    max-width: 760px;
  }

  .locations-map-wrap .region-map {
    min-height: 500px;
  }

  .location-chapter.is-reverse .location-chapter-copy,
  .location-chapter.is-reverse img {
    order: initial;
  }
}

@media (max-width: 980px) {
  .locations-section .container {
    width: var(--container);
  }

  .locations-showcase {
    gap: 34px;
  }

  .locations-copy .section-heading h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .location-reasons {
    grid-template-columns: 1fr;
  }

  .location-reasons > div {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.92);
  }

  .location-reasons > div:last-child {
    border-bottom: 0;
  }

  .locations-map-wrap .region-map {
    min-height: 360px;
    margin-inline: 0;
  }

  .locations-map-wrap .pin-dot {
    width: 22px;
    height: 22px;
    border-width: 4px;
  }

  .locations-map-wrap .pin-card {
    padding: 6px 8px;
    font-size: 0.8rem;
  }

  .locations-map-wrap .pin-card small {
    display: none;
  }

  .locations-map-wrap .pin-lauterecken {
    left: 56%;
    top: 22%;
  }

  .locations-map-wrap .pin-ulmet {
    left: 24%;
    top: 45%;
  }

  .locations-map-wrap .pin-landstuhl {
    left: 52%;
    top: 73%;
  }

  .location-map-nav {
    grid-template-columns: 1fr;
  }

  .location-map-nav a {
    min-height: 62px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.92);
  }

  .location-map-nav a:last-child {
    border-bottom: 0;
  }

  .location-chapters {
    margin-top: 38px;
  }

  .location-chapter {
    gap: 26px;
    padding: 36px 0;
  }

  .location-chapter img {
    height: auto;
    aspect-ratio: 1.45 / 1;
    order: 0;
  }

  .location-chapter-copy,
  .location-chapter.is-reverse .location-chapter-copy {
    order: 1;
  }

  .location-chapter h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .chapter-facts {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
    padding-top: 20px;
  }

  .chapter-facts span {
    min-height: 0;
    padding: 0 0 14px;
    margin-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.92);
  }

  .chapter-facts span:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .mini-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mini-actions a {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .final-cta {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .final-cta-copy {
    max-width: 760px;
  }

  .final-cta-image {
    margin-left: 0;
    min-height: clamp(320px, 46vw, 460px);
  }

  .final-cta-image::before {
    inset: 0 0 auto;
    width: auto;
    height: 42%;
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.78) 28%, rgba(255, 255, 255, 0) 100%);
  }
}

@media (max-width: 760px) {
  .final-cta-section {
    padding: 42px 0 34px;
  }

  .final-cta {
    width: var(--container);
  }

  .final-cta-copy {
    padding: 0 0 28px;
  }

  .final-cta-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .final-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .final-trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .final-cta-image {
    min-height: 280px;
  }

  .final-cta-image img {
    border-radius: var(--radius-sm);
  }
}

/* Go-live visual consistency QA */
:root {
  --gutter: clamp(20px, 3.75vw, 72px);
  --container: min(100% - var(--gutter) * 2, 1280px);
  --wide: min(100% - var(--gutter) * 2, 1560px);
  --contact-footer: var(--wide);
  --section-space: clamp(72px, 5.8vw, 112px);
  --section-space-tight: clamp(48px, 4vw, 76px);
  --radius-button: 999px;
  --media-radius: var(--radius-sm);
}

.site-header .container.header-inner,
.hero-grid,
.usp-strip,
.treatment-section .treatment-stage,
.services-section .container,
.locations-section .container,
.final-cta,
.site-footer .container {
  width: var(--wide);
}

.reviews-section .container,
.doctors-section .container {
  width: min(100% - var(--gutter) * 2, 1360px);
}

.site-header .container.header-inner {
  grid-template-columns: minmax(178px, 218px) minmax(0, 1fr) auto;
  gap: clamp(22px, 3.2vw, 54px);
}

.header-inner {
  min-height: 70px;
}

.site-nav {
  gap: clamp(18px, 1.7vw, 28px);
}

.brand img {
  width: clamp(176px, 9.8vw, 200px);
}

.section,
.trust-section,
.services-section,
.doctors-section,
.reviews-section {
  padding-block: var(--section-space);
}

.locations-section {
  padding-block: clamp(82px, 6.2vw, 118px);
}

.final-cta-section {
  padding-block: clamp(58px, 4.8vw, 82px);
}

.usp-section {
  padding-bottom: var(--section-space-tight);
}

.treatment-section {
  padding-block: clamp(70px, 5.8vw, 108px);
}

.eyebrow,
.location-kicker {
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  line-height: 1.22;
}

.treatment-copy h2,
.services-intro h2,
.doctors-section .section-heading h2,
.locations-copy .section-heading h2,
.reviews-section .section-heading h2,
.final-cta-copy h2 {
  font-size: clamp(2.35rem, 3vw, 3.6rem);
  line-height: 1.06;
}

.location-chapter h2 {
  font-size: clamp(1.9rem, 2.2vw, 2.85rem);
  line-height: 1.08;
}

.section-heading {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.button,
.mini-actions a,
.header-cta,
.cta-actions .button,
.final-cta-actions .button {
  min-height: 48px;
  border-radius: var(--radius-button);
  font-size: 0.9rem;
  line-height: 1;
}

.mini-actions a {
  min-width: 148px;
}

.usp-strip article {
  min-height: 214px;
  padding-block: clamp(22px, 2vw, 32px);
}

.usp-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 14px;
}

.usp-icon svg {
  width: 60px;
  height: 60px;
}

.treatment-hero {
  min-height: clamp(280px, 21vw, 380px);
}

.treatment-copy {
  max-width: 920px;
}

.treatment-copy h2 {
  max-width: 880px;
}

.treatment-steps {
  align-items: stretch;
}

.treatment-step {
  min-height: clamp(250px, 17vw, 320px);
  padding: clamp(26px, 2.2vw, 36px);
}

.step-number {
  width: 52px;
  height: 52px;
  margin-bottom: clamp(18px, 1.7vw, 28px);
}

.step-icon {
  width: clamp(56px, 3.7vw, 72px);
  height: clamp(56px, 3.7vw, 72px);
  margin-bottom: clamp(18px, 1.5vw, 26px);
}

.services-editorial {
  grid-template-columns: minmax(330px, 0.9fr) minmax(280px, 0.78fr) minmax(0, 1.62fr);
  gap: clamp(34px, 3.8vw, 64px);
  align-items: start;
}

.services-intro {
  max-width: 420px;
  padding-top: 4px;
}

.services-intro h2 {
  max-width: 420px;
}

.service-panels,
.service-panel {
  min-height: clamp(520px, 34vw, 610px);
}

.service-panel {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 2.8vw, 48px);
  padding: clamp(28px, 2.6vw, 44px);
}

.service-panel h3 {
  font-size: clamp(1.85rem, 2.15vw, 2.75rem);
}

.service-panel img {
  height: clamp(290px, 23vw, 380px);
}

.doctors-section .section-heading {
  align-items: start;
  margin-bottom: clamp(36px, 4.2vw, 58px);
}

.doctor-card img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--media-radius) var(--media-radius) 0 0;
}

.locations-showcase {
  gap: clamp(44px, 4.5vw, 78px);
}

.locations-copy .section-heading {
  max-width: 620px;
}

.locations-map-wrap .region-map {
  min-height: clamp(420px, 31vw, 560px);
}

.location-chapters {
  margin-top: clamp(38px, 4.4vw, 64px);
}

.location-chapter {
  gap: clamp(34px, 4.2vw, 72px);
  padding-block: clamp(32px, 3.5vw, 52px);
}

.location-chapter img {
  height: clamp(290px, 21vw, 390px);
  border-radius: var(--media-radius);
}

.reviews-layout {
  align-items: start;
  gap: clamp(38px, 4.5vw, 76px);
}

.review-grid {
  gap: clamp(18px, 2vw, 28px);
}

.final-cta {
  min-height: 0;
}

.final-cta-copy {
  padding-block: clamp(36px, 4vw, 70px);
}

.final-cta-image {
  min-height: clamp(420px, 33vw, 610px);
}

.footer-grid {
  padding-top: clamp(42px, 4vw, 60px);
  gap: clamp(24px, 3vw, 42px);
}

@media (max-width: 1280px) {
  .services-editorial {
    grid-template-columns: minmax(300px, 0.95fr) minmax(270px, 0.85fr);
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --gutter: clamp(18px, 5vw, 34px);
    --section-space: clamp(58px, 7vw, 82px);
    --section-space-tight: clamp(42px, 6vw, 64px);
  }

  .site-header .container.header-inner {
    width: min(100% - var(--gutter) * 2, 100%);
  }

  .services-editorial,
  .locations-showcase,
  .doctors-section .section-heading,
  .reviews-layout {
    gap: clamp(28px, 5vw, 44px);
  }

  .service-panels,
  .service-panel {
    min-height: 0;
  }

  .service-panel,
  .service-panel.is-active,
  .service-panel[aria-hidden="true"] {
    position: relative;
    inset: auto;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .service-panel > div {
    width: 100%;
    min-width: 0;
  }

  .service-panel img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 16px;
    --section-space: 64px;
    --section-space-tight: 46px;
  }

  .hero-grid {
    padding-top: 54px;
  }

  .treatment-copy h2,
  .services-intro h2,
  .doctors-section .section-heading h2,
  .locations-copy .section-heading h2,
  .reviews-section .section-heading h2,
  .final-cta-copy h2 {
    font-size: clamp(2rem, 8.2vw, 2.55rem);
  }

  .location-chapter h2 {
    font-size: clamp(1.75rem, 7.4vw, 2.35rem);
  }

  .usp-strip article {
    min-height: 0;
  }

  .treatment-section,
  .locations-section,
  .services-section,
  .doctors-section,
  .reviews-section {
    padding-block: var(--section-space);
  }

  .locations-map-wrap .region-map {
    min-height: 340px;
  }

  .final-cta-section {
    padding-block: 42px 34px;
  }

  .final-cta-image {
    min-height: 260px;
  }

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

@media (max-width: 980px) {
  .services-section .container {
    width: var(--container);
    max-width: var(--container);
  }

  .services-section .container,
  .services-editorial,
  .service-panels,
  .service-panel,
  .service-panel.is-active,
  .service-panel[aria-hidden="true"],
  .service-panel > div,
  .service-mobile-toggle,
  .service-benefits,
  .service-panel h3,
  .service-panel p:not(.location-kicker) {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .services-section .container {
    width: var(--container);
    max-width: var(--container);
  }

  .services-editorial {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-panels {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .service-panel,
  .service-panel.is-active,
  .service-panel[aria-hidden="true"] {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .service-panel > div,
  .service-panel img {
    display: none;
  }

  .service-panel.is-mobile-open {
    padding-bottom: 30px;
  }

  .service-panel.is-mobile-open > div,
  .service-panel.is-mobile-open img {
    display: block;
  }

  .service-panel img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 24px;
    object-fit: cover;
  }
}

/* Final visual QA normalization: align type categories and component metrics without changing content or CI. */
:root {
  --type-h2-size: clamp(2.35rem, 3vw, 3.6rem);
  --type-h2-line: 1.06;
  --type-h2-weight: 850;
  --type-h3-size: clamp(1.05rem, 1.05vw, 1.28rem);
  --type-h3-line: 1.22;
  --type-h3-weight: 800;
  --type-body-size: clamp(0.98rem, 0.15vw + 0.95rem, 1.08rem);
  --type-body-line: 1.68;
}

main h2,
.site-footer h2,
.treatment-copy h2,
.services-intro h2,
.doctors-section .section-heading h2,
.locations-copy .section-heading h2,
.reviews-section .section-heading h2,
.final-cta-copy h2,
.location-chapter h2,
.cta-panel h2 {
  font-family: var(--font-sans);
  font-size: var(--type-h2-size);
  font-weight: var(--type-h2-weight);
  line-height: var(--type-h2-line);
  letter-spacing: 0;
}

main h3,
.site-footer h3,
.usp-strip h3,
.treatment-step h3,
.service-panel h3,
.doctor-card h3,
.chapter-context h3,
.footer-grid h3 {
  font-family: var(--font-sans);
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  line-height: var(--type-h3-line);
  letter-spacing: 0;
}

main p:not(.eyebrow):not(.location-kicker):not(.hero-trustline),
main li,
.site-footer p,
.site-footer a {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.button,
.cta-actions .button,
.final-cta-actions .button,
.mini-actions a {
  min-height: 48px;
  white-space: nowrap;
}

/* Final header proportion pass */
.site-header .container.header-inner {
  width: min(100% - var(--gutter) * 2, 1840px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr) minmax(230px, 300px);
  min-height: clamp(88px, 5.4vw, 104px);
  gap: clamp(34px, 4vw, 76px);
}

.brand {
  justify-self: start;
}

.brand img {
  width: clamp(220px, 11.5vw, 254px);
  max-height: 68px;
}

.site-nav {
  justify-self: center;
  gap: clamp(30px, 2.2vw, 44px);
  font-size: clamp(0.95rem, 0.22vw + 0.88rem, 1.04rem);
  font-weight: 800;
}

.header-cta {
  justify-self: end;
  min-height: clamp(54px, 3.2vw, 62px);
  padding-inline: clamp(28px, 2.4vw, 42px);
  font-size: clamp(0.92rem, 0.18vw + 0.86rem, 1rem);
}

@media (max-width: 1180px) {
  .site-header .container.header-inner {
    width: min(100% - var(--gutter) * 2, 100%);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
    gap: 24px;
  }

  .brand img {
    width: clamp(188px, 18vw, 220px);
  }

  .site-nav {
    gap: clamp(18px, 1.8vw, 24px);
    font-size: 0.9rem;
  }

  .header-cta {
    min-height: 48px;
    padding-inline: 22px;
    font-size: 0.86rem;
  }
}

@media (max-width: 680px) {
  :root {
    --type-h2-size: clamp(2rem, 8.2vw, 2.35rem);
    --type-h3-size: 1.05rem;
    --type-body-size: 0.98rem;
  }

  .cta-actions .button,
  .final-cta-actions .button {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .header-inner {
    display: flex;
    min-height: 76px;
  }

  .brand img {
    width: clamp(174px, 42vw, 205px);
  }
}

/* Karriere, Online-Bewerbung und Verwaltung */
.careers-section {
  padding-block: var(--space-section-tight);
  background: linear-gradient(180deg, var(--white) 0%, var(--green-50) 100%);
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.careers-copy {
  max-width: 620px;
}

.careers-copy h2,
.career-hero h1,
.jobs-section .section-heading h2,
.application-form h2,
.application-detail h2 {
  margin: 0;
  color: var(--green-950);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: 0;
}

.careers-copy h2,
.jobs-section .section-heading h2,
.application-form h2,
.application-detail h2 {
  font-size: var(--type-h2-size);
}

.careers-copy p:not(.eyebrow),
.career-hero .lead,
.jobs-section .section-heading p,
.application-form p,
.application-detail p,
.job-listing p {
  color: var(--muted);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.careers-copy .button {
  margin-top: 28px;
}

.careers-preview {
  display: grid;
  gap: 16px;
}

.career-teaser-card,
.job-listing,
.application-detail,
.application-form,
.admin-login-panel,
.admin-content,
.admin-dialog,
.stats-grid article {
  border: 1px solid rgba(220, 230, 209, 0.95);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.career-teaser-card {
  display: grid;
  gap: 8px;
  padding: 24px 26px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.career-teaser-card:hover,
.job-listing:hover {
  transform: translateY(-3px);
  border-color: rgba(121, 168, 15, 0.48);
  box-shadow: var(--shadow-md);
}

.career-teaser-card span,
.job-listing span,
.optional {
  color: var(--muted);
  font-size: 0.88rem;
}

.career-teaser-card strong {
  color: var(--green-950);
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.28rem);
  line-height: 1.25;
}

.careers-empty,
.careers-loading {
  margin: 0;
  color: var(--muted);
}

.career-page {
  background: var(--soft);
}

.career-hero {
  padding-block: clamp(82px, 8vw, 128px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(247, 250, 239, 0.74) 100%),
    var(--white);
}

.career-hero-grid {
  display: grid;
  grid-template-columns: minmax(560px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: center;
}

.career-hero h1 {
  max-width: 860px;
  font-size: clamp(3.1rem, 4.25vw, 4.9rem);
  line-height: 1.02;
}

.career-hero .lead {
  max-width: 650px;
  margin: 26px 0 0;
}

.career-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 58%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.jobs-section,
.application-section {
  padding-block: var(--space-section-tight);
}

.section-heading.align-left {
  align-items: flex-start;
  text-align: left;
  max-width: 760px;
  margin-inline: 0;
}

.jobs-list {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.job-listing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 3vw, 40px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.job-listing h2 {
  margin: 4px 0 12px;
  color: var(--green-950);
  font-size: clamp(1.45rem, 1.3vw, 2rem);
  line-height: 1.18;
}

.job-listing p {
  max-width: 760px;
  margin: 0 0 12px;
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.application-dialog {
  width: min(980px, calc(100% - 36px));
  max-height: min(88vh, 980px);
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--ink);
  overflow: visible;
}

.application-dialog::backdrop {
  background: rgba(15, 37, 32, 0.46);
  backdrop-filter: blur(6px);
}

.application-dialog-inner {
  max-height: min(88vh, 980px);
  overflow: auto;
  padding: clamp(24px, 3.4vw, 44px);
  border: 1px solid rgba(220, 230, 209, 0.95);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 80px rgba(15, 37, 32, 0.22);
}

.application-dialog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 26px;
}

.application-dialog-head h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.05rem, 2.35vw, 3rem);
  line-height: 1.05;
}

.application-dialog-head p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.application-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.application-detail,
.application-form {
  min-width: 0;
  padding: clamp(28px, 3.4vw, 48px);
}

.job-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.job-detail-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-950);
}

.job-detail-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.application-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.application-dialog .application-detail,
.application-dialog .application-form {
  box-shadow: none;
}

.application-dialog .application-detail {
  padding: clamp(20px, 2.3vw, 28px);
  background: var(--green-50);
}

.application-dialog .application-detail .job-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
  padding-top: 20px;
}

.application-dialog .application-form {
  padding: clamp(20px, 2.3vw, 28px);
}

.form-pair,
.dentist-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dentist-fields[hidden] {
  display: none;
}

.application-detail h2 {
  overflow-wrap: anywhere;
}

.application-form > * {
  min-width: 0;
  max-width: 100%;
}

.application-form label,
.admin-login-panel label,
.admin-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.application-form input,
.application-form select,
.application-form textarea,
.admin-login-panel input,
.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.application-form select {
  overflow: hidden;
  text-overflow: ellipsis;
}

.application-form textarea,
.admin-form-grid textarea {
  resize: vertical;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus,
.admin-login-panel input:focus,
.admin-form-grid input:focus,
.admin-form-grid select:focus,
.admin-form-grid textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(121, 168, 15, 0.12);
}

.checkbox-label {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px !important;
  color: var(--muted) !important;
  font-weight: 650 !important;
  line-height: 1.5;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
}

.checkbox-label input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.checkbox-label span {
  min-width: 0;
}

.checkbox-label a {
  color: var(--green-950);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: normal;
  word-break: keep-all;
}

.application-status {
  min-height: 1.5em;
  margin: 0;
  font-weight: 750;
}

.application-status[data-state="success"] {
  color: var(--green-700);
}

.application-status[data-state="error"],
.admin-login-error,
.admin-save-status[data-state="error"] {
  color: #9b2f24;
}

.admin-login-page,
.admin-page {
  min-height: 100vh;
  background: var(--soft);
}

.admin-login-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px;
}

.admin-login-brand img,
.admin-header img {
  width: 230px;
}

.admin-login-panel {
  width: min(100%, 460px);
  padding: 42px;
}

.admin-login-panel form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.admin-back-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--muted);
  font-weight: 750;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.admin-header > div {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--green-950);
  font-weight: 800;
}

.admin-header form {
  margin: 0;
}

.admin-logout,
.admin-nav button,
.admin-table button,
.dialog-close {
  border: 0;
  color: var(--green-950);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  width: min(100% - 48px, 1500px);
  margin: 42px auto;
}

.admin-nav,
.admin-content {
  padding: 28px;
}

.admin-nav {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.admin-nav button {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  text-align: left;
}

.admin-nav button.is-active {
  color: var(--white);
  background: var(--green-600);
}

.admin-nav p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-content {
  display: none;
}

.admin-content.is-active {
  display: block;
}

.admin-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.admin-heading h1 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.admin-heading p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
}

.admin-table th,
.admin-table td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--green-950);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-table td span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-table td:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-pill {
  display: inline-flex !important;
  margin: 0 !important;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green-950) !important;
  background: var(--green-50);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stats-grid article {
  padding: 22px;
}

.stats-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.stats-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--green-950);
  font-size: 2rem;
  line-height: 1;
}

.analytics-range {
  display: grid;
  gap: 8px;
  min-width: 190px;
  color: var(--green-950);
  font-weight: 800;
}

.analytics-range select {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.analytics-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.analytics-panel h2 {
  margin: 4px 0 18px;
  color: var(--green-950);
  font-size: 1.35rem;
  line-height: 1.2;
}

.analytics-ranking {
  display: grid;
  gap: 14px;
}

.analytics-rank-row {
  display: grid;
  gap: 8px;
}

.analytics-rank-row > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 0.95rem;
}

.analytics-rank-row span {
  color: var(--muted);
  font-weight: 800;
}

.analytics-rank-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--green-50);
}

.analytics-rank-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green-600);
}

.analytics-empty,
.analytics-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.analytics-note {
  max-width: 760px;
  margin: 18px 0 0;
}

.footer-consent {
  display: inline;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-consent:hover,
.footer-consent:focus-visible {
  color: var(--green-600);
}

.consent-layer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  align-items: center;
  padding: 22px;
  background: rgba(23, 59, 53, 0.36);
}

.consent-layer-compact {
  align-items: end;
  pointer-events: none;
  background: transparent;
}

.consent-panel {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
  pointer-events: auto;
}

.consent-panel h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1.12;
}

.consent-panel p:not(.eyebrow) {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.consent-panel a {
  color: var(--green-700);
  font-weight: 800;
}

.consent-options {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.consent-options label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.consent-options strong,
.consent-options small {
  display: block;
}

.consent-options small {
  margin-top: 3px;
  color: var(--muted);
}

.consent-options input {
  width: 24px;
  height: 24px;
  accent-color: var(--green-600);
}

.consent-actions,
.consent-compact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.consent-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  width: min(100%, 1100px);
  padding: 22px;
}

.consent-compact h2 {
  font-size: 1.45rem;
}

.consent-compact p:not(.eyebrow) {
  margin-top: 6px;
}

.consent-settings-link {
  min-height: 44px;
  padding: 0 6px;
  border: 0;
  color: var(--green-950);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

/* Final USP rhythm correction */
.usp-section {
  padding-bottom: clamp(34px, 3vw, 52px);
}

.usp-strip {
  align-items: stretch;
}

.usp-strip article {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 68px minmax(64px, auto) auto;
  align-content: start;
  align-items: start;
  justify-items: center;
  min-height: 218px;
  padding: clamp(22px, 1.8vw, 30px) clamp(22px, 1.8vw, 34px);
}

.usp-icon {
  grid-column: 1 / -1;
  align-self: start;
  width: 58px;
  height: 58px;
  margin: 0;
}

.usp-icon svg {
  width: 54px;
  height: 54px;
}

.usp-strip h3 {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  max-width: none;
  min-height: 64px;
  height: auto;
  margin: 0;
  font-size: clamp(1.02rem, 0.9vw, 1.16rem);
  line-height: 1.16;
  text-align: center;
}

.usp-strip p {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  max-width: none;
  margin: 8px auto 0;
  overflow: visible;
  color: var(--muted);
  font-size: clamp(0.86rem, 0.74vw, 0.96rem);
  line-height: 1.42;
  text-align: center;
  -webkit-box-orient: initial;
  -webkit-line-clamp: initial;
}

.treatment-section {
  padding-top: clamp(52px, 4vw, 72px);
}

@media (max-width: 980px) {
  .usp-strip article {
    grid-template-rows: 66px minmax(48px, auto) 1fr;
    min-height: 220px;
  }

  .usp-icon {
    width: 52px;
    height: 52px;
  }

  .usp-icon svg {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 680px) {
  .usp-section {
    padding-bottom: 34px;
  }

  .usp-strip article {
    grid-template-rows: auto;
    justify-items: start;
    min-height: 0;
  }

  .usp-strip h3,
  .usp-strip p {
    max-width: none;
    text-align: left;
  }

  .usp-strip h3 {
    justify-content: flex-start;
    min-height: 0;
    margin-top: 12px;
  }

  .usp-strip p {
    margin-top: 8px;
  }

  .treatment-section {
    padding-top: 48px;
  }
}

.admin-dialog {
  width: min(100% - 32px, 920px);
  padding: 0;
}

.admin-dialog::backdrop {
  background: rgba(23, 59, 53, 0.34);
}

.admin-dialog form {
  padding: 34px;
}

.dialog-heading,
.dialog-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.dialog-heading h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.7rem, 2vw, 2.35rem);
}

.dialog-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-50);
  font-size: 1.6rem;
  line-height: 1;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-block: 26px;
}

.admin-form-grid .wide {
  grid-column: 1 / -1;
}

.dialog-actions {
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .careers-layout,
  .career-hero-grid,
  .application-layout,
  .admin-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .job-listing {
    grid-template-columns: minmax(0, 1fr);
  }

  .job-listing .button {
    justify-self: start;
  }

  .job-detail-grid,
  .stats-grid,
  .analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-dialog .application-detail .job-detail-grid,
  .form-pair,
  .dentist-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .analytics-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .consent-compact {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .career-hero,
  .jobs-section,
  .application-section,
  .careers-section {
    padding-block: 64px;
  }

  .career-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.4rem);
  }

  .career-hero img {
    border-radius: var(--radius-md);
  }

  .job-detail-grid,
  .stats-grid,
  .analytics-grid,
  .admin-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .consent-layer {
    padding: 12px;
  }

  .consent-panel {
    padding: 22px;
    border-radius: var(--radius-sm);
  }

  .consent-actions,
  .consent-compact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .consent-actions .button,
  .consent-compact-actions .button,
  .consent-settings-link {
    width: 100%;
  }

  .application-detail,
  .application-form,
  .application-dialog-inner,
  .job-listing,
  .admin-login-panel,
  .admin-content,
  .admin-nav {
    padding: 24px;
  }

  .admin-header,
  .admin-header > div,
  .admin-heading,
  .dialog-heading,
  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-login-shell {
    padding: 20px;
  }
}

/* Final treatment journey alignment */
.treatment-section {
  padding-top: clamp(46px, 3.8vw, 66px);
  padding-bottom: clamp(24px, 2vw, 34px);
}

.treatment-section + .services-section {
  padding-top: clamp(28px, 2.4vw, 38px);
}

.treatment-hero {
  min-height: clamp(250px, 18vw, 340px);
  align-items: center;
}

.treatment-hero::before {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.995) 0%,
      rgba(255, 255, 255, 0.985) 42%,
      rgba(255, 255, 255, 0.88) 58%,
      rgba(255, 255, 255, 0.32) 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.98) 100%);
}

.treatment-hero img {
  width: min(48%, 860px);
  opacity: 0.74;
  object-position: center 52%;
}

.treatment-copy {
  max-width: min(50%, 740px);
  padding: clamp(30px, 3.2vw, 52px) 0;
}

.treatment-copy .eyebrow {
  margin-bottom: var(--space-4);
}

.treatment-copy h2 {
  max-width: 680px;
  font-size: clamp(2.18rem, 2.75vw, 3.62rem);
  line-height: 1.04;
}

.treatment-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: var(--space-4);
}

.treatment-steps {
  align-items: stretch;
}

.treatment-step {
  grid-template-rows: 58px 90px 52px minmax(124px, auto) 2px;
  align-items: start;
  min-height: 0;
  padding: clamp(26px, 2.1vw, 38px) clamp(22px, 2vw, 34px);
}

.treatment-step .step-number {
  margin: 0;
}

.treatment-step .step-icon {
  width: clamp(58px, 3.6vw, 72px);
  height: clamp(58px, 3.6vw, 72px);
  margin: 0;
}

.treatment-step .step-icon svg {
  width: 100%;
  height: 100%;
}

.treatment-step h3 {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 330px;
  min-height: 44px;
  margin: 0;
  font-size: clamp(1.08rem, 1vw, 1.24rem);
  line-height: 1.18;
}

.treatment-step p {
  display: block;
  width: 100%;
  max-width: 350px;
  min-height: calc(4 * 1.55em);
  margin: 0;
  overflow: visible;
  font-size: clamp(0.92rem, 0.86vw, 1rem);
  line-height: 1.55;
}

.treatment-step::after {
  align-self: start;
  margin-top: clamp(18px, 1.5vw, 24px);
}

@media (max-width: 980px) {
  .treatment-hero {
    min-height: 0;
  }

  .treatment-hero img {
    width: 100%;
    opacity: 0.36;
  }

  .treatment-copy {
    max-width: 100%;
    padding: 42px 0;
  }

  .treatment-copy h2 {
    max-width: 720px;
  }

  .treatment-step {
    grid-template-rows: 52px 76px 48px 102px 2px;
  }
}

@media (max-width: 680px) {
  .treatment-section {
    padding-top: 42px;
    padding-bottom: 24px;
  }

  .treatment-section + .services-section {
    padding-top: 30px;
  }

  .treatment-hero::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.86)),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.98) 100%);
  }

  .treatment-copy {
    padding: 34px 0;
  }

  .treatment-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .treatment-step {
    grid-template-rows: auto;
    min-height: 0;
  }

  .treatment-step .step-number,
  .treatment-step .step-icon,
  .treatment-step h3,
  .treatment-step p {
    height: auto;
    min-height: 0;
  }

  .treatment-step .step-icon,
  .treatment-step h3,
  .treatment-step p {
    margin-top: 16px;
  }
}

/* Final services editorial alignment */
.services-section {
  padding-top: clamp(28px, 2.4vw, 38px);
}

.services-section .container {
  width: min(100% - 72px, 1580px);
}

.services-editorial {
  grid-template-columns: minmax(300px, 0.72fr) minmax(320px, 0.8fr) minmax(0, 1.68fr);
  gap: clamp(26px, 2.4vw, 46px);
  align-items: start;
  overflow: hidden;
}

.services-intro,
.service-tabs,
.service-panels {
  align-self: start;
  padding-top: 0;
}

.services-intro {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto;
  max-width: 380px;
  min-width: 0;
}

.services-intro .eyebrow {
  margin-bottom: var(--space-4);
}

.services-intro h2 {
  max-width: 360px;
  margin-bottom: var(--space-5);
  font-size: clamp(2.35rem, 2.25vw, 3.12rem);
  line-height: 1.06;
}

.services-intro p:not(.eyebrow) {
  max-width: 360px;
  min-height: calc(6 * 1.62em);
  margin: 0;
  font-size: clamp(0.98rem, 0.9vw, 1.05rem);
  line-height: 1.62;
}

.services-all-link {
  display: none;
}

.service-tab {
  min-height: 68px;
  grid-template-columns: 44px minmax(0, 1fr) 22px;
  font-size: clamp(0.94rem, 0.85vw, 1rem);
}

.service-panels {
  min-height: clamp(520px, 34vw, 610px);
  min-width: 0;
  overflow: hidden;
}

.service-panel {
  grid-template-columns: minmax(250px, 0.86fr) minmax(260px, 1.14fr);
  gap: clamp(24px, 2.5vw, 44px);
  align-items: start;
  min-height: clamp(520px, 34vw, 610px);
  padding: clamp(28px, 2.2vw, 42px);
  min-width: 0;
  overflow: hidden;
}

.service-panel > div {
  display: grid;
  grid-template-rows: auto auto auto auto;
  row-gap: clamp(18px, 1.6vw, 28px);
  align-content: start;
  min-height: 0;
  min-width: 0;
}

.service-panel .location-kicker {
  margin: 0;
}

.service-panel h3 {
  align-self: start;
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.55rem, 1.75vw, 2.35rem);
  line-height: 1.12;
}

.service-panel p:not(.location-kicker) {
  align-self: start;
  max-width: 500px;
  margin: 0;
  font-size: clamp(0.98rem, 0.95vw, 1.08rem);
  line-height: 1.62;
}

.service-benefits {
  align-self: start;
  gap: 12px;
  max-width: 500px;
  margin: 0;
}

.service-benefits li {
  font-size: clamp(0.9rem, 0.86vw, 0.98rem);
  line-height: 1.42;
}

.service-panel .text-link {
  display: none;
}

.service-panel img {
  align-self: start;
  justify-self: stretch;
  height: clamp(330px, 26vw, 430px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center;
}

#service-panel-implantologie img {
  object-position: 54% center;
}

#service-panel-aesthetik img {
  object-position: 62% center;
}

#service-panel-zahnersatz img {
  object-position: 56% center;
}

@media (max-width: 1180px) {
  .services-editorial {
    grid-template-columns: minmax(250px, 0.88fr) minmax(320px, 1.02fr);
  }

  .services-intro {
    max-width: 560px;
  }

  .services-intro p:not(.eyebrow) {
    min-height: 0;
  }

  .service-panels {
    grid-column: 1 / -1;
    min-height: clamp(460px, 48vw, 560px);
  }

  .service-panel {
    min-height: clamp(460px, 48vw, 560px);
  }
}

@media (max-width: 760px) {
  .services-section .container {
    width: min(100% - 32px, 1580px);
  }

  .services-section,
  .services-section .container,
  .services-editorial,
  .service-panels,
  .service-panel,
  .service-panel.is-active,
  .service-panel[aria-hidden="true"],
  .service-panel > div,
  .service-panel img {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
  }

  .services-editorial {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    width: 100%;
  }

  .service-panels {
    width: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .service-panel,
  .service-panel.is-active,
  .service-panel[aria-hidden="true"] {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    padding: 0;
    gap: 0;
    overflow: hidden;
  }

  .services-intro h2 {
    max-width: none;
  }

  .service-panel > div {
    display: block;
    width: 100%;
    min-height: 0;
  }

  .service-panel p:not(.location-kicker),
  .service-benefits {
    margin-top: 18px;
  }

  .service-panel img {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: clamp(210px, 58vw, 320px);
    margin-top: 22px;
    object-position: center;
  }
}

/* Desktop rhythm tightening: keep the current structure, remove excessive vertical drift. */
@media (min-width: 981px) {
  :root {
    --section-space: clamp(46px, 3.6vw, 68px);
    --section-space-tight: clamp(32px, 2.5vw, 48px);
    --space-section: clamp(46px, 3.6vw, 68px);
    --space-section-tight: clamp(32px, 2.5vw, 48px);
  }

  .section,
  .trust-section,
  .treatment-section,
  .services-section,
  .doctors-section,
  .reviews-section,
  .careers-section {
    padding-block: var(--section-space);
  }

  .usp-section {
    padding-bottom: var(--section-space-tight);
  }

  .locations-section {
    padding-block: clamp(52px, 4vw, 78px);
  }

  .final-cta-section {
    padding-block: clamp(34px, 2.8vw, 52px);
  }

  .careers-layout {
    gap: clamp(28px, 3.4vw, 54px);
    align-items: center;
  }

  .careers-copy .button {
    margin-top: 22px;
  }

  .career-teaser-card {
    padding: 20px 22px;
  }

  .careers-preview {
    gap: 12px;
  }

  .reviews-section .section-heading {
    margin-bottom: clamp(22px, 2vw, 32px);
  }

  .locations-copy .section-heading h2 {
    font-size: clamp(2.25rem, 2.15vw, 3.05rem);
    line-height: 1.04;
  }

  .review-card {
    min-height: clamp(280px, 18vw, 340px);
    padding: 24px;
  }

  .review-note {
    margin-top: 18px;
  }

  .final-cta-copy {
    padding-block: clamp(28px, 2.5vw, 44px);
  }

  .final-cta-image {
    min-height: clamp(360px, 29vw, 520px);
  }
}

/* Final services QA: align the editorial columns and let active content define the height. */
@media (min-width: 1240px) {
  :root {
    --services-label-row: clamp(34px, 2.4vw, 42px);
    --services-title-row: clamp(126px, 7.4vw, 148px);
  }

  .services-section {
    padding-block: clamp(42px, 3.2vw, 60px);
  }

  .services-section .container {
    width: min(100% - 72px, 1640px);
  }

  .services-editorial {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(300px, 0.82fr) minmax(0, 1.66fr);
    gap: clamp(28px, 2.6vw, 48px);
    align-items: start;
    overflow: visible;
  }

  .services-intro,
  .service-tabs,
  .service-panels {
    grid-column: auto;
    grid-row: auto;
    align-self: start;
    padding-top: 0;
  }

  .services-intro {
    max-width: 430px;
    display: grid;
    grid-template-rows: var(--services-label-row) minmax(var(--services-title-row), auto) auto;
    align-content: start;
  }

  .services-intro .eyebrow {
    margin: 0;
  }

  .services-intro h2 {
    max-width: 420px;
    margin: 0;
    font-size: clamp(2.3rem, 2.35vw, 3.15rem);
    line-height: 1.05;
  }

  .services-intro p:not(.eyebrow) {
    max-width: 420px;
    min-height: 0;
    font-size: clamp(1rem, 0.9vw, 1.06rem);
    line-height: 1.72;
  }

  .service-tabs {
    display: grid;
    gap: 0;
  }

  .service-tab {
    min-height: clamp(60px, 4.6vw, 72px);
    grid-template-columns: 46px minmax(0, 1fr) 20px;
    align-items: center;
    padding: 0;
    font-size: clamp(0.96rem, 0.88vw, 1.04rem);
  }

  .service-panels {
    grid-column: auto;
    grid-row: auto;
    position: relative;
    min-height: 0;
    overflow: visible;
  }

  .service-panel,
  .service-panel[aria-hidden="true"] {
    position: static;
    inset: auto;
    display: none;
    grid-template-columns: minmax(230px, 0.9fr) minmax(260px, 0.95fr);
    gap: clamp(24px, 2.4vw, 42px);
    align-items: start;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: opacity 220ms ease;
  }

  .service-panel.is-active {
    display: grid;
  }

  .service-panel > div {
    display: grid;
    grid-template-rows: var(--services-label-row) minmax(var(--services-title-row), auto) auto auto;
    align-content: start;
    row-gap: 0;
    max-width: 460px;
    min-height: 0;
    padding-top: 0;
  }

  .service-panel .service-icon {
    display: none;
  }

  .service-panel .location-kicker {
    margin: 0;
  }

  .service-panel h3 {
    max-width: 460px;
    margin: 0;
    font-size: clamp(1.62rem, 1.65vw, 2.2rem);
    line-height: 1.12;
  }

  .service-panel p:not(.location-kicker) {
    max-width: 440px;
    margin: 0;
    font-size: clamp(0.98rem, 0.9vw, 1.05rem);
    line-height: 1.65;
  }

  .service-benefits {
    display: grid;
    gap: 12px;
    max-width: 450px;
    margin: clamp(18px, 1.6vw, 26px) 0 0;
  }

  .service-benefits li {
    align-items: start;
    font-size: clamp(0.9rem, 0.82vw, 0.98rem);
    line-height: 1.45;
  }

  .service-panel img {
    align-self: start;
    width: 100%;
    height: clamp(340px, 25vw, 450px);
    margin: 0;
    border-radius: var(--radius-md);
    object-fit: cover;
    object-position: center;
  }

  #service-panel-implantologie img {
    object-position: 50% center;
  }

  #service-panel-schienen img {
    object-position: 54% center;
  }
}

@media (min-width: 981px) and (max-width: 1239px) {
  .services-section {
    padding-block: clamp(40px, 4vw, 58px);
  }

  .services-section .container {
    width: min(100% - 48px, 1120px);
  }

  .services-editorial {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
    gap: clamp(28px, 4vw, 44px);
    align-items: start;
    overflow: visible;
  }

  .services-intro {
    max-width: 420px;
  }

  .services-intro h2 {
    max-width: 410px;
    font-size: clamp(2.15rem, 3.3vw, 2.8rem);
    line-height: 1.06;
  }

  .services-intro p:not(.eyebrow) {
    max-width: 410px;
    min-height: 0;
  }

  .service-panels {
    grid-column: 1 / -1;
    position: relative;
    min-height: 0;
    overflow: visible;
  }

  .service-panel,
  .service-panel[aria-hidden="true"] {
    position: static;
    inset: auto;
    display: none;
    grid-template-columns: minmax(330px, 0.9fr) minmax(320px, 0.8fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .service-panel.is-active {
    display: grid;
  }

  .service-panel > div {
    display: grid;
    row-gap: 16px;
    max-width: 470px;
    padding-top: 0;
  }

  .service-panel .service-icon {
    display: none;
  }

  .service-panel h3 {
    max-width: 480px;
    margin: 0;
    font-size: clamp(1.72rem, 2.7vw, 2.25rem);
    line-height: 1.12;
  }

  .service-panel p:not(.location-kicker),
  .service-benefits {
    max-width: 470px;
    margin: 0;
  }

  .service-panel img {
    height: clamp(320px, 34vw, 390px);
    margin: 0;
    object-position: center;
  }
}

/* Final treatment intro balance */
@media (min-width: 981px) {
  .treatment-hero {
    --treatment-img-top: clamp(26px, 2.4vw, 44px);
    --treatment-img-bottom: clamp(22px, 2vw, 38px);
    min-height: clamp(310px, 22vw, 420px);
    align-items: stretch;
  }

  .treatment-hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.99) 44%,
        rgba(255, 255, 255, 0.9) 60%,
        rgba(255, 255, 255, 0.42) 100%
      ),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0.98) 100%);
  }

  .treatment-hero img {
    top: var(--treatment-img-top);
    bottom: auto;
    height: calc(100% - var(--treatment-img-top) - var(--treatment-img-bottom));
    width: min(44%, 780px);
    opacity: 0.62;
    object-position: center 50%;
  }

  .treatment-copy {
    display: flex;
    max-width: min(56%, 860px);
    padding: clamp(50px, 4.8vw, 76px) 0 clamp(48px, 4.5vw, 72px);
    flex-direction: column;
    justify-content: center;
  }

  .treatment-copy .eyebrow {
    margin-bottom: clamp(18px, 1.6vw, 26px);
  }

  .treatment-copy h2 {
    max-width: 820px;
    font-size: clamp(2.5rem, 3.05vw, 4rem);
    line-height: 1.08;
  }

  .treatment-copy p:not(.eyebrow) {
    max-width: 830px;
    margin-top: clamp(22px, 2vw, 34px);
    font-size: clamp(1.02rem, 1.05vw, 1.22rem);
    line-height: 1.62;
  }
}

/* Final global compact rhythm */
@media (min-width: 981px) {
  :root {
    --section-space: clamp(38px, 3vw, 58px);
    --section-space-tight: clamp(26px, 2.15vw, 42px);
    --space-section: clamp(38px, 3vw, 58px);
    --space-section-tight: clamp(26px, 2.15vw, 42px);
  }

  .section,
  .trust-section,
  .services-section,
  .doctors-section,
  .reviews-section,
  .careers-section {
    padding-block: var(--section-space);
  }

  .usp-section {
    padding-bottom: clamp(24px, 2vw, 36px);
  }

  .treatment-section {
    padding-top: clamp(38px, 3vw, 56px);
    padding-bottom: clamp(18px, 1.5vw, 28px);
  }

  .treatment-section + .services-section {
    padding-top: clamp(20px, 1.8vw, 30px);
  }

  .locations-section {
    padding-block: clamp(42px, 3.2vw, 62px);
  }

  .locations-overview {
    margin-bottom: clamp(30px, 3vw, 46px);
  }

  .location-chapter + .location-chapter {
    margin-top: clamp(30px, 3vw, 48px);
  }

  .reviews-section {
    padding-top: clamp(38px, 3vw, 56px);
    padding-bottom: clamp(30px, 2.4vw, 44px);
  }

  .reviews-section .section-heading {
    margin-bottom: clamp(18px, 1.6vw, 26px);
  }

  .careers-section {
    padding-block: clamp(36px, 2.8vw, 52px);
  }

  .final-cta-section {
    padding-block: clamp(26px, 2.2vw, 40px);
  }

  .final-cta-copy {
    padding-block: clamp(24px, 2.2vw, 38px);
  }

  .site-footer {
    padding-top: clamp(34px, 3vw, 50px);
  }
}

@media (max-width: 980px) {
  :root {
    --section-space: clamp(44px, 8vw, 64px);
    --section-space-tight: clamp(34px, 6vw, 50px);
    --space-section: clamp(44px, 8vw, 64px);
    --space-section-tight: clamp(34px, 6vw, 50px);
  }
}

/* Final mobile media QA: keep large desktop imagery proportional and calm on small screens. */
@media (max-width: 980px) {
  .doctor-grid {
    gap: clamp(22px, 7vw, 34px);
  }

  .doctor-card {
    overflow: visible;
  }

  .doctor-card img,
  .doctor-card:first-child img,
  .doctor-card:not(:first-child) img {
    width: 100%;
    height: clamp(300px, 92vw, 430px);
    aspect-ratio: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
    object-position: center 22%;
  }

  .doctor-card .portrait-timo {
    object-position: center 24%;
  }

  .doctor-card .portrait-caroline {
    object-position: center 18%;
  }

  .doctor-card .card-body {
    min-height: 0;
    padding-top: clamp(14px, 4vw, 20px);
  }

  .location-chapter img,
  .location-chapter.is-reverse img,
  .final-cta-image img,
  .career-hero img {
    width: 100%;
    height: clamp(240px, 66vw, 340px);
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .service-panel img {
    width: 100%;
    height: clamp(210px, 58vw, 300px);
    aspect-ratio: auto;
    object-fit: cover;
  }
}

@media (max-width: 430px) {
  .doctor-card img,
  .doctor-card:first-child img,
  .doctor-card:not(:first-child) img {
    height: clamp(285px, 96vw, 390px);
  }
}

/* Final service image composition: show the existing motifs calmly instead of cropping them into the edge. */
@media (min-width: 981px) {
  .service-panel,
  .service-panel[aria-hidden="true"] {
    grid-template-columns: minmax(280px, 0.92fr) minmax(310px, 0.9fr);
    gap: clamp(34px, 3vw, 60px);
    align-items: start;
  }

  .service-panel img {
    align-self: start;
    justify-self: center;
    width: min(100%, 470px);
    height: auto;
    aspect-ratio: 1586 / 992;
    padding: 0;
    border: 1px solid rgba(219, 229, 210, 0.7);
    background:
      radial-gradient(circle at 82% 20%, rgba(139, 183, 39, 0.08), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 244, 0.64));
    object-fit: cover;
    object-position: center;
  }

  #service-panel-implantologie img,
  #service-panel-aesthetik img,
  #service-panel-zahnersatz img,
  #service-panel-prophylaxe img,
  #service-panel-kfo img,
  #service-panel-kinder img,
  #service-panel-diagnostik img,
  #service-panel-schienen img {
    object-position: center;
  }
}

@media (max-width: 980px) {
  .service-panel img {
    padding: 8px;
    border: 1px solid rgba(219, 229, 210, 0.7);
    background:
      radial-gradient(circle at 82% 20%, rgba(139, 183, 39, 0.08), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 244, 0.64));
    object-fit: contain;
    object-position: center;
  }
}

/* Final USP compact pass: keep the row calm, but stop stretching icon/title/text apart. */
@media (min-width: 981px) {
  .usp-strip {
    width: min(100% - 56px, 1680px);
  }

  .usp-strip article {
    display: flex;
    min-height: 0;
    padding: clamp(18px, 1.25vw, 22px) clamp(14px, 1.05vw, 20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: center;
  }

  .usp-icon {
    align-self: center;
    justify-self: center;
    width: 52px;
    height: 52px;
    color: var(--green-600);
  }

  .usp-icon svg {
    width: 46px;
    height: 46px;
  }

  .usp-strip h3 {
    min-height: 40px;
    align-items: center;
    font-size: clamp(0.95rem, 0.76vw, 1.02rem);
    line-height: 1.12;
  }

  main .usp-section .usp-strip article p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(0.78rem, 0.6vw, 0.84rem);
    line-height: 1.3;
  }
}

/* Final footer navigation pass: keep every footer item as a clean vertical list. */
.footer-grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer .footer-grid a,
.site-footer .footer-consent {
  display: flex;
  width: fit-content;
  min-height: 30px;
  margin: 0 0 8px;
  align-items: center;
  text-align: left;
}

.site-footer .footer-grid h3 {
  margin: 0 0 16px;
}

@media (max-width: 680px) {
  .site-footer {
    background: var(--green-50);
  }

  .site-footer .container {
    width: min(100% - 32px, 520px);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
    padding: 34px 0 24px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: min(210px, 68vw);
    margin-bottom: 14px;
  }

  .site-footer p {
    max-width: 32rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
  }

  .seal-row {
    gap: 12px;
    margin-top: 16px;
  }

  .seal-row img {
    max-width: 54px;
    max-height: 42px;
  }

  .site-footer .footer-grid h3 {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.2;
  }

  .site-footer .footer-grid a,
  .site-footer .footer-consent {
    min-height: 28px;
    margin-bottom: 4px;
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    padding: 16px 0 20px;
    font-size: 0.78rem;
    line-height: 1.35;
  }
}

@media (max-width: 380px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer p {
    font-size: 0.95rem;
  }
}

/* Final mobile services pass: compact accordion, closed by default, media visible only after tap. */
@media (max-width: 980px) {
  .services-section {
    padding-block: clamp(42px, 10vw, 64px);
  }

  .services-section .container {
    width: min(100% - 32px, 720px);
  }

  .services-editorial {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    overflow: visible;
  }

  .services-intro {
    max-width: 100%;
  }

  .services-intro h2 {
    max-width: 620px;
    font-size: clamp(2.15rem, 10vw, 3.1rem);
    line-height: 1.04;
  }

  .services-intro p:not(.eyebrow) {
    max-width: 620px;
  }

  .service-tabs {
    display: none;
  }

  .service-panels {
    grid-column: auto;
    display: grid;
    min-height: 0;
    gap: 0;
    overflow: visible;
    border-top: 1px solid rgba(220, 230, 209, 0.95);
  }

  .service-panel,
  .service-panel.is-active,
  .service-panel[aria-hidden="true"] {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    gap: 0;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .service-mobile-toggle {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 28px;
    min-height: 62px;
    width: 100%;
    padding: 14px 0;
    gap: 10px;
    align-items: center;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 1rem;
    font-weight: 760;
    line-height: 1.18;
    text-align: left;
  }

  .service-mobile-toggle span {
    color: var(--green-600);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .service-mobile-toggle::after {
    content: "+";
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(121, 168, 15, 0.45);
    border-radius: 999px;
    color: var(--green-600);
    font-size: 1.05rem;
    line-height: 1;
    transition:
      background-color 200ms ease,
      border-color 200ms ease,
      color 200ms ease;
  }

  .service-mobile-toggle[aria-expanded="true"] {
    color: var(--green-700);
  }

  .service-mobile-toggle[aria-expanded="true"]::after {
    content: "-";
    border-color: var(--green-600);
    background: var(--green-600);
    color: var(--white);
    transform: none;
  }

  .service-mobile-toggle:focus-visible {
    outline: 3px solid rgba(121, 168, 15, 0.24);
    outline-offset: 4px;
    border-radius: 8px;
  }

  .service-panel > div,
  .service-panel img,
  .service-panel.is-active > div,
  .service-panel.is-active img,
  .service-panel[aria-hidden="true"] > div,
  .service-panel[aria-hidden="true"] img {
    display: none;
  }

  .service-panel.is-mobile-open {
    padding-bottom: 22px;
  }

  .service-panel.is-mobile-open > div {
    display: grid;
    order: 1;
    max-width: none;
    padding: 4px 0 0;
    row-gap: 14px;
  }

  .service-panel.is-mobile-open img {
    display: block;
    order: 2;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 18px 0 0;
    padding: 6px;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(219, 229, 210, 0.7);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(247, 250, 239, 0.72), rgba(255, 255, 255, 0.96));
    object-fit: contain;
    object-position: center;
  }

  .service-panel .service-icon {
    display: none;
  }

  .service-panel .location-kicker {
    margin: 0;
  }

  .service-panel h3 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.55rem, 7.4vw, 2.2rem);
    line-height: 1.08;
  }

  .service-panel p:not(.location-kicker) {
    max-width: 100%;
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
  }

  .service-benefits {
    max-width: 100%;
    margin: 2px 0 0;
    gap: 8px;
  }

  .service-benefits li {
    font-size: 0.95rem;
    line-height: 1.35;
  }
}

@media (max-width: 430px) {
  .services-section .container {
    width: min(100% - 28px, 520px);
  }

  .services-editorial {
    gap: 20px;
  }

  .services-intro h2 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .service-mobile-toggle {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    min-height: 58px;
    padding: 12px 0;
    font-size: 0.98rem;
  }

  .service-panel h3 {
    font-size: clamp(1.42rem, 7.8vw, 1.95rem);
  }

  .service-panel.is-mobile-open img {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-mobile-toggle::after {
    transition: none;
  }
}

/* Final mobile rhythm pass: tighter transitions and less cramped/overstretched sections. */
@media (max-width: 680px) {
  :root {
    --section-space: clamp(34px, 8vw, 48px);
    --section-space-tight: clamp(26px, 6vw, 38px);
    --space-section: clamp(34px, 8vw, 48px);
    --space-section-tight: clamp(26px, 6vw, 38px);
  }

  .section,
  .trust-section,
  .treatment-section,
  .services-section,
  .doctors-section,
  .locations-section,
  .reviews-section,
  .careers-section {
    padding-block: var(--section-space);
  }

  .usp-section {
    padding: 0 0 var(--section-space-tight);
  }

  .usp-strip {
    width: min(100% - 32px, 560px);
    border-top: 1px solid rgba(220, 230, 209, 0.95);
  }

  .usp-strip article,
  main .usp-section .usp-strip article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
    padding: 18px 0 20px;
    gap: 6px 18px;
    align-items: start;
    justify-items: stretch;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
    text-align: left;
  }

  .usp-strip article:last-child {
    border-bottom: 0;
  }

  .usp-icon,
  main .usp-section .usp-icon {
    grid-row: 1 / span 2;
    grid-column: 1;
    align-self: start;
    justify-self: center;
    width: 42px;
    height: 42px;
    margin: 1px 0 0;
    color: var(--green-600);
  }

  .usp-icon svg,
  main .usp-section .usp-icon svg {
    width: 42px;
    height: 42px;
  }

  .usp-strip h3,
  main .usp-section .usp-strip h3 {
    grid-column: 2;
    grid-row: 1;
    display: block;
    width: 100%;
    min-height: 0;
    margin: 0;
    color: var(--green-950);
    font-size: 1rem;
    line-height: 1.18;
    text-align: left;
  }

  .usp-strip p,
  main .usp-section .usp-strip article p:not(.eyebrow) {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
  }

  .treatment-section {
    padding-top: clamp(28px, 7vw, 40px);
    padding-bottom: clamp(26px, 7vw, 38px);
  }

  .treatment-section + .services-section {
    padding-top: clamp(28px, 7vw, 40px);
  }

  .treatment-section .treatment-stage {
    width: min(100% - 32px, 560px);
  }

  .treatment-hero {
    min-height: 0;
    display: grid;
    align-items: start;
    padding: 0;
  }

  .treatment-hero img {
    position: absolute;
    inset: 0 0 auto auto;
    width: 100%;
    height: 168px;
    opacity: 0.18;
    object-fit: cover;
    object-position: center;
  }

  .treatment-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.96) 38%, rgba(255, 255, 255, 1) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86));
  }

  .treatment-copy {
    max-width: 100%;
    padding: 34px 0 26px;
  }

  .treatment-copy .eyebrow,
  .services-intro .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .treatment-copy h2 {
    max-width: 100%;
    font-size: clamp(2rem, 8.4vw, 2.65rem);
    line-height: 1.05;
  }

  .treatment-copy p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .treatment-steps {
    grid-template-columns: 1fr;
  }

  .treatment-step {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding: 18px 0 20px;
    gap: 6px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  }

  .treatment-step .step-number {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: 40px;
    height: 40px;
    margin: 0;
    font-size: 0.82rem;
  }

  .treatment-step .step-icon {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .treatment-step h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    max-width: 100%;
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.18;
  }

  .treatment-step p {
    grid-column: 2;
    grid-row: 2;
    max-width: 100%;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .treatment-step::after {
    grid-column: 2;
    grid-row: 3;
    margin-top: 6px;
  }

  .services-section {
    padding-block: clamp(32px, 8vw, 46px);
  }

  .services-section .container {
    width: min(100% - 32px, 560px);
  }

  .services-editorial {
    gap: 18px;
  }

  .services-intro h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.2vw, 2.45rem);
    line-height: 1.06;
  }

  .services-intro p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 10px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .service-mobile-toggle {
    min-height: 54px;
    padding: 10px 0;
  }

  .service-panel.is-mobile-open {
    padding-bottom: 18px;
  }

  .service-panel.is-mobile-open > div {
    padding-top: 2px;
    row-gap: 10px;
  }

  .service-panel .location-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .service-panel h3 {
    font-size: clamp(1.35rem, 6.8vw, 1.82rem);
    line-height: 1.1;
  }

  .service-panel p:not(.location-kicker) {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .service-benefits {
    gap: 6px;
  }

  .service-panel.is-mobile-open img {
    margin-top: 14px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 390px) {
  .usp-strip,
  .treatment-section .treatment-stage,
  .services-section .container {
    width: min(100% - 28px, 520px);
  }

  .treatment-copy h2,
  .services-intro h2 {
    font-size: clamp(1.82rem, 8.6vw, 2.2rem);
  }

  .service-panel h3 {
    font-size: clamp(1.28rem, 6.8vw, 1.7rem);
  }
}

/* Final location reason balance: prevent cramped copy in the three regional notes. */
@media (min-width: 981px) {
  .location-reasons > div {
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 14px 18px;
    padding: 24px clamp(18px, 1.8vw, 28px);
  }

  .location-reasons .reason-icon {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    justify-self: start;
  }

  .location-reasons p {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 14rem;
    font-size: clamp(0.92rem, 0.86vw, 1rem);
    line-height: 1.45;
  }

  .location-reasons strong {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    min-height: 48px;
    margin: 0;
    align-items: center;
    font-size: clamp(0.98rem, 0.9vw, 1.08rem);
    line-height: 1.14;
  }
}

@media (max-width: 680px) {
  .location-reasons > div {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 8px 14px;
  }

  .location-reasons p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .location-reasons strong {
    grid-column: 2;
    grid-row: 1;
    min-height: 44px;
    margin: 0;
    align-content: center;
  }
}

/* Final treatment step balance: numbers should guide, icons should lead. */
@media (min-width: 681px) {
  .treatment-step {
    grid-template-rows: 40px 70px 46px minmax(104px, auto) 2px;
  }

  .treatment-step .step-number {
    width: clamp(32px, 2vw, 40px);
    height: clamp(32px, 2vw, 40px);
    border-color: rgba(121, 168, 15, 0.5);
    background: rgba(247, 250, 239, 0.7);
    color: var(--green-600);
    font-size: clamp(0.72rem, 0.58vw, 0.82rem);
    font-weight: 820;
  }

  .treatment-step .step-icon {
    width: clamp(54px, 3.2vw, 66px);
    height: clamp(54px, 3.2vw, 66px);
    color: var(--green-600);
  }

  .treatment-step .step-icon svg {
    stroke-width: 1.34;
  }
}

/* Final header proportion balance */
@media (min-width: 981px) {
  .site-header .container.header-inner {
    width: min(100% - var(--gutter) * 2, 1840px);
    grid-template-columns: minmax(248px, 330px) minmax(0, 1fr) minmax(250px, 330px);
    gap: clamp(28px, 3vw, 58px);
  }

  .header-inner {
    min-height: clamp(84px, 4.8vw, 96px);
  }

  .brand img {
    width: clamp(218px, 11.4vw, 258px);
    max-height: 74px;
  }

  .site-nav {
    gap: clamp(24px, 1.85vw, 38px);
    font-size: clamp(0.98rem, 0.2vw + 0.92rem, 1.08rem);
    font-weight: 800;
  }

  .header-cta {
    min-height: clamp(50px, 3vw, 58px);
    padding-inline: clamp(26px, 2.15vw, 38px);
    font-size: clamp(0.96rem, 0.14vw + 0.9rem, 1.04rem);
    font-weight: 800;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: clamp(152px, 38vw, 184px);
    max-height: 56px;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.84rem;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: clamp(136px, 42vw, 160px);
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.78rem;
  }
}

/* Final alignment QA pass: shared axes for treatment, services and chapter transitions. */
@media (min-width: 981px) {
  .treatment-section {
    padding-top: clamp(34px, 2.6vw, 48px);
    padding-bottom: clamp(16px, 1.3vw, 24px);
  }

  .treatment-stage {
    width: min(100% - 72px, 1600px);
  }

  .treatment-hero {
    min-height: clamp(260px, 17vw, 330px);
    border-bottom: 1px solid rgba(220, 230, 209, 0.88);
  }

  .treatment-copy {
    max-width: min(54%, 820px);
    padding: clamp(42px, 3.7vw, 60px) 0 clamp(40px, 3.4vw, 56px);
  }

  .treatment-copy h2 {
    max-width: 820px;
    font-size: clamp(2.45rem, 2.7vw, 3.45rem);
    line-height: 1.06;
  }

  .treatment-copy p:not(.eyebrow) {
    margin-top: clamp(16px, 1.3vw, 22px);
  }

  .treatment-hero img {
    top: clamp(22px, 2vw, 34px);
    width: min(42%, 760px);
    height: calc(100% - clamp(44px, 4vw, 68px));
  }

  .treatment-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .treatment-step {
    display: grid;
    grid-template-rows: 34px 58px 34px minmax(102px, auto) 8px;
    gap: clamp(10px, 0.8vw, 14px);
    padding: clamp(24px, 1.8vw, 32px) clamp(28px, 2vw, 36px) clamp(20px, 1.5vw, 28px);
  }

  .treatment-step .step-number,
  .treatment-step .step-icon,
  .treatment-step h3,
  .treatment-step p {
    margin: 0;
  }

  .treatment-step .step-number,
  .treatment-step .step-icon,
  .treatment-step h3,
  .treatment-step p,
  .treatment-step::after {
    justify-self: start;
  }

  .treatment-step .step-number,
  .treatment-step .step-icon {
    justify-self: center;
  }

  .treatment-step h3 {
    min-height: 0;
    align-self: start;
    align-items: start;
    max-width: 100%;
  }

  .treatment-step p {
    min-height: 0;
    max-width: 100%;
    line-height: 1.55;
  }

  .treatment-step::after {
    align-self: end;
    margin-top: 0;
  }

  .treatment-section + .services-section {
    padding-top: clamp(28px, 2.1vw, 40px);
  }

  .services-section {
    padding-bottom: clamp(34px, 2.8vw, 52px);
  }
}

@media (min-width: 1240px) {
  :root {
    --services-label-row: clamp(28px, 1.9vw, 36px);
  }

  .services-section .container {
    width: min(100% - 72px, 1600px);
  }

  .services-editorial {
    grid-template-columns: minmax(280px, 0.74fr) minmax(320px, 0.9fr) minmax(0, 1.62fr);
    gap: clamp(34px, 3vw, 58px);
    align-items: start;
  }

  .services-intro,
  .service-tabs,
  .service-panels {
    padding-top: 0;
    align-self: start;
  }

  .services-intro {
    grid-template-rows: var(--services-label-row) auto auto;
    max-width: 430px;
  }

  .services-intro .eyebrow,
  .service-panel .location-kicker {
    min-height: var(--services-label-row);
    margin: 0;
  }

  .services-intro h2,
  .service-panel h3 {
    margin: 0;
  }

  .services-intro h2 {
    max-width: 430px;
    font-size: clamp(2.45rem, 2.32vw, 3rem);
    line-height: 1.04;
  }

  .services-intro p:not(.eyebrow) {
    max-width: 430px;
    margin-top: clamp(22px, 1.65vw, 30px);
    line-height: 1.64;
  }

  .service-tabs {
    margin-top: 0;
  }

  .service-tab {
    min-height: clamp(58px, 4.25vw, 68px);
  }

  .service-panel,
  .service-panel[aria-hidden="true"] {
    grid-template-columns: minmax(300px, 0.96fr) minmax(300px, 0.86fr);
    gap: clamp(32px, 2.6vw, 52px);
    align-items: start;
  }

  .service-panel > div {
    grid-template-rows: var(--services-label-row) auto auto auto;
    row-gap: 0;
    max-width: 470px;
  }

  .service-panel h3 {
    max-width: 470px;
    font-size: clamp(1.7rem, 1.62vw, 2.18rem);
    line-height: 1.12;
  }

  .service-panel p:not(.location-kicker) {
    max-width: 470px;
    margin-top: clamp(22px, 1.65vw, 30px);
    line-height: 1.58;
  }

  .service-benefits {
    max-width: 470px;
    margin-top: clamp(18px, 1.4vw, 24px);
  }

  .service-panel img {
    align-self: start;
    justify-self: end;
    width: min(100%, 430px);
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }

  .doctors-section {
    padding-top: clamp(36px, 2.8vw, 52px);
  }

  .doctors-section .section-heading {
    margin-bottom: clamp(30px, 2.5vw, 44px);
    align-items: start;
  }

  .doctors-section .section-heading p:not(.eyebrow) {
    padding-top: calc(var(--eyebrow-space, 0px) + 0.25rem);
  }

  .location-chapters {
    margin-top: clamp(30px, 2.6vw, 46px);
  }

  .location-chapter {
    gap: clamp(36px, 3.6vw, 64px);
    padding: clamp(26px, 2.7vw, 42px) 0;
  }

  .location-chapter img {
    height: clamp(260px, 19vw, 350px);
  }

  .locations-section {
    padding-bottom: clamp(24px, 2vw, 34px);
  }

  .locations-section + .careers-section {
    padding-top: clamp(28px, 2.3vw, 42px);
  }

  .careers-section {
    padding-top: clamp(28px, 2.3vw, 42px);
    padding-bottom: clamp(36px, 2.8vw, 52px);
  }

  .careers-layout {
    gap: clamp(40px, 4vw, 72px);
    align-items: start;
  }
}

/* Final services layout: use a compact section intro above the two-column service view. */
@media (min-width: 981px) {
  .services-section .container {
    width: min(100% - 72px, 1320px);
  }

  .services-editorial {
    grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
    gap: clamp(34px, 3vw, 58px);
  }

  .services-intro {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "eyebrow eyebrow"
      "title copy";
    row-gap: clamp(18px, 1.6vw, 28px);
    column-gap: clamp(34px, 4vw, 72px);
    max-width: none;
    align-items: start;
  }

  .services-intro .eyebrow {
    grid-area: eyebrow;
  }

  .services-intro h2 {
    grid-area: title;
    max-width: 560px;
  }

  .services-intro p:not(.eyebrow) {
    grid-area: copy;
    max-width: 620px;
    margin-top: 0.15rem;
  }

  .service-tabs {
    grid-column: 1;
  }

  .service-panels {
    grid-column: 2;
  }

  .service-panel,
  .service-panel[aria-hidden="true"] {
    grid-template-columns: minmax(300px, 0.96fr) minmax(260px, 0.78fr);
  }

  .service-panel img {
    width: min(100%, 380px);
  }
}

@media (min-width: 981px) and (max-width: 1239px) {
  .services-section .container {
    width: min(100% - 48px, 1120px);
  }

  .services-intro {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "eyebrow"
      "title"
      "copy";
    gap: 18px;
  }

  .services-intro p:not(.eyebrow) {
    max-width: 700px;
    margin-top: 0;
  }
}

/* Go-live layout audit system: one grid, one rhythm, existing CI only. */
:root {
  --layout-max: 1320px;
  --layout-wide-max: 1320px;
  --layout-reading: 680px;
  --layout-gutter: clamp(24px, 3.75vw, 36px);
  --grid-gap: clamp(24px, 2.4vw, 32px);
  --section-small: clamp(48px, 4vw, 64px);
  --section-normal: clamp(72px, 6vw, 96px);
  --section-large: clamp(108px, 8vw, 140px);
  --space-eyebrow-title: clamp(16px, 1.3vw, 22px);
  --space-title-copy: clamp(18px, 1.5vw, 28px);
  --space-copy-content: clamp(30px, 2.8vw, 44px);
  --component-pad: clamp(24px, 2.2vw, 34px);
  --media-radius: var(--radius-md);
  --card-radius: var(--radius-sm);
  --button-height: 50px;
  --icon-box: 54px;
  --icon-svg: 30px;
  --type-display-size: clamp(3.05rem, 4.15vw, 5.1rem);
  --type-display-line: 1;
  --type-h2-size: clamp(2.3rem, 2.85vw, 3.35rem);
  --type-h2-line: 1.06;
  --type-h3-size: clamp(1.16rem, 1vw, 1.34rem);
  --type-h3-line: 1.2;
  --type-body-size: clamp(0.98rem, 0.15vw + 0.95rem, 1.06rem);
  --type-body-line: 1.62;
  --type-small-size: 0.92rem;
  --type-small-line: 1.45;
  --type-eyebrow-size: 0.78rem;
  --type-eyebrow-tracking: 0.18em;
}

.container,
.hero-grid,
.usp-strip,
.treatment-section .treatment-stage,
.services-section .container,
.doctors-section .container,
.locations-section .container,
.reviews-section .container,
.careers-section .container,
.final-cta,
.site-footer .container,
.legal-hero,
.legal-content,
.legal-grid,
.career-hero .container,
.jobs-section .container {
  width: min(calc(100% - var(--layout-gutter) - var(--layout-gutter)), var(--layout-max));
  margin-inline: auto;
}

.hero-grid,
.treatment-hero,
.services-editorial,
.doctors-section .section-heading,
.locations-showcase,
.location-chapter,
.careers-layout,
.final-cta,
.footer-grid {
  column-gap: var(--grid-gap);
}

.section,
.trust-section,
.treatment-section,
.services-section,
.doctors-section,
.locations-section,
.careers-section,
.reviews-section,
.jobs-section,
.application-section {
  padding-block: var(--section-normal);
}

.usp-section {
  padding: 0 0 var(--section-small);
}

.treatment-section {
  padding-top: var(--section-small);
  padding-bottom: var(--section-small);
}

.treatment-section + .services-section,
.locations-section + .careers-section,
.careers-section + .reviews-section,
.reviews-section + .final-cta-section {
  padding-top: var(--section-small);
}

.final-cta-section {
  padding-block: var(--section-small);
}

.site-footer {
  padding-top: var(--section-small);
}

.eyebrow,
.location-kicker {
  margin: 0 0 var(--space-eyebrow-title);
  font-size: var(--type-eyebrow-size);
  font-weight: 850;
  letter-spacing: var(--type-eyebrow-tracking);
  line-height: 1.25;
  text-transform: uppercase;
}

.hero h1 {
  font-size: var(--type-display-size);
  line-height: var(--type-display-line);
}

main h2,
.career-hero h1,
.jobs-section .section-heading h2,
.application-form h2,
.application-detail h2 {
  font-family: var(--font-sans);
  font-size: var(--type-h2-size);
  font-weight: 850;
  line-height: var(--type-h2-line);
  letter-spacing: 0;
}

main h3,
.footer-grid h3 {
  font-size: var(--type-h3-size);
  font-weight: 800;
  line-height: var(--type-h3-line);
}

main p:not(.eyebrow):not(.location-kicker):not(.hero-subline):not(.hero-trustline),
main li,
.site-footer p,
.site-footer a,
.footer-consent {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--grid-gap);
  max-width: none;
  margin: 0 0 var(--space-copy-content);
  text-align: left;
  align-items: start;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: var(--layout-reading);
  margin: 0.2rem 0 0;
}

.section-heading.align-left {
  max-width: none;
}

.button,
.header-cta,
.contact-tab,
.service-mobile-toggle,
.location-map-nav a,
.job-listing .button {
  min-height: var(--button-height);
}

.button {
  padding: 14px 23px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.button svg {
  width: 18px;
  height: 18px;
}

.usp-icon,
.step-icon,
.service-icon,
.reason-icon {
  width: var(--icon-box);
  height: var(--icon-box);
}

.usp-icon svg,
.step-icon svg,
.service-icon svg,
.reason-icon svg {
  width: var(--icon-svg);
  height: var(--icon-svg);
}

@media (min-width: 981px) {
  .site-header .container.header-inner {
    width: min(calc(100% - var(--layout-gutter) - var(--layout-gutter)), var(--layout-max));
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) minmax(220px, 280px);
    gap: var(--grid-gap);
    min-height: 82px;
  }

  .brand img {
    width: clamp(204px, 11vw, 238px);
  }

  .site-nav {
    gap: clamp(18px, 1.65vw, 30px);
    font-size: 0.92rem;
  }

  .header-cta {
    min-height: 48px;
    padding-inline: 22px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: clamp(620px, 78vh, 850px);
  }

  .hero-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding-block: clamp(78px, 7vw, 112px);
  }

  .hero-copy {
    grid-column: 1 / span 7;
    max-width: 760px;
    padding-bottom: clamp(80px, 8vw, 126px);
  }

  .hero .lead,
  .hero-trustline {
    max-width: var(--layout-reading);
  }

  .hero-points {
    width: min(calc(100% - var(--layout-gutter) - var(--layout-gutter)), var(--layout-max));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .usp-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-top: 1px solid rgba(220, 230, 209, 0.9);
    border-bottom: 1px solid rgba(220, 230, 209, 0.9);
  }

  .usp-strip article {
    min-height: 0;
    padding: clamp(20px, 1.5vw, 26px) clamp(14px, 1.2vw, 20px);
    gap: 10px;
  }

  .usp-strip h3 {
    min-height: 38px;
    font-size: clamp(0.94rem, 0.72vw, 1.02rem);
  }

  main .usp-section .usp-strip article p:not(.eyebrow) {
    font-size: clamp(0.78rem, 0.58vw, 0.86rem);
    line-height: 1.36;
  }

  .treatment-hero {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    min-height: 0;
    padding-block: 0;
    border-bottom: 1px solid rgba(220, 230, 209, 0.88);
  }

  .treatment-hero::before {
    inset: 0;
  }

  .treatment-hero img {
    position: relative;
    grid-column: 8 / -1;
    grid-row: 1;
    align-self: stretch;
    justify-self: stretch;
    width: 100%;
    height: auto;
    min-height: clamp(260px, 20vw, 340px);
    margin: 0;
    object-fit: cover;
    border-radius: 0;
  }

  .treatment-copy {
    grid-column: 1 / span 7;
    grid-row: 1;
    max-width: none;
    padding: clamp(38px, 3.2vw, 56px) 0;
  }

  .treatment-copy h2,
  .treatment-copy p:not(.eyebrow) {
    max-width: 760px;
  }

  .treatment-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .treatment-step {
    grid-template-rows: auto auto auto 1fr auto;
    min-height: 0;
    padding: var(--component-pad);
  }

  .services-section .container {
    width: min(calc(100% - var(--layout-gutter) - var(--layout-gutter)), var(--layout-max));
  }

  .services-editorial {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--grid-gap);
  }

  .services-intro {
    grid-column: 1 / -1;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-areas:
      "eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow"
      "title title title title title copy copy copy copy copy copy copy";
    column-gap: var(--grid-gap);
    row-gap: var(--space-eyebrow-title);
  }

  .services-intro h2 {
    max-width: 620px;
  }

  .services-intro p:not(.eyebrow) {
    max-width: var(--layout-reading);
    margin-top: 0.18rem;
  }

  .service-tabs {
    grid-column: 1 / span 4;
  }

  .service-tab {
    min-height: 58px;
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    font-size: 0.96rem;
  }

  .service-panels {
    grid-column: 5 / -1;
  }

  .service-panel,
  .service-panel[aria-hidden="true"] {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: var(--grid-gap);
  }

  .service-panel > div {
    grid-column: 1 / span 5;
    max-width: none;
  }

  .service-panel h3,
  .service-panel p:not(.location-kicker),
  .service-benefits {
    max-width: 560px;
  }

  .service-panel img {
    grid-column: 6 / -1;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 3;
    border-radius: var(--media-radius);
  }

  .doctors-section .section-heading {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .doctors-section .section-heading .eyebrow {
    grid-column: 1 / -1;
  }

  .doctors-section .section-heading h2 {
    grid-column: 1 / span 5;
  }

  .doctors-section .section-heading p:not(.eyebrow) {
    grid-column: 7 / -1;
    padding-top: 0;
  }

  .doctor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--grid-gap);
  }

  .doctor-card img {
    aspect-ratio: 4 / 5;
    height: auto;
    border-radius: var(--media-radius);
  }

  .locations-showcase {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .locations-copy {
    grid-column: 1 / span 5;
  }

  .locations-map-wrap {
    grid-column: 7 / -1;
  }

  .locations-copy .section-heading {
    display: block;
    margin-bottom: var(--space-copy-content);
  }

  .locations-copy .section-heading h2,
  .locations-copy .section-heading p:not(.eyebrow) {
    max-width: var(--layout-reading);
  }

  .location-reasons {
    gap: 0;
  }

  .locations-map-wrap .region-map {
    min-height: clamp(420px, 34vw, 540px);
  }

  .location-chapters {
    margin-top: var(--section-small);
  }

  .location-chapter,
  .location-chapter.is-reverse {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--grid-gap);
    padding: var(--section-small) 0;
  }

  .location-chapter img,
  .location-chapter.is-reverse img {
    grid-column: 1 / span 5;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: var(--media-radius);
  }

  .location-chapter-copy,
  .location-chapter.is-reverse .location-chapter-copy {
    grid-column: 7 / -1;
    max-width: none;
  }

  .location-chapter.is-reverse img {
    grid-column: 8 / -1;
  }

  .location-chapter.is-reverse .location-chapter-copy {
    grid-column: 1 / span 6;
    grid-row: 1;
  }

  .careers-layout {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .careers-copy {
    grid-column: 1 / span 5;
    max-width: none;
  }

  .careers-preview {
    grid-column: 7 / -1;
  }

  .reviews-section .section-heading {
    display: block;
    max-width: 760px;
  }

  .review-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--grid-gap);
  }

  .review-card {
    min-height: 0;
    padding: var(--component-pad);
    border-radius: var(--card-radius);
  }

  .final-cta {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    min-height: 0;
    overflow: hidden;
  }

  .final-cta-copy {
    grid-column: 1 / span 6;
    max-width: none;
    padding: clamp(42px, 4vw, 68px) 0 clamp(42px, 4vw, 68px) clamp(42px, 4vw, 68px);
  }

  .final-cta-copy h2,
  .final-cta-copy p:not(.eyebrow) {
    max-width: 560px;
  }

  .final-cta-image {
    grid-column: 8 / -1;
    margin: 0;
  }

  .final-cta-image img {
    aspect-ratio: 4 / 3;
    min-height: 100%;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 3fr) repeat(5, minmax(0, 1.4fr));
    gap: var(--grid-gap);
    padding: clamp(36px, 3.2vw, 52px) 0;
  }
}

@media (max-width: 1280px) and (min-width: 981px) {
  :root {
    --layout-max: 1120px;
    --layout-gutter: 24px;
    --grid-gap: clamp(22px, 2.4vw, 28px);
  }

  .site-nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  .header-cta {
    padding-inline: 18px;
  }

  .services-intro {
    grid-template-areas:
      "eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow eyebrow"
      "title title title title title title copy copy copy copy copy copy";
  }
}

@media (max-width: 980px) {
  :root {
    --layout-max: 9999px;
    --layout-gutter: 24px;
    --grid-gap: 24px;
    --section-small: clamp(36px, 7vw, 48px);
    --section-normal: clamp(50px, 9vw, 68px);
    --section-large: clamp(72px, 12vw, 94px);
    --type-display-size: clamp(2.4rem, 9vw, 3.3rem);
    --type-h2-size: clamp(2.05rem, 7.6vw, 2.75rem);
    --type-h3-size: clamp(1.08rem, 4vw, 1.3rem);
    --button-height: 48px;
  }

  .container,
  .site-header .container.header-inner,
  .hero-grid,
  .usp-strip,
  .treatment-section .treatment-stage,
  .services-section .container,
  .doctors-section .container,
  .locations-section .container,
  .reviews-section .container,
  .careers-section .container,
  .final-cta,
  .site-footer .container,
  .legal-hero,
  .legal-content,
  .legal-grid,
  .career-hero .container,
  .jobs-section .container {
    width: min(calc(100% - var(--layout-gutter) - var(--layout-gutter)), var(--layout-max));
  }

  .site-header .container.header-inner {
    margin-inline: auto;
  }

  .section-heading,
  .services-intro,
  .services-editorial,
  .locations-showcase,
  .location-chapter,
  .location-chapter.is-reverse,
  .careers-layout,
  .reviews-layout,
  .final-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p:not(.eyebrow),
  .services-intro .eyebrow,
  .services-intro h2,
  .services-intro p:not(.eyebrow),
  .locations-copy,
  .locations-map-wrap,
  .location-chapter img,
  .location-chapter.is-reverse img,
  .location-chapter-copy,
  .location-chapter.is-reverse .location-chapter-copy,
  .careers-copy,
  .careers-preview,
  .final-cta-copy,
  .final-cta-image {
    grid-column: auto;
    grid-row: auto;
    max-width: 100%;
  }

  .section-heading,
  .services-intro {
    gap: 0;
  }

  .section-heading h2,
  .services-intro h2 {
    margin-bottom: var(--space-title-copy);
  }

  .services-intro p:not(.eyebrow) {
    margin-top: 0;
  }

  .doctor-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--grid-gap);
  }

  .site-nav a,
  .site-footer .footer-grid a,
  .site-footer .footer-consent,
  .location-detail a,
  .location-map-nav a,
  .text-link,
  .contact-place a {
    min-height: 44px;
  }

  .locations-map-wrap .region-map {
    min-height: clamp(330px, 58vw, 460px);
  }

  .location-chapter img,
  .location-chapter.is-reverse img,
  .final-cta-image img,
  .career-hero img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: var(--media-radius);
  }

  .final-cta-copy {
    padding: var(--component-pad);
  }

  .final-cta-image {
    margin: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --layout-max: 9999px;
    --layout-gutter: 18px;
    --grid-gap: 20px;
    --section-small: clamp(32px, 8vw, 42px);
    --section-normal: clamp(42px, 10vw, 56px);
    --type-display-size: clamp(2.15rem, 10vw, 2.75rem);
    --type-h2-size: clamp(1.9rem, 8vw, 2.35rem);
    --type-h3-size: clamp(1.04rem, 4.8vw, 1.2rem);
    --type-body-size: 0.98rem;
    --type-eyebrow-size: 0.72rem;
  }

  .hero-grid {
    padding-block: clamp(42px, 10vw, 62px);
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .action-row,
  .final-cta-actions,
  .contact-actions {
    gap: 10px;
  }

  .doctor-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .usp-strip {
    border-bottom: 1px solid rgba(220, 230, 209, 0.95);
  }

  .treatment-copy {
    padding-block: clamp(30px, 8vw, 42px);
  }

  .treatment-step,
  .usp-strip article,
  main .usp-section .usp-strip article {
    padding-block: 18px;
  }

  .service-mobile-toggle {
    min-height: 54px;
  }

  .service-panel h3 {
    font-size: clamp(1.34rem, 6.8vw, 1.78rem);
  }

  .location-chapter,
  .location-chapter.is-reverse {
    padding-block: var(--section-small);
  }

  .review-card,
  .career-teaser-card,
  .job-listing {
    padding: 22px;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 390px) {
  :root {
    --layout-gutter: 16px;
    --grid-gap: 18px;
    --type-display-size: clamp(2rem, 10.6vw, 2.45rem);
    --type-h2-size: clamp(1.78rem, 8.8vw, 2.16rem);
  }

  .button {
    width: 100%;
    white-space: normal;
  }
}

/* Final token enforcement: prevent earlier high-specificity rules from drifting. */
.treatment-copy h2,
.services-intro h2,
.doctors-section .section-heading h2,
.locations-copy .section-heading h2,
.reviews-section .section-heading h2,
.final-cta-copy h2,
.location-chapter h2,
.careers-copy h2,
.jobs-section .section-heading h2,
.application-form h2,
.application-detail h2 {
  font-family: var(--font-sans);
  font-size: var(--type-h2-size);
  font-weight: 850;
  line-height: var(--type-h2-line);
  letter-spacing: 0;
}

.usp-strip h3,
.treatment-step h3,
.service-panel h3,
.doctor-card h3,
.location-card h3,
.location-chapter h3,
.review-card h3,
.career-teaser-card strong,
.job-listing h2,
.footer-grid h3 {
  font-family: var(--font-sans);
  font-size: var(--type-h3-size);
  font-weight: 800;
  line-height: var(--type-h3-line);
  letter-spacing: 0;
}

.map-pin,
.chapter-facts a,
.location-detail a,
.contact-place a,
.site-footer .footer-grid a,
.site-footer .footer-consent {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

main .usp-section .usp-strip h3,
main .treatment-section .treatment-step h3,
main .services-section .service-panel h3,
main .doctors-section .doctor-card h3,
main .locations-section .location-card h3,
.site-footer .footer-grid h3 {
  font-family: var(--font-sans);
  font-size: var(--type-h3-size);
  font-weight: 800;
  line-height: var(--type-h3-line);
  letter-spacing: 0;
}

header .site-nav a {
  min-width: 44px;
}

.doctor-card a,
.doctor-card .text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

/* Section heading rhythm: prevent large headlines from splitting into isolated words. */
@media (min-width: 981px) {
  .locations-copy .section-heading {
    max-width: 940px;
  }

  .locations-copy .section-heading .eyebrow {
    margin-bottom: clamp(20px, 1.45vw, 28px);
  }

  .locations-copy .section-heading h2 {
    max-width: 940px;
    line-height: 1.08;
  }
}

@media (max-width: 980px) {
  .locations-copy .section-heading .eyebrow {
    margin-bottom: clamp(14px, 3.8vw, 18px);
  }
}

/* Hero blend: keep the editorial split, but remove the hard image edge. */
@media (min-width: 981px) {
  .hero {
    overflow: hidden;
    background: #fff;
    min-height: clamp(560px, 70vh, 760px);
  }

  .hero::before {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 36%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.42) 61%, rgba(255, 255, 255, 0.08) 78%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 58%, #fff 100%);
  }

  .hero-image {
    inset: 0 0 0 auto;
    left: auto;
    right: 0;
    width: min(64vw, 1240px);
    max-width: none;
    transform: none;
    object-position: center center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 12%, #000 30%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 12%, #000 30%, #000 100%);
  }

  .hero-grid {
    width: min(calc(100% - var(--layout-gutter) - var(--layout-gutter)), 1320px);
    padding-top: clamp(70px, 6vw, 94px);
    padding-bottom: clamp(36px, 4vw, 62px);
  }

  .hero-copy {
    grid-column: 1 / span 8;
    max-width: 920px;
    padding-bottom: clamp(28px, 3vw, 48px);
  }

  .hero h1 {
    max-width: 920px;
  }

  .hero + .usp-section {
    padding-top: 0;
    padding-bottom: clamp(10px, 1.2vw, 18px);
  }

  .usp-section + .treatment-section {
    padding-top: clamp(20px, 2vw, 30px);
  }

  .usp-section + .treatment-section .treatment-hero {
    align-items: start;
  }

  .usp-section + .treatment-section .treatment-copy {
    padding-top: clamp(24px, 2.3vw, 34px);
  }
}

@media (min-width: 981px) and (max-width: 1239px) {
  body .services-section > .container {
    width: min(calc(100% - 48px), 1120px);
    max-width: 1120px;
  }
}

@media (max-width: 980px) {
  body .services-section > .container {
    width: calc(100% - 48px);
    max-width: none;
  }
}

@media (max-width: 680px) {
  body .services-section > .container {
    width: calc(100% - 36px);
  }
}

@media (max-width: 390px) {
  body .services-section > .container {
    width: calc(100% - 32px);
  }
}

/* Real local Westpfalz map: OSM-derived base, coordinate-projected pins. */
.locations-map-wrap .region-map {
  position: relative;
  min-height: clamp(430px, 34vw, 610px);
  overflow: hidden;
  border: 1px solid rgba(220, 230, 209, 0.78);
  border-radius: var(--media-radius);
  background: #f8faf4;
}

.locations-map-wrap .region-map-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.locations-map-wrap .region-map-pins {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.locations-map-wrap .map-pin {
  position: absolute;
  left: var(--map-x);
  top: var(--map-y);
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--green-950);
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.locations-map-wrap .map-pin:hover,
.locations-map-wrap .map-pin:focus-visible {
  z-index: 4;
  transform: translate(-50%, -50%) scale(1.03);
}

.locations-map-wrap .pin-dot {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 10px 24px rgba(23, 59, 53, 0.2);
}

.locations-map-wrap .pin-card {
  position: relative;
  padding: 6px 9px;
  border: 1px solid rgba(202, 216, 188, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(23, 59, 53, 0.08);
  backdrop-filter: blur(8px);
}

.locations-map-wrap .pin-card strong {
  display: block;
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
}

.locations-map-wrap .pin-card small {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.2;
  opacity: 0;
  white-space: nowrap;
  transition: max-height 180ms ease, margin-top 180ms ease, opacity 180ms ease;
}

.locations-map-wrap .map-pin:hover .pin-card small,
.locations-map-wrap .map-pin:focus-visible .pin-card small {
  max-height: 2.5em;
  margin-top: 4px;
  opacity: 1;
}

.locations-map-wrap .map-pin-landstuhl .pin-card {
  transform: translateX(-100%);
}

.locations-map-wrap .map-pin-landstuhl {
  flex-direction: row-reverse;
}

.locations-map-wrap .map-pin:focus-visible {
  outline: 3px solid rgba(121, 168, 15, 0.35);
  outline-offset: 5px;
  border-radius: 10px;
}

.locations-map-wrap .map-attribution {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 3;
  margin: 0;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(102, 115, 109, 0.86);
  font-size: 0.66rem;
  line-height: 1.2;
}

@media (max-width: 980px) {
  .locations-map-wrap .region-map {
    min-height: 360px;
  }

  .locations-map-wrap .pin-card {
    padding: 5px 7px;
  }

  .locations-map-wrap .pin-card strong {
    font-size: 0.76rem;
  }

  .locations-map-wrap .pin-card small {
    white-space: normal;
    width: max-content;
    max-width: 150px;
  }
}

@media (max-width: 430px) {
  .locations-map-wrap .region-map {
    min-height: 320px;
  }

  .locations-map-wrap .pin-dot {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .locations-map-wrap .pin-card strong {
    font-size: 0.7rem;
  }
}

/* USP limit: five core benefits in one balanced desktop row. */
@media (min-width: 981px) {
  .usp-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Mobile navigation final fix: aligned panel, reliable close behavior. */
@media (max-width: 980px) {
  .site-header {
    z-index: 1000;
    overflow: visible;
  }

  .site-header .container.header-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    width: min(100% - var(--gutter) * 2, var(--container-max));
    gap: 10px;
    min-height: 78px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: clamp(178px, 48vw, 214px);
    max-width: 100%;
    max-height: 58px;
  }

  .nav-toggle {
    display: grid;
    grid-column: 2;
    place-items: center;
    justify-self: end;
    order: initial;
    width: 46px;
    height: 46px;
    padding: 0;
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    width: 17px;
    margin: 1.5px auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    inset-inline: 0;
    z-index: 1001;
    grid-column: 1 / -1;
    justify-self: stretch;
    display: grid;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    padding: 0;
    border: 1px solid rgba(220, 230, 209, 0);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 40px rgba(23, 59, 53, 0);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .site-nav.is-open {
    max-height: 440px;
    padding: 8px;
    border-color: rgba(220, 230, 209, 0.95);
    box-shadow: 0 18px 40px rgba(23, 59, 53, 0.12);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 850;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(237, 244, 223, 0.72);
  }
}

/* Map polish: compact attached labels and stable location navigation. */
.locations-map-wrap .map-pin {
  gap: 6px;
  min-width: auto;
  min-height: 34px;
}

.locations-map-wrap .pin-dot {
  width: 14px;
  height: 14px;
  border-width: 3px;
}

.locations-map-wrap .pin-card {
  max-width: 150px;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
}

.locations-map-wrap .pin-card strong {
  font-size: 0.76rem;
  line-height: 1.05;
}

.locations-map-wrap .pin-card small {
  font-size: 0.64rem;
}

.locations-map-wrap .map-pin-landstuhl {
  flex-direction: row;
}

.locations-map-wrap .map-pin-landstuhl .pin-card {
  transform: none;
}

.locations-map-wrap .map-attribution {
  right: 8px;
  bottom: 7px;
  font-size: 0.58rem;
}

.location-map-nav a {
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  gap: 12px;
  padding-inline: 20px;
}

.location-map-nav strong {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  white-space: nowrap;
}

@media (max-width: 430px) {
  .locations-map-wrap .pin-card {
    max-width: 110px;
  }

  .locations-map-wrap .pin-card strong {
    font-size: 0.66rem;
  }

  .location-map-nav strong {
    white-space: normal;
    overflow-wrap: break-word;
  }
}

/* Career application mobile polish: compact modal, stable form wrapping. */
@media (max-width: 680px) {
  .application-dialog {
    width: calc(100% - 28px);
    max-height: calc(100dvh - 28px);
    border-radius: 22px;
  }

  .application-dialog-inner {
    max-height: calc(100dvh - 28px);
    padding: 22px;
    border-radius: 22px;
  }

  .application-dialog-head {
    gap: 14px;
    margin-bottom: 18px;
  }

  .application-dialog-head h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .application-dialog-head p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .application-modal-grid {
    gap: 14px;
  }

  .application-dialog .application-detail,
  .application-dialog .application-form {
    padding: 20px;
    border-radius: 18px;
  }

  .application-detail h2 {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
    line-height: 1.12;
  }

  .application-dialog .application-detail .job-detail-grid {
    gap: 16px;
  }

  .application-form {
    gap: 16px;
  }

  .application-form label {
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .application-form input,
  .application-form select,
  .application-form textarea {
    min-height: 56px;
    padding-inline: 14px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .application-form textarea {
    min-height: 132px;
  }

  .checkbox-label {
    display: grid !important;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 12px !important;
    align-items: start;
    font-size: 0.95rem !important;
    line-height: 1.38;
    overflow-wrap: normal;
    word-break: normal;
  }

  .checkbox-label input {
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    margin-top: 1px;
  }

  .checkbox-label a {
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .application-form .button {
    width: 100%;
    min-height: 58px;
  }
}

@media (max-width: 380px) {
  .application-dialog {
    width: calc(100% - 18px);
  }

  .application-dialog-inner {
    padding: 16px;
  }

  .application-dialog .application-detail,
  .application-dialog .application-form {
    padding: 16px;
  }
}

/* Final location map: use the supplied soft raster map without duplicate dynamic pins. */
.locations-map-wrap .region-map {
  aspect-ratio: 1280 / 953;
  min-height: 0;
  border-color: rgba(220, 230, 209, 0.72);
  background: #f8faf4;
}

.locations-map-wrap .region-map-base {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 680px) {
  .locations-map-wrap .region-map {
    aspect-ratio: 1280 / 953;
    min-height: 0;
  }
}

/* Mobile hero: keep the practice image visible behind the copy. */
@media (max-width: 680px) {
  .hero {
    background: #f8faf4;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.38) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.5) 58%, #fff 100%);
  }

  .hero-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: 58% center;
    opacity: 0.58;
    filter: saturate(0.92) contrast(1.03) brightness(1.03);
  }

  .hero-grid {
    padding-top: 64px;
    padding-bottom: 48px;
  }
}

/* Final section rhythm: one compact transition system across the page. */
:root {
  --section-transition-tight: clamp(30px, 2.4vw, 42px);
  --section-transition-normal: clamp(44px, 3.2vw, 60px);
  --section-transition-chapter: clamp(56px, 4.2vw, 76px);
}

@media (min-width: 981px) {
  body .section,
  body .trust-section,
  body .treatment-section,
  body .services-section,
  body .doctors-section,
  body .locations-section,
  body .careers-section,
  body .reviews-section,
  body .jobs-section,
  body .application-section {
    padding-top: var(--section-transition-normal);
    padding-bottom: var(--section-transition-normal);
  }

  body .usp-section {
    padding-bottom: clamp(10px, 1vw, 16px);
  }

  body .treatment-section {
    padding-top: var(--section-transition-tight);
    padding-bottom: 0;
  }

  body .treatment-section + .services-section {
    padding-top: var(--section-transition-normal);
  }

  body .services-section {
    padding-bottom: 0;
  }

  body .services-section + .doctors-section {
    padding-top: var(--section-transition-normal);
  }

  body .doctors-section,
  body .locations-section,
  body .careers-section,
  body .reviews-section {
    padding-bottom: var(--section-transition-tight);
  }

  body .doctors-section + .locations-section {
    padding-top: var(--section-transition-normal);
  }

  body .locations-section + .careers-section,
  body .careers-section + .reviews-section,
  body .reviews-section + .final-cta-section {
    padding-top: var(--section-transition-normal);
  }

  body .careers-layout {
    align-items: start;
  }

  body .final-cta-section {
    padding-top: var(--section-transition-normal);
    padding-bottom: var(--section-transition-normal);
  }
}

@media (max-width: 980px) {
  :root {
    --section-transition-tight: clamp(24px, 6vw, 32px);
    --section-transition-normal: clamp(34px, 8vw, 46px);
    --section-transition-chapter: clamp(42px, 10vw, 58px);
  }

  body .section,
  body .trust-section,
  body .treatment-section,
  body .services-section,
  body .doctors-section,
  body .locations-section,
  body .careers-section,
  body .reviews-section,
  body .jobs-section,
  body .application-section {
    padding-top: var(--section-transition-normal);
    padding-bottom: var(--section-transition-normal);
  }

  body .usp-section {
    padding-bottom: var(--section-transition-tight);
  }

  body .treatment-section,
  body .services-section {
    padding-bottom: 0;
  }

  body .treatment-section + .services-section,
  body .services-section + .doctors-section,
  body .locations-section + .careers-section,
  body .careers-section + .reviews-section,
  body .reviews-section + .final-cta-section {
    padding-top: var(--section-transition-normal);
  }

  body .doctors-section + .locations-section {
    padding-top: var(--section-transition-normal);
  }

  body .careers-layout {
    align-items: start;
  }

  body .final-cta-section {
    padding-top: var(--section-transition-normal);
    padding-bottom: var(--section-transition-normal);
  }
}
