:root {
  --brand-green: #8fb324;
  --brand-green-dark: #5f7e18;
  --brand-deep: #35443f;
  --brand-gray: #616160;
  --paper: #ffffff;
  --paper-soft: #f6f8f3;
  --paper-warm: #f8f9f5;
  --line: #dce2d6;
  --copy: #4d514f;
  --muted: #69736d;
  --shadow: 0 18px 50px rgba(53, 68, 63, 0.08);
  --max: 1160px;
  --fs-small: 0.92rem;
  --fs-eyebrow: 0.78rem;
  --fs-lead: 1.08rem;
  --fs-h1: clamp(2.35rem, 4.2vw, 4.15rem);
  --fs-h2: clamp(1.9rem, 2.8vw, 2.85rem);
  --fs-h3: 1.12rem;
  --radius-card: 8px;
  --radius-control: 6px;
  --weight-heading: 650;
  --weight-strong: 650;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--copy);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

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

h1,
h2,
h3 {
  color: var(--brand-deep);
  font-weight: var(--weight-heading);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  max-width: 18ch;
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.22;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--brand-deep);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 226, 214, 0.85);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(172px, 240px) 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.brand img,
.footer-logo {
  display: block;
  width: min(230px, 100%);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--brand-deep);
  font-size: var(--fs-small);
  font-weight: var(--weight-strong);
}

.site-nav a {
  padding: 8px 0;
}

.legal-page .main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--brand-deep);
  font-size: var(--fs-small);
  font-weight: var(--weight-strong);
}

.legal-page .main-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--brand-green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-control);
  border: 1px solid var(--line);
  font-size: var(--fs-small);
  font-weight: var(--weight-strong);
  line-height: 1.1;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

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

.button-primary {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
}

.button-secondary {
  background: var(--paper);
  color: var(--brand-deep);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, #fff 39%, rgba(255, 255, 255, 0.78) 53%, rgba(255, 255, 255, 0.06) 82%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  align-content: center;
  min-height: 680px;
  padding: 88px 0 58px;
  gap: 34px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  color: var(--brand-green);
  font-weight: var(--weight-strong);
  text-transform: uppercase;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.08em;
}

.hero-subline {
  color: var(--brand-green-dark);
  font-weight: var(--weight-strong);
  font-size: var(--fs-lead);
}

.lead {
  color: var(--muted);
  max-width: 58ch;
  font-size: var(--fs-lead);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  padding: 28px 32px;
  border: 1px solid rgba(220, 226, 214, 0.9);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 60px rgba(53, 68, 63, 0.12);
  backdrop-filter: blur(14px);
}

.hero-points div {
  min-width: 0;
  min-height: 72px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 62px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-content: center;
  align-items: center;
  text-align: left;
  color: var(--brand-deep);
}

.hero-points div:first-child {
  padding-left: 0;
}

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

.hero-icon {
  grid-row: 1 / span 2;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--brand-green);
  border-radius: 50%;
  color: var(--brand-green-dark);
}

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

.hero-points strong {
  display: block;
  font-weight: var(--weight-strong);
  line-height: 1.15;
}

.hero-points small {
  color: var(--muted);
  font-size: var(--fs-small);
  font-weight: 500;
  line-height: 1.25;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--brand-green);
  border-radius: 50%;
  color: var(--brand-green-dark);
  font-weight: var(--weight-strong);
  margin-bottom: 10px;
}

.section {
  scroll-margin-top: 96px;
  padding: 82px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.section-heading.align-left {
  justify-items: start;
  text-align: left;
  margin-left: 0;
}

.trust-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.trust-card,
.service-card,
.location-card,
.doctor-card,
.review-card,
.contact-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(18, 63, 57, 0.02);
}

.trust-card {
  min-height: 220px;
  padding: 28px 22px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

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

.locations-section,
.doctors-section,
.contact-section {
  background: var(--paper-soft);
}

.locations-section .container {
  width: min(1360px, calc(100% - 48px));
}

.locations-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.55fr);
  gap: 44px;
  align-items: start;
  padding: 42px 48px 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 179, 36, 0.08), transparent 27%),
    radial-gradient(circle at 84% 26%, rgba(53, 68, 63, 0.045), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 247, 0.96));
  box-shadow: 0 24px 62px rgba(53, 68, 63, 0.09);
}

.locations-main {
  display: grid;
  gap: 26px;
}

.align-left {
  text-align: left;
  align-items: start;
  margin: 0;
}

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

.locations-side {
  display: grid;
  gap: 34px;
}

.region-map {
  min-height: 430px;
  border-radius: 0;
  border: 0;
  background:
    radial-gradient(circle at 52% 50%, rgba(143, 179, 36, 0.08), transparent 58%);
  position: relative;
  overflow: visible;
}

.location-reasons {
  display: grid;
  gap: 0;
}

.location-reasons div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.reason-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--brand-green-dark);
  background: rgba(143, 179, 36, 0.12);
}

.reason-icon svg,
.location-benefit-strip svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-reasons p {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: var(--fs-small);
}

.location-reasons strong {
  color: var(--brand-deep);
}

.map-lines {
  position: absolute;
  inset: -12px -8px 10px -22px;
  width: calc(100% + 30px);
  height: calc(100% + 2px);
  filter: drop-shadow(0 18px 30px rgba(143, 179, 36, 0.08));
}

.map-area {
  fill: rgba(143, 179, 36, 0.1);
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 4;
}

.map-route,
.map-water {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-route {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 3;
}

.map-route.main {
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 4;
}

.map-route.soft {
  stroke-width: 3;
  stroke-dasharray: 8 12;
}

.map-water {
  stroke: rgba(255, 255, 255, 0.65);
  stroke-width: 6;
}

.map-label {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--brand-green-dark);
  font-size: var(--fs-eyebrow);
  font-weight: var(--weight-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-pin {
  position: absolute;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-deep);
  z-index: 2;
}

.pin-dot {
  width: 22px;
  height: 22px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 10px 24px rgba(53, 68, 63, 0.18);
}

.pin-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: 2px;
  min-width: auto;
  padding: 0;
}

.pin-card strong {
  color: var(--brand-deep);
  font-weight: var(--weight-strong);
}

.pin-card small {
  display: none;
}

