:root {
  --alps-ink: #0c1117;
  --alps-text: #5d6874;
  --alps-muted: #7a838c;
  --alps-line: #e5eaee;
  --alps-card: #ffffff;
  --alps-mist: #f2fbfd;
  --alps-blue: #216db5;
  --alps-cyan: #7edbf1;
  --alps-aqua: #c9f4fb;
  --alps-soft-green: #eef8ee;
  --alps-soft-lilac: #f0efff;
  --alps-soft-peach: #fff1e9;
  --alps-radius-sm: 12px;
  --alps-radius-md: 18px;
  --alps-radius-lg: 28px;
  --alps-shadow-sm: 0 10px 30px rgba(13, 32, 48, 0.08);
  --alps-shadow-md: 0 18px 52px rgba(13, 32, 48, 0.13);
  --alps-container: min(1320px, calc(100% - 48px));
  --alps-wide: min(1600px, calc(100% - 48px));
  --alps-section-y: clamp(56px, 7vw, 112px);
  --alps-sticky-offset: 222px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--alps-sticky-offset);
}

body {
  margin: 0;
  background: #fff;
  color: var(--alps-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(16px, 0.96rem + 0.2vw, 18px);
  line-height: 1.6;
  letter-spacing: 0;
}

body.admin-bar .alps-header-part {
  top: 32px;
}

:target,
[id] {
  scroll-margin-top: var(--alps-sticky-offset);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--alps-blue);
}

:focus-visible {
  outline: 3px solid rgba(33, 109, 181, 0.38);
  outline-offset: 4px;
}

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

.alps-skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--alps-ink);
  color: #fff;
  text-decoration: none;
}

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

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

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

.alps-main {
  min-height: 55vh;
}

.alps-section,
.wp-site-blocks .alps-section {
  padding-block: var(--alps-section-y);
}

.alps-section--compact {
  padding-block: clamp(40px, 5vw, 72px);
}

.alps-kicker {
  margin: 0 0 10px;
  color: var(--alps-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alps-section-head {
  display: grid;
  gap: 18px;
  max-width: 800px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.alps-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.alps-section-head h1,
.alps-section-head h2,
.alps-section-head h3 {
  margin: 0;
}

.alps-section-head h1,
.alps-page-hero h1 {
  max-width: 980px;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.02;
}

.alps-section-head h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
}

.alps-section-head p,
.alps-page-hero p,
.alps-lede {
  max-width: 850px;
  margin: 0;
  color: var(--alps-text);
  font-size: clamp(18px, 1rem + 0.5vw, 24px);
  line-height: 1.48;
}

.alps-section-head--center p {
  margin-inline: auto;
}

.alps-button,
.wp-block-button__link.alps-button,
.wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.alps-button:hover,
.wp-block-button__link:hover {
  transform: translateY(-1px);
}

.alps-button--dark,
.wp-block-button__link {
  background: #000;
  color: #fff;
}

.alps-button--dark:hover,
.wp-block-button__link:hover {
  background: var(--alps-blue);
  color: #fff;
}

.alps-button--light {
  background: #fff;
  color: var(--alps-ink);
  box-shadow: 0 8px 22px rgba(13, 32, 48, 0.1);
}

.alps-button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.alps-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.alps-header-part {
  position: sticky;
  top: 0;
  z-index: 900;
  margin-block-start: 0;
}

.alps-header-part p {
  margin: 0;
}

.alps-header-part br {
  display: none;
}

.alps-site-header {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--alps-line);
  box-shadow: 0 10px 28px rgba(13, 32, 48, 0.055);
  backdrop-filter: blur(14px);
}

.alps-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 106px;
  gap: 24px;
}

.alps-logo {
  display: inline-flex;
  width: 98px;
  min-width: 98px;
  align-items: center;
  text-decoration: none;
}

.alps-logo img {
  width: 98px;
  height: auto;
}

.alps-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.alps-header-link {
  font-weight: 700;
  text-decoration: underline;
}

.alps-header-nav-row {
  border-top: 1px solid var(--alps-line);
}

.alps-primary-navigation {
  display: flex;
  align-items: center;
  min-height: 100px;
}

.alps-primary-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 1.85vw, 27px);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.alps-primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #6c7177;
  font-size: clamp(0.92rem, 0.88rem + 0.12vw, 1rem);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 160ms ease;
  white-space: nowrap;
}

