:root {
  --bg: #e7eef6;
  --bg-strong: #d8e3ef;
  --surface: rgba(249, 252, 255, 0.88);
  --surface-strong: #fcfdff;
  --surface-deep: #d8e3ef;
  --text: #1b2c3f;
  --muted: #516478;
  --line: rgba(33, 56, 79, 0.15);
  --accent: #6b88a6;
  --accent-strong: #213c5d;
  --accent-soft: #c8d9e9;
  --warm: #b68a53;
  --shadow: 0 28px 72px rgba(28, 49, 74, 0.14);
  --radius-s: 1rem;
  --radius-m: 1.5rem;
  --radius-l: 2rem;
  --radius-xl: 2.5rem;
  --content-width: min(1320px, calc(100vw - 2rem));
}

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

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

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(84, 126, 172, 0.22), transparent 24%),
    linear-gradient(180deg, #f2f7fc 0%, var(--bg) 32%, #dfe8f2 100%);
  font-family: "Atkinson Hyperlegible Next", "Atkinson Hyperlegible", sans-serif;
  font-size: 19px;
  line-height: 1.72;
  font-weight: 500;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent 70%);
}

body.is-large-text {
  font-size: 22px;
}

body.is-high-contrast {
  --bg: #f8f4ed;
  --bg-strong: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-deep: #f1ece3;
  --text: #0f1712;
  --muted: #27342c;
  --line: rgba(15, 23, 18, 0.34);
  --accent: #3f5424;
  --accent-strong: #1f2a14;
  --accent-soft: #d6c098;
  --warm: #7a4c1d;
  --shadow: 0 18px 36px rgba(15, 23, 18, 0.08);
}

body.is-high-contrast::before {
  display: none;
}

body.is-high-contrast a {
  text-decoration-color: currentColor;
}

body.is-high-contrast .utility-bar,
body.is-high-contrast .nav-row,
body.is-high-contrast .section,
body.is-high-contrast .site-footer,
body.is-high-contrast .showcase-content,
body.is-high-contrast .showcase-card,
body.is-high-contrast .showcase-seal,
body.is-high-contrast .quick-card,
body.is-high-contrast .story-card,
body.is-high-contrast .topic-card,
body.is-high-contrast .pillar,
body.is-high-contrast .contact-card,
body.is-high-contrast .split-copy,
body.is-high-contrast .feature-panel-copy,
body.is-high-contrast .contact-copy {
  background: #ffffff;
  border-color: var(--line);
  backdrop-filter: none;
}

body.is-high-contrast .button-primary,
body.is-high-contrast .site-nav .nav-cta {
  background: #182212;
  box-shadow: none;
}

body.is-high-contrast .button-secondary,
body.is-high-contrast .utility-chip,
body.is-high-contrast .utility-button,
body.is-high-contrast .site-nav a {
  background: #ffffff;
  border-color: var(--accent-strong);
}

body.is-high-contrast .utility-button[aria-pressed="true"] {
  background: #182212;
  color: #ffffff;
  border-color: transparent;
}

body.is-high-contrast .section-heading blockquote,
body.is-high-contrast .feature-list li,
body.is-high-contrast .trust-list li,
body.is-high-contrast .gallery-control {
  background: #f4efe6;
  border-color: var(--line);
}

body.is-high-contrast .feature-list li::before,
body.is-high-contrast .trust-list li::before {
  background: var(--accent-strong);
  box-shadow: none;
}

body.is-high-contrast .gallery-control.is-active,
body.is-high-contrast .gallery-control[aria-pressed="true"] {
  background: #182212;
  color: #ffffff;
  border-color: transparent;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-color: rgba(109, 120, 72, 0.55);
  text-underline-offset: 0.18em;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  transform: translateY(-160%);
  background: var(--accent-strong);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  z-index: 100;
  text-decoration: none;
}

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

.page-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 3rem;
  max-width: 100%;
}

.site-header {
  position: relative;
  z-index: 20;
  padding-top: 1rem;
}

.utility-bar,
.nav-row,
.section,
.site-footer {
  backdrop-filter: blur(18px);
}

.utility-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(248, 252, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
}

.utility-bar > *,
.nav-row > *,
.showcase-overlay > *,
.showcase-panel > *,
.section-heading > *,
.section-quick > *,
.overview-grid > *,
.topic-grid > *,
.pillar-grid > *,
.lifestyle-grid > *,
.health-layout > *,
.health-grid > *,
.care-grid > *,
.split-panel > *,
.location-panel > *,
.contact-panel > *,
.feature-panel > *,
.care-feature > *,
.site-footer > * {
  min-width: 0;
}

.utility-address {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.utility-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: flex-end;
  overflow-x: auto;
  scrollbar-width: none;
}

.utility-actions::-webkit-scrollbar {
  display: none;
}

.utility-chip,
.utility-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.64rem 0.95rem;
  background: rgba(252, 254, 255, 0.9);
  text-decoration: none;
  flex: 0 0 auto;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.utility-chip {
  color: var(--text);
}

