:root {
  /* Brand palette */
  --emerald: #00856A;
  --emerald-dark: #007B68;
  --emerald-hover: #005F5A;
  --navy: #17324D;
  --navy-deep: #102436;
  --blue: #4DA8DA;
  --blue-light: #F4FAFD;
  --gold: #F6C453;
  --gold-accent: #D6A95C;
  --mustard: #F5E6BC;
  --mustard-deep: #EDD896;
  --sand: #F6F2EA;
  --gray-light: #F5F7F9;
  --charcoal: #2D3748;

  /* Mapped scale (keeps existing var names working site-wide) */
  --green-900: var(--navy);
  --green-800: var(--emerald-hover);
  --green-700: var(--emerald);
  --green-600: var(--emerald-dark);
  --green-500: var(--emerald);
  --green-400: var(--blue);
  --green-100: #E8F5F1;
  --green-50: var(--gray-light);
  --ink: var(--charcoal);
  --muted: #5A6578;
  --line: #E2E8EF;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(23, 50, 77, 0.08);
  --shadow-lg: 0 24px 60px rgba(23, 50, 77, 0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1120px;
  --header-h: 72px;
  --app-vh: 1vh;
  --app-vw: 1vw;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy-deep);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga";
  overflow-x: hidden;
}

/* Non-parallax pages (careers, etc.) */
body.page-static {
  background: var(--white);
  overflow-x: clip;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0;
  color: var(--green-900);
  letter-spacing: -0.02em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Icons ---------- */
.icon {
  display: block;
  width: 20px;
  height: 20px;
  color: inherit;
}
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 26px; height: 26px; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--emerald), var(--navy));
  z-index: 100;
  opacity: 0;
  transition: width 0.1s linear, opacity 0.2s ease;
}
.scroll-progress.is-visible { opacity: 1; }

/* ---------- Reveal animation ---------- */
/* Reveal — GSAP sets initial hidden state; CSS only handles fallback */
.reveal.is-visible { opacity: 1; transform: none; }

/* Fallback when JS/GSAP unavailable */
.no-motion .reveal { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(23, 50, 77, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.brand-logo { height: 38px; width: auto; transition: transform 0.3s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.04); }

/* ---------- Mobile intro splash ---------- */
.mobile-intro {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mobile-intro.is-active { display: flex; pointer-events: auto; }

.mobile-intro-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 50% 35%, var(--blue-light), transparent 60%),
    linear-gradient(180deg, var(--sand), var(--white));
}

.intro-logo-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
  transform: translateZ(0);
}

.intro-logo-spin {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 12px;
  will-change: transform;
  transform: translateZ(0);
}

.intro-logo-full {
  display: block;
  height: var(--intro-logo-h, 86px);
  width: auto;
  max-width: none;
  user-select: none;
  pointer-events: none;
  transform-origin: center center;
  clip-path: inset(0 var(--clip-right, 67%) 0 0 round 0px);
  will-change: clip-path;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

body.intro-active {
  overflow: hidden;
  touch-action: none;
}
body.intro-active .site-header { opacity: 0; pointer-events: none; }
body.intro-active main,
body.intro-active .scroll-progress { visibility: hidden; }
body.intro-done .mobile-intro { display: none !important; }

@media (min-width: 681px) {
  .mobile-intro { display: none !important; }
}

.nav { display: flex; align-items: center; }
.nav-menu {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.94rem; color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.nav-menu a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--emerald);
  transition: width 0.25s var(--ease);
}
.nav-menu a:not(.nav-cta):hover { color: var(--navy); }
.nav-menu a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--emerald); color: var(--white) !important;
  padding: 9px 18px; border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { background: var(--emerald-hover); transform: translateY(-1px); box-shadow: var(--shadow); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem; padding: 13px 28px;
  border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.18s var(--ease), background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--emerald); color: var(--white); box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--emerald-hover); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-secondary {
  background: var(--blue); color: var(--white); box-shadow: var(--shadow);
}
.btn-secondary:hover { background: #3a96c4; box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.6); color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--emerald-dark); transform: translateY(-2px); }
.btn-light {
  background: rgba(255, 255, 255, 0.94); color: var(--navy);
  border-color: rgba(255, 255, 255, 0.5); gap: 8px;
  box-shadow: 0 8px 24px rgba(23, 50, 77, 0.12);
}
.btn-light:hover { background: var(--white); transform: translateY(-2px); }
.btn-light.is-active { background: var(--blue-light); border-color: var(--blue); }
.btn-light.is-loading { opacity: 0.72; pointer-events: none; }
.btn-outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255, 255, 255, 0.55); gap: 8px;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12); border-color: var(--white); transform: translateY(-2px);
}

