:root {
  --ink: #10211f;
  --muted: #5c6b67;
  --paper: #fbf7f0;
  --surface: #ffffff;
  --mist: #edf5f2;
  --line: #d9e5df;
  --teal: #0f6966;
  --teal-dark: #083f3e;
  --sage: #7b9a61;
  --clay: #b86645;
  --gold: #e5b96b;
  --shadow: 0 24px 70px rgba(16, 33, 31, 0.13);
  --radius: 8px;
  font-family: "Inter", "Aptos", "Segoe UI", system-ui, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(15, 105, 102, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  background: var(--teal-dark);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only,
.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.honey span {
  display: none;
}

.honey input {
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 240, 0.92);
  border-bottom: 1px solid rgba(217, 229, 223, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-inner,
.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 84px;
  max-width: 226px;
  object-fit: contain;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.64rem 0.8rem;
  border-radius: 6px;
  color: #40504c;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 780;
}

.site-nav a:hover,
.site-nav a[aria-current] {
  color: var(--teal-dark);
  background: rgba(15, 105, 102, 0.09);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.menu-toggle span:first-child,
.menu-toggle span:first-child::before,
.menu-toggle span:first-child::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: var(--ink);
}

.menu-toggle span:first-child::before {
  transform: translateY(-7px);
}

.menu-toggle span:first-child::after {
  transform: translateY(5px);
}

main {
  min-height: 60vh;
}

section {
  padding: clamp(2.35rem, 4.5vw, 3.8rem) 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Inter", "Aptos", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 1.04;
  font-weight: 850;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.06;
  font-weight: 820;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--teal-dark);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 63, 62, 0.9), rgba(8, 63, 62, 0.68) 44%, rgba(8, 63, 62, 0.12)),
    linear-gradient(0deg, rgba(8, 63, 62, 0.26), rgba(8, 63, 62, 0));
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-slide-position, center center);
  opacity: 0;
  animation: heroCrossfade 30s infinite;
}

.hero-slide.slide-1 {
  opacity: 1;
}

.hero-slide.slide-2 {
  animation-delay: 6s;
}

.hero-slide.slide-3 {
  animation-delay: 12s;
}

.hero-slide.slide-4 {
  animation-delay: 18s;
}

.hero-slide.slide-5 {
  animation-delay: 24s;
}

@keyframes heroCrossfade {
  0%,
  16% {
    opacity: 1;
  }

  22%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(5rem, 8vw, 6.25rem) 0 clamp(4rem, 7vw, 5.25rem);
  color: white;
}

.hero .eyebrow {
  color: #f1c391;
}

.hero-lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.hero-lede-alt {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.68rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--teal);
}

.hero .button.primary {
  color: var(--teal-dark);
  background: white;
}

.button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 920px;
  margin-top: 1.15rem;
}

.hero-fact {
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-fact strong,
.hero-fact span {
  display: block;
}

.hero-fact strong {
  margin-bottom: 0.18rem;
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-fact span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.sub-hero-meta {
  max-width: 820px;
}

.sub-hero-meta .hero-fact {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: none;
}

.sub-hero-meta .hero-fact strong {
  color: var(--teal-dark);
}

.sub-hero-meta .hero-fact span {
  color: var(--muted);
}

.button.small {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
}

.text-link {
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.sub-hero {
  background: linear-gradient(135deg, #e8f3ef 0%, #fbf7f0 62%, #f4dfd2 100%);
  padding: clamp(2rem, 4vw, 3.15rem) 0;
}

.sub-hero .section-inner,
.split-feature .section-inner,
.split-band .section-inner,
.content-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.54fr);
  gap: clamp(1.25rem, 3vw, 2.35rem);
  align-items: center;
}

.sub-hero h1 {
  max-width: 1000px;
  font-size: clamp(2.2rem, 3.65vw, 3rem);
  line-height: 1.06;
}

.sub-hero h1 {
  color: var(--teal-dark);
}

.sub-hero p {
  max-width: 720px;
  font-size: 1.1rem;
}

.sub-hero-image,
.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--mist);
}