.utility-button {
  cursor: pointer;
}

.utility-button[aria-pressed="true"] {
  background: var(--accent-strong);
  color: #fff;
  border-color: transparent;
}

.nav-row {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(180deg, rgba(251, 254, 255, 0.88), rgba(240, 247, 253, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-l);
  box-shadow: 0 24px 64px rgba(26, 47, 70, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background:
    linear-gradient(145deg, var(--accent-soft), rgba(255, 255, 255, 0.82)),
    var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.brand-mark img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 1.15rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-nav a {
  text-decoration: none;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(72, 104, 138, 0.08);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, #28496f, #18314d);
  color: #fff;
}

.showcase,
.section,
.site-footer {
  position: relative;
}

.showcase {
  margin-top: 1.4rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius-xl) + 0.3rem);
  box-shadow: var(--shadow);
}

.showcase-stage {
  position: relative;
  min-height: 48rem;
  isolation: isolate;
}

.showcase-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 27, 44, 0.58) 0%, rgba(13, 27, 44, 0.22) 35%, rgba(13, 27, 44, 0.08) 100%),
    linear-gradient(180deg, rgba(16, 34, 54, 0.12) 0%, rgba(16, 34, 54, 0.1) 38%, rgba(16, 34, 54, 0.28) 100%);
  pointer-events: none;
  z-index: 0;
}

.showcase-slider {
  position: absolute;
  inset: 0;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 5s ease;
}

.showcase-slide.is-active {
  opacity: 1;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.showcase-slide.is-active img {
  transform: scale(1.08);
}

.showcase-slide[data-slide="0"] img {
  object-position: center 50%;
}

.showcase-slide[data-slide="1"] img {
  object-position: center 44%;
}

.showcase-slide[data-slide="2"] img {
  object-position: center 42%;
}

.showcase-slide[data-slide="3"] img {
  object-position: center 35%;
}

.showcase-overlay {
  position: relative;
  z-index: 1;
  min-height: 48rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 22rem);
  gap: 1.25rem;
  align-items: end;
  padding: 2.8rem;
}

.showcase-content {
  max-width: 44rem;
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 2.6rem 2.5rem 2.35rem;
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.88), rgba(238, 246, 252, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2.2rem;
  box-shadow: 0 30px 80px rgba(20, 41, 62, 0.18);
  backdrop-filter: blur(18px);
}

.showcase-content::before {
  display: none;
}

.showcase-content .lead {
  color: #32475d;
}

.showcase-panel {
  display: grid;
  gap: 1rem;
  align-self: end;
  min-width: 0;
}

.showcase-seal {
  width: 4.4rem;
  height: 4.4rem;
  margin-left: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(240, 247, 253, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.showcase-seal img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.showcase-card {
  max-width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.9), rgba(240, 247, 253, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 54px rgba(28, 49, 74, 0.14);
  border-radius: 1.85rem;
  padding: 1.35rem 1.45rem;
  backdrop-filter: blur(16px);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(182, 138, 83, 0.9), rgba(107, 136, 166, 0.72));
}

.showcase-card-news h2 {
  margin-top: 0.35rem;
  font-size: 1.62rem;
}

.showcase-card-news p {
  margin: 0.85rem 0;
  color: var(--muted);
}

.showcase-card-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  text-align: center;
}

.showcase-card-facts strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  color: var(--accent-strong);
}

.showcase-card-facts span {
  color: var(--muted);
  font-size: 0.94rem;
}

.showcase-controls {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.showcase-arrow,
.showcase-dot {
  pointer-events: auto;
  cursor: pointer;
}

.showcase-arrow {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(244, 249, 253, 0.9);
  color: var(--accent-strong);
  box-shadow: var(--shadow);
  font-size: 1.55rem;
}

.showcase-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.showcase-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(236, 244, 251, 0.58);
}

.showcase-dot.is-active {
  background: #ffffff;
  transform: scale(1.1);
}

.eyebrow,
.card-label {
  margin: 0 0 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--warm);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 9.6ch;
  font-size: clamp(3rem, 5.15vw, 5.45rem);
}

h2 {
  font-size: clamp(2.15rem, 3.15vw, 3.45rem);
}

h3 {
  font-size: 1.5rem;
}