/* ---------- Parallax scenes ---------- */
.parallax-scene {
  position: relative;
  background: var(--navy-deep);
}

.pin-spacer {
  background: var(--navy-deep);
}

.parallax-pin {
  position: relative;
  width: 100%;
  height: 100dvh;
  height: calc(var(--app-vh, 1vh) * 100);
  overflow: hidden;
  background: var(--navy-deep);
}

.parallax-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.parallax-stage > picture {
  display: contents;
}
.parallax-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(23, 50, 77, 0.15), rgba(0, 95, 90, 0.55));
}

.parallax-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  will-change: transform, opacity;
}

.parallax-subject-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.parallax-subject {
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
  right: auto;
  width: auto;
  height: 86%;
  max-width: none;
  object-fit: contain;
  object-position: left bottom;
  will-change: transform, opacity;
}

.parallax-subject-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(10, 74, 56, 0.12));
  pointer-events: none;
}

/* Therapy scene — bleed behind sticky header, no inset padding */
#therapy.parallax-scene {
  margin-top: calc(-1 * var(--header-h));
}
#therapy .parallax-bg {
  object-position: center 14%;
}
#therapy .parallax-subject {
  height: 94%;
  object-fit: contain;
  object-position: left bottom;
}

/* Staffing scene — centered team, full feet, minimal side gaps */
#staffing .parallax-bg {
  object-position: center 28%;
}
#staffing .parallax-subject {
  left: 50%;
  height: 94%;
  object-fit: contain;
  object-position: center bottom;
}

.parallax-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  transition: none;
  opacity: 1;
  --scrim-bottom: 0;
  --scrim-mid: 0;
  --scrim-top: 0;
  --scrim-stop: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 95, 90, var(--scrim-bottom)) 0%,
    rgba(23, 50, 77, var(--scrim-mid)) 18%,
    rgba(23, 50, 77, var(--scrim-top)) var(--scrim-stop),
    transparent calc(var(--scrim-stop) + 0.01%)
  );
}

.parallax-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 0;
  pointer-events: none;
  overflow: hidden;
}

.parallax-sheet {
  display: flex;
  flex-direction: column;
  width: 100%;
  will-change: transform;
}

.parallax-lead {
  position: relative;
  flex: none;
  overflow: visible;
  padding-bottom: clamp(2vh, 4svh, 6vh);
  pointer-events: none;
  z-index: 1;
}
#staffing .parallax-lead {
  padding-bottom: clamp(20px, 5vh, 36px);
}
.parallax-lead::before {
  content: "";
  position: absolute;
  /* The lead is a centered .container, so break the scrim out to the full
     viewport width while the heading text stays within the container. */
  left: 50%;
  right: auto;
  width: 100vw;
  margin-left: -50vw;
  bottom: 0;
  top: -20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.52) 42%,
    rgba(0, 0, 0, 0.14) 72%,
    transparent 100%
  );
  z-index: -1;
  pointer-events: none;
}
.parallax-lead .eyebrow {
  margin-bottom: 10px;
}
.parallax-lead .eyebrow-light {
  display: inline-block;
  padding: 7px 14px 6px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-shadow: none;
  border-radius: 3px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 3px 12px rgba(16, 36, 54, 0.28);
}
#therapy .parallax-lead .eyebrow-light {
  background: var(--gold);
  color: var(--navy-deep);
}
#staffing .parallax-lead .eyebrow-light {
  background: var(--emerald);
  color: var(--white);
}
.parallax-lead h2 {
  max-width: 720px;
  margin: 0 0 clamp(12px, 2.5vh, 20px);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  text-shadow:
    0 1px 2px rgba(23, 50, 77, 0.55),
    0 4px 20px rgba(23, 50, 77, 0.45);
  letter-spacing: -0.03em;
}

.parallax-panel {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  background: var(--white);
  padding: 32px 0 max(36px, env(safe-area-inset-bottom));
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
  will-change: transform;
}
#therapy .parallax-panel { background: var(--white); }
#staffing .parallax-panel { background: var(--sand); }
#coverage .coverage-body { background: var(--blue-light); }

.panel-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: start;
}
.panel-intro {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}
.panel-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.panel-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.55;
}
.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
}
#staffing .panel-list li::before { background: var(--blue); }

