@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --color-primary: #006b70;
  --color-primary-dark: #00585c;
  --color-primary-soft: #d8f0ef;
  --color-secondary: #00a2aa;
  --color-accent: #9a721c;
  --gold: var(--color-accent);
  --gold-soft: var(--color-accent-soft);
  --color-accent-dark: #74520d;
  --color-accent-soft: #f3e8c8;
  --color-ink: #243535;
  --color-text: #344545;
  --color-muted: #637373;
  --color-icon: #748585;
  --color-mist: #d8f0ef;
  --mist: var(--color-mist);
  --teal-900: var(--color-primary-dark);
  --color-border: #c7d6d4;
  --border: var(--color-border);
  --color-surface: #ffffff;
  --color-background: #f7faf9;
  --color-background-warm: #fbf8f2;
  --color-error: #a82424;
  --color-success: #12633f;
  --shadow-soft: 0 14px 34px rgb(0 60 62 / 7%);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --target-size: 44px;
  --shell: 1240px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 3rem;
  --space-7: 3.5rem;
  color-scheme: light;
  font-family: "Inter", "Noto Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: inherit;
}

body,
button,
input,
textarea {
  font-size: 1rem;
}

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

a {
  color: var(--color-primary-dark);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--color-primary);
}

button,
input,
textarea {
  font: inherit;
}

button,
.button,
.menu-button,
.mobile-call {
  min-width: var(--target-size);
  min-height: var(--target-size);
}