.sub-hero-image img,
.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 1.35rem;
}

.section-heading p,
.feature-copy p,
.career-cta p,
.contact-cta p {
  max-width: 760px;
  font-size: 1.06rem;
}

.audience-band,
.referral-overview,
.services-band,
.stay-connected-band,
.services-detail,
.care-pathway,
.jobs-band,
.events-band,
.faq-band {
  background: var(--surface);
}

.audience-grid,
.card-grid,
.service-detail-grid,
.pathway-grid {
  display: grid;
  gap: 1rem;
}

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

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

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

.about-why-grid .mini-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: clamp(1.05rem, 1.8vw, 1.35rem);
}

.about-why-grid .mini-card h3 {
  margin-bottom: 0.62rem;
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.18;
}

.about-why-grid .mini-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.48;
}

.career-five-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.career-six-grid .mini-card,
.career-five-grid .mini-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1.05rem, 1.8vw, 1.35rem);
}

.career-six-grid .mini-card h3,
.career-five-grid .mini-card h3 {
  margin-bottom: 0.62rem;
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.18;
}

.career-six-grid .mini-card p,
.career-five-grid .mini-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.48;
}

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

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

.mini-card,
.service-card,
.service-detail,
.pathway-step,
.visual-step-card,
.support-practice-card,
.job-card,
.event-card,
.contact-panel,
.secure-form,
.side-panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 44px rgba(16, 33, 31, 0.06);
}