/* Therapy specialty cards */
.specialty-carousel {
  margin: 0 0 24px;
  overflow: hidden;
}
.specialty-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.specialty-card {
  background: #f7f9fb;
  border: 1px solid rgba(15, 35, 55, 0.07);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.specialty-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.specialty-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.specialty-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.panel-stats { display: flex; flex-direction: column; gap: 16px; }
.panel-stat {
  background: var(--gray-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
#therapy .panel-stat {
  background: #E8F5F1;
  border-color: rgba(0, 133, 106, 0.15);
}
#staffing .panel-stat {
  background: var(--white);
  border-color: rgba(77, 168, 218, 0.2);
}
.panel-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
  letter-spacing: -0.03em;
}
#staffing .panel-stat-num { color: var(--navy); }
.panel-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Homepage staffing — open-role list */
.open-roles-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(77, 168, 218, 0.18);
}
.open-roles-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.open-roles-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.open-roles-note {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.open-roles-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.role-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.role-row:hover {
  border-color: rgba(0, 133, 106, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(23, 50, 77, 0.08);
}
.role-row-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}
.role-row-title {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--green-900);
  letter-spacing: -0.02em;
}
.role-row-meta {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}
.role-row-action {
  flex: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-700);
}
.open-roles-all {
  flex: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-700);
  text-decoration: none;
  white-space: nowrap;
}
.open-roles-all:hover {
  color: var(--green-900);
  text-decoration: underline;
}

@media (min-width: 900px) {
  .open-roles-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .role-row {
    padding: 16px 18px;
  }

  .role-row-title {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .open-roles-block {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid rgba(77, 168, 218, 0.22);
    border-radius: var(--radius);
    background: var(--white);
  }

  .open-roles-head {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }

  .role-row {
    background: var(--sand);
  }
}

/* Map scene — locked hero + parallax facility list */
.parallax-scene-map .map-stage {
  background: #eef3f7;
}
.map-stage {
  padding: 0;
}
.coverage-pin {
  position: relative;
  width: 100%;
  height: 100dvh;
  height: calc(var(--app-vh, 1vh) * 100);
  overflow: hidden;
}
.coverage-hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  overflow: hidden;
  will-change: height;
}
.coverage-hero .map-stage {
  position: absolute;
  inset: 0;
}
.coverage-hero-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: clamp(88px, 16vh, 128px);
  padding-bottom: max(32px, calc(env(safe-area-inset-bottom) + 24px));
  /* The CTA box stretches a tall transparent area over the lower map; let taps
     fall through to the map (pins/attribution) and only catch the button. */
  pointer-events: none;
}
.coverage-hero-cta .btn-location {
  background: var(--white);
  color: var(--navy);
  border: none;
  gap: 10px;
  font-size: 1rem;
  padding: 14px 26px;
  box-shadow: 0 12px 36px rgba(23, 50, 77, 0.32);
  pointer-events: auto;
}
.coverage-hero-cta .btn-location:hover {
  background: var(--gray-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(23, 50, 77, 0.38);
}
.coverage-hero-cta .btn-location.is-active {
  background: var(--blue-light);
  color: var(--emerald-hover);
  box-shadow: 0 10px 28px rgba(23, 50, 77, 0.22);
}
.coverage-hero-cta .btn-location.is-loading {
  opacity: 0.85;
  pointer-events: none;
}
.coverage-body {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: var(--white);
  will-change: top;
  box-shadow: 0 -18px 48px rgba(8, 32, 26, 0.12);
}
.coverage-filter-bar {
  flex: none;
  position: relative;
  z-index: 2;
  padding: 12px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.region-filter-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  margin: 0;
  scroll-padding-inline: 24px;
}
.region-filter-scroll::-webkit-scrollbar {
  display: none;
}
.coverage-filter-bar .region-filter-scroll {
  margin-top: 0;
}
.coverage-list-scroller {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
}
.coverage-list-track {
  will-change: transform;
}
.coverage-list-track .coverage-panel-head {
  padding-top: 20px;
  margin-bottom: 20px;
}
.coverage-facilities {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 0;
  padding-bottom: 24px;
}
.facility-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  z-index: 2;
  /* The navy backdrop shows through the semi-transparent tiles below, tinting
     the whole map into the footer's navy/blue family. */
  background: var(--navy);
}
.facility-map .leaflet-tile-pane {
  /* Neutralize the stock map colors, then let the navy backdrop bleed through
     at ~45% so the light basemap reads as the footer navy rather than the
     washed-out default or a too-dark near-black. Opacity-over-color is far
     more predictable than hue-rotate gymnastics. */
  filter: grayscale(0.8) brightness(0.86);
  opacity: 0.46;
}
.facility-map .leaflet-container {
  font-family: var(--font-body);
}
.facility-map .leaflet-top.leaflet-left {
  top: calc(var(--header-h) + 10px);
  left: 12px;
}
.facility-map .leaflet-control-attribution {
  font-size: 10px;
  background: rgba(16, 36, 54, 0.78);
  color: rgba(255, 255, 255, 0.72);
}
.facility-map .leaflet-control-attribution a {
  color: rgba(255, 255, 255, 0.9);
}
.coverage-panel-head .eyebrow { color: var(--navy); }
.coverage-panel-head .pulse-dot { background: var(--emerald); box-shadow: 0 0 0 0 rgba(0, 133, 106, 0.45); }
.coverage-panel-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
}
.coverage-location-status {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.4em;
}
.coverage-location-status.is-error { color: #b4451f; }

.facility-marker-wrap,
.user-marker-wrap { background: none; border: 0; }
.facility-marker-wrap { cursor: pointer; }
.facility-marker-svg {
  display: block;
  overflow: visible;
  filter: drop-shadow(0 3px 8px rgba(10, 74, 56, 0.32));
  transition: transform 0.18s ease;
}
.facility-marker-wrap:hover .facility-marker-svg {
  transform: scale(1.12);
  transform-origin: 14px 36px;
}
.facility-marker-pin {
  fill: var(--emerald);
  stroke: #fff;
  stroke-width: 2;
}
.facility-marker-dot { fill: #fff; }
.facility-marker-wrap.is-dimmed { opacity: 0.28; }
.facility-marker-wrap.is-nearest .facility-marker-pin,
.facility-marker-wrap.is-highlight .facility-marker-pin,
.facility-marker-wrap.is-list-active .facility-marker-pin {
  fill: var(--blue);
}
.facility-marker-wrap.is-list-active .facility-marker-svg {
  transform: scale(1.12);
  transform-origin: 14px 36px;
}
.user-marker {
  display: block;
  width: 14px;
  height: 14px;
  background: #2b7fff;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(43, 127, 255, 0.25);
}

.facility-popup .leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0;
}
.facility-popup .leaflet-popup-content { margin: 14px 16px; }
.map-popup-region {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-600);
  margin-bottom: 4px;
}
.map-popup-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green-900);
  line-height: 1.35;
  margin-bottom: 4px;
}
.map-popup-address {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 8px;
}
.map-popup-phone {
  display: inline-block;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 10px;
}
.map-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.map-popup-actions a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-700);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-100);
}
.map-popup-actions a:hover { background: var(--green-700); color: var(--white); }