.pin-lauterecken {
  left: 19%;
  top: 53%;
}

.pin-ulmet {
  left: 58%;
  top: 30%;
}

.pin-landstuhl {
  left: 56%;
  top: 72%;
}

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

.location-kicker {
  color: var(--brand-green-dark);
  font-size: var(--fs-eyebrow);
  font-weight: var(--weight-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.locations-section .section-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 4.1vw, 4rem);
}

.locations-section .location-card img {
  aspect-ratio: 16 / 10.6;
}

.locations-section .location-card .card-body {
  padding: 24px;
  gap: 14px;
}

.locations-section .location-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.locations-section .location-card h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 14px;
  background: var(--brand-green);
}

.locations-section .location-card .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 44px;
  height: 44px;
  max-height: 44px;
  width: 100%;
  margin-top: 6px;
  padding: 9px 16px;
  border: 1px solid var(--brand-green);
  border-radius: var(--radius-control);
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.68);
}

.location-benefit-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(53, 68, 63, 0.07);
}

.location-benefit-strip div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  row-gap: 2px;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

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

.location-benefit-strip span {
  grid-row: span 2;
  color: var(--brand-green-dark);
  line-height: 1;
}

.location-benefit-strip strong {
  color: var(--brand-deep);
}

.location-benefit-strip small {
  color: var(--muted);
  font-size: var(--fs-small);
  line-height: 1.35;
}

.location-card img,
.doctor-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.doctor-card img {
  aspect-ratio: 4 / 3.35;
  object-position: center 18%;
}

.doctor-card .portrait-timo {
  object-position: center 32%;
}

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

.card-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.card-body a:not(.text-link) {
  color: var(--brand-deep);
  font-weight: var(--weight-strong);
}

.text-link {
  color: var(--brand-deep);
  font-weight: var(--weight-strong);
}

.text-link::after {
  content: " →";
}

.service-card {
  position: relative;
  min-height: 250px;
  display: grid;
  align-items: stretch;
  isolation: isolate;
}

.service-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.46;
  background: var(--paper-soft);
}

.service-card::after {
  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) 43%, rgba(255, 255, 255, 0.22) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48));
}

.service-card .card-body {
  align-content: start;
  min-height: 250px;
  padding: 28px;
  gap: 12px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--brand-green);
  border-radius: 50%;
  color: var(--brand-green-dark);
  background: rgba(255, 255, 255, 0.64);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card h3 {
  max-width: 12ch;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 12px;
  background: var(--brand-green);
}

.service-card p {
  max-width: 24ch;
}

.service-card .text-link {
  margin-top: auto;
}

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

.technology-section {
  background: #fff;
}

.technology-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 44px;
}

.technology-layout h2 {
  margin: 10px 0 18px;
}

.tech-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.tech-list div {
  display: grid;
  gap: 4px;
  padding: 16px 0 16px 22px;
  border-left: 3px solid var(--brand-green);
}

.tech-list strong {
  color: var(--brand-deep);
}

.tech-list span {
  color: var(--muted);
}

.technology-media {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.technology-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 30px;
  align-items: stretch;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.stars {
  color: var(--brand-green-dark);
  letter-spacing: 0.04em;
}

.cta-panel {
  min-height: 320px;
  padding: 38px;
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 80% 15%, rgba(143, 179, 36, 0.28), transparent 32%),
    var(--brand-deep);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 16px;
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button-whatsapp {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.button-whatsapp:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  font-size: var(--fs-small);
  font-weight: var(--weight-strong);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-grid article {
  min-height: 250px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.contact-card {
  grid-template-rows: auto auto 1fr auto;
}

.contact-address {
  min-height: 50px;
}

.contact-links {
  display: grid;
  gap: 4px;
  align-content: start;
}

.contact-grid a {
  color: var(--brand-deep);
  font-weight: var(--weight-strong);
}

.mini-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-self: end;
  padding-top: 8px;
}

.mini-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-green-dark);
  background: var(--paper-soft);
  font-size: var(--fs-small);
}

.mini-actions a:hover {
  border-color: var(--brand-green);
  color: var(--brand-green-dark);
}

.mini-actions .whatsapp-link {
  background: rgba(143, 179, 36, 0.12);
  border-color: rgba(143, 179, 36, 0.45);
}

.hours-card dl {
  margin: 0;
  display: grid;
  gap: 8px;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
}

.hours-card dt {
  color: var(--brand-deep);
  font-weight: var(--weight-strong);
}

.hours-card dd {
  margin: 0;
}

.site-footer {
  background: var(--brand-deep);
  color: #fff;
  padding: 58px 0 24px;
}

.site-footer h3,
.site-footer p {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer a {
  color: #fff;
  opacity: 0.9;
}

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

.seal-row img {
  width: auto;
  max-width: 128px;
  max-height: 66px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-small);
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: minmax(172px, 240px) auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    order: 5;
    justify-content: start;
    padding: 0 0 20px;
  }

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

  .header-cta {
    justify-self: end;
  }

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

  .hero-points {
    grid-template-columns: 1fr;
    padding: 8px 22px;
  }

  .hero-points div,
  .hero-points div:first-child,
  .hero-points div:last-child,
  .hero-points div:nth-child(2n),
  .hero-points div:nth-child(-n + 2),
  .hero-points div:nth-child(n + 3) {
    min-height: 78px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 56px 1fr;
    column-gap: 16px;
  }

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

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

  .hero-icon svg {
    width: 26px;
    height: 26px;
  }

  .hero-image {
    width: 100%;
    opacity: 0.52;
  }

  .hero::after {
    background: rgba(255, 255, 255, 0.66);
  }

  .locations-showcase,
  .technology-layout,
  .reviews-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .locations-showcase {
    padding: 22px;
  }

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

  .location-benefit-strip div {
    min-height: 74px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

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

  .header-cta {
    display: none;
  }

  .legal-page .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 54px 0 28px;
    gap: 26px;
  }

  .hero-copy {
    padding: 0;
  }

  .trust-grid,
  .service-grid,
  .doctor-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-points div,
  .hero-points div:first-child,
  .hero-points div:last-child,
  .hero-points div:nth-child(2n),
  .hero-points div:nth-child(-n + 2),
  .hero-points div:nth-child(n + 3) {
    min-height: 76px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 52px 1fr;
    column-gap: 14px;
  }

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

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

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

  .section {
    padding: 56px 0;
  }

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

  .locations-showcase {
    padding: 16px;
    gap: 24px;
  }

  .location-reasons div {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .reason-icon {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
  }

  .location-benefit-strip {
    padding: 14px 16px;
  }

  .location-benefit-strip div {
    grid-template-columns: 34px 1fr;
    column-gap: 10px;
  }

  .location-benefit-strip span {
    font-size: 1.35rem;
  }

  .cta-panel {
    padding: 28px 20px;
  }
}