.mini-card,
.service-card,
.service-detail,
.pathway-step,
.visual-step-card,
.event-card,
.contact-panel,
.secure-form,
.side-panel,
.faq-item {
  padding: clamp(1rem, 2vw, 1.4rem);
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.service-card h3,
.service-card p,
.service-card .text-link {
  margin-inline: clamp(1rem, 2vw, 1.4rem);
}

.service-card h3 {
  margin-top: 0.95rem;
}

.service-card .text-link {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

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

.rich-service-card {
  min-height: 0;
}

.rich-service-card h3,
.rich-service-card p,
.rich-service-card .text-link {
  margin-inline: clamp(0.95rem, 1.4vw, 1.15rem);
}

.rich-service-card h3 {
  margin-top: 0.85rem;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.16;
}

.rich-service-card p {
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.42;
}

.rich-service-card .text-link {
  margin-bottom: 0.9rem;
  font-size: 0.94rem;
}

.rich-service-card .service-card-image img {
  aspect-ratio: 16 / 8.5;
}

.service-card-image-link {
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.service-card-image {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-card-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card-image-link:hover img,
.service-card-image-link:focus-visible img {
  transform: scale(1.035);
}

@media (min-width: 921px) {
  .home-service-overview .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service-overview .service-card {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
  }

  .home-service-overview .service-card:last-child:nth-child(odd) {
    width: calc(50% - 0.5rem);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .home-service-overview .service-card-image-link {
    grid-row: 1 / 4;
    min-height: 100%;
  }

  .home-service-overview .service-card-image,
  .home-service-overview .service-card-image img {
    height: 100%;
  }

  .home-service-overview .service-card-image img {
    aspect-ratio: auto;
    object-fit: cover;
  }

  .home-service-overview .service-card h3 {
    margin: 1rem 1.1rem 0.42rem;
    font-size: clamp(1.04rem, 1.25vw, 1.18rem);
    line-height: 1.16;
  }

  .home-service-overview .service-card p {
    margin: 0 1.1rem 0.74rem;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .home-service-overview .service-card .text-link {
    margin: 0 1.1rem 1rem;
    align-self: end;
  }
}

@media (min-width: 641px) and (max-width: 920px) {
  .home-service-overview .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-service-overview .service-card {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(170px, 0.38fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
  }

  .home-service-overview .service-card-image-link {
    grid-row: 1 / 4;
    min-height: 100%;
  }

  .home-service-overview .service-card-image,
  .home-service-overview .service-card-image img {
    height: 100%;
  }

  .home-service-overview .service-card-image img {
    aspect-ratio: auto;
    object-fit: cover;
  }

  .home-service-overview .service-card h3 {
    margin: 1rem 1rem 0.42rem;
    font-size: 1.05rem;
    line-height: 1.16;
  }

  .home-service-overview .service-card p {
    margin: 0 1rem 0.74rem;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .home-service-overview .service-card .text-link {
    margin: 0 1rem 1rem;
  }
}

.card-line {
  width: 48px;
  height: 4px;
  margin-bottom: 1.35rem;
  border-radius: 99px;
  background: var(--sage);
}

.service-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-weight: 900;
}

.service-detail h2 {
  font-family: "Inter", "Aptos", "Segoe UI", system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.service-detail p + p {
  margin-top: 0.8rem;
}

.pathway-step h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.visual-step-grid,
.support-practice-grid {
  display: grid;
  gap: 1rem;
}

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

.visual-step-card,
.support-practice-card {
  overflow: hidden;
  padding: 0;
}

.visual-step-image,
.support-practice-image {
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.visual-step-image img,
.support-practice-image img {
  width: 100%;
  object-fit: cover;
}

.visual-step-image img {
  aspect-ratio: 4 / 3;
}

.visual-step-copy {
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

.visual-step-copy h3,
.support-practice-copy h3 {
  color: var(--teal-dark);
}

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

.support-practice-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr);
  min-height: 210px;
}

.support-practice-image img {
  height: 100%;
  min-height: 210px;
  aspect-ratio: 1 / 1;
}

.support-practice-copy {
  align-self: center;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
}

.support-practice-copy p:last-child,
.visual-step-copy p:last-child {
  margin-bottom: 0;
}

.home-location-band {
  background:
    linear-gradient(135deg, rgba(15, 105, 102, 0.16), transparent 38%),
    linear-gradient(180deg, #e4f1ea 0%, #f3f8f1 58%, #edf6f1 100%);
  border-top: 1px solid rgba(15, 105, 102, 0.14);
  border-bottom: 1px solid rgba(15, 105, 102, 0.14);
}

.home-location-band .section-heading {
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  border-left: 5px solid var(--sage);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
}

.home-location-band .section-heading h2 {
  color: var(--teal-dark);
}

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

.home-location-card {
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.2rem, 2.5vw, 1.7rem);
  border: 1px solid rgba(15, 105, 102, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 52px rgba(16, 33, 31, 0.08);
}

.home-location-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.home-location-card h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.12rem;
  line-height: 1.2;
}

.location-icon {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--mist);
}

.location-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 13px;
  height: 13px;
  border: 4px solid var(--teal);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.location-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--surface);
  transform: translate(-50%, -50%);
}

.home-location-detail {
  display: grid;
  gap: 0.22rem;
}

.home-location-detail h4 {
  margin: 0;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-location-detail address,
.home-location-detail p {
  margin: 0;
  color: var(--muted);
}

.home-location-detail address {
  font-style: normal;
}

.home-location-detail a {
  color: var(--teal-dark);
  font-weight: 820;
  text-underline-offset: 3px;
}

.home-location-actions {
  margin-top: 1.25rem;
}

.home-location-actions .button.secondary {
  border-color: rgba(15, 105, 102, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.referral-overview {
  padding-block: clamp(2.25rem, 4vw, 3.5rem);
}

.referral-overview .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.referral-intro {
  padding: clamp(1.4rem, 3vw, 2.15rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #f3f8f5 100%);
  box-shadow: 0 14px 44px rgba(16, 33, 31, 0.05);
}

.referral-intro h2,
.form-heading h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.callout-panel {
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(184, 102, 69, 0.32);
  border-left: 5px solid var(--clay);
  border-radius: var(--radius);
  background: #fff8f3;
  box-shadow: 0 14px 44px rgba(16, 33, 31, 0.05);
}

.callout-panel.soft {
  border-color: rgba(123, 154, 97, 0.34);
  border-left-color: var(--sage);
  background: #f6faf3;
}

.callout-panel h3 {
  margin-bottom: 0.45rem;
  color: var(--teal-dark);
}

.callout-panel p:last-child,
.referral-intro p:last-child,
.form-heading p:last-child {
  margin-bottom: 0;
}

.referral-form-band {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f5 100%);
}

.referral-form-band .section-inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(620px, 1fr);
  align-items: start;
}

.referral-guidance-stack {
  display: grid;
  gap: 1rem;
}

.form-shell {
  scroll-margin-top: 110px;
  display: grid;
  gap: 0.9rem;
  width: 100%;
  max-width: 560px;
  min-width: 0;
  justify-self: end;
  padding: clamp(0.85rem, 2vw, 1.05rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbf8;
  box-shadow: var(--shadow);
}

.referral-form-band .form-shell {
  max-width: 720px;
  padding: clamp(1rem, 2.2vw, 1.35rem);
}

.form-heading {
  padding: 0.2rem 0.15rem 0;
}

.form-heading p {
  font-size: 0.94rem;
  line-height: 1.5;
}

.appointment-form-band .section-inner {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.82fr);
  align-items: start;
}

#appointment-guidance {
  max-width: 620px;
  padding: clamp(0.85rem, 1.7vw, 1rem);
}

#appointment-guidance .form-heading h2 {
  font-size: clamp(1.45rem, 2vw, 1.7rem);
  line-height: 1.12;
}

#appointment-guidance .form-heading p {
  font-size: 0.9rem;
}

#appointment-guidance .step-progress {
  gap: 0.3rem;
}

#appointment-guidance .step-dot {
  min-height: 28px;
  padding: 0.24rem 0.32rem;
  font-size: 0.68rem;
}

#appointment-guidance .step-index {
  width: 17px;
  height: 17px;
}

#appointment-guidance .step-fields {
  gap: 0.58rem 0.72rem;
}

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