.coverage-facilities .facility { padding: 20px; }
.facility.is-list-active {
  border-color: var(--green-500);
  box-shadow: 0 14px 36px rgba(10, 74, 56, 0.14);
}

/* Static fallback (reduced motion / no GSAP only) */
.parallax-scene.is-static { height: auto; }
.parallax-scene.is-static .parallax-pin {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  overflow: visible;
}
.parallax-scene.is-static .parallax-stage {
  position: relative;
  flex: none;
  order: 1;
  height: clamp(240px, 48dvh, 400px);
}
.parallax-scene.is-static .parallax-layer {
  object-position: center 22%;
}
.parallax-scene.is-static .parallax-subject {
  height: 92%;
  object-position: left bottom;
}
.parallax-scene.is-static .parallax-subject.is-visible,
.parallax-scene.is-static .parallax-subject {
  opacity: 1;
}
.parallax-scene.is-static .parallax-scrim {
  --scrim-bottom: 0.45;
  --scrim-mid: 0.45;
  --scrim-top: 0.4;
  --scrim-stop: 100%;
}
.parallax-scene.is-static .parallax-content {
  display: contents;
}
.parallax-scene.is-static .parallax-sheet {
  display: contents;
}
.parallax-scene.is-static .parallax-lead {
  flex: none;
  order: 2;
  padding: 22px 0 16px;
  background: var(--green-800);
  pointer-events: none;
}
.parallax-scene.is-static .parallax-lead .container {
  padding-top: 0;
  padding-bottom: 0;
}
.parallax-scene.is-static .parallax-lead h2 {
  font-size: clamp(1.45rem, 6.2vw, 1.85rem);
  max-width: none;
  color: var(--white);
  text-shadow: none;
}
.parallax-scene.is-static .parallax-content.is-visible,
.parallax-scene.is-static .parallax-panel.is-visible,
.parallax-scene.is-static .parallax-panel {
  opacity: 1;
  transform: none;
}
.parallax-scene.is-static .parallax-panel {
  flex: none;
  order: 3;
  border-radius: 0;
  box-shadow: none;
  border-top: none;
  padding: 24px 0 32px;
  background: var(--white);
  pointer-events: auto;
}
.parallax-scene.is-static.parallax-scene-map .coverage-pin {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  overflow: visible;
}
.parallax-scene.is-static .coverage-hero {
  position: relative;
  height: min(42vh, 420px);
  min-height: 280px;
}
.parallax-scene.is-static .coverage-body {
  position: relative;
  top: auto;
  flex: none;
  box-shadow: none;
}
.parallax-scene.is-static .coverage-list-scroller {
  overflow: visible;
}
.parallax-scene.is-static .coverage-list-track {
  transform: none !important;
}
.parallax-scene.is-static .coverage-hero-cta {
  opacity: 1;
  transform: none;
}
.parallax-scene.is-static .facility-map {
  position: absolute;
  inset: 0;
  height: 100%;
}