.lead,
.section-intro {
  margin: 1.2rem 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-signature {
  margin: 1.05rem 0 0;
  color: var(--accent-strong);
  font-family: "Fraunces", serif;
  font-size: 1.14rem;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.92rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, #29486c, #162d47);
  color: #fff;
  box-shadow:
    0 22px 42px rgba(25, 46, 72, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-secondary {
  background: rgba(252, 254, 255, 0.92);
  border-color: rgba(33, 56, 79, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.trust-list,
.feature-list,
.pillar ul,
.contact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
  max-width: 34rem;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.92rem 1rem 0.92rem 0.95rem;
  border-radius: 1rem;
  background: rgba(247, 251, 255, 0.46);
  border: 1px solid rgba(33, 60, 93, 0.1);
  color: var(--text);
  font-weight: 600;
}

.trust-list li::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ea2c8, #29486c);
  box-shadow: 0 0 0 0.18rem rgba(126, 162, 200, 0.18);
}

.section {
  margin-top: 1.6rem;
  padding: 2rem;
  background: rgba(247, 251, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.section-quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.quick-card,
.story-card,
.topic-card,
.pillar,
.contact-card {
  max-width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 249, 253, 0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.45rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 16px 34px rgba(32, 52, 76, 0.06);
}

.quick-card::before,
.story-card::before,
.topic-card::before,
.pillar::before,
.contact-card::before,
.split-copy::before,
.feature-panel-copy::before,
.contact-copy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(182, 138, 83, 0.9), rgba(107, 136, 166, 0.24));
}

.quick-card h2 {
  margin-top: 0.3rem;
  font-size: 1.45rem;
}

.quick-card p:last-child,
.story-card p,
.topic-card p,
.pillar li,
.contact-card p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.phone-link {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 1rem 2rem;
  align-items: end;
}

.section-heading > :first-child {
  min-width: 0;
}

.section-heading .section-intro,
.section-heading blockquote {
  justify-self: end;
}

.section-heading blockquote {
  margin: 0;
  max-width: 18rem;
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--accent);
  background: rgba(96, 126, 160, 0.1);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  color: var(--accent-strong);
  font-family: "Fraunces", serif;
}

.overview-grid,
.topic-grid,
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.topic-grid-balanced {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.topic-grid-balanced > * {
  grid-column: span 2;
}

.topic-grid-balanced > :nth-child(n + 4) {
  grid-column: span 3;
}

.story-card,
.topic-card,
.pillar {
  display: grid;
  gap: 0.8rem;
}

.story-card a,
.topic-card a,
.feature-panel a,
.care-feature a,
.showcase-card a,
.contact-card a,
.pillar a {
  color: var(--accent-strong);
  font-weight: 700;
}

.section-split,
.section-location,
.section-contact,
.section-deep {
  overflow: clip;
}

.split-panel,
.location-panel,
.contact-panel {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  align-items: stretch;
}

.location-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: start;
}

.split-copy,
.feature-panel-copy,
.contact-copy {
  max-width: 100%;
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 249, 253, 0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
}

.split-image,
.health-image,
.location-image,
.location-map,
.care-feature figure,
.feature-panel figure {
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 100%;
  box-shadow: var(--shadow);
}

.split-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.9rem;
  padding: 0.95rem;
  min-height: auto;
  background: linear-gradient(180deg, rgba(252, 254, 255, 0.88), rgba(236, 244, 251, 0.82));
  border: 1px solid var(--line);
}

.split-image img,
.health-image img,
.location-image img,
.location-map img,
.care-feature figure img,
.feature-panel figure img {
  height: 100%;
  object-fit: cover;
}

.gallery-stage {
  position: relative;
  min-height: clamp(21rem, 34vw, 31rem);
  border-radius: calc(var(--radius-xl) - 0.45rem);
  overflow: hidden;
  background: rgba(33, 60, 93, 0.06);
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 260ms ease, transform 420ms ease;
}

.gallery-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.gallery-control {
  min-height: 3.4rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(33, 60, 93, 0.14);
  background: rgba(249, 252, 255, 0.84);
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gallery-control:hover,
.gallery-control:focus-visible {
  border-color: rgba(33, 60, 93, 0.28);
  transform: translateY(-1px);
}

.gallery-control.is-active,
.gallery-control[aria-pressed="true"] {
  background: var(--accent-strong);
  color: #ffffff;
  border-color: var(--accent-strong);
}

.location-visuals {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.location-copy {
  display: grid;
  align-content: start;
  gap: 1.35rem;
}

.location-actions {
  margin-top: 0.1rem;
}

.location-visuals-editorial {
  position: relative;
  gap: 0;
  padding-bottom: 1.2rem;
}

.location-visuals-editorial .location-image {
  position: relative;
  z-index: 1;
  width: min(100%, 39rem);
  margin: 0 0 0 auto;
  min-height: clamp(18rem, 28vw, 24rem);
}

.location-map {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
}

.location-visuals-editorial .location-map {
  position: relative;
  z-index: 2;
  width: min(88%, 33rem);
  margin: -2.75rem 0 0 auto;
  overflow: hidden;
}

.location-map figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.location-map img {
  height: auto;
  object-fit: contain;
}

.location-image img {
  object-position: center 54%;
}

.location-visuals-editorial .location-map img {
  display: block;
  width: 100%;
  height: 15rem;
  object-fit: cover;
  object-position: center 24%;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.98rem 1rem 0.98rem 0.95rem;
  background: rgba(96, 126, 160, 0.08);
  border-radius: 1rem;
  border: 1px solid rgba(96, 126, 160, 0.14);
  color: var(--text);
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--warm), var(--accent-strong));
  box-shadow: 0 0 0 0.18rem rgba(107, 136, 166, 0.12);
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(82, 114, 149, 0.14), rgba(255, 255, 255, 0.48)),
    rgba(244, 249, 254, 0.82);
}