.legal-page {
  background: var(--paper-soft);
  overflow-x: hidden;
}

.legal-main {
  padding: 74px 0 86px;
}

.legal-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.legal-hero h1 {
  max-width: 12ch;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: var(--fs-lead);
}

.legal-grid,
.legal-content {
  display: grid;
  gap: 18px;
}

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

.legal-content {
  grid-template-columns: minmax(0, 1fr);
  max-width: 920px;
}

.legal-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(53, 68, 63, 0.06);
}

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

.legal-card h2 {
  font-size: clamp(1.28rem, 1.8vw, 1.65rem);
  overflow-wrap: anywhere;
}

.legal-hero h1 {
  overflow-wrap: anywhere;
}

.legal-card p,
.legal-card li {
  color: var(--copy);
  overflow-wrap: anywhere;
}

.legal-card a,
.footer-bottom a {
  color: inherit;
  font-weight: var(--weight-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 820px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding: 52px 0 66px;
  }

  .legal-card {
    padding: 22px;
  }
}

/* Exact Standort composition requested in feedback. */
.locations-section {
  padding: clamp(72px, 6vw, 104px) 0 clamp(72px, 6vw, 104px);
  background:
    linear-gradient(180deg, #fbfcf8 0%, #ffffff 52%, #f7f9f4 100%);
}

.locations-section .container {
  width: min(1780px, calc(100% - clamp(48px, 5vw, 96px)));
}

.locations-showcase {
  display: grid;
  grid-template-columns: minmax(420px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(50px, 5vw, 86px);
  align-items: start;
  padding: clamp(36px, 3.8vw, 58px) clamp(34px, 4.5vw, 70px) 28px;
  border: 1px solid rgba(220, 226, 214, 0.82);
  border-radius: 0;
  background:
    radial-gradient(circle at 17% 10%, rgba(143, 179, 36, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(250, 251, 247, 0.98));
  box-shadow: 0 28px 72px rgba(53, 68, 63, 0.1);
}

.locations-main {
  gap: clamp(42px, 4.8vw, 70px);
}

.locations-section .section-heading {
  gap: 20px;
  margin: 0;
  max-width: 760px;
}

.locations-section .section-heading h2 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 4.65vw, 5.65rem);
  line-height: 0.98;
}

.locations-section .section-heading p:not(.eyebrow) {
  max-width: 50ch;
  font-size: clamp(1.05rem, 1.15vw, 1.22rem);
  line-height: 1.75;
}

.locations-side {
  gap: clamp(40px, 4.8vw, 78px);
}

.region-map {
  min-height: clamp(465px, 31vw, 585px);
  background: transparent;
  overflow: visible;
}

.map-lines {
  inset: -24px auto auto -56px;
  width: min(660px, calc(100% + 96px));
  height: min(590px, calc(100% + 60px));
  opacity: 0.94;
  filter: drop-shadow(0 22px 42px rgba(143, 179, 36, 0.08));
}

.map-area {
  fill: rgba(143, 179, 36, 0.075);
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 5;
}

.map-route,
.map-route.main,
.map-water {
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 3.2;
}

.map-label {
  display: none;
}

.map-pin {
  gap: 12px;
  font-size: clamp(1rem, 1.05vw, 1.18rem);
}

.pin-dot {
  width: 28px;
  height: 28px;
  border-width: 5px;
  box-shadow: 0 10px 26px rgba(53, 68, 63, 0.2);
}

.pin-card strong {
  font-size: 1.08em;
}

.pin-lauterecken {
  left: 17%;
  top: 56%;
  flex-direction: row-reverse;
}

.pin-ulmet {
  left: 64%;
  top: 32%;
}

.pin-landstuhl {
  left: 53%;
  top: 78%;
  flex-direction: row-reverse;
}

.location-reasons {
  width: min(360px, 100%);
  margin-left: clamp(18px, 4vw, 70px);
}

.location-reasons div {
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 26px 0;
}

.reason-icon {
  width: 62px;
  height: 62px;
  background: rgba(143, 179, 36, 0.13);
}

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

.location-reasons p {
  gap: 8px;
  line-height: 1.55;
}

.location-card-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 46px);
}

.locations-section .location-card {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(53, 68, 63, 0.09);
}

.locations-section .location-card img {
  aspect-ratio: 16 / 10.45;
  border-radius: 16px 16px 0 0;
}

.locations-section .location-card .card-body {
  padding: clamp(28px, 2.8vw, 42px);
  gap: 18px;
}

.location-kicker {
  letter-spacing: 0.16em;
}

.locations-section .location-card h3 {
  font-size: clamp(1.9rem, 2.15vw, 2.55rem);
  line-height: 1.05;
  max-width: 10ch;
}

.locations-section .location-card h3::after {
  width: 30px;
  margin-top: 18px;
}

.location-detail {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  align-items: start;
  line-height: 1.45;
}

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

.location-detail svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.locations-section .location-card .text-link {
  min-height: 58px;
  height: 58px;
  max-height: 58px;
  margin-top: 14px;
  border-color: rgba(143, 179, 36, 0.72);
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
}

.location-benefit-strip {
  margin: clamp(0px, 1vw, 8px) clamp(28px, 3vw, 58px) 0;
  padding: clamp(28px, 3vw, 40px) clamp(26px, 3vw, 42px);
  border-radius: 18px;
  box-shadow: 0 20px 58px rgba(53, 68, 63, 0.08);
}

.location-benefit-strip div {
  grid-template-columns: 74px 1fr;
  column-gap: 18px;
  padding: 0 clamp(22px, 2.4vw, 42px);
}

.location-benefit-strip span {
  display: grid;
  place-items: center;
  color: var(--brand-green-dark);
}