@media (max-width: 768px) {
  .parallax-scene.is-static .parallax-content {
    min-height: 0;
  }
}

/* Mobile parallax tuning */
@media (max-width: 768px) {
  /* Bleed the first hero under the sticky header so the pin fits one screen. */
  #therapy.parallax-scene {
    margin-top: calc(-1 * var(--header-h));
  }

  .parallax-pin {
    height: 100svh;
    height: calc(var(--app-vh, 1svh) * 100);
    touch-action: pan-y;
  }

  .parallax-content {
    min-height: 100svh;
    min-height: calc(var(--app-vh, 1svh) * 100);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  /* Before GSAP positions the sheet, keep the tall panel from pushing lead off-screen. */
  #therapy:not(.is-scenes-ready) .parallax-panel {
    position: absolute;
    width: 100%;
    left: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* Only needed on mobile where the panel is tall before GSAP positions the sheet. */
  @media (min-width: 769px) {
    #therapy:not(.is-scenes-ready) .parallax-panel {
      position: static;
      visibility: visible;
      pointer-events: auto;
    }
  }

  #therapy .parallax-lead {
    padding-bottom: max(44px, calc(env(safe-area-inset-bottom) + 32px));
  }

  .parallax-lead {
    overflow: visible;
    padding-bottom: max(32px, calc(env(safe-area-inset-bottom) + 20px));
  }

  #staffing .parallax-lead {
    padding-bottom: max(40px, calc(env(safe-area-inset-bottom) + 28px));
  }

  .parallax-lead::before {
    top: -28px;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 38%,
      rgba(0, 0, 0, 0.15) 68%,
      transparent 100%
    );
  }

  .parallax-lead .eyebrow {
    margin-bottom: 8px;
  }

  .parallax-lead h2 {
    font-size: clamp(1.45rem, 6.8vw, 1.95rem);
    max-width: none;
    margin-bottom: clamp(10px, 2vh, 16px);
    text-shadow:
      0 1px 3px rgba(23, 50, 77, 0.65),
      0 6px 24px rgba(23, 50, 77, 0.5);
  }

  .parallax-subject {
    height: 78%;
  }

  #therapy .parallax-bg {
    object-position: 42% 18%;
  }

  #therapy .parallax-subject {
    height: 88%;
    object-position: left bottom;
  }

  #staffing .parallax-bg {
    object-position: 58% 24%;
  }

  #staffing .parallax-subject {
    left: auto;
    right: 0;
    height: 92%;
    object-position: right bottom;
  }

  .parallax-panel {
    padding: 28px 0 max(32px, env(safe-area-inset-bottom));
  }

  .panel-grid { grid-template-columns: 1fr; gap: 20px; }
  .panel-stat { padding: 18px; }
  .panel-stat-num { font-size: 2rem; }
  .panel-intro { font-size: 1rem; margin-bottom: 16px; }
  .panel-list { margin-bottom: 18px; gap: 10px; }
  .panel-list li { font-size: 0.94rem; }

  #therapy .specialty-carousel {
    margin: 0 0 18px;
    overflow: visible;
    width: auto;
  }
  #therapy .specialty-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: none;
    padding: 0;
    transform: none !important;
  }
  #therapy .specialty-card {
    flex: none;
    width: auto;
    padding: 18px 16px;
  }
  .specialty-icon { width: 48px; height: 48px; }
  .specialty-title { font-size: 0.96rem; }
  .specialty-desc { font-size: 0.84rem; }

  .coverage-facilities { grid-template-columns: 1fr; gap: 14px; }
  .coverage-facilities .facility { padding: 18px; }
  .region-filter {
    gap: 8px;
    min-width: 100%;
    padding-left: 18px;
    padding-right: 48px;
  }
  .region-filter-scroll {
    scroll-padding-inline: 18px;
    scroll-padding-right: 48px;
  }
  .coverage-filter-bar { padding: 10px 0 12px; }
  .coverage-filter-bar .chip {
    font-size: 0.78rem;
    padding: 8px 12px;
  }
  .coverage-list-track .coverage-panel-head { padding-top: 16px; margin-bottom: 16px; }
  .container { padding: 0 18px; }
  .map-stage { padding: 0; }
  .coverage-hero-cta {
    flex-direction: column;
    align-items: stretch;
    padding-top: clamp(96px, 18vh, 136px);
    padding-bottom: max(40px, calc(env(safe-area-inset-bottom) + 32px));
  }
  .coverage-hero-cta .btn-location { width: 100%; justify-content: center; }
  .coverage-panel-head { margin-bottom: 18px; }
  .coverage-panel-head h2 { font-size: clamp(1.45rem, 6.5vw, 1.85rem); }
  .coverage-facilities { padding-bottom: max(24px, env(safe-area-inset-bottom)); }
}