.lifestyle-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "gastro gastro reisen"
    "werk park wellness";
  gap: 1.15rem;
}

.feature-panel,
.care-feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
}

.feature-panel-gastronomie {
  grid-area: gastro;
}

.feature-panel-gastronomie figure {
  align-self: start;
  min-height: 0;
  aspect-ratio: 1.08;
}

.feature-panel-gastronomie figure img {
  height: 100%;
  object-position: center 52%;
}

.topic-card-reisen {
  grid-area: reisen;
}

.topic-card-werkzentrum {
  grid-area: werk;
}

.topic-card-park {
  grid-area: park;
}

.topic-card-wellness {
  grid-area: wellness;
}

.health-layout {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
}

.health-grid,
.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.care-grid {
  margin-top: 1.8rem;
}

.care-grid-balanced {
  grid-template-areas:
    "service service"
    "ambulant stationaer"
    "seelsorge seelsorge";
}

.care-feature-service {
  grid-area: service;
}

.care-card-ambulant {
  grid-area: ambulant;
}

.care-card-stationaer {
  grid-area: stationaer;
}

.care-card-seelsorge {
  grid-area: seelsorge;
}

.section-deep {
  background:
    radial-gradient(circle at top right, rgba(95, 132, 172, 0.2), transparent 26%),
    rgba(245, 249, 254, 0.84);
}