.location-benefit-strip svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.7;
}

.location-benefit-strip strong {
  font-size: clamp(1.02rem, 1.1vw, 1.18rem);
}

@media (max-width: 1280px) {
  .locations-showcase {
    grid-template-columns: 1fr;
  }

  .region-map {
    width: min(560px, 100%);
  }

  .location-reasons {
    margin-left: 0;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .location-reasons div {
    border-bottom: 0;
    padding: 0;
  }
}

@media (max-width: 900px) {
  .locations-section .container {
    width: min(100% - 28px, 1780px);
  }

  .locations-showcase {
    padding: 28px 18px 20px;
  }

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

  .locations-section .section-heading h2 {
    font-size: clamp(2.4rem, 11vw, 3.7rem);
  }

  .region-map {
    min-height: 330px;
    overflow: hidden;
  }

  .map-lines {
    inset: -22px auto auto -74px;
    width: 540px;
    height: 390px;
  }

  .pin-lauterecken {
    left: 12%;
    top: 52%;
  }

  .pin-ulmet {
    left: 58%;
    top: 32%;
  }

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

  .location-benefit-strip {
    margin-inline: 0;
  }

  .location-benefit-strip div {
    min-height: 92px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

/* FINAL CASCADE LOCK - consistent card grids and typography. Keep this at EOF. */
.services-section .container,
.trust-section .container,
.doctors-section .container,
.contact-section .container {
  width: min(1440px, calc(100% - clamp(40px, 5vw, 96px)));
}

.section-heading,
.services-section .section-heading,
.trust-section .section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  justify-items: start;
  text-align: left;
  max-width: 1120px;
  margin: 0 auto clamp(42px, 4.5vw, 68px);
}

.section-heading .eyebrow,
.services-section .section-heading .eyebrow,
.trust-section .section-heading .eyebrow {
  grid-column: 1 / -1;
}

.services-section h2,
.trust-section h2,
.doctors-section h2,
.technology-section h2,
.reviews-section h2,
.contact-section h2 {
  font-size: clamp(2.25rem, 3.15vw, 3.95rem);
  line-height: 1.06;
}

.services-section .section-heading p:not(.eyebrow),
.trust-section .section-heading p:not(.eyebrow) {
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 30px);
  align-items: stretch;
  width: 100%;
  overflow: visible;
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7),
.service-card:nth-child(8) {
  grid-column: auto;
  width: auto;
  min-width: 0;
  min-height: 340px;
}

.service-card .card-body {
  min-height: 340px;
  padding: clamp(26px, 2.4vw, 36px);
}

.service-card h3 {
  max-width: 13ch;
  font-size: clamp(1.18rem, 1.1vw, 1.34rem);
  line-height: 1.18;
}

.service-card p {
  max-width: 25ch;
  font-size: 1rem;
  line-height: 1.62;
}

.trust-grid,
.doctor-grid,
.contact-grid {
  display: grid;
  gap: clamp(20px, 2vw, 30px);
  align-items: stretch;
}

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

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

.trust-card,
.trust-card:nth-child(1),
.trust-card:nth-child(2),
.trust-card:nth-child(3),
.trust-card:nth-child(4) {
  min-height: 280px;
  margin-top: 0;
}

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

.doctor-card img {
  aspect-ratio: 4 / 3.7;
}

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

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

@media (max-width: 820px) {
  .services-section .container,
  .trust-section .container,
  .doctors-section .container,
  .contact-section .container,
  .locations-section .container {
    width: min(var(--max-text), calc(100% - 28px));
  }

  .service-grid,
  .trust-grid,
  .location-card-row,
  .doctor-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card .card-body {
    min-height: 315px;
  }
}

/* FINAL CASCADE LOCK - do not place layout experiments after this block. */
.services-section .container,
.trust-section .container,
.doctors-section .container,
.contact-section .container {
  width: min(1440px, calc(100% - clamp(40px, 5vw, 96px)));
}

.section-heading,
.services-section .section-heading,
.trust-section .section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  justify-items: start;
  text-align: left;
  max-width: 1120px;
  margin: 0 auto clamp(42px, 4.5vw, 68px);
}

.section-heading .eyebrow,
.services-section .section-heading .eyebrow,
.trust-section .section-heading .eyebrow {
  grid-column: 1 / -1;
}

.services-section h2,
.trust-section h2,
.doctors-section h2,
.technology-section h2,
.reviews-section h2,
.contact-section h2 {
  font-size: clamp(2.25rem, 3.15vw, 3.95rem);
  line-height: 1.06;
}

.services-section .section-heading p:not(.eyebrow),
.trust-section .section-heading p:not(.eyebrow) {
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 30px);
  align-items: stretch;
  width: 100%;
  overflow: visible;
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7),
.service-card:nth-child(8) {
  grid-column: auto;
  width: auto;
  min-width: 0;
  min-height: 340px;
}

.service-card .card-body {
  min-height: 340px;
  padding: clamp(26px, 2.4vw, 36px);
}

.service-card h3 {
  max-width: 13ch;
  font-size: clamp(1.18rem, 1.1vw, 1.34rem);
  line-height: 1.18;
}

.service-card p {
  max-width: 25ch;
  font-size: 1rem;
  line-height: 1.62;
}

.trust-grid,
.doctor-grid,
.contact-grid {
  display: grid;
  gap: clamp(20px, 2vw, 30px);
  align-items: stretch;
}

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

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

.trust-card,
.trust-card:nth-child(1),
.trust-card:nth-child(2),
.trust-card:nth-child(3),
.trust-card:nth-child(4) {
  min-height: 280px;
  margin-top: 0;
}

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

.doctor-card img {
  aspect-ratio: 4 / 3.7;
}

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

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

@media (max-width: 820px) {
  .services-section .container,
  .trust-section .container,
  .doctors-section .container,
  .contact-section .container,
  .locations-section .container {
    width: min(var(--max-text), calc(100% - 28px));
  }

  .service-grid,
  .trust-grid,
  .location-card-row,
  .doctor-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card .card-body {
    min-height: 315px;
  }
}