@media (min-width: 769px) and (max-width: 980px) {
  .parallax-lead { padding-bottom: clamp(12vh, 16svh, 20vh); }
  .coverage-facilities { grid-template-columns: 1fr; }
}

.hero {
  position: relative;
  padding: 110px 0 96px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sand), var(--white));
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(23,50,77,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,50,77,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
          mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.5;
  animation: float 16s ease-in-out infinite;
}
.orb-1 { width: 420px; height: 420px; top: -120px; right: -80px;
  background: radial-gradient(circle, var(--green-400), transparent 70%); }
.orb-2 { width: 360px; height: 360px; bottom: -140px; left: -100px;
  background: radial-gradient(circle, var(--green-500), transparent 70%); animation-delay: -5s; }
.orb-3 { width: 260px; height: 260px; top: 40%; left: 45%;
  background: radial-gradient(circle, #9be7cd, transparent 70%); opacity: 0.35; animation-delay: -9s; }
.orb-4 { width: 480px; height: 480px; top: -160px; right: -120px;
  background: radial-gradient(circle, var(--green-400), transparent 70%); opacity: 0.3; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-26px, 28px) scale(1.06); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 640px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.72rem; font-weight: 700; color: var(--emerald-dark);
  margin-bottom: 18px;
}
.pulse-dot {
  display: block; flex: none;
  width: 9px; height: 9px; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(0, 133, 106, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 133, 106, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(0, 133, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 133, 106, 0); }
}

.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
  font-weight: 800; letter-spacing: -0.03em;
}
.grad-text {
  background: linear-gradient(120deg, var(--emerald), var(--blue) 55%, var(--navy));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub { margin-top: 22px; font-size: 1.125rem; color: var(--muted); max-width: 560px; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats { display: flex; gap: 36px; margin-top: 54px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--green-100); color: var(--green-700);
  margin-bottom: 4px;
}
.stat-icon .icon { width: 18px; height: 18px; }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  color: var(--green-700); line-height: 1; letter-spacing: -0.03em;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.72rem; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ---------- Hero visual (glass cards) ---------- */
.hero-visual {
  position: relative; height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.glass-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-lg);
  border-radius: 20px;
}
.card-main {
  width: 240px; height: 240px;
  display: flex; align-items: center; justify-content: center;
  animation: bob 6s ease-in-out infinite;
}
.card-ring { position: relative; width: 180px; height: 180px; }
.ring-svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.ring-bg { fill: none; stroke: var(--green-100); stroke-width: 3; }
.ring-fill {
  fill: none; stroke: var(--green-500); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 100 100; stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.hero-visual.is-visible .ring-fill { stroke-dashoffset: 2; }
.ring-label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.ring-label strong { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--green-700); line-height: 1; }
.ring-label span { font-size: 0.78rem; color: var(--muted); margin-top: 6px; max-width: 90px; }