.alps-primary-menu a:hover,
.alps-primary-menu .current-menu-item > a,
.alps-primary-menu .current-menu-ancestor > a {
  color: var(--alps-ink);
}

.alps-primary-menu .menu-item-has-children {
  position: relative;
}

.alps-primary-menu .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.alps-primary-menu .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% - 3px);
  z-index: 40;
  display: grid;
  min-width: 290px;
  gap: 2px;
  margin: 0;
  padding: 12px;
  list-style: none;
  border: 1px solid rgba(16, 35, 50, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--alps-shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.alps-primary-menu .sub-menu a {
  width: 100%;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--alps-ink);
  text-decoration: none;
}

.alps-primary-menu .sub-menu a:hover {
  background: var(--alps-mist);
}

.alps-primary-menu .menu-item-has-children:hover > .sub-menu,
.alps-primary-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.alps-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--alps-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.alps-menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--alps-ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.is-menu-open .alps-menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.is-menu-open .alps-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.is-menu-open .alps-menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.alps-mobile-menu-cta {
  display: none;
}

.alps-hero {
  overflow: hidden;
  margin-bottom: clamp(50px, 6.5vw, 92px);
  padding: clamp(92px, 9.5vw, 146px) 0 clamp(28px, 3.2vw, 46px);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 229, 240, 0.42), transparent 28%),
    radial-gradient(circle at 82% 92%, rgba(119, 221, 242, 0.8), transparent 28%),
    linear-gradient(135deg, #627083 0%, #2e678b 43%, #c6f4fb 100%);
  color: #fff;
}

.alps-hero__content {
  display: grid;
  justify-items: center;
  gap: 30px;
  text-align: center;
}

.alps-hero h1 {
  max-width: 1120px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.05;
}

.alps-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1rem + 0.42vw, 23px);
}

.alps-hero__media {
  width: min(1024px, calc(100% - 48px));
  margin: clamp(54px, 6vw, 86px) auto 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 28px;
  box-shadow: var(--alps-shadow-md);
  transform: translateY(clamp(50px, 6.5vw, 92px));
}

.alps-hero__media img {
  width: 100%;
  aspect-ratio: 1024 / 652;
  object-fit: cover;
}

.alps-grid {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}

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

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

.alps-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-width: 0;
  border: 1px solid rgba(12, 17, 23, 0.08);
  border-radius: 18px;
  background: var(--alps-card);
  box-shadow: var(--alps-shadow-sm);
}

.alps-card--padded {
  padding: clamp(22px, 2.5vw, 32px);
}

.alps-card__image {
  overflow: hidden;
  border-radius: 18px;
  background: var(--alps-mist);
}

.alps-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.alps-card h2,
.alps-card h3 {
  margin: 0;
  font-size: clamp(22px, 1.22rem + 0.45vw, 30px);
  line-height: 1.12;
}

.alps-card p {
  margin: 0;
  color: var(--alps-text);
}

.alps-card a:not(.alps-button) {
  color: var(--alps-ink);
  font-weight: 800;
}

.alps-service-card,
.alps-condition-card {
  border: 0;
  box-shadow: none;
}

.alps-service-card .alps-card__image,
.alps-condition-card .alps-card__image {
  border-radius: 14px;
}

.alps-service-card img {
  aspect-ratio: 1 / 1.28;
}

.alps-numbered-title {
  display: flex;
  gap: 18px;
  align-items: baseline;
  justify-content: space-between;
}

.alps-numbered-title span {
  color: var(--alps-muted);
  font-weight: 700;
}

.alps-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.alps-list li {
  position: relative;
  padding-left: 28px;
  color: var(--alps-text);
}

.alps-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--alps-blue);
}

.alps-list--check li::before {
  top: 0.32em;
  width: 12px;
  height: 18px;
  border-right: 2px solid #6f777c;
  border-bottom: 2px solid #6f777c;
  border-radius: 0;
  background: transparent;
  transform: rotate(40deg);
}

.alps-overview-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.alps-overview-split img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--alps-shadow-md);
}

.alps-trust-band {
  background: linear-gradient(135deg, var(--alps-mist), #fff 52%, var(--alps-soft-green));
}

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

.alps-stat {
  padding: 24px;
  border: 1px solid rgba(12, 17, 23, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.alps-stat strong {
  display: block;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1.1;
}

.alps-stat span {
  color: var(--alps-text);
}

.alps-treatment-list {
  display: grid;
  gap: clamp(34px, 4.8vw, 66px);
}

.alps-treatment-row {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.alps-treatment-row > a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--alps-mist);
}

.alps-treatment-row img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.alps-treatment-row h2,
.alps-treatment-row h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.3vw, 38px);
}