/* Final layout lock: consistent headings, aligned card grids, stable copy rhythm. */
:root {
  --fs-h1: clamp(2.85rem, 4.8vw, 5.25rem);
  --fs-h2: clamp(2.25rem, 3.15vw, 3.95rem);
  --fs-h3: clamp(1.18rem, 1.1vw, 1.34rem);
  --fs-lead: clamp(1.02rem, 1.03vw, 1.16rem);
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1.03;
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.06;
  max-width: 14ch;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.18;
}

.lead,
.section-heading p:not(.eyebrow),
.trust-card p,
.service-card p,
.location-card p,
.doctor-card p,
.review-card p,
.contact-grid p,
.contact-grid dl {
  font-size: 1rem;
  line-height: 1.62;
}

.section-heading,
.services-section .section-heading,
.trust-section .section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  justify-items: start;
  text-align: left;
  max-width: 1120px;
  margin: 0 auto clamp(42px, 4.5vw, 68px);
}

.section-heading .eyebrow,
.services-section .section-heading .eyebrow,
.trust-section .section-heading .eyebrow {
  grid-column: 1 / -1;
}

.services-section .container,
.trust-section .container,
.doctors-section .container,
.contact-section .container {
  width: min(1440px, calc(100% - clamp(40px, 5vw, 96px)));
}

.trust-grid,
.service-grid,
.doctor-grid,
.contact-grid {
  display: grid;
  gap: clamp(20px, 2vw, 30px);
  align-items: stretch;
}

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

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

.trust-card,
.trust-card:nth-child(1),
.trust-card:nth-child(2),
.trust-card:nth-child(3),
.trust-card:nth-child(4) {
  min-height: 280px;
  margin-top: 0;
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7),
.service-card:nth-child(8) {
  grid-column: auto;
  width: auto;
  min-height: 340px;
}

.service-card .card-body {
  min-height: 340px;
  padding: clamp(26px, 2.4vw, 36px);
}

.service-card h3 {
  max-width: 13ch;
}

.service-card p {
  max-width: 25ch;
}

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

.doctor-card img {
  aspect-ratio: 4 / 3.7;
}

.reviews-layout {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
}

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

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

@media (max-width: 820px) {
  .services-section .container,
  .trust-section .container,
  .doctors-section .container,
  .contact-section .container,
  .locations-section .container {
    width: min(var(--max-text), calc(100% - 28px));
  }

  .trust-grid,
  .service-grid,
  .location-card-row,
  .doctor-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card .card-body {
    min-height: 315px;
  }
}

/* Stabilisierung nach Premium-Iteration: bündige Grids, einheitliche Typografie, ruhige Proportionen. */
:root {
  --fs-h1: clamp(2.85rem, 4.8vw, 5.25rem);
  --fs-h2: clamp(2.35rem, 3.25vw, 4.05rem);
  --fs-h3: clamp(1.18rem, 1.15vw, 1.38rem);
  --fs-lead: clamp(1.02rem, 1.03vw, 1.16rem);
  --radius-card: 14px;
  --section-y: clamp(82px, 7vw, 126px);
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1.02;
  max-width: 14ch;
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.05;
  max-width: 14ch;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.18;
}

.lead,
.section-heading p:not(.eyebrow),
.trust-card p,
.service-card p,
.location-card p,
.doctor-card p,
.review-card p,
.contact-grid p,
.contact-grid dl {
  font-size: 1rem;
  line-height: 1.62;
}

.section-heading,
.services-section .section-heading,
.trust-section .section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  justify-items: start;
  text-align: left;
  max-width: 1120px;
  margin: 0 auto clamp(42px, 4.5vw, 68px);
}

.section-heading .eyebrow,
.services-section .section-heading .eyebrow,
.trust-section .section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading p:not(.eyebrow) {
  max-width: 58ch;
}

.services-section .container,
.trust-section .container,
.doctors-section .container,
.contact-section .container {
  width: min(1440px, calc(100% - clamp(40px, 5vw, 96px)));
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.trust-card,
.trust-card:nth-child(1),
.trust-card:nth-child(2),
.trust-card:nth-child(3),
.trust-card:nth-child(4) {
  min-height: 280px;
  margin-top: 0;
  padding: clamp(28px, 2.7vw, 42px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 30px);
}

.service-card,
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7),
.service-card:nth-child(8) {
  grid-column: auto;
  min-height: 340px;
}

.service-card .card-body {
  min-height: 340px;
  padding: clamp(26px, 2.4vw, 36px);
}

.service-card h3 {
  max-width: 13ch;
}

.service-card p {
  max-width: 25ch;
}

.service-image {
  opacity: 0.5;
}

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

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

.doctor-card img {
  aspect-ratio: 4 / 3.7;
}

.reviews-layout {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
}

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

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

.locations-section .location-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.locations-section .location-card .card-body {
  grid-template-rows: auto auto auto auto 1fr;
}

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

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

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

@media (max-width: 820px) {
  .services-section .container,
  .trust-section .container,
  .doctors-section .container,
  .contact-section .container,
  .locations-section .container {
    width: min(var(--max-text), calc(100% - 28px));
  }

  .trust-grid,
  .service-grid,
  .location-card-row,
  .doctor-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card .card-body {
    min-height: 315px;
  }

  .section-heading,
  .services-section .section-heading,
  .trust-section .section-heading {
    gap: 18px;
    margin-bottom: 34px;
  }
}

/* Premium layout layer: keeps content and CI intact while varying section rhythm. */
:root {
  --max-text: 1240px;
  --max-wide: 1560px;
  --max-bleed: 1840px;
  --radius-card: 16px;
  --radius-control: 10px;
  --shadow: 0 24px 70px rgba(53, 68, 63, 0.11);
  --shadow-soft: 0 12px 36px rgba(53, 68, 63, 0.075);
  --section-y: clamp(96px, 8vw, 152px);
}

body {
  background:
    radial-gradient(circle at 8% 6%, rgba(143, 179, 36, 0.045), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfcf8 44%, #ffffff 100%);
  text-rendering: geometricPrecision;
}

.container {
  width: min(var(--max-text), calc(100% - clamp(32px, 5vw, 96px)));
}

.site-header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom-color: rgba(220, 226, 214, 0.62);
  box-shadow: 0 10px 34px rgba(53, 68, 63, 0.045);
}