.contact-panel {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.contact-card ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.site-footer {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  padding: 1.6rem;
  background: rgba(247, 251, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.site-footer p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
}

.footer-divider {
  color: rgba(81, 100, 120, 0.7);
}

.footer-directory {
  display: grid;
  gap: 1rem;
}

.footer-links,
.footer-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem 1rem;
}

.footer-links a,
.footer-meta a {
  color: var(--accent-strong);
  font-weight: 700;
}

body.is-large-text h1 {
  font-size: clamp(3.1rem, 5.2vw, 5.3rem);
}

body.is-large-text h2 {
  font-size: clamp(2.25rem, 3.4vw, 3.5rem);
}

body.is-large-text h3 {
  font-size: 1.65rem;
}

body.is-large-text .lead,
body.is-large-text .section-intro,
body.is-large-text .hero-signature {
  font-size: 1.22rem;
}

body.is-large-text .section-heading {
  grid-template-columns: 1fr;
  align-items: start;
}

body.is-large-text .section-heading .section-intro,
body.is-large-text .section-heading blockquote {
  justify-self: start;
}

body.is-large-text .utility-chip,
body.is-large-text .utility-button,
body.is-large-text .site-nav a,
body.is-large-text .button,
body.is-large-text .trust-list li {
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .utility-bar {
    grid-template-columns: 1fr;
  }

  .utility-actions {
    justify-content: flex-start;
  }

  .showcase-stage,
  .showcase-overlay {
    min-height: 38rem;
  }

  .showcase-overlay {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .showcase-content {
    max-width: none;
  }

  .showcase-panel {
    grid-template-columns: 4.4rem 1fr 1fr;
    align-items: start;
  }

  .showcase-card-facts {
    height: 100%;
  }

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

  .section-quick,
  .overview-grid,
  .topic-grid,
  .pillar-grid,
  .lifestyle-grid,
  .health-layout,
  .care-grid,
  .contact-panel,
  .split-panel,
  .location-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-panel,
  .care-feature {
    grid-column: span 2;
  }

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

  .topic-grid-balanced > *,
  .topic-grid-balanced > :nth-child(n + 4) {
    grid-column: auto;
  }

  .care-grid-balanced {
    grid-template-areas: none;
  }

  .lifestyle-grid {
    grid-template-areas: none;
  }

  .topic-card-reisen,
  .topic-card-werkzentrum,
  .topic-card-park,
  .topic-card-wellness,
  .care-feature-service,
  .care-card-ambulant,
  .care-card-stationaer,
  .care-card-seelsorge {
    grid-area: auto;
  }

  .gallery-controls {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 1240px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    background: rgba(255, 251, 246, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 1rem;
  }
}

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

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-shell {
    width: min(100vw - 1rem, 100%);
  }

  .utility-bar,
  .nav-row,
  .section,
  .site-footer {
    border-radius: var(--radius-l);
  }

  .site-header {
    padding-top: 0.5rem;
  }

  .section-quick,
  .overview-grid,
  .topic-grid,
  .pillar-grid,
  .lifestyle-grid,
  .health-layout,
  .health-grid,
  .care-grid,
  .split-panel,
  .location-panel,
  .contact-panel,
  .feature-panel,
  .care-feature,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .care-feature {
    grid-column: auto;
  }

  .topic-grid-balanced > *,
  .topic-grid-balanced > :nth-child(n + 4) {
    grid-column: auto;
  }

  .care-grid-balanced {
    grid-template-areas: none;
  }

  .lifestyle-grid {
    grid-template-areas: none;
  }

  .topic-card-reisen,
  .topic-card-werkzentrum,
  .topic-card-park,
  .topic-card-wellness,
  .care-feature-service,
  .care-card-ambulant,
  .care-card-stationaer,
  .care-card-seelsorge {
    grid-area: auto;
  }

  .utility-bar,
  .nav-row,
  .section {
    padding: 1rem;
  }

  .gallery-stage {
    min-height: 18rem;
  }

  .showcase-stage,
  .showcase-overlay {
    min-height: auto;
  }

  .showcase-stage::after {
    inset: 0 0 auto 0;
    height: 15rem;
  }

  .showcase-slider {
    position: relative;
    height: 15rem;
  }

  .showcase-overlay {
    margin-top: 0;
    padding: 0.75rem 0.75rem 1rem;
  }

  .showcase-content {
    padding: 1.2rem;
  }

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

  .location-visuals-editorial {
    gap: 1rem;
    padding-bottom: 0;
  }

  .location-visuals-editorial .location-image,
  .location-visuals-editorial .location-map {
    width: 100%;
    margin: 0;
  }

  .location-visuals-editorial .location-map img {
    height: auto;
    object-fit: contain;
  }

  .utility-actions {
    width: 100%;
  }

  .showcase-controls {
    position: static;
    margin: 0;
    padding: 0 1rem 1rem;
  }

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

  .footer-links,
  .footer-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.15rem, 10.8vw, 2.85rem);
  }

  .utility-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .utility-chip,
  .utility-button {
    width: 100%;
  }

  .showcase-content {
    padding: 1.05rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .showcase-stage::after,
  .showcase-slider {
    height: 12.5rem;
  }

  .showcase-card-facts {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .showcase-controls {
    justify-content: center;
  }

  .showcase-arrow {
    display: none;
  }
}

/* Modern Study */
:root {
  --bg: #f1eee8;
  --bg-strong: #e4e6db;
  --surface: rgba(255, 250, 244, 0.84);
  --surface-strong: #fffdf8;
  --surface-deep: #dde6dd;
  --text: #14201b;
  --muted: #4d5a54;
  --line: rgba(20, 32, 27, 0.1);
  --accent: #4a8b73;
  --accent-strong: #16372d;
  --accent-soft: #dce8df;
  --warm: #c56e42;
  --shadow: 0 32px 70px rgba(18, 28, 23, 0.12);
  --content-width: min(1380px, calc(100vw - 2rem));
  --radius-l: 1.7rem;
  --radius-xl: 2.2rem;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(197, 110, 66, 0.14), transparent 20%),
    radial-gradient(circle at 72% 28%, rgba(74, 139, 115, 0.12), transparent 18%),
    linear-gradient(180deg, #f7f4ef 0%, var(--bg) 34%, #ebe7de 100%);
  font-family: "Manrope", "Atkinson Hyperlegible Next", "Atkinson Hyperlegible", sans-serif;
  font-size: 18px;
}

body::before {
  background-image: radial-gradient(rgba(21, 32, 28, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 78%);
}

.utility-bar,
.nav-row,
.section,
.site-footer {
  backdrop-filter: blur(16px);
}

.utility-bar {
  background: rgba(255, 253, 249, 0.76);
  border-color: rgba(20, 32, 27, 0.08);
  box-shadow: 0 20px 54px rgba(17, 28, 22, 0.08);
}

.utility-address {
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.utility-chip,
.utility-button {
  min-height: 2.7rem;
  padding: 0.64rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(20, 32, 27, 0.08);
}

.nav-row {
  background: rgba(255, 252, 247, 0.86);
  border-color: rgba(20, 32, 27, 0.08);
  border-radius: 1.9rem;
  box-shadow: 0 24px 64px rgba(17, 28, 22, 0.1);
}

.brand-mark {
  width: 3.35rem;
  height: 3.35rem;
  background:
    linear-gradient(135deg, rgba(74, 139, 115, 0.18), rgba(255, 255, 255, 0.9)),
    #fff;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: "Sora", "Manrope", sans-serif;
}

.brand-copy strong {
  letter-spacing: -0.04em;
}

.brand-copy small {
  font-size: 0.86rem;
}

.site-nav {
  gap: 0.45rem;
}

.site-nav a {
  padding: 0.78rem 0.96rem;
  border-radius: 1rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(22, 55, 45, 0.06);
}

.site-nav .nav-cta,
.button-primary {
  background: linear-gradient(135deg, #17352c, #2f7258);
  box-shadow: 0 18px 38px rgba(31, 78, 62, 0.26);
}

.button,
.button-secondary {
  border-radius: 1.1rem;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(20, 32, 27, 0.1);
  color: var(--accent-strong);
}

.showcase {
  margin-top: 1.25rem;
  border-color: rgba(20, 32, 27, 0.08);
  border-radius: 2.25rem;
  box-shadow: 0 38px 90px rgba(18, 28, 23, 0.16);
}

.showcase-stage {
  min-height: 50rem;
}

.showcase-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(74, 139, 115, 0.16), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(197, 110, 66, 0.14), transparent 20%);
  pointer-events: none;
  z-index: 0;
}

.showcase-stage::after {
  background:
    linear-gradient(90deg, rgba(9, 15, 12, 0.58) 0%, rgba(9, 15, 12, 0.26) 35%, rgba(9, 15, 12, 0.08) 68%, rgba(9, 15, 12, 0.22) 100%),
    linear-gradient(180deg, rgba(10, 16, 13, 0.06) 0%, rgba(10, 16, 13, 0.08) 42%, rgba(10, 16, 13, 0.32) 100%);
}

.showcase-overlay {
  min-height: 50rem;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 23rem);
  gap: 1.6rem;
  padding: 3rem;
  align-items: stretch;
}

.showcase-content {
  align-self: end;
  max-width: 39rem;
  padding: 2.5rem;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.92), rgba(249, 243, 236, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 2.1rem;
  box-shadow: 0 30px 70px rgba(11, 18, 14, 0.2);
}

.eyebrow,
.card-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(22, 55, 45, 0.08);
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--accent-strong);
}