.card-float {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; animation: bob 5s ease-in-out infinite;
}
.card-float strong { display: block; font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--green-900); }
.card-float span { font-size: 0.8rem; color: var(--muted); }
.card-float-1 { top: 18px; left: -10px; animation-delay: -1.5s; }
.card-float-2 { bottom: 26px; right: -14px; animation-delay: -3s; }
.float-icon {
  width: 38px; height: 38px; flex: none; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--green-100); color: var(--green-700);
}
.float-icon svg { width: 20px; height: 20px; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(15,122,92,0.35);
  border-radius: 16px; display: flex; justify-content: center;
}
.scroll-cue span {
  width: 4px; height: 9px; margin-top: 7px; border-radius: 4px;
  background: var(--green-600); animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(-3px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ---------- Sections ---------- */
.section { padding: 92px 0; position: relative; }
.section-alt { background: var(--sand); }
.section-mustard {
  background: linear-gradient(165deg, var(--mustard) 0%, var(--mustard-deep) 100%);
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head .eyebrow { color: var(--emerald-dark); }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.6rem); font-weight: 800; letter-spacing: -0.025em; }
.section-intro { margin-top: 14px; color: var(--muted); font-size: 1.0625rem; line-height: 1.7; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-grid p { color: var(--muted); font-size: 1.0625rem; line-height: 1.75; }

/* ---------- Three pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}
.pillar::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 14px; background: #E8F5F1;
  color: var(--emerald);
  margin-bottom: 18px; transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.pillars .pillar:nth-child(2) .pillar-icon {
  background: var(--blue-light);
  color: var(--blue);
}
.pillars .pillar:nth-child(3) .pillar-icon {
  background: #E8EEF5;
  color: var(--navy);
}
.pillar:hover .pillar-icon { transform: translateY(-2px) scale(1.04); background: var(--emerald); color: var(--white); }
.pillars .pillar:nth-child(2):hover .pillar-icon { background: var(--blue); }
.pillars .pillar:nth-child(3):hover .pillar-icon { background: var(--navy); }
.pillar-icon .icon { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; color: var(--navy); }
.pillar > p { color: var(--muted); font-size: 0.98rem; line-height: 1.65; margin-bottom: 18px; }
.pillar-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px; flex-grow: 1;
}
.pillar-list li {
  position: relative; padding-left: 18px;
  font-size: 0.94rem; color: var(--ink); line-height: 1.55;
}
.pillar-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-500);
}
.pillar-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 700; color: var(--green-700);
}
.pillar-link:hover { color: var(--green-900); }
.pillar-link .icon { transition: transform 0.2s ease; }
.pillar-link:hover .icon { transform: translateX(2px); }

/* ---------- Facilities ---------- */
.region-filter {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 0;
  padding: 0 24px 2px;
  width: max-content;
}

@media (min-width: 769px) {
  .region-filter-scroll {
    display: flex;
    justify-content: center;
  }
}
.chip {
  flex: none;
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap;
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--white); color: var(--ink); cursor: pointer;
  transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--green-500); color: var(--green-700); transform: translateY(-1px); }
.chip.is-active { background: var(--green-700); border-color: var(--green-700); color: var(--white); }
.chip-count {
  font-size: 0.74rem; font-weight: 600; padding: 1px 7px; border-radius: 999px;
  background: var(--green-100); color: var(--green-700);
}
.chip.is-active .chip-count { background: rgba(255,255,255,0.22); color: var(--white); }

.facilities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.facility {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
  animation: cardIn 0.5s var(--ease) both;
  cursor: pointer;
}
.facility:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.facility-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.facility-region {
  display: inline-block; align-self: flex-start;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--green-700); background: var(--green-100);
  padding: 4px 11px; border-radius: 999px;
}
.facility-distance {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-600);
  white-space: nowrap;
}
.facility.is-nearest {
  border-color: var(--green-400);
  box-shadow: 0 16px 40px rgba(10, 74, 56, 0.14);
}
.facility h3 { font-size: 1.06rem; font-weight: 700; color: var(--green-900); margin-bottom: 8px; line-height: 1.35; }
.facility-address {
  display: flex; align-items: flex-start; gap: 8px;
  color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; flex-grow: 1; line-height: 1.5;
}
.facility-address .icon { flex: none; margin-top: 2px; opacity: 0.7; }
.facility-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--green-700); margin-bottom: 14px;
}
.facility-phone:hover { color: var(--green-900); }
.facility-note {
  font-size: 0.82rem; color: #9a6b18; background: #fdf4e3;
  border-radius: var(--radius-sm); padding: 8px 12px; margin-bottom: 14px;
}
.facility-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: auto;
}
.facility-btn {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-100);
  border: 0;
  border-radius: 999px;
  padding: 8px 6px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.facility-btn .icon {
  flex: none;
  width: 14px;
  height: 14px;
}
.facility-btn:hover { background: var(--green-700); color: var(--white); transform: translateY(-1px); }
.facility-btn-ext { background: transparent; border: 1.5px solid var(--line); }
.facility-btn-ext:hover { border-color: var(--green-500); background: var(--green-50); color: var(--green-800); }
.facility-error { color: var(--muted); padding: 24px 0; }