.header-inner {
  width: min(1480px, calc(100% - clamp(32px, 5vw, 96px)));
  min-height: 92px;
}

.site-nav {
  gap: clamp(20px, 2.4vw, 34px);
}

.button {
  min-height: 50px;
  padding: 13px 22px;
  border-radius: var(--radius-control);
  box-shadow: 0 10px 24px rgba(53, 68, 63, 0.055);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(53, 68, 63, 0.12);
}

.button-primary {
  box-shadow: 0 16px 34px rgba(95, 126, 24, 0.2);
}

.hero {
  min-height: clamp(760px, 88vh, 980px);
  border-bottom: 0;
  background: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(246, 248, 243, 0.94));
  z-index: 1;
}

.hero::after {
  background:
    linear-gradient(104deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 36%, rgba(255, 255, 255, 0.55) 54%, rgba(255, 255, 255, 0.05) 77%),
    radial-gradient(circle at 18% 28%, rgba(143, 179, 36, 0.08), transparent 32%);
}

.hero-image {
  width: 74%;
  object-position: 62% center;
  transform: scale(1.035);
  filter: saturate(0.92) contrast(1.02);
}

.hero-grid {
  width: min(1580px, calc(100% - clamp(32px, 5vw, 96px)));
  grid-template-columns: minmax(460px, 0.48fr) minmax(0, 0.52fr);
  min-height: clamp(760px, 88vh, 980px);
  padding: clamp(120px, 12vw, 170px) 0 clamp(46px, 5vw, 72px);
  gap: clamp(36px, 6vw, 90px);
}

.hero-copy {
  max-width: 650px;
  gap: 28px;
  padding-left: clamp(0px, 1.5vw, 24px);
}

h1 {
  font-size: clamp(3rem, 5.6vw, 6.35rem);
  line-height: 0.98;
  max-width: 12.5ch;
}

.hero-subline {
  font-size: clamp(1.22rem, 1.5vw, 1.55rem);
}

.lead {
  max-width: 49ch;
  line-height: 1.75;
}

.hero .lead {
  max-width: 53ch;
}

.action-row {
  gap: 16px;
  padding-top: 6px;
}

.hero-points {
  width: min(1320px, 100%);
  margin-top: clamp(26px, 4vw, 58px);
  padding: 30px 36px;
  border: 1px solid rgba(220, 226, 214, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 80px rgba(53, 68, 63, 0.14);
}

.hero-points div {
  padding-inline: clamp(18px, 2.2vw, 38px);
}

.section {
  position: relative;
  padding: var(--section-y) 0;
  border-bottom: 0;
}

.section + .section {
  margin-top: 0;
}

.section-heading {
  gap: 18px;
  max-width: 840px;
  margin-bottom: clamp(44px, 5vw, 78px);
}

.section-heading p:not(.eyebrow) {
  max-width: 62ch;
  line-height: 1.75;
}

h2 {
  font-size: clamp(2.35rem, 4.2vw, 5rem);
  line-height: 0.98;
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.18rem, 1.25vw, 1.42rem);
}

.eyebrow {
  letter-spacing: 0.15em;
}

.trust-section {
  background:
    linear-gradient(180deg, var(--paper-soft), #fff 72%);
}

.trust-section .container {
  width: min(1460px, calc(100% - clamp(32px, 5vw, 96px)));
}

.trust-section .section-heading {
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr);
  align-items: end;
  justify-items: start;
  text-align: left;
  max-width: none;
}

.trust-section .section-heading .eyebrow {
  grid-column: 1 / -1;
}

.trust-section .section-heading h2 {
  max-width: 12ch;
}

.trust-grid {
  grid-template-columns: 1.2fr 0.92fr 0.92fr 1.08fr;
  align-items: stretch;
  gap: clamp(18px, 2vw, 28px);
}

.trust-card,
.service-card,
.location-card,
.doctor-card,
.review-card,
.contact-grid article,
.legal-card {
  border-color: rgba(220, 226, 214, 0.78);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.trust-card:hover,
.service-card:hover,
.location-card:hover,
.doctor-card:hover,
.review-card:hover,
.contact-grid article:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(143, 179, 36, 0.34);
}

.trust-card {
  min-height: 300px;
  padding: clamp(30px, 3.1vw, 48px);
  align-content: end;
  justify-items: start;
  text-align: left;
  background:
    radial-gradient(circle at 92% 8%, rgba(143, 179, 36, 0.11), transparent 34%),
    #fff;
}

.trust-card:nth-child(1),
.trust-card:nth-child(4) {
  min-height: 370px;
}

.trust-card:nth-child(2) {
  margin-top: 54px;
}

.trust-card:nth-child(3) {
  margin-top: 24px;
}

.line-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  background: rgba(143, 179, 36, 0.08);
}

.locations-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--paper-warm) 100%);
}

.locations-section .container,
.services-section .container {
  width: min(var(--max-wide), calc(100% - clamp(32px, 4vw, 84px)));
}

.locations-showcase {
  padding: clamp(44px, 5vw, 76px);
  gap: clamp(46px, 5vw, 82px);
  border-radius: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(143, 179, 36, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 246, 0.94));
  box-shadow: 0 32px 90px rgba(53, 68, 63, 0.1);
}

.region-map {
  min-height: clamp(430px, 34vw, 560px);
}

.location-card-row {
  gap: clamp(22px, 2.5vw, 34px);
}

.locations-section .location-card img {
  aspect-ratio: 16 / 11.2;
  transition: transform 0.55s ease;
}

.locations-section .location-card:hover img {
  transform: scale(1.045);
}

.locations-section .location-card .card-body {
  padding: clamp(26px, 2.7vw, 38px);
}

.location-benefit-strip {
  margin-top: clamp(8px, 2vw, 20px);
  padding: clamp(26px, 3vw, 42px);
  border-radius: 18px;
}