.split-feature:nth-of-type(odd) {
  background: #f4f7f3;
}

.split-feature.flip .feature-copy {
  order: 2;
}

.content-band,
.split-band,
.form-band {
  background: var(--surface);
}

.contact-alert-band {
  background: var(--surface);
}

.contact-routes-band {
  padding-top: clamp(2rem, 4vw, 3rem);
}

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

.contact-route-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  box-shadow: 0 14px 44px rgba(16, 33, 31, 0.06);
}

.contact-route-card h3 {
  margin-bottom: 0.55rem;
  color: var(--teal-dark);
}

.contact-form-band {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f5 100%);
}

.contact-form-band .section-inner {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  align-items: start;
}

.contact-form-band .form-shell {
  max-width: none;
  justify-self: stretch;
  padding: clamp(1rem, 2.2vw, 1.4rem);
}

.contact-form-band .form-heading p {
  max-width: 680px;
}

.contact-side-stack {
  display: grid;
  gap: 1rem;
}

.contact-form-band .contact-panel {
  padding: clamp(1.05rem, 1.8vw, 1.35rem);
}

.contact-form-band .contact-panel h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.location-card {
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 44px rgba(16, 33, 31, 0.06);
}

.city-map {
  position: relative;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #dce8e2;
  box-shadow: 0 18px 52px rgba(16, 33, 31, 0.11);
}

.city-map.large {
  min-height: 330px;
}

.city-map.compact {
  min-height: 210px;
  margin: 0.8rem 0 0.25rem;
  box-shadow: 0 12px 34px rgba(16, 33, 31, 0.08);
}