h1,
h2,
h3 {
  letter-spacing: -0.07em;
  line-height: 0.95;
}

h1 {
  max-width: 7.8ch;
  font-size: clamp(3.1rem, 6vw, 6rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 4rem);
}

h3 {
  font-size: 1.38rem;
}

.lead,
.section-intro {
  font-size: 1.08rem;
  color: #42524a;
}

.hero-signature {
  margin-top: 1.05rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(22, 55, 45, 0.74);
}

.hero-actions {
  margin-top: 1.5rem;
  gap: 0.8rem;
}

.button {
  min-height: 3.4rem;
  padding: 0.88rem 1.25rem;
  font-size: 0.98rem;
}

.trust-list {
  margin-top: 1.3rem;
  max-width: none;
}

.trust-list li {
  display: grid;
  grid-template-columns: 0.7rem minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  border-radius: 1.15rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(20, 32, 27, 0.08);
  font-size: 0.92rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.trust-list li::before {
  background: linear-gradient(135deg, #c56e42, #2f7258);
  box-shadow: 0 0 0 0.18rem rgba(74, 139, 115, 0.12);
  margin-top: 0.28rem;
}

.showcase-panel {
  grid-template-rows: auto auto auto;
  align-content: end;
  align-self: stretch;
}

.showcase-seal {
  width: 4rem;
  height: 4rem;
  margin-top: 0.2rem;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(20, 32, 27, 0.08);
}

.showcase-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(252, 245, 238, 0.88));
  border-color: rgba(20, 32, 27, 0.08);
  box-shadow: 0 24px 52px rgba(18, 28, 23, 0.12);
}