.services-section {
  background:
    linear-gradient(180deg, var(--paper-warm), #fff 40%, var(--paper-soft));
}

.services-section .section-heading {
  grid-template-columns: 0.75fr 1fr;
  max-width: 1180px;
  align-items: end;
  justify-items: start;
  text-align: left;
}

.services-section .section-heading .eyebrow {
  grid-column: 1 / -1;
}

.service-grid {
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

.service-card {
  grid-column: span 3;
  min-height: clamp(310px, 23vw, 390px);
}

.service-card:nth-child(2),
.service-card:nth-child(7) {
  grid-column: span 4;
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
  grid-column: span 5;
}

.service-card:nth-child(5),
.service-card:nth-child(8) {
  grid-column: span 4;
}

.service-image {
  opacity: 0.58;
  transition: transform 0.7s ease, opacity 0.35s ease;
}

.service-card:hover .service-image {
  opacity: 0.68;
  transform: scale(1.045);
}

.service-card::after {
  background:
    linear-gradient(92deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.92) 43%, rgba(255, 255, 255, 0.18) 100%),
    radial-gradient(circle at 12% 10%, rgba(143, 179, 36, 0.08), transparent 38%);
}

.service-card .card-body {
  min-height: inherit;
  padding: clamp(28px, 3vw, 44px);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.78);
}