.city-map-viewport,
.city-map-tiles,
.city-map-markers {
  position: absolute;
  inset: 0;
}

.city-map-viewport {
  cursor: grab;
  touch-action: none;
  outline: none;
}

.city-map.dragging .city-map-viewport {
  cursor: grabbing;
}

.city-map-tile {
  position: absolute;
  width: 256px;
  height: 256px;
  user-select: none;
}

.city-map-marker {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 4px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(16, 33, 31, 0.18);
  transform: translate(-50%, -100%) rotate(-45deg);
  cursor: pointer;
}

.city-map-marker.marker-2 {
  background: var(--clay);
}

.city-map-marker-dot {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.city-map-controls {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
}

.city-map-control {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(16, 33, 31, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-dark);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(16, 33, 31, 0.13);
  cursor: pointer;
}

.city-map-attribution {
  right: 0.75rem;
  bottom: 0.75rem;
  position: absolute;
  z-index: 3;
  margin: 0;
  max-width: calc(100% - 1.5rem);
  padding: 0.18rem 0.38rem;
  border: 1px solid rgba(217, 229, 223, 0.72);
  border-radius: 5px;
  background: rgba(251, 247, 240, 0.82);
  color: rgba(8, 63, 62, 0.78);
  font-size: 0.64rem;
  font-weight: 650;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(16, 33, 31, 0.08);
  backdrop-filter: blur(6px);
}

.city-map-attribution:hover,
.city-map-attribution:focus-visible {
  background: rgba(251, 247, 240, 0.95);
  color: var(--teal-dark);
  text-decoration: underline;
}

.location-map-panel,
.location-detail-card {
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 44px rgba(16, 33, 31, 0.06);
}

.location-map-panel h3,
.location-detail-card h3 {
  color: var(--teal-dark);
}

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

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

.location-card-header .eyebrow {
  margin-bottom: 0.45rem;
}

.location-detail-card address {
  color: var(--ink);
  font-style: normal;
  font-weight: 760;
}

.location-detail-card h4 {
  margin: 0 0 0.35rem;
  color: var(--teal-dark);
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.location-hours,
.location-services {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.location-hours p,
.location-services p {
  margin-bottom: 0.35rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.contact-location-summary {
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}

.contact-location-summary:first-of-type {
  border-top: 0;
  padding-top: 0.35rem;
}

.contact-location-summary h3 {
  margin-bottom: 0.25rem;
  color: var(--teal-dark);
  font-size: 1rem;
}

.contact-location-summary address {
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.contact-location-hours {
  display: grid;
  gap: 0.08rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-location-hours p {
  margin: 0;
}

.legal-content-band .section-inner {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.legal-content-band .prose {
  max-width: 900px;
}

.prose {
  max-width: 820px;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 44px rgba(16, 33, 31, 0.05);
}

.prose h2 {
  margin-top: 2.25rem;
  padding-top: 1.65rem;
  border-top: 1px solid var(--line);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.18;
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.prose h3 {
  margin: 1.45rem 0 0.55rem;
  color: var(--teal-dark);
  font-size: 1.05rem;
  line-height: 1.35;
}

.prose .policy-date {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: 0.42rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--teal-dark);
  background: var(--mist);
  font-size: 0.92rem;
  font-weight: 850;
}

.prose p {
  margin-bottom: 0.9rem;
}

.prose ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.prose li {
  margin-bottom: 0.35rem;
}

.side-panel {
  align-self: start;
  position: sticky;
  top: 104px;
  background: #f2f7f0;
}

.side-panel .button {
  margin-top: 0.4rem;
}

.career-cta,
.contact-cta {
  background: var(--teal-dark);
  color: white;
}

.career-cta .section-inner,
.contact-cta .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.35rem;
  align-items: center;
}

.career-cta .eyebrow,
.contact-cta .eyebrow {
  color: #f1c391;
}

.career-cta p,
.contact-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.job-list {
  display: grid;
  gap: 1.25rem;
}

.job-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid;
  gap: 1.25rem;
  align-items: start;
  border-left: 5px solid rgba(15, 105, 102, 0.72);
}

.job-card h2 {
  font-family: "Inter", "Aptos", "Segoe UI", system-ui, sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.job-card-head {
  display: grid;
  gap: 0.35rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.job-meta span {
  display: inline-flex;
  padding: 0.34rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fbf8;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.job-summary-text {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.job-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.job-bullet-group {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f1;
}

.job-bullet-group h3 {
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
}

.job-bullet-group ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.job-bullet-group li + li {
  margin-top: 0.45rem;
}

.job-card-actions {
  display: flex;
  justify-content: flex-end;
}

.job-category {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mist);
  font-size: 0.78rem;
  font-weight: 850;
}

.job-summary p {
  margin-bottom: 0.65rem;
}

.job-summary ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.job-summary li {
  margin-bottom: 0.45rem;
}

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

.event-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.event-card-image {
  margin: 0;
  background: var(--mist);
}

.event-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.event-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1rem, 1.6vw, 1.25rem);
}

.event-card h2 {
  margin: 0.55rem 0 0.55rem;
  font-family: "Inter", "Aptos", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.02rem, 1.2vw, 1.17rem);
  line-height: 1.18;
}

.event-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.event-card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.event-card time {
  color: var(--clay);
  font-size: 0.84rem;
  font-weight: 860;
}

.event-badge {
  flex: 0 0 auto;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mist);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.1;
}

.event-updates-band,
.events-band,
.stay-connected-band,
.looking-services-band {
  padding-block: clamp(2.5rem, 4.2vw, 4rem);
}

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

.stay-connected-panel,
.compact-split {
  display: grid;
  align-items: center;
  gap: 1.5rem;
}

.stay-connected-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.45rem, 3vw, 2.1rem);
  border: 1px solid rgba(15, 105, 102, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 105, 102, 0.12), rgba(123, 154, 97, 0.08)),
    var(--surface);
  box-shadow: 0 18px 52px rgba(16, 33, 31, 0.08);
}

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

.stay-connected-panel h2,
.compact-split h2 {
  max-width: 780px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.stay-connected-panel p,
.compact-split p {
  max-width: 780px;
  margin-bottom: 0;
}

.stay-connected-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.contact-panel address {
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-style: normal;
}

.contact-panel .panel-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--teal-dark);
  font-weight: 760;
}