.showcase-card::before {
  height: 3px;
  background: linear-gradient(90deg, #2f7258, #c56e42);
}

.showcase-card-news h2 {
  font-size: 1.65rem;
}

.showcase-card-news {
  align-self: start;
}

.showcase-card-news p,
.showcase-card-facts span {
  color: #4e5e58;
}

.showcase-card-facts strong {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.55rem;
}

.showcase-card-facts {
  align-self: start;
}

.showcase-controls {
  left: 3rem;
  right: auto;
  bottom: 1.55rem;
  width: auto;
  justify-content: center;
  padding: 0.55rem 0.7rem;
  background: rgba(15, 24, 19, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.showcase-arrow {
  width: 2.55rem;
  height: 2.55rem;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.showcase-dots {
  gap: 0.45rem;
}

.showcase-dot {
  width: 0.62rem;
  height: 0.62rem;
  border: 0;
  background: rgba(255, 255, 255, 0.32);
}

.showcase-dot.is-active {
  background: #ffffff;
  transform: scale(1.3);
}

.section {
  margin-top: 1.85rem;
  padding: 2.35rem;
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(20, 32, 27, 0.08);
  box-shadow: 0 24px 56px rgba(18, 28, 23, 0.08);
}

.section-quick {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.quick-card {
  position: relative;
  padding: 1.7rem;
  min-height: 13rem;
  border-color: rgba(20, 32, 27, 0.08);
  box-shadow: 0 18px 38px rgba(18, 28, 23, 0.08);
}

.section-quick .quick-card:nth-child(1) {
  grid-column: span 7;
  background: linear-gradient(135deg, rgba(17, 31, 26, 0.96), rgba(37, 69, 57, 0.92));
  color: #f7fbf8;
}

.section-quick .quick-card:nth-child(1) p,
.section-quick .quick-card:nth-child(1) .card-label {
  color: rgba(247, 251, 248, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.section-quick .quick-card:nth-child(2) {
  grid-column: span 5;
  background: linear-gradient(180deg, rgba(235, 244, 239, 0.94), rgba(223, 236, 228, 0.94));
}

.section-quick .quick-card:nth-child(3) {
  grid-column: span 4;
  background: linear-gradient(180deg, rgba(255, 244, 237, 0.96), rgba(251, 232, 220, 0.94));
}

.section-quick .quick-card:nth-child(4) {
  grid-column: span 8;
  background: linear-gradient(180deg, rgba(244, 248, 251, 0.96), rgba(231, 239, 246, 0.94));
}

.section-quick .quick-card:nth-child(1)::after,
.section-quick .quick-card:nth-child(2)::after,
.section-quick .quick-card:nth-child(3)::after,
.section-quick .quick-card:nth-child(4)::after {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(20, 32, 27, 0.32);
}

.section-quick .quick-card:nth-child(1)::after {
  content: "01";
  color: rgba(255, 255, 255, 0.28);
}

.section-quick .quick-card:nth-child(2)::after {
  content: "02";
}

.section-quick .quick-card:nth-child(3)::after {
  content: "03";
}

.section-quick .quick-card:nth-child(4)::after {
  content: "04";
}

.quick-card h2 {
  max-width: 11ch;
  font-size: 1.6rem;
}

.section-heading {
  gap: 1rem 3rem;
  align-items: start;
}

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

.section-heading .section-intro {
  position: relative;
  max-width: 30rem;
  margin: 0;
  padding: 1.2rem 1.25rem 1.15rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 248, 252, 0.82));
  border: 1px solid rgba(20, 32, 27, 0.08);
  box-shadow: 0 16px 32px rgba(18, 28, 23, 0.05);
}

.section-heading .section-intro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 1.35rem 1.35rem 0 0;
  background: linear-gradient(90deg, rgba(197, 110, 66, 0.9), rgba(74, 139, 115, 0.5));
}

.section-heading blockquote {
  max-width: 22rem;
  padding: 1.2rem 1.3rem;
  border-left: 0;
  border-top: 4px solid transparent;
  background: linear-gradient(135deg, rgba(17, 31, 26, 0.96), rgba(37, 69, 57, 0.9));
  border-radius: 1.5rem;
  color: #f5fbf8;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
}

.overview-grid,
.topic-grid,
.pillar-grid,
.lifestyle-grid,
.health-grid,
.care-grid {
  gap: 1.1rem;
}

.story-card,
.topic-card,
.pillar,
.contact-card,
.split-copy,
.feature-panel-copy,
.contact-copy,
.quick-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 244, 238, 0.88));
  border-color: rgba(20, 32, 27, 0.08);
  box-shadow: 0 18px 40px rgba(18, 28, 23, 0.06);
}

.story-card,
.topic-card,
.pillar,
.contact-card {
  padding: 1.55rem;
}

.story-card a,
.topic-card a,
.feature-panel a,
.care-feature a,
.showcase-card a,
.contact-card a,
.pillar a {
  color: var(--accent-strong);
}

.feature-list li {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(20, 32, 27, 0.08);
}

.feature-list li::before {
  background: linear-gradient(135deg, #c56e42, #2f7258);
  box-shadow: 0 0 0 0.18rem rgba(74, 139, 115, 0.12);
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(14, 25, 21, 0.96), rgba(26, 42, 56, 0.92)),
    rgba(17, 31, 26, 0.98);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-accent .eyebrow,
.section-accent .card-label {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 251, 248, 0.78);
}

.section-accent h2,
.section-accent h3,
.section-accent a,
.section-accent blockquote,
.section-deep h2,
.section-deep h3 {
  color: #f5fbf8;
}

.section-accent .section-intro,
.section-accent p,
.section-accent li,
.section-deep .section-intro {
  color: rgba(245, 251, 248, 0.76);
}

.section-accent .section-heading .section-intro {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section-accent .section-heading .section-intro::before {
  background: linear-gradient(90deg, rgba(255, 209, 155, 0.95), rgba(190, 219, 255, 0.62));
}

.section-deep h2,
.section-deep h3,
.section-deep .card-label,
.section-deep .section-intro,
.section-deep .topic-card p,
.section-deep .care-feature p,
.section-deep .feature-panel-copy p {
  color: var(--accent-strong);
}

.section-deep .section-heading .section-intro {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(20, 32, 27, 0.08);
  color: #42524a;
}

.section-deep .section-heading h2 {
  color: #17352c;
}

.section-deep .topic-card,
.section-deep .care-feature,
.section-deep .care-feature > div {
  color: var(--text);
}

.contact-copy .button-secondary {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.42);
  color: #17352c;
}

.section-accent .feature-panel,
.section-accent .topic-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section-accent .feature-panel-copy,
.section-accent .topic-card {
  background: rgba(255, 255, 255, 0.08);
}

.section-deep {
  background:
    radial-gradient(circle at top right, rgba(197, 110, 66, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.74);
}

.split-panel,
.location-panel,
.contact-panel {
  gap: 1.3rem;
}

.location-visuals-editorial .location-image {
  width: min(100%, 35rem);
}

.location-visuals-editorial .location-map {
  width: min(84%, 30rem);
}

.contact-copy {
  background: linear-gradient(135deg, rgba(17, 31, 26, 0.96), rgba(37, 69, 57, 0.92));
  color: #f5fbf8;
}

.contact-copy p {
  color: rgba(245, 251, 248, 0.78);
}

.contact-copy .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 251, 248, 0.78);
}