.doctors-section {
  background:
    linear-gradient(90deg, var(--paper-soft) 0%, #fff 42%, #fff 100%);
}

.doctors-section .container {
  width: min(1380px, calc(100% - clamp(32px, 5vw, 96px)));
}

.doctors-section .section-heading {
  margin-left: 0;
  justify-items: start;
  text-align: left;
}

.doctor-grid {
  grid-template-columns: 1.08fr 0.92fr 1fr;
  gap: clamp(22px, 2.5vw, 36px);
  align-items: end;
}

.doctor-card {
  background: #fff;
}

.doctor-card:nth-child(1) {
  transform: translateY(-38px);
}

.doctor-card:nth-child(3) {
  transform: translateY(-18px);
}

.doctor-card:hover:nth-child(1),
.doctor-card:hover:nth-child(3) {
  transform: translateY(-46px);
}

.doctor-card img {
  aspect-ratio: 4 / 4.45;
  transition: transform 0.55s ease;
}

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

.doctor-card .card-body {
  padding: 28px 30px 32px;
}

.technology-section {
  background: #fff;
}

.technology-section .container {
  width: min(1500px, calc(100% - clamp(32px, 5vw, 96px)));
}

.technology-layout {
  grid-template-columns: minmax(360px, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(48px, 7vw, 118px);
}

.technology-layout > div:first-child {
  max-width: 620px;
}

.technology-media {
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(53, 68, 63, 0.13);
}

.technology-media video {
  aspect-ratio: 16 / 9.5;
}

.tech-list {
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.tech-list div {
  padding: 22px 0;
  border-left: 0;
  border-bottom: 1px solid var(--line);
}

.reviews-section {
  background:
    radial-gradient(circle at 82% 28%, rgba(143, 179, 36, 0.12), transparent 30%),
    linear-gradient(180deg, var(--paper-soft), #fff);
}

.reviews-section .container {
  width: min(1420px, calc(100% - clamp(32px, 5vw, 96px)));
}

.reviews-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
  gap: clamp(46px, 6vw, 96px);
  align-items: center;
}

.review-grid {
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 740px;
}

.review-card {
  grid-template-columns: 112px 1fr auto;
  align-items: center;
  padding: 24px 28px;
}

.cta-panel {
  min-height: clamp(420px, 34vw, 560px);
  padding: clamp(38px, 5vw, 74px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 16%, rgba(143, 179, 36, 0.42), transparent 34%),
    linear-gradient(145deg, #223c36, var(--brand-deep));
  box-shadow: 0 34px 90px rgba(53, 68, 63, 0.22);
}

.contact-section {
  background:
    linear-gradient(180deg, #fff, var(--paper-soft));
}

.contact-section .container {
  width: min(1500px, calc(100% - clamp(32px, 5vw, 96px)));
}

.contact-section .section-heading {
  margin-left: 0;
  justify-items: start;
  text-align: left;
  max-width: 680px;
}

.contact-grid {
  grid-template-columns: 1.05fr 1.05fr 1.05fr 0.9fr;
  gap: clamp(18px, 2vw, 28px);
}

.contact-grid article {
  min-height: 320px;
  padding: clamp(26px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.site-footer {
  padding: clamp(74px, 7vw, 118px) 0 30px;
  background:
    radial-gradient(circle at 16% 14%, rgba(143, 179, 36, 0.18), transparent 34%),
    linear-gradient(145deg, #203b35, var(--brand-deep));
}

.site-footer .container {
  width: min(1500px, calc(100% - clamp(32px, 5vw, 96px)));
}

.footer-grid {
  grid-template-columns: minmax(260px, 1.55fr) repeat(4, minmax(130px, 0.8fr));
  gap: clamp(34px, 5vw, 80px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

@media (min-width: 1800px) {
  .hero-grid,
  .header-inner {
    width: min(1680px, calc(100% - 128px));
  }
}

@media (max-width: 1280px) {
  .service-card,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(5),
  .service-card:nth-child(6),
  .service-card:nth-child(7),
  .service-card:nth-child(8) {
    grid-column: span 6;
  }

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

  .trust-card:nth-child(1),
  .trust-card:nth-child(2),
  .trust-card:nth-child(3),
  .trust-card:nth-child(4) {
    margin-top: 0;
    min-height: 290px;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    width: min(var(--max-text), calc(100% - 48px));
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    width: min(var(--max-text), calc(100% - 48px));
    min-height: auto;
    padding-top: 120px;
  }

  .hero-image {
    width: 100%;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
      radial-gradient(circle at 20% 14%, rgba(143, 179, 36, 0.12), transparent 34%);
  }

  .trust-section .section-heading,
  .services-section .section-heading,
  .technology-layout,
  .reviews-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .locations-showcase {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  :root {
    --section-y: 76px;
  }

  .container,
  .header-inner,
  .hero-grid,
  .locations-section .container,
  .services-section .container,
  .doctors-section .container,
  .technology-section .container,
  .reviews-section .container,
  .contact-section .container,
  .site-footer .container {
    width: min(var(--max-text), calc(100% - 28px));
  }

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

  .hero-copy,
  .hero .lead,
  .hero-subline,
  .hero .eyebrow,
  .action-row {
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .button {
    width: 100%;
  }

  .hero-grid {
    padding: 82px 0 32px;
  }

  .hero-copy {
    gap: 20px;
  }

  .hero-points {
    margin-top: 18px;
    border-radius: 16px;
  }

  .trust-grid,
  .service-grid,
  .doctor-grid,
  .location-card-row,
  .review-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(5),
  .service-card:nth-child(6),
  .service-card:nth-child(7),
  .service-card:nth-child(8) {
    grid-column: auto;
    min-height: 315px;
  }

  .locations-showcase {
    padding: 22px 16px;
    box-shadow: 0 18px 48px rgba(53, 68, 63, 0.08);
  }

  .region-map {
    overflow: hidden;
  }

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

  .cta-panel {
    min-height: auto;
  }
}

/* Final Westpfalz map composition: pinned regional excerpt, matching the requested reference. */
.locations-section {
  padding: clamp(72px, 6vw, 104px) 0;
  background: linear-gradient(180deg, #fbfcf8 0%, #ffffff 52%, #f7f9f4 100%);
}

.locations-section .container {
  width: min(1780px, calc(100% - clamp(48px, 5vw, 96px)));
}

.locations-showcase {
  display: grid;
  grid-template-columns: minmax(420px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(50px, 5vw, 86px);
  align-items: start;
  padding: clamp(36px, 3.8vw, 58px) clamp(34px, 4.5vw, 70px) 28px;
  border: 1px solid rgba(220, 226, 214, 0.82);
  border-radius: 0;
  background:
    radial-gradient(circle at 17% 10%, rgba(143, 179, 36, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(250, 251, 247, 0.98));
  box-shadow: 0 28px 72px rgba(53, 68, 63, 0.1);
}

.locations-main {
  gap: clamp(42px, 4.8vw, 70px);
}

.locations-section .section-heading {
  gap: 20px;
  margin: 0;
  max-width: 760px;
}

.locations-section .section-heading h2 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 4.65vw, 5.65rem);
  line-height: 0.98;
}

.locations-section .section-heading p:not(.eyebrow) {
  max-width: 50ch;
  font-size: clamp(1.05rem, 1.15vw, 1.22rem);
  line-height: 1.75;
}

.locations-side {
  gap: clamp(40px, 4.8vw, 78px);
}

.region-map {
  min-height: clamp(465px, 31vw, 585px);
  background: transparent;
  overflow: visible;
}

.map-lines {
  inset: -32px auto auto -70px;
  width: min(720px, calc(100% + 136px));
  height: min(640px, calc(100% + 96px));
  opacity: 0.96;
  filter: drop-shadow(0 22px 42px rgba(143, 179, 36, 0.08));
}

.map-area {
  fill: rgba(143, 179, 36, 0.072);
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 7;
}

.map-boundary {
  fill: none;
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-route,
.map-route.main,
.map-water {
  stroke: rgba(255, 255, 255, 0.68);
  stroke-width: 3;
}

.map-route.soft {
  stroke-dasharray: 9 12;
}

.map-label {
  display: none;
}

.map-pin {
  gap: 12px;
  font-size: clamp(1rem, 1.05vw, 1.18rem);
}

.pin-dot {
  width: 28px;
  height: 28px;
  border-width: 5px;
  box-shadow: 0 10px 26px rgba(53, 68, 63, 0.2);
}

.pin-card strong {
  font-size: 1.08em;
}

.pin-lauterecken {
  left: 19%;
  top: 56%;
  flex-direction: row-reverse;
}

.pin-ulmet {
  left: 66%;
  top: 32%;
}

.pin-landstuhl {
  left: 56%;
  top: 78%;
  flex-direction: row-reverse;
}

.location-reasons {
  width: min(360px, 100%);
  margin-left: clamp(18px, 4vw, 70px);
}

.location-reasons div {
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 26px 0;
}

.reason-icon {
  width: 62px;
  height: 62px;
  background: rgba(143, 179, 36, 0.13);
}

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

.location-card-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 46px);
}

.locations-section .location-card {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(53, 68, 63, 0.09);
}

.locations-section .location-card img {
  aspect-ratio: 16 / 10.45;
  border-radius: 16px 16px 0 0;
}

.locations-section .location-card .card-body {
  padding: clamp(28px, 2.8vw, 42px);
  gap: 18px;
}

.locations-section .location-card h3 {
  font-size: clamp(1.9rem, 2.15vw, 2.55rem);
  line-height: 1.05;
  max-width: 10ch;
}

.locations-section .location-card .text-link {
  min-height: 58px;
  height: 58px;
  max-height: 58px;
  margin-top: 14px;
  border-color: rgba(143, 179, 36, 0.72);
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
}

.location-detail {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  align-items: start;
  line-height: 1.45;
}

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

.location-detail svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-benefit-strip {
  margin: clamp(0px, 1vw, 8px) clamp(28px, 3vw, 58px) 0;
  padding: clamp(28px, 3vw, 40px) clamp(26px, 3vw, 42px);
  border-radius: 18px;
  box-shadow: 0 20px 58px rgba(53, 68, 63, 0.08);
}

.location-benefit-strip div {
  grid-template-columns: 74px 1fr;
  column-gap: 18px;
  padding: 0 clamp(22px, 2.4vw, 42px);
}

.location-benefit-strip span {
  display: grid;
  place-items: center;
}

.location-benefit-strip svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.7;
}

@media (max-width: 1280px) {
  .locations-showcase {
    grid-template-columns: 1fr;
  }

  .region-map {
    width: min(620px, 100%);
  }

  .location-reasons {
    margin-left: 0;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .location-reasons div {
    border-bottom: 0;
    padding: 0;
  }
}

@media (max-width: 900px) {
  .locations-section .container {
    width: min(100% - 28px, 1780px);
  }

  .locations-showcase {
    padding: 28px 18px 20px;
  }

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

  .locations-section .section-heading h2 {
    font-size: clamp(2.4rem, 11vw, 3.7rem);
  }

  .region-map {
    min-height: 350px;
    overflow: hidden;
  }

  .map-lines {
    inset: -26px auto auto -92px;
    width: 620px;
    height: 450px;
  }

  .pin-lauterecken {
    left: 13%;
    top: 54%;
  }

  .pin-ulmet {
    left: 61%;
    top: 32%;
  }

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

  .location-benefit-strip {
    margin-inline: 0;
  }

  .location-benefit-strip div {
    min-height: 92px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