.contact-panel .button {
  margin-top: 0.4rem;
}

.secure-form {
  display: grid;
  gap: 0.68rem;
}

.step-form {
  gap: 0.85rem;
  padding: clamp(0.9rem, 1.8vw, 1.15rem);
  border-radius: var(--radius);
  background: #ffffff;
}

.step-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  min-width: 0;
  padding: 0;
}

.step-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-height: 30px;
  padding: 0.28rem 0.38rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.15;
  min-width: 0;
}

.step-dot.active {
  border-color: rgba(15, 105, 102, 0.35);
  background: #eef6f2;
  color: var(--teal-dark);
}

.step-index {
  display: inline-grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 999px;
  background: #edf3ef;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 850;
}

.step-dot.active .step-index {
  background: var(--teal-dark);
  color: #ffffff;
}

.step-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step-panels {
  min-height: 0;
  min-width: 0;
}

.step-panel {
  min-inline-size: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.step-panel legend {
  display: grid;
  gap: 0.16rem;
  margin-bottom: 0.58rem;
}

.step-count {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.step-panel legend strong {
  color: var(--ink);
  font-size: 1rem;
}

.step-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 0.75rem 0.85rem;
}

.step-fields label:has(textarea),
.step-fields .review-summary {
  grid-column: 1 / -1;
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  padding-top: 0.05rem;
}

.step-actions .button {
  min-height: 38px;
  padding: 0.52rem 0.78rem;
}

.review-summary {
  padding: 0.65rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font-size: 0.88rem;
}

.review-summary h3 {
  margin-bottom: 0.42rem;
  font-size: 0.94rem;
}

.review-summary ul {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.review-summary p {
  margin: 0;
  color: var(--muted);
}

.form-confirmation {
  padding: 0.8rem;
  border: 1px solid rgba(15, 105, 102, 0.24);
  border-radius: 8px;
  background: #ffffff;
}

.form-confirmation h3 {
  margin-bottom: 0.45rem;
}

.secure-form label {
  display: grid;
  gap: 0.24rem;
  min-width: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 720;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22rem;
  justify-self: start;
}

.required-mark {
  color: #c0392b;
  font-weight: 900;
}

.secure-form input,
.secure-form textarea,
.secure-form select {
  width: 100%;
  min-width: 0;
  border: 1px solid #c9d8d0;
  border-radius: 6px;
  padding: 0.64rem 0.72rem;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
}

.secure-form input[type="date"] {
  line-height: 1.4;
}

.secure-form input:focus,
.secure-form textarea:focus,
.secure-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 105, 102, 0.18);
}