.alps-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.alps-detail-grid h2 {
  margin-top: 0;
  font-size: clamp(34px, 4vw, 58px);
}

.alps-program-stack {
  display: grid;
  gap: 18px;
}

.alps-program-card {
  padding: 20px 24px;
  border-radius: 14px;
  background: #f2f2f2;
}

.alps-program-card h3 {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 10px;
  font-size: 24px;
}

.alps-program-card h3::before {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #8f9497;
}

.alps-program-card:nth-child(2n) h3::before {
  border-radius: 3px;
  transform: rotate(45deg);
}

.alps-program-card:nth-child(3n) h3::before {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 15px solid #8f9497;
  border-radius: 0;
  background: transparent;
}

.alps-program-card ul {
  margin: 0;
  padding-left: 22px;
  color: var(--alps-text);
}

.alps-condition-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
}

.alps-related-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: fit-content;
  margin: clamp(42px, 6vw, 76px) auto 0;
  padding: 10px;
  border-radius: 999px;
  background: #f1f1f1;
}

.alps-related-pill a {
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.alps-video-placeholder {
  display: grid;
  place-items: center;
  min-height: clamp(260px, 36vw, 460px);
  margin-top: clamp(42px, 6vw, 80px);
  border-radius: 0;
  background: var(--alps-soft-lilac);
  color: #4d55ff;
}

.alps-video-placeholder svg {
  width: 76px;
  height: 76px;
}

.alps-video-caption {
  margin: 28px 0 0;
  color: var(--alps-text);
  text-align: center;
  font-weight: 700;
}

.alps-video-title {
  max-width: 760px;
  margin: 14px auto 0;
  text-align: center;
  font-size: clamp(34px, 4.4vw, 62px);
}

.alps-faq {
  background: #fbfcfd;
}

.alps-faq-list {
  display: grid;
  gap: 14px;
}

.alps-faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--alps-line);
  border-radius: 16px;
  background: #fff;
}

.alps-faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.alps-faq-list p {
  margin-bottom: 0;
  color: var(--alps-text);
}

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

.alps-facility-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--alps-shadow-sm);
}

.alps-facility-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.alps-facility-card div {
  padding: 18px;
}

.alps-facility-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.alps-facility-card p {
  margin: 0;
  color: var(--alps-text);
  font-size: 15px;
}

.alps-cert-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.alps-cert-card img {
  border-radius: 16px;
  box-shadow: var(--alps-shadow-md);
}

.alps-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
}

.alps-team-card {
  display: grid;
  gap: 16px;
}

.alps-team-card img,
.alps-team-placeholder {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  border-radius: 12px;
  object-fit: contain;
  background: linear-gradient(135deg, #dff6ed, #99d9d0 48%, #fed993);
}

.alps-team-card:nth-child(3n) .alps-team-placeholder {
  background: linear-gradient(135deg, #d8ddff, #6fb9f6 48%, #a7aa54);
}

.alps-team-card:nth-child(4n) .alps-team-placeholder {
  background: radial-gradient(circle at 82% 18%, #23c8c0 0 12%, transparent 13%), #d9f2ed;
}

.alps-team-card h2,
.alps-team-card h3 {
  margin: 0;
  font-size: clamp(22px, 1.35rem + 0.4vw, 30px);
}

.alps-team-card p {
  margin: 0;
  color: var(--alps-text);
  font-weight: 700;
}

.alps-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.alps-form-placeholder {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--alps-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--alps-shadow-sm);
}

.alps-form-grid {
  display: grid;
  gap: 14px;
}

.alps-form-grid label {
  display: grid;
  gap: 6px;
  color: var(--alps-text);
  font-weight: 700;
}

.alps-form-grid input,
.alps-form-grid textarea,
.alps-form-grid select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--alps-line);
  border-radius: 12px;
  color: var(--alps-ink);
  font: inherit;
}