button,
.button {
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

:focus-visible {
	outline: 3px solid #003f42;
  outline-offset: 3px;
	box-shadow: 0 0 0 6px #fff;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-160%);
}

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

.button {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.25rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.button:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.button--secondary {
  border: 1px solid var(--color-accent);
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
}

.button--secondary:hover {
  border-color: var(--color-accent-dark);
  background: var(--color-accent-dark);
  color: #fff;
}

.button--compact {
  padding-inline: 1rem;
  font-size: 0.94rem;
}

.utility-bar {
  border-bottom: 1px solid var(--color-border);
  background: #eef5f4;
  color: var(--color-text);
  font-size: 0.875rem;
}

.utility-bar__inner {
  display: flex;
  min-height: var(--target-size);
  align-items: center;
  gap: 1rem;
}

.utility-link {
  font-weight: 750;
  white-space: nowrap;
}

.utility-address {
  flex: 1;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.language-switcher ul {
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
}

.language-switcher :is(a, span) {
	display: inline-flex;
	min-height: var(--target-size);
	align-items: center;
}

.language-switch,
.plain-button {
  min-height: var(--target-size);
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  font-weight: 650;
}

.plain-button {
  padding: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.main-header {
  display: grid;
  min-height: 88px;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: center;
  gap: 1.5rem;
}

.site-header {
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--color-text);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-weight: 780;
  line-height: 1.15;
  text-decoration: none;
}

.brand__logo {
  width: 72px;
  max-height: 58px;
  object-fit: contain;
}

.brand__name {
  max-width: 280px;
}

.primary-navigation > ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(0.6rem, 1.2vw, 1.25rem);
  list-style: none;
}

.primary-navigation a {
  display: inline-flex;
  min-height: var(--target-size);
  align-items: center;
  color: var(--color-text);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-navigation a:hover {
  color: var(--color-accent-dark);
}

.nav-item--group {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, auto) var(--target-size);
  align-items: center;
}

.nav-group__link {
  min-width: 0;
}

.nav-submenu-toggle {
  display: inline-grid;
  width: var(--target-size);
  min-width: var(--target-size);
  min-height: var(--target-size);
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.nav-submenu-toggle::after {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid var(--color-icon);
  border-bottom: 1.5px solid var(--color-icon);
  content: "";
  transform: translateY(-0.15rem) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-submenu-toggle[aria-expanded="true"]::after {
  transform: translateY(0.1rem) rotate(225deg);
}

.nav-group__link:hover,
.nav-group__link:focus-visible,
.nav-submenu-toggle:hover,
.nav-submenu-toggle:focus-visible,
.nav-submenu-toggle[aria-expanded="true"] {
  color: var(--color-accent-dark);
}

.nav-submenu-toggle[aria-expanded="true"]::after {
  border-right-color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.nav-submenu {
  position: absolute;
  z-index: 30;
  top: calc(100% - 0.15rem);
  left: -1rem;
  display: none;
  width: min(330px, 80vw);
  max-height: min(65vh, 520px);
  margin: 0;
  padding: 0.65rem;
  overflow-y: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-soft);
  list-style: none;
}

.nav-item--group.is-open > .nav-submenu {
  display: grid;
}

.nav-submenu[hidden] {
  display: none;
}

.nav-submenu a {
  width: 100%;
  min-height: 40px;
  padding: 0.55rem 0.65rem;
  border-radius: 0.4rem;
  font-size: 0.88rem;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: var(--color-accent-soft);
}

.menu-button {
  display: none;
  padding-inline: 1rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}

.search-row {
  position: relative;
  padding-block: 0 1rem;
}

.site-search {
  display: flex;
  max-width: 680px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.site-search input {
  min-width: 0;
  min-height: var(--target-size);
  flex: 1;
  border: 0;
  padding-inline: 1rem;
  background: transparent;
}

.site-search button {
  padding-inline: 1.25rem;
  border-radius: 0;
  background: var(--color-primary-dark);
  color: #fff;
  font-weight: 700;
}

[data-search-results] {
  position: absolute;
  z-index: 30;
  top: calc(100% - 1rem);
  right: 0;
  width: min(680px, 100%);
  max-height: 420px;
  overflow: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

[data-search-results] ul {
  margin: 0;
  padding: 0.5rem;
  list-style: none;
}

[data-search-results] a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 6px;
  color: var(--color-text);
  text-decoration: none;
}

[data-search-results] a:hover {
  background: var(--color-primary-soft);
}

[data-search-results] p {
  margin: 0;
  padding: 1rem;
}

.accessibility-panel {
  background: #111;
  color: #fff;
}

.accessibility-panel__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.accessibility-panel button {
  padding-inline: 1rem;
  border: 2px solid #fff;
  background: #111;
  color: #fff;
}

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

.section--compact {
  padding-block: var(--space-6);
}

.section--white {
  background: #fff;
}

.section--warm {
  background: #fbf8f2;
}

.section--teal {
  background: var(--color-primary-dark);
  color: #fff;
}

.section-heading {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin-bottom: var(--space-4);
  text-align: center;
}

.hero__content::before,
.section-heading::before {
  display: none;
}

.section-heading::before {
  position: absolute;
  z-index: -1;
  inset: -1.35rem clamp(8%, 14vw, 20%);
  border-radius: 0;
  background:
    repeating-radial-gradient(
      ellipse at 47% 52%,
      rgb(0 107 112 / 1.8%) 0 1px,
      transparent 3px 13px
    ),
    repeating-radial-gradient(
      ellipse at 58% 45%,
      rgb(0 162 170 / 1.2%) 0 2px,
      transparent 4px 19px
    ),
    radial-gradient(
      ellipse at 28% 45%,
      rgb(0 162 170 / 8%) 0,
      rgb(0 162 170 / 3%) 48%,
      transparent 78%
    ),
    radial-gradient(
      ellipse at 72% 58%,
      rgb(0 107 112 / 4%) 0,
      rgb(0 107 112 / 1.5%) 52%,
      transparent 82%
    ),
    radial-gradient(
      ellipse at 63% 42%,
      rgb(154 114 28 / 5%) 0,
      rgb(154 114 28 / 1.5%) 48%,
      transparent 80%
    ),
    radial-gradient(
      ellipse at center,
      rgb(216 240 239 / 42%) 0,
      rgb(216 240 239 / 18%) 58%,
      transparent 88%
    );
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 50%,
    #000 0 38%,
    rgb(0 0 0 / 78%) 54%,
    rgb(0 0 0 / 36%) 68%,
    rgb(0 0 0 / 8%) 82%,
    transparent 94%
  );
  mask-image: radial-gradient(
    ellipse at 50% 50%,
    #000 0 38%,
    rgb(0 0 0 / 78%) 54%,
    rgb(0 0 0 / 36%) 68%,
    rgb(0 0 0 / 8%) 82%,
    transparent 94%
  );
  content: "";
  filter: blur(18px) saturate(0.82);
  opacity: 0.58;
  pointer-events: none;
  transform: rotate(-0.8deg);
}

.section--teal .section-heading::before {
  opacity: 0.18;
}

.section-heading > p:not(.eyebrow) {
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section--teal .eyebrow {
  color: #f2d985;
}

.section--teal h1,
.section--teal h2,
.section--teal h3 {
  color: #fff;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--color-ink);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 3.3vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.3;
}

p {
  max-width: 72ch;
}

.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3rem, 4vw, 4rem);
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.hero .shell {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero__content {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__content::before {
  position: absolute;
  z-index: -1;
  inset: -2rem -1.5rem;
  border-radius: 0;
  background:
    repeating-radial-gradient(
      ellipse at 45% 54%,
      rgb(0 107 112 / 2%) 0 1px,
      transparent 3px 14px
    ),
    repeating-radial-gradient(
      ellipse at 59% 43%,
      rgb(0 162 170 / 1.4%) 0 2px,
      transparent 4px 21px
    ),
    radial-gradient(
      ellipse at 30% 35%,
      rgb(0 162 170 / 10%) 0,
      rgb(0 162 170 / 4%) 46%,
      transparent 78%
    ),
    radial-gradient(
      ellipse at 74% 68%,
      rgb(0 107 112 / 5%) 0,
      rgb(0 107 112 / 2%) 52%,
      transparent 82%
    ),
    radial-gradient(
      ellipse at 78% 26%,
      rgb(154 114 28 / 6%) 0,
      rgb(154 114 28 / 1.8%) 46%,
      transparent 80%
    ),
    radial-gradient(
      ellipse at center,
      rgb(216 240 239 / 52%) 0,
      rgb(216 240 239 / 22%) 58%,
      transparent 90%
    );
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 50%,
    #000 0 36%,
    rgb(0 0 0 / 76%) 52%,
    rgb(0 0 0 / 34%) 68%,
    rgb(0 0 0 / 7%) 83%,
    transparent 95%
  );
  mask-image: radial-gradient(
    ellipse at 50% 50%,
    #000 0 36%,
    rgb(0 0 0 / 76%) 52%,
    rgb(0 0 0 / 34%) 68%,
    rgb(0 0 0 / 7%) 83%,
    transparent 95%
  );
  content: "";
  filter: blur(20px) saturate(0.78);
  opacity: 0.64;
  pointer-events: none;
  transform: rotate(-1.5deg);
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 3.3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.18;
}

.hero__content > p:not(.eyebrow) {
  max-width: 48ch;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-3);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__media {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: clamp(500px, 42vw, 620px);
  overflow: visible;
  border-radius: var(--radius-lg);
}

.hero__media::before {
  position: absolute;
  z-index: -1;
  inset: 16px -14px -14px 16px;
  border-radius: 0;
  background:
    repeating-radial-gradient(
      ellipse at 52% 49%,
      rgb(0 107 112 / 2.2%) 0 1px,
      transparent 3px 15px
    ),
    repeating-radial-gradient(
      ellipse at 62% 58%,
      rgb(0 162 170 / 1.5%) 0 2px,
      transparent 4px 22px
    ),
    radial-gradient(
      ellipse at 68% 78%,
      rgb(0 162 170 / 13%) 0,
      rgb(0 162 170 / 5%) 48%,
      transparent 80%
    ),
    radial-gradient(
      ellipse at 32% 28%,
      rgb(0 107 112 / 6%) 0,
      rgb(0 107 112 / 2%) 50%,
      transparent 84%
    ),
    radial-gradient(
      ellipse at 76% 72%,
      rgb(154 114 28 / 6%) 0,
      rgb(154 114 28 / 1.8%) 48%,
      transparent 82%
    ),
    radial-gradient(
      ellipse at center,
      rgb(216 240 239 / 58%) 0,
      rgb(216 240 239 / 24%) 58%,
      transparent 90%
    );
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 50%,
    #000 0 42%,
    rgb(0 0 0 / 78%) 58%,
    rgb(0 0 0 / 36%) 72%,
    rgb(0 0 0 / 8%) 84%,
    transparent 95%
  );
  mask-image: radial-gradient(
    ellipse at 50% 50%,
    #000 0 42%,
    rgb(0 0 0 / 78%) 58%,
    rgb(0 0 0 / 36%) 72%,
    rgb(0 0 0 / 8%) 84%,
    transparent 95%
  );
  content: "";
  filter: blur(14px) saturate(0.82);
  opacity: 0.68;
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.urgent-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: none;
  margin: 0;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 10px 28px rgb(16 47 47 / 14%);
  color: #243535 !important;
  font-size: clamp(0.82rem, 0.85vw, 0.95rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

.audience-grid,
.service-grid,
.documents-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

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

.audience-card,
.service-card,
.document-card,
.news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.audience-card {
  min-height: 260px;
  align-items: center;
  text-align: center;
}

.audience-card__icon,
.document-card__icon {
  position: relative;
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(154 114 28 / 16%);
  border-radius: 50% 46% 54% 48% / 46% 54% 48% 52%;
  background:
    radial-gradient(circle at 30% 22%, rgb(255 255 255 / 96%), transparent 34%),
    linear-gradient(145deg, rgb(216 240 239 / 88%), rgb(243 232 200 / 64%));
  color: var(--color-primary-dark);
  box-shadow:
    0 11px 26px rgb(0 88 92 / 9%),
    inset 0 0 0 0.3rem rgb(255 255 255 / 32%);
}

.audience-card__icon::after,
.document-card__icon::after {
  position: absolute;
  right: 0.2rem;
  bottom: 0.3rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #c8a75a;
  box-shadow: 0 0 0 0.24rem rgb(200 167 90 / 12%);
  content: "";
}

.audience-card__icon svg,
.document-card__icon svg {
  width: 2.75rem;
  height: 2.75rem;
  overflow: visible;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.audience-card__icon .card-icon__accent,
.document-card__icon .card-icon__accent {
  stroke: var(--color-accent);
}

.audience-card a,
.document-card a {
  margin-top: auto;
  font-weight: 750;
}

.eligibility-grid,
.family-grid,
.contact-grid,
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.eligibility-grid,
.family-grid {
  align-items: center;
}

.contact-grid,
.feedback-grid {
  align-items: start;
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.9rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: var(--color-secondary);
  content: "";
}

.diagnosis-panel {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-primary-dark);
  color: #fff;
}

.diagnosis-panel h3 {
  color: #fff;
}

.diagnosis-panel .check-list li::before {
  background: #ffcf56;
}

.route-list {
  display: grid;
  margin: var(--space-5) 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: route;
  list-style: none;
}

.route-list li {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 1.25rem;
  align-items: center;
  flex-direction: column;
  border: 1px solid rgb(0 107 112 / 13%);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  counter-increment: route;
  text-align: center;
}

.route-list li::before {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  content: counter(route);
  font-weight: 800;
}

.route-list li:nth-child(even)::before {
  background: var(--color-accent);
}

.route-step__icon {
  display: block;
  width: clamp(5.5rem, 8vw, 7rem);
  height: auto;
  margin: 0 auto 0.85rem;
  filter: drop-shadow(0 12px 18px rgb(0 88 92 / 12%));
  object-fit: contain;
}

.route-step__copy {
  display: grid;
  gap: 0.5rem;
}

.route-step__copy h3,
.route-step__copy p {
  margin: 0;
}

.service-card {
  min-height: 270px;
  align-items: center;
  background: #fbfdfc;
  box-shadow: 0 18px 44px rgb(0 88 92 / 7%);
  text-align: center;
}

.service-card__icon {
  position: relative;
  display: grid;
  width: 4.75rem;
  height: 4.75rem;
  margin-bottom: 1rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(154 114 28 / 17%);
  border-radius: 48% 52% 46% 54% / 54% 44% 56% 46%;
  background:
    radial-gradient(circle at 32% 25%, rgb(255 255 255 / 96%), transparent 32%),
    linear-gradient(145deg, rgb(216 240 239 / 92%), rgb(242 217 133 / 34%));
  color: var(--color-primary-dark);
  box-shadow:
    0 12px 30px rgb(0 88 92 / 10%),
    inset 0 0 0 0.35rem rgb(255 255 255 / 34%);
}

.service-card__icon::after {
  position: absolute;
  right: 0.25rem;
  bottom: 0.35rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #c8a75a;
  box-shadow: 0 0 0 0.3rem rgb(200 167 90 / 13%);
  content: "";
}

.service-card__icon svg {
  width: 2.8rem;
  height: 2.8rem;
  overflow: visible;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.service-card__icon .service-icon__accent {
  stroke: var(--color-accent);
}

.service-card h3 {
  margin: 0 0 0.55rem;
}

.service-card p {
  max-width: 31ch;
  margin: 0;
}

.stats-row {
  display: flex;
  margin-top: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.stat {
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 0.7rem;
}

.stat strong {
  color: var(--color-primary);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.stat:nth-child(even) strong {
  color: var(--color-accent-dark);
}

.family-quote {
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #dbe9e7;
}

.family-quote img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: 0;
  overflow: visible;
}

.news-card::before,
.specialist-card::before {
  display: none;
}

.news-card::before,
.specialist-card::before {
  position: absolute;
  z-index: -1;
  inset: 10px -8px -8px 10px;
  border-radius: 0;
  background:
    repeating-radial-gradient(
      ellipse at 48% 53%,
      rgb(0 107 112 / 1.8%) 0 1px,
      transparent 3px 14px
    ),
    repeating-radial-gradient(
      ellipse at 61% 46%,
      rgb(0 162 170 / 1.2%) 0 2px,
      transparent 4px 20px
    ),
    radial-gradient(
      ellipse at 72% 76%,
      rgb(0 162 170 / 9%) 0,
      rgb(0 162 170 / 3.5%) 48%,
      transparent 82%
    ),
    radial-gradient(
      ellipse at 25% 28%,
      rgb(0 107 112 / 4%) 0,
      rgb(0 107 112 / 1.5%) 52%,
      transparent 84%
    ),
    radial-gradient(
      ellipse at 30% 78%,
      rgb(154 114 28 / 4.5%) 0,
      rgb(154 114 28 / 1.2%) 48%,
      transparent 82%
    ),
    radial-gradient(
      ellipse at center,
      rgb(216 240 239 / 48%) 0,
      rgb(216 240 239 / 18%) 58%,
      transparent 91%
    );
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 50%,
    #000 0 40%,
    rgb(0 0 0 / 76%) 56%,
    rgb(0 0 0 / 32%) 71%,
    rgb(0 0 0 / 7%) 84%,
    transparent 96%
  );
  mask-image: radial-gradient(
    ellipse at 50% 50%,
    #000 0 40%,
    rgb(0 0 0 / 76%) 56%,
    rgb(0 0 0 / 32%) 71%,
    rgb(0 0 0 / 7%) 84%,
    transparent 96%
  );
  content: "";
  filter: blur(16px) saturate(0.8);
  opacity: 0.56;
  pointer-events: none;
}

.news-groups {
  display: grid;
  gap: 1rem;
}

.news-card__image {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #e7eeee;
}

.news-card--landscape .news-card__image {
  aspect-ratio: 16 / 10;
}

.news-card--portrait .news-card__image {
  aspect-ratio: 3 / 4;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.news-card__content a {
  margin-top: auto;
  font-weight: 750;
}

.specialists-grid {
  display: grid;
  /* The homepage intentionally introduces three specialists. Keep that trio balanced. */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.specialist-card {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  min-height: 0;
  min-width: 0;
  overflow: visible;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  flex-direction: column;
}

.specialist-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #e7eeee;
}

.specialist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.specialist-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.1rem;
  text-align: center;
}

.specialist-card__content h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.specialist-card__role {
  margin: -0.25rem 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.specialist-card__content > a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
  margin-top: auto;
  font-weight: 750;
}

.news-card__content a,
.specialist-card__content a {
  color: var(--color-accent-dark);
  text-decoration-color: rgb(154 114 28 / 58%);
}

.section-action {
  max-width: none;
  margin: 1.5rem 0 0;
  text-align: center;
}

.news-date {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-list {
  display: grid;
  margin: 0;
  gap: 1.25rem;
}

.contact-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-list dt {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-list dd {
  margin: 0.25rem 0 0;
  font-size: 1.15rem;
}

.feedback-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
}

.field input:not([type="checkbox"]),
.field textarea {
  width: 100%;
  min-height: var(--target-size);
  border: 1px solid #798887;
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  background: #fff;
  color: var(--color-text);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-field input {
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.2rem;
}

.form-status {
  min-height: 1.6em;
  margin: 0;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: var(--color-success);
}

.form-status[data-state="error"] {
  color: var(--color-error);
}

.resources-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
}

.section--compact h2 {
  text-align: center;
}

.resources-list a {
  display: inline-flex;
  min-height: var(--target-size);
  align-items: center;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
}

.page-hero {
  padding-block: var(--space-6);
  border-top: 1px solid var(--color-border);
  background: #edf4f3;
}

.breadcrumbs ol {
  display: flex;
  margin: 0 0 1.25rem;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--color-muted);
  list-style: none;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 3rem;
  padding-block: var(--space-6);
}

.imported-content {
  min-width: 0;
  overflow-wrap: anywhere;
}

.imported-content :is(p, li, td, th, h1, h2, h3, h4, h5, h6, strong, span) {
  color: #243535 !important;
}

.imported-content a,
.imported-content a :is(strong, span) {
  color: #00585c !important;
}

.entry .elementor .elementor-heading-title {
  color: #243535 !important;
}

.imported-content h5,
.imported-content h6 {
  margin-block: 1.25rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
}

.imported-content :is(section, .elementor-section, .elementor-container, .elementor-row) {
  width: auto !important;
  max-width: 100% !important;
  margin-inline: 0 !important;
}

.imported-content :is(.elementor-container, .elementor-row) {
  display: block !important;
}

.imported-content :is(.elementor-column, .elementor-widget-wrap, .elementor-widget-container) {
  width: 100% !important;
  max-width: 100% !important;
}

.imported-content img {
  margin-block: 1rem;
  border-radius: var(--radius-sm);
  box-shadow:
    12px 14px 28px rgb(216 240 239 / 24%),
    0 10px 22px rgb(0 60 62 / 5%);
}

.imported-content--specialists .elementor-section.elementor-inner-section > .elementor-container:has(.elementor-widget-image-box) {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1.25rem, 2vw, 2rem);
  margin-block: 1.5rem !important;
}

.imported-content--specialists .elementor-widget-image-box {
  height: 100%;
}

.imported-content--specialists .elementor-image-box-wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.imported-content--specialists .elementor-image-box-img {
  margin: 0;
}

.imported-content--specialists .elementor-image-box-img img {
  width: 100%;
  margin: 0;
  border-radius: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.imported-content--specialists .elementor-image-box-content {
  padding: 1.25rem;
  text-align: center;
}

.imported-content iframe,
.imported-content object,
.imported-content embed {
  max-width: 100%;
}

.imported-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.imported-content th,
.imported-content td {
  padding: 0.6rem;
  border: 1px solid var(--color-border);
}

/* Progressive layout layer for live legacy WordPress/Elementor pages. */
.gcpp-elementor-page {
  min-width: 0;
  overflow-wrap: anywhere;
}

.gcpp-elementor-page .entry__content,
.gcpp-elementor-page .elementor,
.gcpp-elementor-page .elementor > .elementor-section.elementor-top-section {
  width: 100% !important;
  max-width: 100% !important;
}

.gcpp-elementor-page .elementor > .elementor-section.elementor-top-section {
  left: auto !important;
  margin-inline: 0 !important;
}

.gcpp-elementor-page .elementor-column,
.gcpp-elementor-page .elementor-widget-container {
  min-width: 0;
  max-width: 100%;
}

.gcpp-elementor-page .gcpp-empty-section,
.gcpp-elementor-page .gcpp-repeated-location {
  display: none !important;
}

.entry .elementor .elementor-button {
  border-color: #00585c !important;
  background-color: #00585c !important;
  color: #fff !important;
}

.entry .elementor .elementor-button :is(span, i) {
  color: #fff !important;
}

.gcpp-news-archive .elementor-section,
.gcpp-news-archive .elementor-container,
.gcpp-news-archive .elementor-column,
.gcpp-news-archive .elementor-widget-wrap {
  border-color: transparent !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.gcpp-news-archive .elementor-background-overlay {
  display: none !important;
}

.gcpp-news-archive .latest-post-selection {
  display: grid !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.gcpp-news-archive .latest-post-selection > article {
  display: flex !important;
  min-width: 0;
  height: 100%;
  margin: 0 !important;
  padding: 0 0 1.25rem !important;
  overflow: hidden;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius);
  background: #fff !important;
  box-shadow: var(--shadow-soft);
  flex-direction: column;
}

.gcpp-news-archive .latest-post-selection .lps-tile-main-image {
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  object-fit: cover;
}

.gcpp-news-archive .latest-post-selection .article__title {
  margin: 0;
  padding: 1.25rem 1.25rem 0;
  color: var(--color-text) !important;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem) !important;
  line-height: 1.35;
}

.gcpp-news-archive .latest-post-selection .article__text {
  padding-inline: 1.25rem;
}

.gcpp-news-archive .latest-post-selection .article__link {
  min-height: var(--target-size);
  margin: auto 1.25rem 0;
  padding-top: 1rem;
  color: var(--color-accent-dark) !important;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.gcpp-specialists-page .gcpp-specialists-grid {
  display: grid !important;
  width: 100% !important;
  margin-block: 1.5rem !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.gcpp-specialists-page .gcpp-specialists-grid--single {
  grid-template-columns: minmax(0, 24rem);
  justify-content: center;
}

.gcpp-specialists-page .gcpp-specialists-grid--double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gcpp-specialists-page .gcpp-specialists-grid > .elementor-column {
  width: auto !important;
}

.gcpp-specialists-page .gcpp-specialist-card > .elementor-widget-wrap {
  display: flex;
  height: 100%;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff !important;
  box-shadow: var(--shadow-soft);
  flex-direction: column;
}

.gcpp-specialists-page .gcpp-specialist-card .elementor-widget-image-box,
.gcpp-specialists-page .gcpp-specialist-card .elementor-widget-container,
.gcpp-specialists-page .gcpp-specialist-card .elementor-image-box-wrapper {
  height: 100%;
}

.gcpp-specialists-page .gcpp-specialist-card .elementor-image-box-wrapper {
  display: flex;
  flex-direction: column;
}

.gcpp-specialists-page .gcpp-specialist-card .elementor-image-box-img {
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden;
}

.gcpp-specialists-page .gcpp-specialist-card .elementor-image-box-img img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center top;
}

.gcpp-specialists-page .gcpp-specialist-card .elementor-image-box-content {
  display: flex;
  min-height: 12rem;
  padding: 1.25rem;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.gcpp-specialists-page .elementor-image-box-title {
  margin: 0 0 0.75rem !important;
  color: var(--color-text) !important;
  font-size: clamp(1.05rem, 1.3vw, 1.22rem) !important;
  line-height: 1.35;
}

.gcpp-specialists-page .elementor-image-box-description {
  margin: 0;
  color: var(--color-muted) !important;
  line-height: 1.55;
}

.gcpp-specialists-page .elementor-image-box-description span {
  color: var(--color-primary-dark) !important;
}

.gcpp-specialists-page .elementor-widget-divider {
  display: none;
}

.gcpp-documents-page .gcpp-documents-accordions {
  display: grid;
  width: 100%;
  gap: 1rem;
}

.gcpp-documents-page .doc-accordion {
  overflow: clip;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.gcpp-documents-page .doc-accordion > summary {
  display: flex;
  min-height: var(--target-size);
  padding: 1.15rem 1.35rem;
  align-items: center;
  justify-content: space-between;
  color: var(--color-text);
  cursor: pointer;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 750;
  gap: 1rem;
  list-style: none;
}

.gcpp-documents-page .doc-accordion > summary::-webkit-details-marker {
  display: none;
}

.gcpp-documents-page .doc-accordion > summary::after {
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid var(--color-accent-dark);
  border-bottom: 2px solid var(--color-accent-dark);
  content: "";
  flex: 0 0 auto;
  transform: rotate(45deg);
}

.gcpp-documents-page .doc-accordion[open] > summary {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-accent-soft);
}

.gcpp-documents-page .doc-accordion[open] > summary::after {
  transform: rotate(225deg);
}

.gcpp-documents-page .doc-accordion__content {
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.gcpp-documents-page .doc-accordion__content > .elementor-section,
.gcpp-documents-page .doc-accordion .elementor-inner-section {
  width: 100% !important;
  left: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.gcpp-documents-page .doc-accordion .elementor-inner-section > .elementor-container {
  display: grid !important;
  width: 100% !important;
  max-width: 100% !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1rem;
}

.gcpp-documents-page .doc-accordion .elementor-section,
.gcpp-documents-page .doc-accordion .elementor-container {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.gcpp-documents-page .doc-accordion .elementor-inner-column {
  width: auto !important;
}

.gcpp-documents-page .doc-accordion .elementor-inner-column > .elementor-widget-wrap {
  height: 100%;
  padding: 1rem !important;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fbfdfc !important;
}

.gcpp-documents-page .doc-accordion .elementor-image-box-img img {
  max-height: 10rem;
  margin: 0 auto 0.75rem;
  object-fit: contain;
}

.gcpp-documents-page .doc-accordion .elementor-image-box-title {
  color: var(--color-text) !important;
  font-size: 1rem !important;
  line-height: 1.45;
  text-transform: none !important;
}

.gcpp-documents-page .doc-accordion .elementor-button {
  min-height: var(--target-size);
  border: 1px solid var(--color-primary-dark) !important;
  border-radius: 999px !important;
  background: var(--color-primary-dark) !important;
  box-shadow: none !important;
  color: #fff !important;
  text-transform: none !important;
}

.page-aside {
  align-self: start;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #edf4f3;
}

.archive-grid {
  display: grid;
  gap: 1rem;
}

.archive-item {
  padding: 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.archive-item h2 {
  font-size: 1.3rem;
}

.site-footer {
  padding-top: var(--space-6);
  background: #dfe9e8;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.8fr;
  gap: 2rem;
}

.site-footer h2 {
  font-size: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.brand--footer .brand__logo {
  width: 64px;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-block: 1.25rem;
  border-top: 1px solid #b9c7c6;
  font-size: 0.9rem;
}

.photo-veil {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.photo-veil::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 128, 0.1),
    rgba(255, 255, 255, 0.02) 48%,
    rgba(202, 165, 76, 0.1)
  );
  -webkit-mask-image: linear-gradient(
    115deg,
    rgb(0 0 0 / 72%),
    rgb(0 0 0 / 28%) 50%,
    rgb(0 0 0 / 64%)
  );
  mask-image: linear-gradient(
    115deg,
    rgb(0 0 0 / 72%),
    rgb(0 0 0 / 28%) 50%,
    rgb(0 0 0 / 64%)
  );
  content: "";
  pointer-events: none;
}

.photo-veil img {
  filter: brightness(1.06) contrast(0.94) saturate(0.86);
  opacity: 0.94;
}

.hero__source-photo {
  object-position: right center;
}

.eligibility-column {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 1.25rem;
}

.eligibility-copy {
  min-width: 0;
}

.eligibility-photo {
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8f1ef;
  box-shadow: var(--shadow-soft);
}

.eligibility-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.eligibility-photo--conditions img {
  object-position: center 42%;
}

.eligibility-photo--diagnoses img {
  object-position: center 45%;
}

.departments-section {
  overflow: clip;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.department-card {
  display: flex;
  min-width: 0;
  grid-column: span 3;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgb(0 107 112 / 12%);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.department-card--1 {
  grid-column: span 3;
}

.department-card--2 {
  grid-column: span 3;
}

.department-card--5,
.department-card--6 {
  grid-column: span 6;
}

.department-photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.department-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.department-card--1 .department-photo img,
.department-card--2 .department-photo img {
  height: auto;
  aspect-ratio: 4 / 3;
}

.department-card__illustration {
  display: grid;
  min-height: 0;
  aspect-ratio: 4 / 3;
  place-items: center;
  background:
    radial-gradient(circle at 45% 42%, rgb(216 240 239 / 94%), transparent 48%),
    linear-gradient(145deg, #f8fcfb, #f6ecd2);
}

.department-card__illustration svg {
  width: min(68%, 10rem);
  fill: none;
  stroke: var(--color-primary-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.department-card__illustration-accent {
  fill: rgb(200 167 90 / 48%);
  stroke: var(--color-accent);
}

.department-card__content {
  display: flex;
  min-height: 7rem;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  flex-direction: column;
  gap: 0.55rem;
  color: var(--color-ink);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  line-height: 1.35;
  text-align: center;
}

.department-card__content h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.department-beds {
  display: flex;
  margin: 0;
  align-items: baseline;
  justify-content: center;
  color: var(--color-accent-dark);
  gap: 0.35rem;
}

.department-beds strong {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1;
}

.department-beds span {
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.department-price-action {
  width: 100%;
  max-width: none;
  margin: 1.25rem 0 0;
  text-align: center;
}

#family {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

#family > .shell {
  position: relative;
  z-index: 1;
}

.family-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
}

.family-atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.contact-source-photo {
  max-width: 560px;
  margin: 1.5rem auto 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-source-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.page-hero > .shell {
  position: relative;
  z-index: 1;
}

.page-hero__atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.page-hero__atmosphere img {
  width: 100%;
  height: 100%;
  filter: brightness(1.15) saturate(0.72);
  object-fit: cover;
}

.article-lead-wrap {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.article-lead-photo {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: #edf4f3;
  box-shadow: var(--shadow-soft);
}

.article-lead-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  border-radius: inherit;
  object-fit: contain;
}

.source-photo-gallery {
  display: grid;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(100%, 17rem), 1fr)
  );
  gap: 1rem;
}

.source-photo {
  margin: 0;
  border-radius: var(--radius);
  background: #edf4f3;
  box-shadow: var(--shadow-soft);
}

.source-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  border-radius: inherit;
  object-fit: contain;
}

.mobile-call {
  display: none;
}

.large-text {
  font-size: 125%;
}

.high-contrast {
  --color-primary: #00484b;
  --color-primary-dark: #002f31;
  --color-primary-soft: #d8ffff;
  --color-secondary: #006e73;
  --color-accent: #6d4c00;
  --color-accent-soft: #fff2a8;
  --color-text: #000;
  --color-muted: #222;
  --color-border: #111;
  --color-background: #fff;
  --color-background-warm: #fff;
  --color-surface: #fff;
}

.high-contrast a {
  text-decoration-thickness: 0.14em;
}

body.high-contrast,
.high-contrast body {
  background: #fff;
}

.high-contrast .hero__content::before,
.high-contrast .hero__media::before,
.high-contrast .section-heading::before,
.high-contrast .news-card::before,
.high-contrast .specialist-card::before,
.high-contrast .photo-veil::after {
  display: none;
}

@media (max-width: 1100px) {
  .main-header {
    grid-template-columns: minmax(230px, 1fr) auto auto;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .primary-navigation {
    position: absolute;
    z-index: 25;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .site-header {
    position: relative;
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation > ul {
    display: grid;
  }

  .primary-navigation a {
    width: 100%;
    padding-inline: 0.5rem;
  }

  .nav-item--group {
    grid-template-columns: minmax(0, 1fr) var(--target-size);
  }

  .nav-submenu-toggle {
    justify-self: end;
  }

  .nav-submenu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-height: none;
    padding: 0.25rem 0 0.5rem 1rem;
    overflow: visible;
    border: 0;
    box-shadow: none;
  }

  .header-cta {
    display: none;
  }

  .audience-grid,
  .documents-grid,
  .news-grid,
  .specialists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .department-card,
  .department-card--1,
  .department-card--2,
  .department-card--5,
  .department-card--6 {
    grid-column: auto;
  }

  .gcpp-news-archive .latest-post-selection,
  .gcpp-specialists-page .gcpp-specialists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gcpp-specialists-page .gcpp-specialists-grid--single {
    grid-template-columns: minmax(0, 24rem);
  }

  .urgent-note {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  :root {
    --space-6: 2rem;
    --space-7: 2.5rem;
  }

  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .section {
    padding-block: 2.5rem;
  }

  .section--compact {
    padding-block: 2rem;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

  .utility-address {
    display: none;
  }

  .utility-bar__inner {
    min-height: var(--target-size);
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .utility-link,
  .utility-actions {
    flex: 1;
  }

  .utility-link,
  .language-switch {
    display: inline-flex;
    align-items: center;
  }

  .utility-actions {
		flex-wrap: wrap;
		min-width: 12rem;
    justify-content: flex-end;
		gap: 0.1rem 0.75rem;
  }

  .plain-button {
		display: inline-flex;
		flex-basis: 100%;
		justify-content: flex-end;
		line-height: 1.25;
		text-align: right;
  }

  .main-header {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.4rem;
  }

  .brand {
    min-width: 0;
    gap: 0.45rem;
  }

  .brand__logo {
    width: 46px;
  }

  .brand__name {
    min-width: 0;
    max-width: min(calc(100vw - 15.25rem), 8rem);
    font-size: 0.78rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .menu-button {
    max-width: 8.125rem;
    justify-content: center;
    padding-inline: 0.65rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .search-row {
    padding-bottom: 0.75rem;
  }

  .site-search {
    max-width: none;
  }

  .site-search button {
    padding-inline: 0.85rem;
  }

  .hero {
    padding-block: 1.5rem 2.5rem;
    background: #fff;
  }

  .hero__grid,
  .eligibility-grid,
  .family-grid,
  .contact-grid,
  .feedback-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .imported-content--specialists .elementor-section.elementor-inner-section > .elementor-container:has(.elementor-widget-image-box) {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .eligibility-grid,
  .family-grid,
  .contact-grid,
  .feedback-grid {
    gap: 1.25rem;
  }

  .hero__content {
    order: 2;
    text-align: center;
  }

  .hero__content::before {
    inset: -0.75rem -0.5rem;
    filter: blur(12px) saturate(0.78);
    opacity: 0.48;
    transform: none;
  }

  .hero__content > p {
    margin-inline: auto;
  }

  .hero__media {
    order: 1;
    min-height: 0;
  }

  .hero__media::before,
  .news-card::before,
  .specialist-card::before {
    inset: 6px -5px -5px 6px;
  }

  .hero__media::before {
    filter: blur(10px) saturate(0.8);
    opacity: 0.52;
  }

  .news-card::before,
  .specialist-card::before {
    filter: blur(12px) saturate(0.78);
    opacity: 0.44;
  }

  .section-heading::before {
    filter: blur(12px) saturate(0.8);
    opacity: 0.42;
  }

  .hero__media img {
    height: auto;
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .urgent-note {
    position: static;
    margin: 0;
    padding: 0.85rem 1rem;
    border-left: 0;
    border-radius: 0;
    background: var(--color-accent-soft);
    box-shadow: none;
    font-size: 0.9rem;
    white-space: normal;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 2.6rem);
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .hero__actions {
    display: grid;
    gap: 0.5rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .button {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .audience-grid,
  .service-grid,
  .documents-grid,
  .news-grid,
  .specialists-grid {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .service-card {
    min-height: auto;
  }

  .news-card__content {
    min-height: 0;
    overflow-wrap: anywhere;
  }

  .audience-card,
  .service-card,
  .document-card,
  .news-card__content {
    align-items: center;
    text-align: center;
  }

  .audience-card__icon,
  .document-card__icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 0.8rem;
  }

  .audience-card__icon svg,
  .document-card__icon svg {
    width: 2.45rem;
    height: 2.45rem;
  }

  .route-list {
    margin-block: 1.5rem;
    grid-template-columns: 1fr;
  }

  .route-list li {
    display: grid;
    padding: 1rem;
    grid-template-columns: 5.25rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .route-list li::before {
    top: 0.65rem;
    left: 0.65rem;
    width: 2rem;
    height: 2rem;
  }

  .route-step__icon {
    width: 5.25rem;
    margin: 0;
  }

  .feedback-form {
    grid-template-columns: 1fr;
  }

  .feedback-card > h2,
  .feedback-card > p {
    margin-inline: auto;
    text-align: center;
  }

  .feedback-form,
  .feedback-form label {
    text-align: left;
  }

  .field--wide {
    grid-column: auto;
  }

  .family-grid > :first-child,
  .contact-grid > :first-child {
    text-align: center;
  }

  .family-grid > :first-child > p {
    margin-inline: auto;
  }

  .family-grid .button,
  .form-actions .button {
    width: 100%;
  }

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

  .department-card,
  .department-card--1,
  .department-card--2,
  .department-card--5,
  .department-card--6 {
    grid-column: auto;
  }

  .department-card__content {
    min-height: 0;
    justify-content: center;
  }

  .gcpp-news-archive .latest-post-selection,
  .gcpp-specialists-page .gcpp-specialists-grid,
  .gcpp-specialists-page .gcpp-specialists-grid--single,
  .gcpp-specialists-page .gcpp-specialists-grid--double {
    grid-template-columns: minmax(0, 1fr);
  }

  .gcpp-news-archive .latest-post-selection .article__title,
  .gcpp-news-archive .latest-post-selection .article__text,
  .gcpp-specialists-page .gcpp-specialist-card .elementor-image-box-content {
    text-align: center;
  }

  .gcpp-documents-page .doc-accordion > summary {
    padding: 1rem;
  }

  .gcpp-documents-page .doc-accordion__content {
    padding: 0.85rem;
  }

  .eligibility-column {
    gap: 1rem;
  }

  .eligibility-photo {
    height: auto;
  }

  .article-lead-wrap {
    padding-top: 1rem;
  }

  .article-lead-photo img {
    height: auto;
    max-height: none;
  }

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

  .family-atmosphere {
    opacity: 0.1;
  }

  .diagnosis-panel h3 {
    text-align: center;
  }

  .stats-row {
    margin-top: 1.5rem;
  }

  .stat {
    min-width: min(100%, 220px);
    justify-content: center;
  }

  .page-hero {
    padding-block: 2rem;
    text-align: center;
  }

  .breadcrumbs ol {
    justify-content: center;
  }

  .content-layout {
    gap: 2rem;
    padding-block: 2rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .site-footer {
    padding-top: 2rem;
  }

  .site-footer__grid .brand {
    justify-content: center;
  }

  .site-footer__bottom {
    margin-top: 2rem;
  }

  .mobile-call {
    position: static;
    display: flex;
    width: calc(100% - 2rem);
    margin: 0.75rem auto;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: var(--color-primary-dark);
    box-shadow: 0 10px 28px rgb(0 0 0 / 20%);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
  }

  .page-aside {
    display: none;
  }
}

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

.secondary-page { padding-block: clamp(2rem, 5vw, 5rem); }
.content-header, .content-surface, .loop-grid, .empty-state { width: min(100% - 2rem, 76rem); margin-inline: auto; }
.content-header h1 { overflow-wrap: anywhere; word-break: normal; }
.content-surface { min-width: 0; padding: clamp(1.25rem, 3vw, 3rem); border: 1px solid var(--border); border-radius: 1.5rem; background: rgba(255,255,255,.96); box-shadow: var(--shadow-soft); }
.entry__content, .entry__content > *, .loop-card { min-width: 0; max-width: 100%; }
.entry__content :is(h1,h2,h3,h4,h5,h6,a,p,li,td,th), .loop-card :is(h2,a,p) { overflow-wrap: anywhere; }
.loop-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.loop-card { display: flex; flex-direction: column; overflow: clip; border: 1px solid var(--border); border-radius: 1.25rem; background: #fff; }
.loop-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.loop-card__media img { width: 100%; height: 100%; object-fit: cover; }
.loop-card__body { display: flex; flex: 1; flex-direction: column; gap: .875rem; padding: 1.25rem; }
.loop-card__body .text-link { margin-top: auto; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.pagination a, .pagination span { display: grid; min-width: 44px; min-height: 44px; place-items: center; }
@media (max-width: 900px) { .loop-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 560px) { .loop-grid { grid-template-columns: 1fr; } .content-surface { padding: 1rem; } }

.gcpp-specialists-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; }
.staff-directory { display: grid; gap: clamp(2rem,5vw,4rem); }
.staff-directory__group { display: grid; gap: 1rem; }
.gcpp-specialist-card { min-width: 0; height: auto; overflow: clip; border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.gcpp-specialist-card :is(.elementor-image-box-img,.specialist-card__media) { width: 100%; height: 280px; margin: 0; overflow: hidden; background: var(--mist); }
.gcpp-specialist-card :is(.elementor-image-box-img,.specialist-card__media) img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: center top; }
.specialist-card__body { display: grid; gap: .75rem; padding: 1rem; text-align: center; }
.specialist-card__body :is(h3,p) { margin: 0; }
.specialist-card__body .text-link { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.specialist-profile-layout { display: grid; grid-template-columns: minmax(220px,320px) minmax(0,1fr); gap: clamp(1.5rem,4vw,3rem); align-items: start; }
.gcpp-image-fallback { display: grid; width: 100%; height: 100%; place-items: center; padding: 1rem; color: var(--teal-900); background: linear-gradient(145deg,var(--mist),#fff); font-weight: 700; text-align: center; }
@media (max-width: 900px) { .gcpp-specialists-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } .gcpp-specialist-card :is(.elementor-image-box-img,.specialist-card__media) { height: 250px; } }
@media (max-width: 560px) { .gcpp-specialists-grid,.specialist-profile-layout { grid-template-columns: 1fr; } .gcpp-specialist-card :is(.elementor-image-box-img,.specialist-card__media) { height: 230px; } }

.document-year-groups { display: grid; gap: 1rem; }
.doc-accordion { border: 1px solid var(--border); border-radius: 1rem; background: #fff; overflow: clip; }
.doc-accordion > summary { display: flex; min-height: 56px; align-items: center; padding: .875rem 1rem; cursor: pointer; color: var(--teal-900); font: 700 1.05rem/1.3 "Manrope",sans-serif; }
.doc-accordion__content { padding: 0 1rem 1rem; }
.document-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.document-item-card { display: flex; min-width: 0; flex-direction: column; gap: .75rem; padding: 1rem; border: 1px solid var(--border); border-radius: .875rem; background: var(--mist); }
.document-item-card a { margin-top: auto; overflow-wrap: anywhere; }
.entry__content .document-item-card h3 a { color: #00585C !important; }
.document-archive-link { display: grid; gap: .5rem; margin-top: 1.5rem; padding: 1.25rem; border: 1px solid var(--gold); border-radius: 1rem; background: var(--gold-soft); }
.gcpp-attachment-heavy { display: grid; gap: 1rem; }
.document-viewer { display: block; width: 100%; max-width: 100%; min-width: 0; min-height: 70vh; border: 0; }
.gcpp-contact-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
@media (max-width: 900px) { .document-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 560px) { .document-grid { grid-template-columns: 1fr; } }
.entry__content :is(.elementor,.elementor-section,.elementor-container,.e-con,.e-con-inner,.elementor-widget,.elementor-widget-container) { min-width: 0; max-width: 100%; }
.entry__content :is(img,video,iframe,svg,canvas) { max-width: 100%; }
.entry__content :is(pre,table) { max-width: 100%; }
.entry__content :is(a,p,li,td,th,code) { overflow-wrap: anywhere; word-break: normal; }
.entry__content [style*="Times New Roman" i]:not([class*="fa-"]):not([class*="icon"]),
.entry__content [style*="Roboto" i]:not([class*="fa-"]):not([class*="icon"]) { font-family: inherit !important; }
.entry__content .elementor-widget-text-editor { font-family: inherit !important; }
.entry.gcpp-elementor-page .entry__content { color: var(--color-text); font-family: "Inter", "Noto Sans", Arial, sans-serif; font-size: 1rem; line-height: 1.7; }
.entry.gcpp-elementor-page .entry__content :is(p,li,td,th) { color: var(--color-text) !important; font-family: "Inter", "Noto Sans", Arial, sans-serif !important; font-size: 1rem !important; line-height: 1.7 !important; }
.entry.gcpp-elementor-page .content-surface .entry__content :is(h1,h2,h3,h4,h5,h6) { color: var(--color-text) !important; font-family: "Manrope", "Inter", Arial, sans-serif !important; line-height: 1.25 !important; text-transform: none !important; }
.entry.gcpp-elementor-page .entry__content h2 { font-size: clamp(1.55rem, 2.8vw, 2.25rem) !important; }
.entry.gcpp-elementor-page .entry__content h3 { font-size: clamp(1.3rem, 2vw, 1.7rem) !important; }
.entry.gcpp-elementor-page .entry__content :is(h4,h5,h6) { font-size: clamp(1.1rem, 1.5vw, 1.3rem) !important; }
.entry.gcpp-elementor-page .entry__content :is(.elementor-section,.e-con) { background: transparent !important; }
.entry.gcpp-elementor-page .entry__content .elementor-background-overlay { display: none !important; }
.entry,
.entry__content { min-width: 0; overflow-x: clip; }
.gcpp-scroll-region { max-width: 100%; overflow: auto; overscroll-behavior-inline: contain; }
.gallery-slider-wrap { display: grid; min-width: 0; max-width: 100%; gap: .75rem; }
.gallery-slider-controls { display: flex; gap: .5rem; justify-content: flex-end; }
.gallery-slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 42%); gap: 1rem; max-width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; }
.gallery-slider > * { min-width: 0; scroll-snap-align: start; }
.gallery-slider :is(figure,.gallery-item,.wp-block-image,.e-gallery-item) { margin: 0; overflow: hidden; border-radius: .875rem; background: var(--mist); }
.gallery-slider :is(img,video) { width: 100%; height: auto; object-fit: cover; }
.gallery-slider-controls button { display: inline-grid; min-width: 44px; min-height: 44px; place-items: center; }
.gallery-slider-controls button:disabled { cursor: not-allowed; opacity: .5; }
.gallery-lightbox-trigger { cursor: zoom-in; }
.gallery-lightbox-trigger:focus-visible { outline: var(--focus-ring); outline-offset: 4px; }
.gallery-lightbox { width: min(94vw, 72rem); max-width: none; max-height: 92vh; padding: 0; overflow: visible; border: 0; border-radius: 1rem; background: #102d2e; color: #fff; box-shadow: 0 24px 80px rgb(0 0 0 / 42%); }
.gallery-lightbox::backdrop { background: rgb(4 20 21 / 82%); }
.gallery-lightbox__panel { position: relative; display: grid; gap: 1rem; padding: clamp(1rem, 2vw, 1.5rem); }
.gallery-lightbox__close { position: absolute; z-index: 2; top: .75rem; right: .75rem; display: grid; width: 44px; min-height: 44px; place-items: center; border: 1px solid rgb(255 255 255 / 45%); border-radius: 999px; background: rgb(0 48 50 / 88%); color: #fff; font-size: 1.75rem; line-height: 1; }
.gallery-lightbox__figure { display: grid; min-width: 0; min-height: 0; gap: .75rem; margin: 0; }
.gallery-lightbox__image { display: block; width: 100%; height: auto; max-height: 72vh; margin-inline: auto; border-radius: .75rem; object-fit: contain; }
.gallery-lightbox__caption { margin: 0; color: #fff; text-align: center; }
.gallery-lightbox__controls { display: grid; grid-template-columns: minmax(7rem, auto) 1fr minmax(7rem, auto); align-items: center; gap: .75rem; }
.gallery-lightbox__controls button { min-height: 44px; }
.gallery-lightbox__status { color: #fff; font-weight: 700; text-align: center; }
.gcpp-contact-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 1.5rem; align-items: start; }
.gcpp-contact-details,
.gcpp-contact-map { min-width: 0; padding: 1.25rem; border: 1px solid var(--border); border-radius: 1rem; background: #fff; }
.gcpp-contact-details address { font-style: normal; }
.gcpp-contact-map iframe { width: 100%; min-height: 360px; border: 0; }
.gcpp-page-type--contact .gcpp-contact-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gcpp-page-type--contact .gcpp-contact-details a[href^="tel:"] { text-decoration: underline; text-decoration-thickness: .1em; text-underline-offset: .18em; }
.gcpp-page-type--contact .gcpp-contact-details .elementor-icon-box-title,
.gcpp-page-type--contact .gcpp-contact-details .elementor-icon-box-title a { color: var(--color-primary-dark) !important; }
.gcpp-page-type--contact .gcpp-contact-details .elementor-element-d925786 > .elementor-container { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
.gcpp-page-type--contact .gcpp-contact-details .elementor-element-d925786 > .elementor-container > .elementor-column { width: 100% !important; max-width: none !important; min-width: 0; }
.gcpp-presentation-hidden { display: none !important; }
@media (max-width: 700px) {
  .gallery-slider { grid-auto-columns: minmax(82%, 1fr); }
  .gallery-lightbox { width: calc(100vw - 1rem); max-height: 96vh; }
  .gallery-lightbox__panel { padding: .75rem; }
  .gallery-lightbox__image { max-height: 68vh; }
  .gallery-lightbox__controls { grid-template-columns: 1fr 1fr; }
  .gallery-lightbox__status { grid-column: 1 / -1; grid-row: 1; }
  .gcpp-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .gcpp-page-type--contact .gcpp-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .gcpp-page-type--contact .gcpp-contact-details .elementor-element-d925786 > .elementor-container { grid-template-columns: 1fr; }
}

/* TASK 11 LOCALIZATION UI START */
.gallery-slider > .gallery-item { width: 100% !important; max-width: none !important; }
.gallery-slider > .gallery-item > .gallery-icon { width: 100% !important; max-width: none !important; }
.gallery-slider > .gallery-item > .gallery-icon > a { display: block; width: 100%; }
@media (max-width: 360px) {
  .main-header { grid-template-columns: minmax(0, 1fr) minmax(0, 4.75rem); }
  .brand__logo { width: 40px; }
  .brand__name { max-width: 7.25rem; overflow-wrap: normal; word-break: normal; }
  .menu-button { max-width: 4.75rem; padding-inline: .5rem; }
}
/* TASK 11 LOCALIZATION UI END */

/* TASK 10 ABOUT CENTER START */
.about-center { min-width: 0; max-width: 100%; display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.about-center :is(h2,h3,h4,p) { max-width: 100%; overflow-wrap: anywhere; }
.about-center__intro, .about-center__history, .about-center__capacity, .about-center__location { min-width: 0; padding: clamp(1rem, 2.5vw, 1.5rem); border: 1px solid var(--border); border-radius: 1rem; background: #fff; }
.about-center__intro :last-child, .about-center__history :last-child, .about-center__capacity :last-child, .about-center__location :last-child { margin-bottom: 0; }
.about-center__capacity { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; background: var(--gold-soft); }
.about-center__capacity p { margin: 0; font-weight: 700; }
.about-center__departments-section { min-width: 0; }
.about-center__departments { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.about-center__department { min-width: 0; padding: 1.25rem 1rem; border: 1px solid var(--border); border-radius: 1rem; background: #fff; box-shadow: var(--shadow-soft); text-align: center; }
.about-center__department h4, .about-center__beds { margin: 0; }
.about-center__department h4 { font-size: 1rem; }
.about-center__beds { margin-top: .75rem; color: var(--color-accent-dark); font-weight: 700; }
.about-center__bed-number { font-family: "Manrope", "Inter", Arial, sans-serif; font-size: 2rem; line-height: 1; }
.about-center__department:nth-child(5),
.about-center__department:nth-child(6) { grid-column: span 2; }
.about-center__location address { font-style: normal; font-weight: 700; }
.about-center__map { min-width: 0; margin-top: 1rem; overflow: hidden; border-radius: .75rem; }
.about-center__map iframe { display: block; width: 100%; max-width: 100%; min-width: 0; min-height: 360px; border: 0; }
@media (max-width: 900px) {
  .about-center__departments { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-center__department:nth-child(5),
  .about-center__department:nth-child(6) { grid-column: auto; }
}
@media (max-width: 560px) {
  .about-center__departments { grid-template-columns: 1fr; }
  .about-center__capacity .button { width: 100%; }
  .about-center__map iframe { min-height: 280px; }
}
/* TASK 10 ABOUT CENTER END */

/* TASK 12 SPECIALIST PROFILES START */
.gcpp-page-type--specialist-profile .entry__content { overflow: visible; }
.specialist-profile-layout { display: grid; grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem); align-items: start; }
.specialist-profile__portrait { width: 100%; max-width: 300px; margin: 0; }
.specialist-profile__portrait img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: 1rem; background: #eef4f2; }
.specialist-profile__portrait figcaption { margin-top: 0.75rem; color: var(--muted); font-size: 0.95rem; line-height: 1.55; text-align: center; }
.specialist-profile__role { margin: 0 0 1rem; color: var(--teal-800); font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
.specialist-profile__body { min-width: 0; max-width: 72ch; overflow-wrap: normal; word-break: normal; }
.specialist-profile__body > :first-child { margin-top: 0; }
.specialist-profile__body > :last-child { margin-bottom: 0; }
.specialist-profile__facts { display: grid; grid-template-columns: minmax(10rem, .45fr) minmax(0, 1fr); gap: .75rem 1.25rem; margin: 1.5rem 0; }
.specialist-profile__facts :is(dt,dd) { min-width: 0; margin: 0; overflow-wrap: normal; word-break: normal; }
.specialist-profile__facts dt { font-weight: 700; }
.specialist-profile__table-region { max-width: 100%; margin: 1.5rem 0; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-gutter: stable; }
.specialist-profile__table-region:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }
.specialist-profile__table-region table { width: 100%; border-collapse: collapse; }
.specialist-profile__table-region :is(th,td) { padding: .75rem 1rem; text-align: left; vertical-align: top; }
.specialist-profile__body :is(th,td) { overflow-wrap: normal; word-break: normal; }
@media (max-width: 700px) {
  .specialist-profile-layout { grid-template-columns: 1fr; }
  .specialist-profile__portrait { max-width: min(100%, 300px); margin-inline: auto; }
  .specialist-profile__facts { grid-template-columns: 1fr; gap: .25rem; }
  .specialist-profile__facts dd { margin-bottom: .85rem; }
  .specialist-profile__table-region table { min-width: 38rem; }
}
/* TASK 12 SPECIALIST PROFILES END */

/* TASK 13 LEGACY COLLECTIONS START */
.gcpp-protocols-page__grid, .gcpp-documents-page--legal .document-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.gcpp-protocol-card, .gcpp-documents-page--legal .document-item-card { min-width: 0; border-color: var(--border); box-shadow: var(--shadow-soft); }
.gcpp-protocol-card h2, .gcpp-documents-page--legal h2 { margin: 0; font-size: 1.05rem; overflow-wrap: anywhere; }
.gcpp-protocol-card a, .gcpp-documents-page--legal .text-link { overflow-wrap: anywhere; }
.gcpp-protocol-card a:focus-visible, .gcpp-documents-page--legal .text-link:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }
.gcpp-page-type--contact .gcpp-contact-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gcpp-page-type--contact .gcpp-contact-map, .gcpp-page-type--contact .gcpp-contact-map iframe { min-width: 0; width: 100%; max-width: 100%; }
.gcpp-page-type--contact .gcpp-contact-map iframe { display: block; min-height: 320px; height: min(48vw, 420px); }
.gcpp-page-type--contact .gcpp-contact-form, .gcpp-page-type--contact .caldera-grid { width: 100%; max-width: 100%; }
.gcpp-contact-extra { min-width: 0; }
@media (max-width: 900px) { .gcpp-protocols-page__grid, .gcpp-documents-page--legal .document-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .gcpp-page-type--contact .gcpp-contact-layout { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .gcpp-protocols-page__grid, .gcpp-documents-page--legal .document-grid { grid-template-columns: 1fr; } .gcpp-page-type--contact .gcpp-contact-map iframe { min-height: 260px; } }
/* TASK 13 LEGACY COLLECTIONS END */

/* TASK 14 MEDIA PAGES START */
.gcpp-page-type--news-archive .gcpp-news-archive .latest-post-selection {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-items: stretch;
}
.gcpp-page-type--news-archive .gcpp-news-archive .latest-post-selection > article[role="listitem"] { min-width: 0; height: auto; }
.gcpp-page-type--news-archive .gcpp-news-archive .latest-post-selection > article[role="listitem"] .lps-tile-main-image { width: 100% !important; aspect-ratio: 16 / 10; object-fit: cover; }
.gcpp-page-type--news-archive .gcpp-news-archive .latest-post-selection :is(.article__title, .article__text, time, .article__date) { overflow-wrap: anywhere; }
.gcpp-page-type--news-archive .gcpp-news-archive .latest-post-selection .article__link:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }
.gcpp-page-type--gallery .gcpp-gallery-section { min-width: 0; max-width: 100%; min-height: 0 !important; padding-block: 0 !important; }
.gcpp-page-type--gallery .gcpp-gallery-section .gallery-slider-wrap { width: 100%; }
.gcpp-page-type--gallery .gcpp-gallery-section .gallery-slider img { display: block; width: 100%; height: auto; }
.gcpp-page-type--single-news .gallery-slider > .gcpp-news-gallery-excluded { display: none !important; }
.gcpp-page-type--single-news .gallery-slider > .gcpp-news-gallery-item { min-width: 0; }
.document-viewer-page,
.document-viewer-page .content-surface { box-sizing: border-box; min-width: 0; max-width: 100%; }
.document-viewer-page .content-surface { display: grid; grid-template-columns: minmax(0, 1fr); }
.document-viewer-page .document-viewer { box-sizing: border-box; display: block; width: 100%; min-width: 0; max-width: 100%; min-height: 70vh; }
@media (max-width: 900px) {
  .gcpp-page-type--news-archive .gcpp-news-archive .latest-post-selection { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .gcpp-page-type--news-archive .gcpp-news-archive .latest-post-selection { grid-template-columns: minmax(0, 1fr); }
}
/* TASK 14 MEDIA PAGES END */