/* ---------- Contact / CTA ---------- */
.section-cta { background: var(--sand); overflow: hidden; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field[hidden] { display: none !important; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--green-900); letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body); font-size: 1rem; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px var(--green-100);
}
.field input[type="file"] { padding: 10px 12px; font-size: 0.92rem; width: 100%; max-width: 100%; }
.field-hint { font-size: 0.85rem; color: var(--muted); margin: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; min-width: 0; }
.field-row.is-single-col { grid-template-columns: 1fr; }
.field-row .field { min-width: 0; }
.form-note.is-success { color: var(--green-700); font-weight: 600; }
.form-confirmation {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.form-confirmation[hidden] { display: none !important; }
.form-confirmation-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
}
.form-confirmation-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 800;
  color: var(--green-900);
  margin: 0 0 12px;
}
.form-confirmation-text {
  margin: 0 auto 22px;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.contact-form-wrap,
.careers-form-wrap {
  min-width: 0;
}
.contact-form-wrap .form-confirmation,
.careers-form-wrap .form-confirmation {
  margin-bottom: 0;
}
.contact-form-wrap .contact-form,
.careers-form-wrap .careers-form {
  width: 100%;
}
.contact-form[hidden],
.careers-form[hidden] {
  display: none !important;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.contact-form .btn { align-self: flex-start; }
.form-note { font-size: 0.92rem; color: var(--green-700); min-height: 1.2em; }
.contact-info {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-lg);
}
.contact-info h3 { font-family: var(--font-display); color: var(--green-700); font-size: 1.2rem; font-weight: 800; }
.contact-info > p { color: var(--muted); margin-top: 4px; }
.contact-list { list-style: none; margin: 22px 0 0; padding: 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-top: 1px solid var(--line); font-size: 0.96rem; color: var(--ink);
}
.contact-list-icon {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: #E8F5F1; color: var(--emerald);
}
.contact-list li:nth-child(2) .contact-list-icon {
  background: var(--blue-light); color: var(--blue);
}
.contact-list li:nth-child(3) .contact-list-icon {
  background: #E8EEF5; color: var(--navy);
}
.contact-list li > div span {
  display: block; font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 3px;
}

/* ---------- Careers page ---------- */
.page-hero {
  padding: 120px 0 64px;
  background: linear-gradient(165deg, var(--sand) 0%, var(--white) 55%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 720px; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800; color: var(--green-900); line-height: 1.15; margin-top: 10px;
}
.page-hero-sub { font-size: 1.12rem; color: var(--muted); margin-top: 16px; line-height: 1.65; }
.jobs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.job-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px; box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.job-card:hover {
  border-color: var(--green-300); box-shadow: var(--shadow-lg); transform: translateY(-2px);
}
.job-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.job-card h3 {
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 800; color: var(--green-900);
}
.job-type {
  flex: none; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--green-700); background: var(--green-100); padding: 5px 10px; border-radius: 999px;
}
.job-location { font-size: 0.9rem; color: var(--green-700); font-weight: 600; margin-bottom: 10px; }
.job-summary { font-size: 0.96rem; color: var(--muted); line-height: 1.6; margin: 0 0 18px; }
.job-apply { margin-top: 4px; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.position-locked-label {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--green-700); margin: 0 0 6px;
}
.position-locked-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
  color: var(--green-900); margin: 0 0 10px;
}
.position-change {
  background: none; border: none; padding: 0; font-size: 0.9rem; font-weight: 600;
  color: var(--green-700); cursor: pointer; text-decoration: underline;
}
.position-change:hover { color: var(--green-900); }
#apply {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

#apply .section-head .eyebrow {
  display: inline-block;
  padding: 7px 14px 6px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(16, 36, 54, 0.12);
}
.careers-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start;
  min-width: 0;
}
.careers-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.careers-form-wrap {
  min-width: 0;
  width: 100%;
}
.careers-aside {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-lg);
}
.careers-aside h3 {
  font-family: var(--font-display); color: var(--green-700); font-size: 1.2rem; font-weight: 800;
}
.careers-benefits {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.careers-benefits li {
  position: relative; padding-left: 22px; font-size: 0.96rem; color: var(--ink); line-height: 1.5;
}
.careers-benefits li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-500);
}
.careers-aside-note { margin-top: 22px; font-size: 0.92rem; color: var(--muted); }
.careers-aside-note a { color: var(--green-700); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); padding: 38px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-logo { height: 34px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a {
  color: rgba(255, 255, 255, 0.82); font-size: 0.92rem; font-weight: 600;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy { color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { height: 320px; order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
  .pillars { grid-template-columns: 1fr; }
  .facilities { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .jobs { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--white);
    border-bottom: 1px solid var(--line); padding: 8px 24px 16px;
    box-shadow: var(--shadow); display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 12px 0; width: 100%; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .facilities { grid-template-columns: 1fr; }
  .hero-stats { gap: 30px; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .hero-visual { display: none; }
  .scroll-cue { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .page-hero { padding: 96px 0 48px; }
  body.page-static .container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }
  .careers-form,
  .form-confirmation {
    padding: 24px 20px;
  }
  .job-card { padding: 22px 20px; }
}

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