.alps-form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.alps-cta {
  background:
    radial-gradient(circle at 80% 25%, rgba(126, 219, 241, 0.9), transparent 32%),
    linear-gradient(135deg, #385f7b, #89dff2);
  color: #fff;
}

.alps-cta .alps-section-head p {
  color: rgba(255, 255, 255, 0.88);
}

.alps-site-footer {
  padding: clamp(72px, 9vw, 128px) 0 clamp(42px, 5vw, 64px);
  background:
    radial-gradient(circle at 88% 22%, rgba(126, 219, 241, 0.95), transparent 28%),
    radial-gradient(circle at 92% 92%, rgba(176, 245, 255, 0.55), transparent 30%),
    linear-gradient(135deg, #3c6784 0%, #5eaecb 58%, #7edbf1 100%);
  color: rgba(255, 255, 255, 0.78);
}

.alps-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
}

.alps-footer-brand a {
  color: #fff;
  font-size: 28px;
  font-weight: 850;
  text-decoration: none;
}

.alps-footer-brand p {
  max-width: 260px;
  margin: 16px 0 0;
}

.alps-footer-column h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.alps-footer-column ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.alps-footer-column a {
  color: rgba(255, 255, 255, 0.72);
}

.alps-footer-column a:hover {
  color: #fff;
}

.alps-footer-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: clamp(48px, 6vw, 78px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.alps-footer-bottom p {
  margin: 0;
}

.alps-page-hero {
  padding-block: clamp(64px, 7vw, 118px) clamp(40px, 5vw, 70px);
}

.alps-page-hero .alps-container {
  display: grid;
  gap: 20px;
}

.alps-page-hero h1 {
  margin: 0;
}

.alps-page-hero p {
  margin: 0;
}

.alps-note {
  padding: 18px 20px;
  border-left: 4px solid var(--alps-blue);
  border-radius: 12px;
  background: var(--alps-mist);
  color: var(--alps-text);
}

.alps-note strong {
  color: var(--alps-ink);
}

.wp-site-blocks > * {
  margin-block-start: 0;
}

@media (max-width: 1040px) {
  .alps-grid--3,
  .alps-condition-detail-grid,
  .alps-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .alps-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1120px) {
  :root {
    --alps-container: min(100% - 32px, 1320px);
    --alps-wide: min(100% - 32px, 1600px);
    --alps-sticky-offset: 104px;
  }

  .alps-header-top {
    min-height: 84px;
  }

  .alps-header-link {
    display: none;
  }

  .alps-menu-toggle {
    display: inline-block;
  }

  .alps-header-nav-row {
    border-top: 0;
  }

  .alps-primary-navigation {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    display: none;
    width: 100%;
    min-height: auto;
    padding: 16px;
    background: #fff;
    border-top: 1px solid var(--alps-line);
    border-bottom: 1px solid var(--alps-line);
    box-shadow: var(--alps-shadow-md);
  }

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

  .alps-primary-menu {
    display: grid;
    gap: 6px;
  }

  .alps-primary-menu a {
    width: 100%;
    min-height: 46px;
    padding: 8px 4px;
  }

  .alps-primary-menu .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px 18px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .alps-mobile-menu-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 12px;
  }

  .alps-hero {
    margin-bottom: 0;
    padding-top: 66px;
    padding-bottom: 0;
  }

  .alps-hero__media {
    transform: none;
  }

  .alps-overview-split,
  .alps-detail-grid,
  .alps-cert-card,
  .alps-contact-panel,
  .alps-treatment-row {
    grid-template-columns: 1fr;
  }

  .alps-treatment-row {
    gap: 22px;
  }

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

@media (max-width: 782px) {
  body.admin-bar .alps-header-part {
    top: 46px;
  }
}

@media (max-width: 640px) {
  .alps-header-actions {
    gap: 10px;
  }

  .alps-header-actions .alps-button {
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.84rem;
  }

  .alps-logo,
  .alps-logo img {
    width: 84px;
    min-width: 84px;
  }

  .alps-grid--2,
  .alps-grid--3,
  .alps-condition-detail-grid,
  .alps-team-grid,
  .alps-facility-grid,
  .alps-footer-grid,
  .alps-stat-row {
    grid-template-columns: 1fr;
  }

  .alps-section-head h1,
  .alps-page-hero h1,
  .alps-hero h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .alps-hero__media {
    width: min(100% - 28px, 1024px);
    border-width: 5px;
    border-radius: 20px;
  }

  .alps-related-pill {
    width: 100%;
    border-radius: 18px;
  }

  .alps-related-pill a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .alps-footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  .alps-menu-toggle {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 382px) {
  .alps-header-actions .alps-button {
    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;
  }
}