.form-status {
  min-height: 1rem;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
}

.form-notice {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid #e5c7aa;
  border-radius: 6px;
  background: #fff7eb;
  color: #6b4322;
  font-size: 0.95rem;
  line-height: 1.55;
}

.form-notice.soft {
  border-color: rgba(123, 154, 97, 0.34);
  background: #f6faf3;
  color: #405331;
}

.faq-band .section-inner {
  display: grid;
  gap: 1.15rem;
}

.faq-group {
  display: grid;
  gap: 0.7rem;
}

.faq-group h3 {
  margin: 0.5rem 0 0.1rem;
  color: var(--teal-dark);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-item p {
  margin: 0.75rem 0 0;
}

.site-footer {
  padding-top: 3.5rem;
  color: rgba(255, 255, 255, 0.84);
  background: #11201e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(5, minmax(120px, 1fr));
  gap: 1.6rem;
}

.footer-brand {
  color: white;
}

.footer-brand .brand-logo {
  height: 84px;
  max-width: 220px;
}

.footer-brand .brand-mark {
  background: var(--sage);
}

.footer-about p {
  max-width: 320px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: white;
  font-family: Inter, "Aptos", "Segoe UI", system-ui, sans-serif;
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.42rem;
}

.site-footer a,
.footer-brand small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  margin-top: 2.4rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1080px) {
  .audience-grid,
  .card-grid,
  .contact-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: clamp(2.05rem, 7vw, 3.25rem);
    line-height: 1.08;
  }

  .sub-hero h1 {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 4.5rem 0 4rem;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    inset: 108px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .sub-hero .section-inner,
  .referral-overview .section-inner,
  .referral-form-band .section-inner,
  .contact-form-band .section-inner,
  .split-feature .section-inner,
  .split-band .section-inner,
  .content-band .section-inner,
  .career-cta .section-inner,
  .contact-cta .section-inner {
    grid-template-columns: 1fr;
  }

  .form-shell {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .sub-hero-image img {
    aspect-ratio: 21 / 9;
  }

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

  .career-six-grid,
  .about-why-grid,
  .career-five-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-five-grid .mini-card:last-child {
    grid-column: 1 / -1;
  }

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

  .step-panels {
    min-height: 0;
  }

  .step-actions {
    justify-content: stretch;
  }

  .step-actions .button {
    flex: 1;
  }

  .split-feature.flip .feature-copy {
    order: 0;
  }

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

  .job-detail-grid {
    grid-template-columns: 1fr;
  }

  .job-card-actions {
    justify-content: stretch;
  }

  .job-card-actions .button {
    width: 100%;
  }

  .service-detail-grid,
  .pathway-grid,
  .referral-timeline,
  .visual-step-grid,
  .support-practice-grid,
  .contact-route-grid,
  .location-card-grid,
  .home-location-grid {
    grid-template-columns: 1fr;
  }

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

  .support-practice-image img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .event-update-grid,
  .stay-connected-panel,
  .compact-split {
    grid-template-columns: 1fr;
  }

  .stay-connected-actions {
    justify-content: flex-start;
  }
}

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

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

@media (max-width: 640px) {
  section {
    padding: 1.8rem 0;
  }

  .header-inner,
  .section-inner,
  .footer-grid,
  .footer-bottom,
  .hero-content {
    width: min(100% - 1rem, 1180px);
  }

  .hero {
    min-height: 0;
    padding: 0;
  }

  .header-inner {
    min-height: 92px;
  }

  .brand-logo {
    height: 64px;
    max-width: 172px;
  }

  .site-nav {
    inset-top: 92px;
  }

  h1 {
    font-size: clamp(1.95rem, 8.2vw, 2.35rem);
    line-height: 1.06;
    margin-bottom: 0.7rem;
  }

  .sub-hero h1 {
    font-size: clamp(1.65rem, 6.8vw, 2.05rem);
  }

  .sub-hero {
    padding: 1.65rem 0 1.95rem;
  }

  .sub-hero .section-inner,
  .split-feature .section-inner,
  .split-band .section-inner,
  .content-band .section-inner {
    gap: 1rem;
  }

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

  .hero-content {
    padding: 1.35rem 0 2rem;
  }

  .hero .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero-lede,
  .hero-lede-alt {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .step-fields {
    grid-template-columns: 1fr;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(8, 63, 62, 0.9), rgba(8, 63, 62, 0.66));
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(8, 63, 62, 0.94), rgba(8, 63, 62, 0.72) 58%, rgba(8, 63, 62, 0.32)),
      linear-gradient(0deg, rgba(8, 63, 62, 0.34), rgba(8, 63, 62, 0.08));
  }

  .hero-slide {
    bottom: auto;
    height: clamp(340px, 58vh, 470px);
    object-position: var(--hero-mobile-position, center center);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
  }

  .hero-slide.slide-1 {
    --hero-mobile-position: 64% center;
  }

  .hero-slide.slide-2 {
    --hero-mobile-position: 50% center;
  }

  .hero-slide.slide-3 {
    --hero-mobile-position: 52% center;
  }

  .hero-slide.slide-4 {
    --hero-mobile-position: 50% center;
  }

  .hero-slide.slide-5 {
    --hero-mobile-position: 42% center;
  }

  .audience-grid,
  .card-grid,
  .rich-service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .career-five-grid .mini-card:last-child {
    grid-column: auto;
  }

  .hero-actions,
  .cta-actions,
  .hero-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .hero-fact {
    padding: 0.68rem 0.75rem;
  }

  .hero-fact strong {
    margin-bottom: 0.1rem;
  }

  .hero-fact span {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .button {
    width: 100%;
    min-height: 40px;
    padding-block: 0.58rem;
  }

  .mini-card,
  .service-detail,
  .pathway-step,
  .visual-step-copy,
  .event-card,
  .contact-panel,
  .secure-form,
  .side-panel,
  .faq-item,
  .contact-route-card,
  .location-card {
    padding: 0.92rem;
  }

  .service-card h3 {
    margin-top: 0.85rem;
  }

  .service-card h3,
  .service-card p,
  .service-card .text-link {
    margin-inline: 0.92rem;
  }

  .service-card .text-link {
    margin-bottom: 0.95rem;
  }

  .sub-hero-image img,
  .image-panel img {
    aspect-ratio: 16 / 11;
  }

  .sub-hero-image img {
    aspect-ratio: 16 / 6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }

  .hero-slide.slide-1 {
    opacity: 1;
  }

  .service-card-image img {
    transition: none;
  }
}