.site-footer {
  margin-top: 2.2rem;
  background: linear-gradient(180deg, rgba(17, 31, 26, 0.96), rgba(24, 39, 33, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(245, 251, 248, 0.86);
}

.site-footer p,
.site-footer a {
  color: rgba(245, 251, 248, 0.76);
}

@media (min-width: 1121px) {
  .showcase-content {
    margin-bottom: 1rem;
  }

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

@media (max-width: 1260px) and (min-width: 981px) {
  .showcase-overlay {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 20rem);
    gap: 1.1rem;
    padding: 2.2rem;
  }

  .showcase-content {
    max-width: 34rem;
    padding: 2rem;
  }

  h1 {
    max-width: 6.9ch;
    font-size: clamp(2.9rem, 4.8vw, 4.7rem);
  }

  .showcase-card-news h2 {
    font-size: 1.42rem;
  }

  .showcase-card-facts strong {
    font-size: 1.35rem;
  }

  .showcase-card-facts span {
    font-size: 0.84rem;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .button {
    min-width: 0;
  }
}

@media (max-width: 1120px) {
  .showcase-stage {
    min-height: auto;
  }

  .showcase-overlay {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem;
    align-items: end;
  }

  .showcase-content {
    max-width: none;
  }

  .showcase-panel {
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
    grid-template-areas: "news facts";
    gap: 0.9rem;
    align-items: stretch;
  }

  .showcase-seal {
    display: none;
  }

  .showcase-card-news {
    grid-area: news;
    min-height: 100%;
  }

  .showcase-card-facts {
    grid-area: facts;
    align-content: center;
  }

  .section-quick .quick-card:nth-child(1),
  .section-quick .quick-card:nth-child(2),
  .section-quick .quick-card:nth-child(3),
  .section-quick .quick-card:nth-child(4) {
    grid-column: span 6;
  }

  .showcase-content {
    max-width: 35rem;
  }
}

@media (max-width: 980px) {
  .showcase {
    overflow: hidden;
  }

  .showcase-stage {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .showcase-slider {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    height: 15.5rem;
  }

  .showcase-stage::after {
    inset: 0 0 auto 0;
    height: 15.5rem;
  }

  .showcase-overlay {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: stretch;
    padding: 0 0 1rem;
  }

  .showcase-content {
    order: 1;
    max-width: none;
    margin: -2rem 0.75rem 0;
    padding: 1.35rem;
    border-radius: 1.6rem;
  }

  .showcase-panel {
    order: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin: 0 0.75rem;
    align-self: stretch;
  }

  .showcase-seal {
    display: none;
  }

  .showcase-card {
    padding: 1.2rem 1.15rem;
    border-radius: 1.5rem;
  }

  .showcase-card-news h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

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

  .showcase-controls {
    position: static;
    order: 3;
    align-self: center;
    width: auto;
    margin-top: 0.1rem;
    padding: 0.55rem 0.7rem;
    left: auto;
    right: auto;
  }

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

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

  .feature-panel,
  .care-feature {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .feature-panel figure,
  .care-feature figure {
    order: -1;
    aspect-ratio: 16 / 11;
  }

  .topic-card-reisen,
  .topic-card-werkzentrum,
  .topic-card-park,
  .topic-card-wellness,
  .care-feature-service,
  .care-card-ambulant,
  .care-card-stationaer,
  .care-card-seelsorge {
    grid-area: auto !important;
  }

  .topic-card,
  .story-card,
  .pillar,
  .contact-card,
  .split-copy,
  .feature-panel-copy,
  .care-feature,
  .care-card {
    min-height: auto;
  }

  .section-quick .quick-card:nth-child(1),
  .section-quick .quick-card:nth-child(2),
  .section-quick .quick-card:nth-child(3),
  .section-quick .quick-card:nth-child(4) {
    grid-column: auto;
  }

  .section-heading blockquote {
    max-width: none;
  }

  .section-accent .feature-panel,
  .section-accent .topic-card {
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  .section,
  .utility-bar,
  .nav-row {
    border-radius: 1.35rem;
  }

  .showcase,
  .showcase-content,
  .showcase-card {
    border-radius: 1.45rem;
  }

  .showcase-slider {
    height: 12.75rem;
  }

  .showcase-stage::after {
    height: 12.75rem;
  }

  .showcase-content {
    margin: -1.75rem 0.625rem 0;
    padding: 1.1rem;
  }

  .showcase-panel {
    margin: 0 0.625rem;
  }

  .showcase-card-facts {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .quick-card {
    min-height: auto;
    padding: 1.2rem;
  }
}
