:root {
  --body-copy: #3f3f3f;
  --ink: var(--body-copy);
  --muted-ink: #5c6872;
  --topbar-copy: #555;
  --caption-copy: #8e8e8e;
  --quote-copy: #a2a2a2;
  --surface: #fff;
  --surface-wash: rgba(255, 255, 255, .72);
  --soft: #f4efe7;
  --line: #ded5c8;
  --accent-red: #db1f23;
  --site-navy: #102033;
  --brand: var(--accent-red);
  --accent: var(--brand);
  --brand-dark: color-mix(in srgb, var(--accent-red) 72%, black);
  --brand-menu: color-mix(in srgb, var(--accent-red) 84%, black);
  --brand-menu-hover: var(--accent-red);
  --brand-menu-active: color-mix(in srgb, var(--accent-red) 74%, black);
  --brand-border: color-mix(in srgb, var(--accent-red) 24%, transparent);
  --brand-focus-ring: color-mix(in srgb, var(--accent-red) 35%, transparent);
  --brand-soft-bg: color-mix(in srgb, var(--accent-red) 12%, transparent);
  --on-brand: var(--surface);
  --action-blue: #2f6f93;
  --action-blue-dark: color-mix(in srgb, var(--action-blue) 78%, black);
  --action-blue-border: color-mix(in srgb, var(--action-blue) 28%, transparent);
  --action-blue-soft-bg: color-mix(in srgb, var(--action-blue) 11%, transparent);
  --green: #4d6b58;
  --green-soft-bg: rgba(77, 107, 88, .1);
  --muted: var(--muted-ink);
  --page-max: 960px;
  --page-gutter: 32px;
  --mobile-gutter: 24px;
  --page-card-gap: 8px;
  --content-gutter: 56px;
  --page-width: min(var(--page-max), calc(100% - var(--page-gutter)));
  --content-width: min(900px, calc(100% - var(--content-gutter)));
  --content-narrow: 860px;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-xs: 2px;
  --radius-round: 50%;
  --control-height: 44px;
  --control-height-sm: 36px;
  --shadow-color: rgba(37, 49, 60, .12);
  --shadow: 0 18px 45px var(--shadow-color);
  --menu-shadow: 0 16px 30px rgba(37, 49, 60, .16);
  --overlay-scrim: rgba(31, 44, 53, .78);
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body-copy);
  background: url("/assets/img/body-bg.jpg") center top repeat;
}

body.has-gallery-lightbox {
  overflow: hidden;
}

body.home-page {
  --content-width: min(1180px, calc(100% - var(--page-gutter)));
  --page-width: min(1180px, calc(100% - var(--page-gutter)));
  --home-navy: var(--site-navy);
  --home-cream: #f8f3ed;
  background: var(--surface);
}

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

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

a {
  color: var(--brand);
}

a:hover,
a:focus-visible {
  color: var(--brand-dark);
}

h1,
h2,
h3 {
  margin: 0 0 .75rem;
  color: var(--body-copy);
  line-height: 1.18;
  font-weight: 700;
}

h1 {
  max-width: 880px;
  color: var(--brand);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1.2rem;
  padding-left: 1.35rem;
}

li + li {
  margin-top: .35rem;
}

.wrap {
  width: var(--content-width);
  margin: 0 auto;
}

.wrap.narrow {
  max-width: var(--content-narrow);
}

.topbar {
  background: transparent;
  color: var(--topbar-copy);
  font-size: .78rem;
}

.topbar a,
.topbar button {
  color: var(--topbar-copy);
  text-decoration: none;
}

.topbar button {
  appearance: none;
  font: inherit;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  width: var(--page-width);
  padding: .55rem 0 1.35rem;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
  min-height: 20px;
}

.topbar-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-xs);
  background: transparent;
  cursor: pointer;
  line-height: 1;
}

.topbar-icon:hover,
.topbar-icon:focus-visible {
  color: var(--brand);
}

.topbar-icon:focus-visible {
  outline: 2px solid var(--brand-focus-ring);
  outline-offset: 2px;
}

.facebook-glyph {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(1px);
}

.mail-glyph {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
}

.copy-feedback {
  display: inline-block;
  min-width: 42px;
  color: var(--brand);
  font-size: .72rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity .16s ease;
}

.copy-feedback.is-visible {
  opacity: 1;
}

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(222, 213, 200, .78);
  background: var(--surface);
  box-shadow: 0 7px 24px rgba(37, 49, 60, .06);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  align-items: center;
  gap: 2rem;
  width: min(1180px, calc(100% - var(--page-gutter)));
  min-height: 128px;
  padding: 1.1rem 0;
}

.brand img {
  max-height: 104px;
  object-fit: contain;
}

.topbar {
  display: none;
}

.primary-nav .nav-item > a {
  border-radius: var(--radius-sm);
  padding: .78rem 1.1rem;
  transition: background .18s ease, box-shadow .18s ease, color .18s ease;
}

.primary-nav .nav-item.active > a,
.primary-nav a[aria-current="page"] {
  box-shadow: 0 10px 20px rgba(219, 31, 35, .18);
}

.primary-nav .nav-item:not(.active) > a:hover,
.primary-nav .nav-item:not(.active) > a:focus-visible {
  background: var(--brand-soft-bg);
  color: var(--brand-dark);
}

.primary-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: .8rem;
}

.nav-item {
  position: relative;
}

.primary-nav a,
.subnav a {
  color: var(--ink);
  text-decoration: none;
}

.primary-nav .nav-item > a {
  display: block;
  padding: .78rem 1.1rem;
  white-space: nowrap;
}

.primary-nav .nav-item.active > a,
.primary-nav a[aria-current="page"] {
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 700;
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  min-width: 214px;
  background: var(--brand-menu);
  box-shadow: var(--menu-shadow);
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  display: block;
}

.dropdown .nav-item > a {
  color: var(--on-brand);
  font-size: .9rem;
  font-weight: 400;
  padding: 1rem 1.2rem;
}

.primary-nav .dropdown .nav-item > a:hover,
.primary-nav .dropdown .nav-item > a:focus-visible,
.primary-nav .dropdown .nav-item:focus-within > a {
  background: var(--brand-menu-hover);
  color: var(--on-brand);
}

.dropdown .nav-item.active > a,
.dropdown a[aria-current="page"] {
  background: var(--brand-menu-active);
}

.dropdown .dropdown {
  left: 100%;
  top: 0;
}

.dropdown .has-children > a::after {
  content: ">";
  float: right;
  margin-left: 1.5rem;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.5rem;
}

.subnav a {
  border: 1px solid var(--brand-border);
  background: var(--surface-wash);
  padding: .55rem .7rem;
}

.employment-section-nav,
.services-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem;
  border-bottom: 1px solid var(--line);
  padding-top: .85rem;
  padding-bottom: .75rem;
}

.employment-section-nav a,
.services-section-nav a {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-wash);
  color: var(--body-copy);
  padding: .46rem .7rem;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.employment-section-nav a:hover,
.employment-section-nav a:focus-visible,
.services-section-nav a:hover,
.services-section-nav a:focus-visible {
  border-color: var(--brand-border);
  color: var(--brand);
}

.employment-section-nav a[aria-current="page"],
.services-section-nav a[aria-current="page"] {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--on-brand);
}

.hero,
.page-hero {
  width: var(--page-width);
  margin: 0 auto;
  padding: 2rem 0 0;
  background: var(--surface);
}

.page-hero + .section {
  padding-top: 1.35rem;
}

.home-hero {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-grid,
.two-column,
.contact-grid,
.faq-layout {
  display: grid;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}

.hero-grid {
  grid-template-columns: 1.1fr .9fr;
}

.two-column,
.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
}

.faq-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.hero p,
.page-hero p,
.lede {
  max-width: 760px;
  color: var(--muted-ink);
  font-size: 1.12rem;
}

.hero-media,
.image-frame {
  margin: 0;
}

.hero-media img,
.image-frame img,
.contact-card img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: var(--surface);
}

.home-intro {
  position: relative;
  width: 100%;
  padding: 0;
  border-bottom: 0;
  background:
    linear-gradient(90deg, #fff 0%, #fff 42%, rgba(255, 255, 255, .54) 58%, rgba(255, 255, 255, 0) 76%),
    var(--surface);
  overflow: visible;
}

.home-intro::after {
  display: none;
}

.home-hero-shell {
  position: relative;
  display: block;
  min-height: clamp(480px, 40vw, 530px);
}

.home-hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(660px, 55%);
  min-height: clamp(480px, 40vw, 530px);
  padding: clamp(2.5rem, 4vw, 3.7rem) 0 clamp(3.4rem, 5vw, 4.2rem);
}

.home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  margin: 0 0 1.05rem;
  color: var(--brand);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero-copy .home-hero-kicker {
  color: var(--brand);
}

.home-hero-kicker span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: var(--radius-round);
  font-size: .9rem;
  line-height: 1;
}

.home-intro h1 {
  max-width: 660px;
  margin-bottom: 1.1rem;
  color: var(--home-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 4vw, 3.62rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.home-intro h2 {
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-hero-copy p {
  max-width: 505px;
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.7;
}

.section-rule {
  height: 1px;
  margin: 1.25rem 0 1.8rem;
  border: 0;
  background: var(--line);
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .85fr);
  gap: 2rem;
  align-items: start;
}

.home-hero-media {
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2) 0 42%;
  z-index: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--home-cream);
}

.home-hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 34%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .78) 34%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02) 0%, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, .22) 100%);
  pointer-events: none;
}

.home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
}

.welcome-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  background: var(--soft);
}

.welcome-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.welcome-grid p {
  color: var(--body-copy);
}

.home-hero-actions {
  position: relative;
  z-index: 5;
  justify-content: flex-start;
  width: min(720px, calc(100vw - var(--page-gutter)));
  margin-top: 1.7rem;
  gap: .8rem;
  transform: translateY(32px);
}

.home-hero-actions .button {
  min-height: 54px;
  border: 1px solid transparent;
  padding: .75rem 1rem;
  font-size: .92rem;
  box-shadow: 0 12px 28px rgba(37, 49, 60, .12);
}

.home-hero-actions .button-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: var(--radius-xs);
  font-size: 0;
  font-weight: 800;
  line-height: 1;
}

.home-hero-actions .button-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.home-hero-actions .button.secondary,
.home-hero-actions .button.neutral {
  border-color: var(--line);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.home-hero-actions .button.secondary:hover,
.home-hero-actions .button.secondary:focus-visible,
.home-hero-actions .button.neutral:hover,
.home-hero-actions .button.neutral:focus-visible {
  border-color: var(--brand-border);
  background: var(--brand-soft-bg);
  color: var(--brand-dark);
}

.home-summary-section {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: clamp(3.6rem, 5vw, 4.5rem) 0 .75rem;
  background: var(--surface);
}

.home-cards {
  width: 100%;
  padding-top: 1.1rem;
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  background: var(--surface);
}

.section.muted {
  background: var(--surface);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: var(--control-height);
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: var(--on-brand);
  padding: .72rem 1rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:disabled,
button.button:disabled {
  cursor: wait;
  opacity: .72;
}

.button:hover,
.button:focus-visible {
  background: var(--brand-dark);
  color: var(--on-brand);
}

.button-spinner {
  display: none;
  width: 1em;
  height: 1em;
  border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: var(--on-brand);
  border-radius: 999px;
  animation: button-spin .7s linear infinite;
}

.button.is-loading .button-spinner {
  display: inline-block;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-spinner {
    animation: none;
  }
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button.neutral {
  background: #e2e2e2;
  color: #555;
}

.button.neutral:hover,
.button.neutral:focus-visible {
  background: #d0d0d0;
  color: #444;
}

.text-link {
  font-weight: 700;
}

a[data-document-slot-link][aria-disabled="true"] {
  color: var(--muted-ink);
  cursor: default;
  opacity: .72;
  pointer-events: none;
}

.button[data-document-slot-link][aria-disabled="true"] {
  background: #e2e2e2;
  color: #666;
}

.feature-grid,
.three-cards,
.profile-grid,
.blog-list {
  display: grid;
  gap: 1.25rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.feature-card,
.profile-card,
.blog-card,
.text-panel,
.notice-panel,
.contact-card,
.static-form,
.callout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card,
.profile-card,
.blog-card,
.text-panel,
.notice-panel,
.contact-card,
.static-form,
.callout {
  padding: 1.2rem;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.home-cards .feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(222, 213, 200, .95);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 2.35rem 1.05rem 1.2rem;
  box-shadow: 0 16px 36px rgba(37, 49, 60, .1);
  transition: transform .18s ease, box-shadow .18s ease;
}

.home-cards .feature-card:hover,
.home-cards .feature-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(37, 49, 60, .13);
}

.home-card-icon {
  position: absolute;
  top: 1.05rem;
  left: 1.05rem;
  display: block;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-round);
  background: var(--brand);
  box-shadow: 0 10px 20px rgba(219, 31, 35, .24);
}

.home-card-icon::before,
.home-card-icon::after {
  content: "";
  position: absolute;
  background: var(--on-brand);
}

.home-card-icon::before {
  width: 11px;
  height: 11px;
  left: 21px;
  top: 13px;
  border-radius: var(--radius-round);
  box-shadow:
    -11px 6px 0 -2px var(--on-brand),
    11px 6px 0 -2px var(--on-brand);
}

.home-card-icon::after {
  width: 30px;
  height: 13px;
  left: 12px;
  bottom: 13px;
  border-radius: 15px 15px 6px 6px;
}

.home-cards .feature-card h3 {
  color: var(--brand);
  min-height: 54px;
  margin: .05rem 0 1rem 68px;
  align-content: center;
  font-size: 1.08rem;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.home-cards .feature-card h3 a {
  color: inherit;
  text-decoration: none;
}

.home-cards .feature-card img {
  aspect-ratio: 252 / 138;
  margin: 0 0 1.1rem;
  border-radius: var(--radius-sm);
}

.home-cards .feature-card p {
  flex: 1;
  color: var(--body-copy);
  font-size: .96rem;
  line-height: 1.58;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .35rem;
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.feature-link:hover,
.feature-link:focus-visible {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-summary a:not(.button),
.welcome-grid a:not(.button) {
  color: var(--brand);
}

.home-summary a:not(.button):hover,
.home-summary a:not(.button):focus-visible,
.welcome-grid a:not(.button):hover,
.welcome-grid a:not(.button):focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-summary {
  color: var(--body-copy);
}

.home-summary p {
  max-width: 1010px;
  margin: 0;
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.68;
}

.social-gallery {
  width: 100%;
  padding-top: clamp(2.2rem, 4vw, 3.2rem);
  padding-bottom: clamp(3rem, 5vw, 4.8rem);
  background: var(--surface);
}

.social-gallery-wrap {
  display: grid;
  grid-template-columns: minmax(300px, .4fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.social-gallery-copy {
  width: 100%;
  max-width: 360px;
  min-width: 0;
  padding-top: .5rem;
}

.social-gallery-copy h2 {
  position: relative;
  margin: 0 0 1rem;
  padding-bottom: .85rem;
  color: var(--home-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.08;
  max-width: 100%;
  white-space: normal;
}

.social-gallery-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: var(--brand);
}

.social-gallery-copy p:last-child {
  margin: .45rem 0 0;
  color: var(--muted);
}

.social-gallery-actions {
  display: grid;
  gap: .75rem;
  margin-top: 1.55rem;
}

.social-gallery-button {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: .6rem .75rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 49, 60, .08);
}

.social-gallery-button:hover,
.social-gallery-button:focus-visible {
  border-color: var(--brand-border);
  background: var(--brand-soft-bg);
  color: var(--brand-dark);
}

.social-gallery-button:focus-visible {
  outline: 3px solid var(--brand-focus-ring);
  outline-offset: 3px;
}

.social-gallery-button span:last-child {
  display: grid;
  gap: .05rem;
  line-height: 1.15;
}

.social-gallery-button strong {
  font-size: .92rem;
}

.social-gallery-button small {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.social-gallery-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: var(--on-brand);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 0;
}

.social-gallery-icon-facebook {
  background: #2f5f9f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  line-height: 1;
}

.social-gallery-more {
  justify-self: start;
  margin-top: .45rem;
  padding-inline: 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
  .welcome-slide {
    transition: none;
  }

  .social-gallery-card img {
    transition: none;
  }
}

.callout {
  border-left: 5px solid var(--green);
}

.about-page {
  width: 100%;
  padding: 0;
  background: var(--surface);
}

.about-page .wrap {
  width: min(1080px, calc(100% - var(--content-gutter)));
}

.about-intro {
  padding: clamp(3.2rem, 6vw, 5.2rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.about-page .page-title {
  position: relative;
  max-width: 760px;
  margin-bottom: 2.25rem;
  padding-bottom: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.08;
}

.about-page .page-title::after,
.about-page h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: var(--brand);
}

.about-page h2 {
  position: relative;
  margin-bottom: 1.65rem;
  padding-bottom: .85rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.1;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .7fr);
  gap: clamp(3rem, 7vw, 5.5rem);
  align-items: center;
}

.about-copy p,
.about-block p {
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.7;
}

.about-copy p:first-child {
  font-size: 1.12rem;
  line-height: 1.65;
}

.about-owner-photo {
  width: min(100%, 340px);
  max-width: 100%;
  justify-self: end;
  border: 1px solid rgba(222, 213, 200, .9);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(37, 49, 60, .14);
}

.about-block {
  display: flow-root;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.about-basics {
  border-top: 1px solid rgba(222, 213, 200, .78);
  border-bottom: 1px solid rgba(222, 213, 200, .78);
  background: var(--home-cream, #f8f3ed);
}

.about-basics-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}

.about-basics-copy p {
  margin: 0;
}

.about-history {
  padding-bottom: clamp(3.8rem, 6vw, 5.5rem);
}

.about-history-lead {
  max-width: 1020px;
}

.about-history-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.45fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  margin-top: 2rem;
}

.about-history-figure {
  margin: 0;
}

.about-history-figure img {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(37, 49, 60, .12);
}

.about-history-figure figcaption {
  margin-top: .65rem;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.4;
}

.about-history-grid > p {
  margin: 0;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .8rem;
  margin-top: 2.25rem;
}

.about-actions .button {
  min-height: var(--control-height);
  padding: .72rem 1.15rem;
}

.split-sections {
  display: grid;
  gap: 2rem;
}

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

.content-column {
  max-width: 860px;
}

.page-title {
  max-width: none;
  margin: 0 0 .45rem;
  color: var(--brand);
  font-size: clamp(1.7rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
  text-align: left;
  text-transform: none;
}

.services-page,
.service-detail-page,
.faq-page,
.staff-page,
.caregivers-page,
.employment-page,
.blog-page,
.contact-page {
  padding-top: 2rem;
}

.service-detail-page {
  padding-bottom: 2.8rem;
}

.service-detail-page h2 {
  margin: 1.85rem 0 .3rem;
  color: var(--brand);
  font-size: clamp(1.45rem, 2.5vw, 1.65rem);
  font-weight: 400;
}

.service-detail-page h3 {
  margin: 1.75rem 0 .45rem;
  color: var(--body-copy);
  font-size: clamp(1.45rem, 2.5vw, 1.65rem);
  line-height: 1.25;
}

.service-detail-page p {
  color: var(--body-copy);
  line-height: 1.55;
}

.service-detail-page ul {
  margin: 0 0 1.9rem;
  padding-left: 3.25rem;
  color: var(--body-copy);
}

.service-detail-page li + li {
  margin-top: .25rem;
}

.service-detail-page p:last-child {
  margin-bottom: 0;
}

.services-intro {
  margin-bottom: 1.75rem;
  color: var(--body-copy);
}

.service-list {
  display: grid;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 1.6rem 0 1.8rem;
  border-bottom: 1px solid var(--line);
}

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

.service-row.reverse img {
  order: 2;
}

.service-row img {
  width: min(100%, 330px);
  justify-self: center;
  border-radius: 0;
}

.service-row h2,
.service-text-block h2 {
  margin-bottom: .85rem;
  color: var(--brand);
  font-size: 1.13rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-row h2 a,
.service-text-block h2 a {
  color: inherit;
  text-decoration: none;
}

.service-row h2 a:hover,
.service-row h2 a:focus-visible,
.service-text-block h2 a:hover,
.service-text-block h2 a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-row p,
.service-text-block p {
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.55;
}

.service-row p:last-child,
.service-text-block p:last-child {
  margin-bottom: 0;
}

.service-text-block {
  padding: 1.6rem 0 1.9rem;
  border-bottom: 1px solid var(--line);
}

.service-row-last {
  border-bottom: 0;
}

.services-action {
  margin: .8rem 0 0;
  text-align: center;
}

.services-action.button-row {
  justify-content: center;
}

.services-action .button {
  min-height: var(--control-height-sm);
  padding: .48rem 1.7rem;
}

.services-page {
  width: 100%;
  padding: 2.4rem 0 clamp(3.8rem, 6vw, 5.5rem);
  background: var(--surface);
}

.services-page .wrap {
  width: min(1080px, calc(100% - var(--content-gutter)));
}

.services-page .page-title {
  position: relative;
  max-width: 780px;
  margin: 1.1rem 0 1.35rem;
  padding-bottom: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.08;
}

.services-page .page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: var(--brand);
}

.services-page .services-intro {
  max-width: 780px;
  margin-bottom: 1.45rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-page .services-action {
  margin-top: 1.1rem;
}

.services-page .services-action .button {
  min-height: var(--control-height);
  padding: .72rem 1.15rem;
}

.services-page .service-list {
  margin-top: 2.4rem;
}

.services-page .service-row {
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(2.5rem, 5vw, 3.6rem) 0;
}

.services-page .service-row.reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
}

.services-page .service-row img {
  width: min(100%, 420px);
  aspect-ratio: 4 / 3;
  border: 5px solid var(--surface);
  border-radius: var(--radius);
  outline: 1px solid rgba(222, 213, 200, .9);
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(37, 49, 60, .14);
}

.services-page .service-row h2,
.services-page .service-text-block h2 {
  margin-bottom: .8rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.2;
  text-transform: none;
}

.services-page .service-row h2 a,
.services-page .service-text-block h2 a {
  color: inherit;
}

.services-page .service-row h2 a:hover,
.services-page .service-row h2 a:focus-visible,
.services-page .service-text-block h2 a:hover,
.services-page .service-text-block h2 a:focus-visible {
  color: var(--brand);
}

.services-page .service-row p,
.services-page .service-text-block p {
  line-height: 1.7;
}

.services-page .service-text-block {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  margin: .75rem 0;
  border: 1px solid rgba(222, 213, 200, .85);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #f6f7f8;
  padding: 1.6rem 1.75rem;
  box-shadow: 0 10px 24px rgba(37, 49, 60, .06);
}

.services-page .service-text-block h2,
.services-page .service-text-block p {
  margin-top: 0;
  margin-bottom: 0;
}

.services-page .service-list + .services-action {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.employment-intro,
.blog-page .blog-list,
.contact-main .static-form {
  margin-top: 1.35rem;
}

.contact-page {
  width: 100%;
  padding: 2.4rem 0 clamp(3.8rem, 6vw, 5.5rem);
  background: var(--surface);
}

.contact-wrap {
  width: min(1080px, calc(100% - var(--content-gutter)));
  display: block;
}

.contact-hero-image {
  width: 100%;
  height: auto;
  border: 5px solid var(--surface);
  border-radius: var(--radius);
  outline: 1px solid rgba(222, 213, 200, .9);
  box-shadow: 0 18px 38px rgba(37, 49, 60, .13);
}

.contact-page-header {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin: 2.8rem 0 3.2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2.5rem;
}

.contact-page .page-title {
  position: relative;
  margin: 0;
  padding-bottom: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.08;
}

.contact-page .page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: var(--brand);
}

.contact-page-header-copy {
  max-width: 620px;
}

.contact-page-header-copy p {
  margin: 0 0 1rem;
  color: var(--body-copy);
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact-page-header-copy .button {
  min-height: var(--control-height);
  padding: .72rem 1.15rem;
}

.contact-page .contact-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 5.5rem);
}

.contact-main h2,
.contact-sidebar h2 {
  margin: 0 0 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-form {
  max-width: 620px;
  margin-top: 0 !important;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 1.1rem 0 0;
  gap: 1rem;
}

.form-required-note {
  margin: 1.15rem 0 .35rem;
  color: var(--caption-copy);
  font-size: .9rem;
  font-style: italic;
}

.form-required-note span,
.form-label span,
.field-comment span {
  color: var(--brand);
}

.contact-form .form-field,
.contact-form .form-label {
  color: var(--body-copy);
  font-weight: 700;
}

.contact-form .form-label {
  margin: 0 0 .35rem;
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(222, 213, 200, .95);
  background: #fbfbfb;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  outline: 3px solid var(--brand-focus-ring);
  outline-offset: 1px;
}

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

.form-name-row label {
  gap: .18rem;
}

.form-sublabel {
  color: var(--body-copy);
  font-weight: 400;
}

.form-contact-note {
  max-width: 560px;
  margin: .75rem 0 .7rem;
  color: var(--body-copy);
  font-size: .94rem;
}

.contact-form .field-phone,
.contact-form .field-email,
.contact-form .field-comment {
  max-width: none;
}

.contact-form > .button[type="submit"] {
  width: fit-content;
  min-width: 150px;
  min-height: var(--control-height);
}

.contact-sidebar {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.6rem, 4vw, 3rem);
}

.contact-details {
  display: grid;
  gap: 0;
  margin: 0;
}

.contact-details > div {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.contact-details dt {
  margin-bottom: .25rem;
  color: var(--brand);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-details a {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-map {
  margin: .3rem 0 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(222, 213, 200, .9);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(37, 49, 60, .1);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.employment-landing {
  padding-top: 0;
  padding-bottom: 3rem;
}

.employment-rule {
  height: 1px;
  margin: 0 0 1.85rem;
  border: 0;
  background: var(--line);
}

.employment-rule:not(:first-child) {
  margin-top: 2rem;
}

.employment-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.employment-graphic img {
  width: 100%;
  border: 7px solid #244f84;
}

.employee-testimonials h2 {
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.employee-testimonials blockquote {
  margin: 0 0 .7rem;
  padding-left: 1.35rem;
  border-left: 5px solid var(--brand);
  color: var(--quote-copy);
  font-size: .86rem;
  font-style: italic;
  line-height: 1.6;
}

.employee-testimonials cite {
  color: inherit;
  font-style: inherit;
}

.employment-centered-action {
  margin: 1.2rem 0 0;
  text-align: center;
}

.employment-centered-action .button,
.employment-summary .button,
.employment-location-buttons .button {
  min-height: var(--control-height-sm);
  padding: .48rem 1.7rem;
}

.employment-feature-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 6vw, 4rem);
  align-items: center;
}

.employment-feature-links .button {
  min-height: var(--control-height);
  width: 100%;
  font-size: .9rem;
  text-transform: uppercase;
}

.employment-summary {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.employment-summary h1 {
  max-width: none;
  margin-bottom: .9rem;
  color: var(--brand);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.employment-summary p {
  color: var(--body-copy);
}

.employment-location-label {
  margin-top: .7rem;
  text-decoration: underline;
}

.employment-location-buttons {
  display: grid;
  gap: .9rem;
  justify-items: center;
}

.employment-location-buttons .button {
  min-width: 118px;
}

.employment-swoosh {
  width: 100%;
  object-fit: contain;
}

.why-care-page {
  padding-top: 0;
  padding-bottom: 3rem;
}

.why-care-grid {
  align-items: start;
  margin-top: 2.7rem;
}

.why-care-actions {
  display: grid;
  justify-items: center;
  gap: .8rem;
}

.why-care-actions img {
  width: min(100%, 430px);
  margin-bottom: 4rem;
}

.why-care-actions .button {
  width: 235px;
  min-height: var(--control-height-sm);
  padding: .48rem 1.7rem;
  white-space: nowrap;
}

.why-care-copy p {
  color: var(--body-copy);
  font-size: 1.07rem;
  line-height: 1.55;
  text-indent: 3rem;
}

.why-care-copy p + p {
  margin-top: 1.8rem;
}

.why-join-page {
  padding-top: 0;
  padding-bottom: 3rem;
}

.why-join-hero {
  display: grid;
  grid-template-columns: minmax(280px, .66fr) minmax(0, 1fr);
  min-height: 320px;
  margin-bottom: 2.6rem;
  overflow: hidden;
}

.why-join-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--brand);
  color: var(--on-brand);
  padding: 2.4rem 2rem;
}

.why-join-hero-copy h1 {
  max-width: 300px;
  margin-bottom: 1.15rem;
  color: var(--on-brand);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.why-join-hero-copy p {
  color: var(--on-brand);
  font-size: .95rem;
}

.why-join-hero-copy .button {
  min-width: 132px;
  min-height: var(--control-height);
  margin-top: .7rem;
}

.why-join-carousel {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--soft);
}

.why-join-carousel .welcome-slide {
  object-fit: cover;
}

.carousel-dots {
  position: absolute;
  right: 1.8rem;
  bottom: .9rem;
  display: flex;
  gap: .55rem;
  z-index: 2;
}

.carousel-dots span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(0, 0, 0, .35);
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}

.carousel-dots span.is-active {
  background: var(--surface);
}

.why-join-pitch {
  max-width: 860px;
  margin: 0 auto 2.2rem;
}

.why-join-lede {
  max-width: 800px;
  margin: 0 auto 1.55rem;
  text-align: center;
}

.why-join-kicker {
  margin-bottom: .35rem;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.why-join-lede h2,
.why-join-highlight h2,
.why-join-proof h2 {
  color: var(--brand);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.2;
}

.why-join-lede p,
.why-join-card-grid p,
.why-join-highlight p,
.why-join-proof p {
  color: var(--body-copy);
  line-height: 1.55;
}

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

.why-join-card-grid article {
  min-height: 160px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 1.05rem 1.1rem;
}

.why-join-card-grid h3 {
  margin-bottom: .45rem;
  color: var(--body-copy);
  font-size: 1.05rem;
}

.why-join-card-grid p {
  margin-bottom: 0;
}

.why-join-highlight {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-wash);
  padding: 1.4rem 1.55rem 1.2rem;
  text-align: center;
}

.why-join-highlight p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.why-join-highlight p:last-child {
  margin-bottom: 0;
}

.why-join-proof {
  max-width: 860px;
  margin: 0 auto 1.35rem;
  text-align: center;
}

.why-join-proof-copy {
  max-width: 720px;
  margin: 0 auto 1rem;
}

.why-join-employee-quote {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface-wash);
  padding: 1.15rem 1.35rem;
  text-align: left;
}

.why-join-employee-quote p,
.why-join-employee-quote cite {
  color: var(--body-copy);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.why-join-employee-quote p {
  margin-bottom: .45rem;
}

.why-join-employee-quote cite {
  display: block;
  font-weight: 700;
}

.why-join-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 7vw, 4.8rem);
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.why-join-actions .button {
  min-height: var(--control-height-sm);
  width: 100%;
  padding: .48rem .9rem;
  font-size: .9rem;
  white-space: nowrap;
}

.benefits-page {
  padding-top: 0;
  padding-bottom: 4rem;
}

.benefits-content {
  max-width: 860px;
  margin: 2.65rem auto 0;
}

.benefits-content p {
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.55;
}

.benefits-content p + p {
  margin-top: 1.45rem;
}

.benefits-content strong {
  color: var(--body-copy);
}

.benefits-closing {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.benefits-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3.5vw, 2.6rem);
  align-items: center;
  max-width: 900px;
  margin: 1.35rem auto;
}

.benefits-actions .button {
  min-height: var(--control-height-sm);
  width: 100%;
  padding: .48rem .9rem;
  font-size: .9rem;
  white-space: nowrap;
}

.benefits-image-frame {
  display: block;
  width: min(100%, 600px);
  margin: 1.25rem auto 0;
  border: 1px solid var(--line);
  padding: 6px;
  background: var(--surface);
}

.benefits-image-frame img {
  display: block;
  width: 100%;
}

.faq-page {
  padding-top: 2rem;
}

.faq-intro {
  margin-bottom: .65rem;
  color: var(--body-copy);
}

.faq-search-entry {
  margin: 1.25rem 0 1rem;
  max-width: 720px;
}

.faq-search-entry label,
.faq-search-form label {
  display: block;
  margin-bottom: .35rem;
  color: var(--accent);
  font-weight: 700;
}

.faq-search-entry-row,
.faq-search-form-row {
  display: flex;
  gap: .6rem;
}

.faq-search-entry input,
.faq-search-form input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: var(--control-height);
  padding: .45rem .65rem;
  color: var(--body-copy);
  font: inherit;
}

.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0 1.35rem;
}

.faq-category-nav a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--body-copy);
  padding: .35rem .65rem;
  text-decoration: none;
}

.faq-category-nav a:hover,
.faq-category-nav a:focus {
  border-color: var(--accent);
  color: var(--accent);
}

.faq-controls {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0 0 1.1rem;
}

.faq-controls .button {
  min-height: var(--control-height-sm);
  padding: .45rem .9rem;
  font-size: .9rem;
}

.faq-content {
  display: grid;
  gap: .85rem;
}

.faq-category {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-category > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: .9rem 1rem;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}

.faq-category > summary::-webkit-details-marker,
.faq-entry > summary::-webkit-details-marker {
  display: none;
}

.faq-category > summary::after,
.faq-entry > summary::after {
  flex: 0 0 auto;
  width: 1.4rem;
  color: var(--accent);
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

.faq-category[open] > summary::after,
.faq-entry[open] > summary::after {
  content: "-";
}

.faq-category > summary span:first-child {
  color: var(--accent);
  font-size: 1.1rem;
}

.faq-category > summary span:last-child {
  color: var(--muted);
  font-size: .82rem;
  white-space: nowrap;
}

.faq-list {
  border-top: 1px solid var(--line);
  padding: 0 1rem;
}

.faq-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.faq-row-first {
  grid-template-columns: minmax(220px, .42fr) minmax(0, .58fr);
}

.faq-row-third {
  grid-template-columns: minmax(220px, .36fr) minmax(0, .64fr);
}

.faq-row img {
  width: auto;
  max-width: 100%;
  justify-self: center;
}

.faq-entry {
  border-top: 1px solid var(--line);
}

.faq-entry:first-child {
  border-top: 0;
}

.faq-entry > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .3rem 1rem;
  cursor: pointer;
  list-style: none;
  padding: .95rem 0;
}

.faq-question,
.faq-entry .faq-short-answer {
  min-width: 0;
}

.faq-question {
  color: var(--body-copy);
  font-weight: 800;
  line-height: 1.35;
}

.faq-entry > summary::after {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
}

.faq-entry .faq-short-answer {
  grid-column: 1;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.4;
}

.faq-entry-body {
  padding: 0 2.4rem 1.05rem 0;
}

.faq-entry p {
  margin-bottom: 0;
  color: var(--body-copy);
  line-height: 1.55;
}

.faq-entry p + p {
  margin-top: .7rem;
}

.faq-short-answer {
  font-weight: 700;
}

.faq-fact-list {
  margin: .7rem 0 0;
  padding-left: 1.15rem;
}

.faq-fact-list li {
  color: var(--body-copy);
  line-height: 1.5;
}

.faq-related {
  margin-top: .7rem;
}

.faq-modal-open {
  overflow: hidden;
}

.faq-search-modal[hidden] {
  display: none;
}

.faq-search-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.faq-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.faq-search-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(720px, calc(100% - 2rem));
  height: min(680px, calc(100vh - 3rem));
  margin: 1.5rem auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.faq-search-dialog-header {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 1.25rem .85rem;
}

.faq-search-dialog-header h2 {
  margin-bottom: 0;
  color: var(--accent);
  font-size: 1.35rem;
}

.faq-search-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--body-copy);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-search-form {
  flex: 0 0 auto;
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: .9rem 1.25rem 1.25rem;
}

.faq-search-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.faq-chat-log {
  flex: 1 1 auto;
  display: grid;
  align-content: start;
  gap: .8rem;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.faq-chat-message {
  max-width: 92%;
  border-radius: var(--radius);
  padding: .85rem;
}

.faq-chat-message p:last-child {
  margin-bottom: 0;
}

.faq-chat-message-user {
  justify-self: end;
  background: var(--accent);
  color: #fff;
}

.faq-chat-message-user p {
  color: #fff;
}

.faq-chat-message-assistant {
  justify-self: start;
  border: 1px solid var(--line);
  background: #fff;
}

.faq-result-list {
  display: grid;
  gap: .8rem;
  margin-top: .75rem;
}

.faq-result-card {
  padding: 0;
  background: transparent;
}

.faq-result-card h3 {
  margin-bottom: .25rem;
  color: var(--accent);
  font-size: 1rem;
}

.faq-result-meta {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-show-more {
  justify-self: start;
  min-height: var(--control-height-sm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: .35rem .75rem;
}

.faq-show-more:hover,
.faq-show-more:focus {
  border-color: var(--accent);
}

.faq-result-facts {
  margin: .55rem 0 0;
  padding-left: 1.15rem;
}

.faq-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .65rem;
}

.faq-result-actions a,
.faq-result-actions button {
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
}

.faq-group .faq-entry + .faq-entry {
  margin-top: 1.35rem;
}

.faq-action {
  margin: 1.1rem 0 0;
  text-align: center;
}

.faq-action.button-row {
  justify-content: center;
}

.faq-action .button {
  min-height: var(--control-height-sm);
  padding: .48rem 1.7rem;
}

/* Shared presentation for the pages reached from the Services navigation. */
.service-detail-page,
.faq-page {
  width: 100%;
  padding: 2.4rem 0 clamp(3.8rem, 6vw, 5.5rem);
  background: var(--surface);
}

.service-detail-page .wrap,
.faq-page .wrap {
  width: min(1080px, calc(100% - var(--content-gutter)));
}

.service-detail-page .page-title,
.faq-page .page-title {
  position: relative;
  max-width: 860px;
  margin: 1.1rem 0 1.35rem;
  padding-bottom: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.08;
}

.service-detail-page .page-title::after,
.faq-page .page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: var(--brand);
}

.service-detail-page .page-title + p,
.faq-page .faq-intro {
  max-width: 900px;
  margin-bottom: 2.4rem;
  color: var(--body-copy);
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-detail-page h2 {
  max-width: 960px;
  margin: 2.8rem 0 1rem;
  border-left: 4px solid var(--brand);
  padding-left: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
}

.service-detail-page h3 {
  max-width: 960px;
  margin: 2rem 0 .7rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-detail-page p {
  max-width: 960px;
  color: var(--body-copy);
  line-height: 1.75;
}

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

.service-detail-page p a:not(.button) {
  color: var(--brand);
  font-weight: 700;
  text-underline-offset: 2px;
}

.service-detail-page ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem 2.5rem;
  max-width: 960px;
  margin: 0 0 2rem;
  border: 1px solid rgba(222, 213, 200, .85);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #f6f7f8;
  padding: 1.4rem 1.5rem 1.4rem 3rem;
  box-shadow: 0 10px 24px rgba(37, 49, 60, .05);
  color: var(--body-copy);
}

.service-detail-page li {
  padding-left: .15rem;
  line-height: 1.55;
}

.service-detail-page li + li {
  margin-top: 0;
}

.service-detail-page .services-action {
  justify-content: flex-start;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.service-detail-page .services-action .button,
.faq-page .faq-action .button {
  min-height: var(--control-height);
  padding: .72rem 1.15rem;
}

.faq-page .faq-search-entry {
  max-width: 820px;
  margin: 0 0 1.5rem;
  border: 1px solid rgba(222, 213, 200, .85);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #f6f7f8;
  padding: 1.15rem 1.25rem 1.25rem;
}

.faq-page .faq-search-entry label {
  margin-bottom: .55rem;
  color: var(--site-navy);
}

.faq-page .faq-category-nav {
  margin: 1.35rem 0;
}

.faq-page .faq-category-nav a {
  background: var(--surface);
  font-size: .9rem;
  font-weight: 700;
}

.faq-page .faq-category > summary {
  color: var(--site-navy);
}

.faq-page .faq-category > summary span:first-child {
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: none;
}

.faq-page .faq-action {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
  text-align: left;
}

.three-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.5rem 0;
}

.three-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--surface);
}

.faq-list article {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-list h2 {
  font-size: 1.2rem;
}

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

.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.staff-wrap {
  max-width: 720px;
}

.staff-header {
  max-width: none;
  margin: 0;
  text-align: left;
}

.staff-header p {
  color: var(--caption-copy);
  font-size: 1rem;
  line-height: 1.55;
}

.staff-rule {
  height: 1px;
  margin: 2rem 0 1.55rem;
  border: 0;
  background: var(--line);
}

.staff-rule-short {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}

.staff-section > h2,
.staff-info-section h2 {
  margin-bottom: 1.05rem;
  color: var(--brand);
  font-size: 1.15rem;
  text-align: center;
  text-transform: uppercase;
}

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

.staff-owner h3,
.staff-entry h3 {
  margin-bottom: .75rem;
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}

.staff-owner-copy {
  color: var(--body-copy);
  line-height: 1.55;
}

.staff-owner-copy::after {
  display: block;
  clear: both;
  content: "";
}

.staff-owner-copy img {
  float: left;
  width: 136px;
  margin: .25rem .7rem .6rem 0;
}

.staff-owner-copy p,
.staff-entry-copy p,
.staff-info-section p {
  color: var(--body-copy);
}

.staff-contact {
  margin-top: 1.45rem;
}

.staff-list {
  display: grid;
  gap: 3.1rem;
}

.staff-entry-grid {
  display: grid;
  grid-template-columns: minmax(160px, 230px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.staff-entry-grid img {
  width: var(--staff-photo-width, 210px);
  max-width: 100%;
}

.staff-entry.has-image-border img {
  border: 1px solid var(--line);
  padding: 3px;
  background: var(--surface);
}

.staff-entry-copy {
  padding-top: .4rem;
  color: var(--body-copy);
  font-size: .82rem;
  line-height: 1.85;
}

.staff-entry-copy p {
  margin-bottom: 1.45rem;
}

.staff-info-section {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.staff-info-section p {
  font-size: 1rem;
  line-height: 1.55;
}

.staff-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 560px;
  margin-top: 2.1rem;
  margin-right: auto;
  margin-left: auto;
}

.staff-actions .button {
  min-height: var(--control-height-sm);
  width: 100%;
  padding: .42rem .7rem;
  font-size: .9rem;
  white-space: nowrap;
}

.profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem 0 2.5rem;
}

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

.profile-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.caregiver-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.caregiver-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.caregiver-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.caregiver-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: .75rem;
  background: var(--overlay-scrim);
  color: var(--surface);
  font-weight: 700;
}

.staff-page,
.caregivers-page {
  width: 100%;
  padding: 2.4rem 0 clamp(3.8rem, 6vw, 5.5rem);
  background: var(--surface);
}

.staff-page .staff-wrap,
.caregivers-page .wrap {
  width: min(1080px, calc(100% - var(--content-gutter)));
  max-width: none;
}

.staff-page .page-title,
.caregivers-page .page-title {
  position: relative;
  max-width: 860px;
  margin: 0 0 1.35rem;
  padding-bottom: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.08;
}

.staff-page .page-title::after,
.caregivers-page .page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: var(--brand);
}

.staff-page .staff-header p,
.caregivers-page .caregiver-intro {
  max-width: 900px;
  color: var(--body-copy);
  font-size: 1.05rem;
  line-height: 1.75;
}

.staff-page .staff-header p {
  margin-bottom: 0;
}

.staff-page .staff-rule {
  width: 100%;
  margin: 3rem 0 2.35rem;
  background: var(--line);
}

.staff-page .staff-rule-short {
  margin-right: 0;
  margin-left: 0;
}

.staff-page .staff-section > h2,
.staff-page .staff-info-section h2 {
  margin: 0 0 1.4rem;
  border-left: 4px solid var(--brand);
  padding-left: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  text-transform: none;
}

.staff-page .staff-owner-grid {
  gap: 1.35rem;
  align-items: stretch;
}

.staff-page .staff-owner {
  overflow: hidden;
  border: 1px solid rgba(222, 213, 200, .85);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #f6f7f8;
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(37, 49, 60, .07);
}

.staff-page .staff-owner h3,
.staff-page .staff-entry h3 {
  margin-bottom: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.staff-page .staff-owner-copy,
.staff-page .staff-entry-copy {
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.72;
}

.staff-page .staff-owner-copy img {
  width: 160px;
  margin: .15rem 1rem .65rem 0;
  border: 5px solid var(--surface);
  border-radius: var(--radius);
  outline: 1px solid rgba(222, 213, 200, .9);
  box-shadow: 0 10px 22px rgba(37, 49, 60, .12);
}

.staff-page .staff-owner-copy p,
.staff-page .staff-entry-copy p {
  margin-bottom: 1rem;
  line-height: inherit;
}

.staff-page .staff-contact {
  clear: both;
  margin-top: 1.25rem;
  border-left: 3px solid var(--brand);
  background: var(--surface);
  padding: .75rem .85rem;
  font-size: .93rem;
  line-height: 1.65;
}

.staff-page .staff-list {
  gap: 0;
}

.staff-page .staff-entry {
  border-bottom: 1px solid var(--line);
  padding: 2rem 0 2.35rem;
}

.staff-page .staff-entry:first-child {
  padding-top: 0;
}

.staff-page .staff-entry:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.staff-page .staff-entry-grid {
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.staff-page .staff-entry-grid:not(:has(img)) {
  grid-template-columns: 1fr;
}

.staff-page .staff-entry-grid img {
  width: min(var(--staff-photo-width, 220px), 100%);
  border: 5px solid var(--surface);
  border-radius: var(--radius);
  outline: 1px solid rgba(222, 213, 200, .9);
  box-shadow: 0 14px 30px rgba(37, 49, 60, .13);
}

.staff-page .staff-entry.has-image-border img {
  border: 5px solid var(--surface);
  padding: 0;
}

.staff-page .staff-entry-copy {
  max-width: 700px;
  padding-top: 0;
}

.staff-page .staff-info-section {
  max-width: none;
  margin: 0;
  border: 1px solid rgba(222, 213, 200, .85);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #f6f7f8;
  padding: 1.5rem 1.65rem;
  text-align: left;
}

.staff-page .staff-info-section h2 {
  border-left: 0;
  padding-left: 0;
  font-size: 1.5rem;
}

.staff-page .staff-info-section p {
  max-width: 960px;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.72;
}

.staff-page .staff-actions {
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: .7rem;
  max-width: none;
  margin: 3rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.staff-page .staff-actions .button {
  min-height: var(--control-height);
  width: auto;
  padding: .72rem 1.15rem;
}

.staff-page .staff-actions .button:not(:first-child) {
  border-color: var(--line);
  background: var(--surface);
  color: var(--body-copy);
}

.staff-page .staff-actions .button:not(:first-child):hover,
.staff-page .staff-actions .button:not(:first-child):focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.caregivers-page .caregiver-intro {
  max-width: 900px;
  margin: 0 0 2.5rem;
}

.caregivers-page .caregiver-intro p {
  margin-bottom: 0;
  line-height: inherit;
}

.caregivers-page .caregiver-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0;
}

.caregivers-page .caregiver-gallery figure {
  display: flex;
  flex-direction: column;
  flex: 0 1 calc((100% - 3rem) / 4);
  min-width: 0;
  border: 5px solid var(--surface);
  border-radius: var(--radius);
  outline: 1px solid rgba(222, 213, 200, .9);
  box-shadow: 0 14px 30px rgba(37, 49, 60, .13);
}

.caregivers-page .caregiver-gallery img {
  display: block;
  transition: transform 180ms ease;
}

.caregivers-page .caregiver-gallery figure:hover img {
  transform: scale(1.025);
}

.caregivers-page .caregiver-gallery figcaption {
  position: static;
  display: flex;
  align-items: center;
  min-height: 52px;
  border-top: 1px solid var(--line);
  padding: .7rem .85rem;
  background: var(--surface);
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
}

.small-quote {
  margin: 0 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--green);
  color: var(--muted-ink);
}

.small-quote cite {
  display: block;
  margin-top: .4rem;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

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

.check-list li::before {
  position: absolute;
  left: 0;
  top: .05rem;
  color: var(--green);
  content: "\2713";
  font-weight: 700;
}

.benefit-list {
  padding-left: 1.2rem;
}

.application-page {
  padding-top: 0;
  padding-bottom: 3.2rem;
}

.application-job-page {
  width: 100%;
  padding-top: 0;
  padding-bottom: 3.2rem;
  background: var(--surface);
}

.application-job-hero {
  width: min(1080px, calc(100vw - var(--content-gutter)));
  max-width: none;
  aspect-ratio: 18 / 5;
  margin: 1.1rem 0 0 50%;
  border: 5px solid var(--surface);
  border-radius: var(--radius);
  outline: 1px solid rgba(222, 213, 200, .9);
  object-fit: cover;
  object-position: center 48%;
  box-shadow: 0 18px 38px rgba(37, 49, 60, .13);
  transform: translateX(-50%);
}

.application-job-content {
  max-width: 980px;
  margin: 2.25rem auto 0;
}

.application-job-content p,
.application-form-placeholder p,
.application-form-panel p {
  color: var(--body-copy);
  line-height: 1.55;
}

.application-job-intro {
  max-width: 790px;
}

.application-job-intro .page-title {
  position: relative;
  margin-bottom: 1.15rem;
  padding-bottom: .9rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.08;
}

.application-job-intro .page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: var(--brand);
}

.application-job-lede {
  max-width: 760px;
  margin-bottom: .6rem;
  font-size: 1.08rem;
  line-height: 1.65 !important;
}

.application-job-direction {
  margin-bottom: 0;
  color: var(--muted-ink) !important;
  font-size: .96rem;
}

.current-openings {
  margin: 2.35rem 0 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

.current-openings-heading {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(280px, 1.35fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.15rem;
}

.current-openings-heading h2 {
  margin: 0;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
}

.current-openings-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--muted-ink);
  font-size: .95rem;
}

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

.current-opening-card {
  min-width: 0;
  border: 1px solid rgba(222, 213, 200, .9);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  background: #f6f7f8;
  padding: 1rem 1.1rem;
}

.current-opening-card h3 {
  margin-bottom: .42rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  line-height: 1.25;
}

.current-opening-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .75rem;
  margin: 0 0 .35rem;
  color: var(--brand) !important;
  font-size: .86rem;
  font-weight: 700;
}

.current-opening-meta span + span::before {
  content: "\2022";
  margin-right: .75rem;
  color: var(--caption-copy);
}

.current-opening-schedule {
  margin: 0;
  color: var(--body-copy);
  font-size: .94rem;
  line-height: 1.5 !important;
}

.current-opening-status {
  grid-column: 1 / -1;
  margin: 0;
  border-left: 4px solid var(--brand);
  background: #f6f7f8;
  padding: 1rem 1.1rem;
}

.current-openings-note {
  margin: 1rem 0 0;
  color: var(--muted-ink) !important;
  font-size: .91rem;
}

.application-interview-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .8rem 1rem;
  align-items: center;
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--action-blue-border);
  border-radius: var(--radius-sm);
  background: var(--action-blue-soft-bg);
}

.application-interview-callout h2 {
  margin: 0 0 .25rem;
  color: var(--action-blue);
  font-size: 1rem;
  text-transform: uppercase;
}

.application-interview-callout p {
  margin: 0;
}

.application-interview-callout .button {
  white-space: nowrap;
}

.application-form-placeholder,
.application-form-panel {
  margin-top: 1.25rem;
}

.application-form-placeholder h2,
.application-form-panel h2 {
  margin-bottom: .75rem;
  color: var(--brand);
  font-size: 1.12rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.application-form {
  margin-top: .8rem;
  max-width: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  gap: 0;
}

.application-process-brief {
  display: grid;
  gap: .85rem;
  margin: .85rem 0 .75rem;
  padding: 1rem;
  border: 1px solid var(--action-blue-border);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--action-blue-soft-bg) 72%, var(--surface));
  box-shadow: 0 12px 28px rgba(47, 111, 147, .08);
}

.application-path-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem 1rem;
  align-items: center;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--action-blue-border);
}

.application-process-brief h3 {
  margin: 0;
  color: var(--action-blue);
  font-size: .98rem;
  text-transform: uppercase;
}

.application-path-steps {
  counter-reset: application-path-step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-path-steps li {
  counter-increment: application-path-step;
  display: grid;
  align-content: start;
  gap: .35rem;
  margin: 0;
  padding: .75rem;
  border: 1px solid color-mix(in srgb, var(--action-blue-border) 74%, var(--line));
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .78);
  color: var(--body-copy);
  font-size: .95rem;
  line-height: 1.35;
}

.application-path-steps li::before {
  content: counter(application-path-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 8.5rem);
  min-height: 1.85rem;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  background: var(--accent-red);
  color: var(--on-brand);
  font-size: .82rem;
  font-weight: 700;
  justify-self: center;
}

.application-path-steps strong {
  color: var(--heading);
  font-size: .92rem;
}

.application-path-steps span {
  color: var(--body-copy);
  font-size: .88rem;
}

.application-download-button {
  background: var(--action-blue);
  color: var(--on-brand);
  min-height: var(--control-height-sm);
  padding: .55rem .95rem;
  white-space: nowrap;
  width: fit-content;
}

.application-download-button:hover,
.application-download-button:focus-visible {
  background: var(--action-blue-dark);
  color: var(--on-brand);
}

.application-eeo-note {
  margin: .45rem 0 .75rem;
  padding: .7rem .8rem;
  border-left: 4px solid var(--action-blue);
  background: color-mix(in srgb, var(--action-blue-soft-bg) 68%, var(--surface));
  color: var(--body-copy);
  font-size: .92rem;
  line-height: 1.45;
}

.application-draft-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem 1rem;
  align-items: center;
  margin: .75rem 0 1rem;
  padding: .9rem;
  border: 1px solid color-mix(in srgb, var(--green) 28%, var(--line));
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--green-soft-bg) 62%, var(--surface));
}

.application-draft-panel h3 {
  margin: 0 0 .25rem;
  color: var(--heading);
  font-size: .98rem;
}

.application-draft-panel p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.4;
}

.application-draft-status {
  color: var(--green);
  font-weight: 700;
}

.application-draft-status.is-error {
  color: var(--brand);
}

.application-draft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: flex-end;
}

.application-draft-actions .button {
  min-height: var(--control-height-sm);
  padding: .5rem .75rem;
  white-space: nowrap;
}

.application-section {
  display: grid;
  gap: .65rem .85rem;
  margin: 0;
  padding: .9rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.application-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.application-section legend {
  margin: 0 0 .15rem;
  color: var(--brand);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.application-section-upload {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
  align-items: start;
  gap: .55rem 1rem;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.application-section-upload legend {
  grid-column: 1 / -1;
}

.application-section-upload .form-note {
  margin: 0;
}

.application-upload-copy {
  display: grid;
  gap: .55rem;
}

.application-upload-copy > label {
  align-self: stretch;
}

.application-upload-copy .form-sublabel {
  display: block;
  font-size: .82rem;
  line-height: 1.35;
}

.application-upload-size {
  color: var(--muted);
}

.application-section-upload .future-form-slots {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem .9rem;
}

.application-section-upload .future-form-slots p {
  margin: 0;
  font-size: .9rem;
}

.application-shortcut-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .4rem 1rem;
  align-items: center;
  margin: .1rem 0;
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.application-shortcut-panel h3 {
  margin: 0;
  color: var(--heading);
  font-size: .95rem;
}

.application-shortcut-panel p {
  margin: 0;
  font-size: .94rem;
}

.application-shortcut-panel .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  white-space: nowrap;
}

.application-section-upload .application-shortcut-panel {
  grid-template-columns: 1fr;
  align-content: center;
  align-self: stretch;
  margin: 0;
  background: color-mix(in srgb, var(--action-blue-soft-bg) 72%, var(--surface));
}

.application-section-upload .application-shortcut-panel .button {
  grid-column: auto;
  grid-row: auto;
  justify-self: start;
}

.application-details-divider {
  display: grid;
  gap: .25rem;
  margin: .35rem 0 .1rem;
  padding: .85rem 0 .55rem;
  border-top: 2px solid color-mix(in srgb, var(--brand), var(--line) 70%);
}

.application-details-divider h3 {
  margin: 0;
  color: var(--brand);
  font-size: 1rem;
  text-transform: uppercase;
}

.application-details-divider p {
  margin: 0;
  color: var(--body-copy);
  font-size: .94rem;
  line-height: 1.45;
}

.application-field-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem .85rem;
}

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

.application-military-fields {
  display: grid;
  gap: .65rem;
}

.application-field-grid > [data-application-field="email"],
.application-field-grid > [data-application-field="phone"],
.application-field-grid > [data-application-field="certificationFirstName"],
.application-field-grid > [data-application-field="certificationLastName"] {
  grid-column: span 2;
}

.application-radio-group,
.application-yes-no {
  display: grid;
  gap: .35rem .65rem;
}

.application-radio-group [data-position-options] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem .9rem;
}

.application-position-option {
  position: relative;
  min-height: 2.65rem;
  padding: .6rem .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  line-height: 1.25;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.application-position-option:hover,
.application-position-option:has(input:focus-visible) {
  border-color: color-mix(in srgb, var(--brand), var(--line) 40%);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand), transparent 82%);
}

.application-position-option.is-selected,
.application-position-option:has(input:checked) {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand), #fff 92%);
  box-shadow: inset 0 0 0 1px var(--brand);
  color: var(--brand);
  font-weight: 700;
}

.application-yes-no {
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
}

.application-yes-no .form-label {
  grid-column: 1;
}

.application-radio-group label,
.application-yes-no label,
.application-check {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  color: var(--body-copy);
  font-weight: 400;
}

.application-radio-group .application-position-option {
  display: flex;
  gap: .55rem;
  align-items: center;
  color: var(--body-copy);
  font-weight: 600;
}

.application-radio-group .application-position-option.is-selected,
.application-radio-group .application-position-option:has(input:checked) {
  color: var(--brand);
  font-weight: 700;
}

.application-radio-group input,
.application-yes-no input,
.application-check input {
  width: auto;
  margin-top: .18rem;
}

.application-check {
  display: grid;
  justify-items: center;
  gap: .85rem;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

.application-check:has(input:checked) {
  border-color: color-mix(in srgb, var(--green) 36%, transparent);
  background: color-mix(in srgb, var(--green-soft-bg) 72%, var(--surface));
  box-shadow: 0 10px 26px rgba(77, 107, 88, .12);
}

.application-check-copy {
  color: var(--body-copy);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.application-toggle-control {
  position: relative;
  display: inline-flex;
}

.application-toggle-control input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.application-toggle-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 9.4rem;
  min-height: 2.6rem;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #e8e8e8;
  color: #666;
  font-size: .82rem;
  font-weight: 700;
  overflow: hidden;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.application-toggle-thumb {
  position: absolute;
  top: .25rem;
  bottom: .25rem;
  left: .25rem;
  width: calc(50% - .28rem);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 3px 10px rgba(31, 44, 53, .2);
  transition: transform .18s ease;
}

.application-toggle-label {
  position: relative;
  z-index: 1;
  text-align: center;
}

.application-toggle-label-on {
  color: rgba(255, 255, 255, .82);
}

.application-toggle-control input:checked + .application-toggle-track {
  border-color: color-mix(in srgb, var(--green) 65%, var(--surface));
  background: #8db69d;
  color: var(--on-brand);
}

.application-toggle-control input:checked + .application-toggle-track .application-toggle-thumb {
  transform: translateX(calc(100% + .06rem));
}

.application-toggle-control input:checked + .application-toggle-track .application-toggle-label-off {
  color: rgba(255, 255, 255, .82);
}

.application-toggle-control input:checked + .application-toggle-track .application-toggle-label-on {
  color: #31503b;
}

.application-toggle-control input:focus-visible + .application-toggle-track {
  outline: 3px solid var(--brand-focus-ring);
  outline-offset: 3px;
}

.static-form .application-position-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.application-form .form-label {
  margin: 0;
  color: var(--body-copy);
  font-weight: 700;
}

.application-form .form-required-note {
  margin: .7rem 0 .25rem;
}

.application-form .form-name-row {
  gap: .65rem .85rem;
}

.application-form .form-note {
  margin: .15rem 0;
}

.application-subsection,
.application-repeat-card {
  display: grid;
  gap: .65rem .85rem;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.application-repeat-card {
  margin-top: .2rem;
}

.application-subsection h3,
.application-repeat-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: .95rem;
}

.application-skills-table {
  display: grid;
  gap: .35rem;
}

.application-skill-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.2fr) minmax(120px, .8fr) minmax(80px, .55fr) minmax(88px, .55fr);
  gap: .5rem;
  align-items: center;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.application-skill-header {
  border-color: color-mix(in srgb, var(--brand), var(--line) 55%);
  background: color-mix(in srgb, var(--brand), #fff 92%);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.application-skill-row strong {
  color: var(--heading);
  font-size: .92rem;
}

.application-skill-row label {
  display: grid;
  gap: .2rem;
  margin: 0;
  color: var(--body-copy);
  font-size: .82rem;
  font-weight: 700;
}

.application-skill-row label span {
  display: none;
}

.application-skill-row input,
.application-skill-row select {
  width: 100%;
  min-width: 0;
}

.application-form > .application-section > label,
.application-form .form-name-row > label,
.application-form .application-field-grid > label,
.application-form .application-military-fields > label,
.application-form .application-subsection > label,
.application-form .application-repeat-card > label,
.application-form .application-repeat-card .form-name-row > label {
  display: block;
  font-size: .95rem;
}

.application-form input,
.application-form textarea,
.application-form select {
  padding: .55rem .65rem;
  line-height: 1.25;
}

.application-form > .application-section > label > input,
.application-form > .application-section > label > textarea,
.application-form .form-name-row > label > input,
.application-form .application-field-grid > label > input,
.application-form .application-field-grid > label > select,
.application-form .application-field-grid > label > textarea,
.application-form .application-military-fields > label > input,
.application-form .application-subsection > label > input,
.application-form .application-subsection > label > textarea,
.application-form .application-repeat-card > label > input,
.application-form .application-repeat-card > label > textarea,
.application-form .application-repeat-card .form-name-row > label > input {
  margin-top: .22rem;
}

.application-form textarea {
  min-height: 4.9rem;
}

.application-form [data-application-field="otherTraining"] textarea {
  min-height: 6.2rem;
}

.application-form .application-section > p {
  margin: .1rem 0;
  font-size: .95rem;
  line-height: 1.45;
}

.required-marker {
  color: var(--brand);
}

.application-form [hidden] {
  display: none !important;
}

.application-next-step-cta {
  display: grid;
  gap: .45rem;
  margin-top: .8rem;
  padding: 1rem;
  border: 2px solid var(--action-blue);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--action-blue), #fff 94%);
}

.application-next-step-cta h3 {
  margin: 0;
  color: var(--action-blue);
  font-size: 1.05rem;
}

.application-next-step-cta p {
  margin: 0;
}

.application-next-step-cta .button {
  background: var(--action-blue);
  justify-self: start;
}

.application-next-step-cta .button:hover,
.application-next-step-cta .button:focus-visible {
  background: var(--action-blue-dark);
}

.booking-page {
  width: 100%;
  padding: 2.4rem 0 clamp(3.8rem, 6vw, 5.5rem);
  background: var(--surface);
}

.booking-page .page-title,
.policy-page .page-title,
.utility-page .page-title {
  position: relative;
  margin: 0 0 1.35rem;
  padding-bottom: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.08;
}

.booking-page .page-title::after,
.policy-page .page-title::after,
.utility-page .page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: var(--brand);
}

.policy-page,
.utility-page {
  width: 100%;
  padding: 2.4rem 0 clamp(3.8rem, 6vw, 5.5rem);
  background: var(--surface);
}

.policy-page h2 {
  margin-top: 2.2rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.consultation-overview {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.1rem;
  margin: 1.4rem 0;
  padding: 1.25rem;
}

.consultation-overview-copy {
  display: grid;
  gap: .45rem;
}

.consultation-overview-copy h2 {
  color: var(--brand);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
  margin: 0;
}

.consultation-overview-lead,
.consultation-overview-goal {
  color: var(--body-copy);
  margin: 0;
}

.consultation-overview-lead {
  background: linear-gradient(90deg, #fff8f1, #fff);
  border: 1px solid #f5d4bd;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  line-height: 1.55;
  padding: .95rem 1rem;
}

.consultation-overview-list {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.consultation-overview-item {
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid #dde6ee;
  border-radius: var(--radius-sm);
  display: grid;
  gap: .7rem;
  grid-template-columns: auto minmax(0, 1fr);
  padding: .9rem;
}

.consultation-overview-item span {
  align-items: center;
  background: var(--brand);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  height: 1.8rem;
  justify-content: center;
  line-height: 1;
  width: 1.8rem;
}

.consultation-overview-item p {
  margin: 0;
}

.consultation-overview-goal {
  background: #fff8f1;
  border: 1px solid #f5d4bd;
  border-radius: var(--radius-sm);
  font-weight: 700;
  padding: .9rem 1rem;
}

.booking-widget {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.booking-widget-header {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.booking-widget-header h2 {
  margin-bottom: .25rem;
  color: var(--brand);
  font-size: 1.12rem;
  text-transform: uppercase;
}

.booking-status {
  min-width: 220px;
  margin: 0;
  color: var(--brand);
  font-weight: 700;
  text-align: right;
}

.form-status.is-error,
.booking-status.is-error {
  color: #9b1c1f;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(260px, .72fr);
  gap: 1rem;
  align-items: start;
}

.booking-calendar-panel,
.booking-slots-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .9rem;
}

.booking-month-header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: .55rem;
  align-items: center;
  margin-bottom: .7rem;
}

.booking-month-header h3,
.booking-slots-panel h3,
.booking-form h3 {
  margin: 0;
  font-size: 1rem;
  text-align: center;
}

.booking-month-button {
  width: 40px;
  min-height: 40px;
  padding: 0;
}

.booking-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .35rem;
}

.booking-weekdays {
  margin-bottom: .35rem;
  color: var(--muted-ink);
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.booking-calendar-blank,
.booking-day-button {
  min-height: 42px;
}

.booking-day-button,
.booking-slot-button {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.booking-day-button:disabled {
  background: #f1f1f1;
  color: #9b9b9b;
  cursor: not-allowed;
}

.booking-day-button:not(:disabled):hover,
.booking-day-button:not(:disabled):focus-visible,
.booking-slot-button:hover,
.booking-slot-button:focus-visible,
.booking-slot-button.is-selected {
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--brand);
  color: var(--brand);
}

.booking-slot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  margin-top: .8rem;
}

.booking-slot-button {
  min-height: 42px;
  padding: .55rem .65rem;
}

.booking-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: .95rem;
}

.booking-form[hidden] {
  display: none !important;
}

.booking-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}

.booking-submit-status {
  flex: 1 1 240px;
}

.consultation-type-group {
  margin: 0;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.consultation-type-group legend {
  padding: 0 .35rem;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.consultation-type-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}

.consultation-type-option {
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--body-copy);
  cursor: pointer;
  display: grid;
  margin: 0;
  min-height: 100%;
  padding: .85rem;
  position: relative;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease, background-color .16s ease;
}

.consultation-type-option:hover {
  border-color: rgba(155, 28, 31, .55);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
  transform: translateY(-1px);
}

.consultation-type-option:has(input:checked) {
  background: #fff8f1;
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--brand), 0 12px 28px rgba(155, 28, 31, .12);
}

.consultation-type-option input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.consultation-type-option span {
  display: grid;
  gap: .28rem;
  padding-left: 2.1rem;
  position: relative;
}

.consultation-type-option span::before {
  background: #fff;
  border: 2px solid #cbd5e1;
  border-radius: 999px;
  content: "";
  height: 1.25rem;
  left: 0;
  position: absolute;
  top: .08rem;
  width: 1.25rem;
}

.consultation-type-option span::after {
  color: var(--brand);
  content: "\2713";
  font-size: .95rem;
  font-weight: 900;
  height: 1.25rem;
  left: 0;
  line-height: 1.25rem;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: .08rem;
  transform: scale(.65);
  transition: opacity .16s ease, transform .16s ease;
  width: 1.25rem;
}

.consultation-type-option input:checked + span::before {
  border-color: var(--brand);
}

.consultation-type-option input:checked + span::after {
  opacity: 1;
  transform: scale(1);
}

.consultation-type-option input:focus-visible + span::before {
  outline: 3px solid rgba(15, 118, 110, .25);
  outline-offset: 3px;
}

.consultation-type-option small,
.consultation-type-note {
  color: var(--muted-ink);
  font-size: .88rem;
  line-height: 1.4;
}

.consultation-type-note {
  margin: -.2rem 0 .1rem;
}

.consultation-type-note[hidden],
.consultation-location-fields[hidden] {
  display: none !important;
}

.consultation-location-fields {
  display: grid;
  gap: .8rem;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.booking-prefill-note {
  margin: -.2rem 0 .8rem;
  color: var(--muted);
  font-size: .92rem;
}

.booking-form.is-prefilled input[readonly] {
  background: var(--soft);
  border-color: var(--line);
  color: var(--ink);
}

.sms-opt-in {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: .1rem 0 .7rem;
  padding: .75rem .85rem;
  border: 1px solid var(--action-blue-border);
  border-radius: var(--radius-sm);
  background: var(--action-blue-soft-bg);
  color: var(--body-copy);
  font-size: .9rem;
  line-height: 1.45;
}

.sms-opt-in label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin: 0 0 .35rem;
  font-weight: 700;
}

.sms-opt-in input {
  flex: 0 0 auto;
  width: auto;
  min-width: auto;
  margin: .2rem 0 0;
}

.sms-opt-in p {
  margin: 0;
}

.contact-form .sms-opt-in {
  max-width: 400px;
}

.sms-submit-reminder {
  grid-column: 1 / -1;
  max-width: 720px;
  padding: .9rem .95rem;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--brand), #fff 95%);
  color: var(--body-copy);
}

.sms-submit-reminder[hidden] {
  display: none !important;
}

.sms-submit-reminder h3 {
  margin: 0 0 .35rem;
  color: var(--body-copy);
  font-size: 1rem;
  text-align: left;
}

.sms-submit-reminder p {
  margin: 0 0 .55rem;
  font-size: .9rem;
  line-height: 1.45;
}

.sms-submit-reminder p:last-child {
  margin-bottom: 0;
}

.sms-submit-reminder .sms-submit-reminder-note {
  color: var(--muted-ink);
  font-weight: 700;
}

.application-intro {
  display: grid;
  grid-template-columns: minmax(260px, .46fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.85rem;
  border-top: 1px solid var(--line);
}

.application-intro img {
  width: min(100%, 347px);
  justify-self: center;
}

.application-intro-copy {
  max-width: 430px;
}

.application-intro-copy p,
.application-step p,
.application-step li {
  color: var(--body-copy);
  line-height: 1.55;
}

.application-intro-copy .button {
  min-height: var(--control-height-sm);
  margin-top: .35rem;
  padding: .48rem 1.7rem;
}

.application-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.application-step {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.2rem 1.2rem;
  background: var(--surface);
}

.application-step span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: .85rem;
  border-radius: var(--radius-round);
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 700;
}

.application-step h2 {
  margin-bottom: .65rem;
  color: var(--brand);
  font-size: 1.08rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.application-step p:last-child,
.application-step ul:last-child {
  margin-bottom: 0;
}

.application-step ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.application-step li + li {
  margin-top: .35rem;
}

.step-note {
  margin-top: .85rem;
  border-left: 3px solid var(--green);
  padding-left: .8rem;
  color: var(--muted-ink);
  font-size: .95rem;
}

.form-slot-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: .95rem 0;
}

.form-slot-links a {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  background: var(--surface-wash);
  padding: .42rem .65rem;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

/* Shared presentation for the pages reached from the Employment navigation. */
.employment-landing,
.why-care-page,
.why-join-page,
.benefits-page,
.application-page {
  width: 100%;
  padding: 2.4rem 0 clamp(3.8rem, 6vw, 5.5rem);
  background: var(--surface);
}

.employment-landing > .wrap,
.why-care-page > .wrap,
.why-join-page > .wrap,
.benefits-page > .wrap,
.application-page > .wrap {
  width: min(1080px, calc(100% - var(--content-gutter)));
}

.employment-page-header .page-title,
.application-page > .wrap > .page-title {
  position: relative;
  max-width: 860px;
  margin: 1.1rem 0 1.35rem;
  padding-bottom: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.08;
}

.employment-page-header .page-title::after,
.application-page > .wrap > .page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: var(--brand);
}

.employment-landing .employment-feature-grid {
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  margin-top: 2.5rem;
}

.employment-landing .employment-graphic img {
  width: min(100%, 430px);
  justify-self: center;
  border: 5px solid var(--surface);
  border-radius: var(--radius);
  outline: 1px solid rgba(222, 213, 200, .9);
  box-shadow: 0 18px 38px rgba(37, 49, 60, .14);
}

.employment-landing .employee-testimonials h2 {
  margin-bottom: 1.15rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: none;
}

.employment-landing .employee-testimonials blockquote {
  margin: 0 0 .75rem;
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #f6f7f8;
  padding: .85rem 1rem;
  color: var(--body-copy);
  font-size: .93rem;
  line-height: 1.6;
}

.employment-landing .employment-centered-action {
  margin-top: 1.15rem;
  text-align: left;
}

.employment-landing .employment-centered-action .button,
.employment-landing .employment-summary .button,
.employment-landing .employment-location-buttons .button {
  min-height: var(--control-height);
  padding: .72rem 1.15rem;
}

.employment-landing .employment-rule {
  margin: 2.7rem 0;
}

.employment-landing .employment-feature-links {
  gap: .7rem;
}

.employment-landing .employment-feature-links .button {
  border-color: var(--line);
  background: var(--surface);
  color: var(--body-copy);
  font-size: .92rem;
  text-transform: none;
}

.employment-landing .employment-feature-links .button:hover,
.employment-landing .employment-feature-links .button:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.employment-landing .employment-summary {
  max-width: 960px;
  margin: 0;
  text-align: left;
}

.employment-landing .employment-summary h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.employment-landing .employment-summary p {
  max-width: 920px;
  line-height: 1.72;
}

.employment-landing .employment-summary .button-row {
  justify-content: flex-start;
}

.employment-landing .employment-location-label {
  margin-top: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.employment-landing .employment-location-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: flex-start;
}

.employment-landing .employment-swoosh {
  display: none;
}

.why-care-page .why-join-hero,
.why-join-page .why-join-hero,
.benefits-page .why-join-hero {
  grid-template-columns: minmax(310px, .82fr) minmax(0, 1.18fr);
  min-height: 360px;
  margin: 1.1rem 0 3.2rem;
  border: 1px solid rgba(222, 213, 200, .9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 38px rgba(37, 49, 60, .12);
}

.why-care-page .why-join-hero-copy,
.why-join-page .why-join-hero-copy,
.benefits-page .why-join-hero-copy {
  border-left: 4px solid var(--brand);
  background: #f6f7f8;
  color: var(--body-copy);
  padding: clamp(2rem, 4vw, 3rem);
}

.why-care-page .why-join-hero-copy h1,
.why-join-page .why-join-hero-copy h1,
.benefits-page .why-join-hero-copy h1 {
  position: relative;
  max-width: 420px;
  margin-bottom: 1.2rem;
  padding-bottom: .9rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1.08;
  text-transform: none;
}

.why-care-page .why-join-hero-copy h1::after,
.why-join-page .why-join-hero-copy h1::after,
.benefits-page .why-join-hero-copy h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  background: var(--brand);
}

.why-care-page .why-join-hero-copy p,
.why-join-page .why-join-hero-copy p,
.benefits-page .why-join-hero-copy p {
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.65;
}

.why-care-page .why-join-hero-copy .button,
.why-join-page .why-join-hero-copy .button,
.benefits-page .why-join-hero-copy .button {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--on-brand);
}

.why-care-page .why-join-carousel,
.why-join-page .why-join-carousel,
.benefits-page .why-join-carousel {
  min-height: 360px;
}

.why-care-page .carousel-dots span,
.why-join-page .carousel-dots span,
.benefits-page .carousel-dots span {
  border-color: rgba(255, 255, 255, .75);
  background: rgba(16, 32, 51, .45);
}

.why-care-page .carousel-dots span.is-active,
.why-join-page .carousel-dots span.is-active,
.benefits-page .carousel-dots span.is-active {
  background: var(--surface);
}

.why-care-page .why-care-grid {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: 0;
}

.why-care-page .why-care-actions {
  align-content: start;
  justify-items: stretch;
}

.why-care-page .why-care-actions img {
  width: min(100%, 430px);
  margin: 0 0 1.25rem;
  border: 5px solid var(--surface);
  border-radius: var(--radius);
  outline: 1px solid rgba(222, 213, 200, .9);
  box-shadow: 0 16px 34px rgba(37, 49, 60, .13);
}

.why-care-page .why-care-actions .button {
  width: min(100%, 430px);
  min-height: var(--control-height);
  padding: .72rem 1rem;
}

.why-care-page .why-care-actions .button:not(:first-of-type) {
  border-color: var(--line);
  background: var(--surface);
  color: var(--body-copy);
}

.why-care-page .why-care-actions .button:not(:first-of-type):hover,
.why-care-page .why-care-actions .button:not(:first-of-type):focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.why-care-page .why-care-copy {
  max-width: 700px;
}

.why-care-page .why-care-copy p {
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.75;
  text-indent: 0;
}

.why-care-page .why-care-copy p + p {
  margin-top: 1.15rem;
}

.why-join-page .why-join-pitch {
  max-width: 960px;
  margin: 0 0 2.8rem;
}

.why-join-page .why-join-lede {
  max-width: 860px;
  margin: 0 0 1.7rem;
  text-align: left;
}

.why-join-page .why-join-kicker {
  color: var(--brand);
}

.why-join-page .why-join-lede h2,
.why-join-page .why-join-highlight h2,
.why-join-page .why-join-proof h2 {
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
}

.why-join-page .why-join-lede p,
.why-join-page .why-join-card-grid p,
.why-join-page .why-join-highlight p,
.why-join-page .why-join-proof p {
  line-height: 1.7;
}

.why-join-page .why-join-card-grid {
  gap: 1rem;
  margin: 1.7rem 0;
}

.why-join-page .why-join-card-grid article {
  min-height: 0;
  border-color: rgba(222, 213, 200, .85);
  border-left: 4px solid var(--brand);
  background: #f6f7f8;
  padding: 1.25rem;
}

.why-join-page .why-join-card-grid h3 {
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.why-join-page .why-join-highlight {
  border-color: rgba(222, 213, 200, .85);
  border-left: 4px solid var(--brand);
  background: #f6f7f8;
  padding: 1.5rem 1.65rem;
  text-align: left;
}

.why-join-page .why-join-highlight p {
  max-width: 860px;
  margin-right: 0;
  margin-left: 0;
}

.why-join-page .why-join-proof {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  max-width: 960px;
  margin: 0 0 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
  text-align: left;
}

.why-join-page .why-join-proof-copy {
  margin: 0;
}

.why-join-page .why-join-employee-quote {
  max-width: none;
  margin: 0;
  border-left: 4px solid var(--brand);
  background: #f6f7f8;
}

.why-join-page .why-join-actions,
.benefits-page .benefits-actions {
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: .7rem;
  max-width: none;
  margin: 0;
}

.why-join-page .why-join-actions .button,
.benefits-page .benefits-actions .button {
  min-height: var(--control-height);
  width: auto;
  padding: .72rem 1.05rem;
}

.why-join-page .why-join-actions .button:not(:last-child),
.benefits-page .benefits-actions .button:not(:nth-child(2)) {
  border-color: var(--line);
  background: var(--surface);
  color: var(--body-copy);
}

.why-join-page .why-join-actions .button:not(:last-child):hover,
.why-join-page .why-join-actions .button:not(:last-child):focus-visible,
.benefits-page .benefits-actions .button:not(:nth-child(2)):hover,
.benefits-page .benefits-actions .button:not(:nth-child(2)):focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.benefits-page .benefits-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 0 2.8rem;
}

.benefits-page .benefits-content > p {
  margin: 0;
  color: var(--body-copy);
  line-height: 1.68;
}

.benefits-page .benefits-content > p:first-child {
  grid-column: 1 / -1;
  max-width: 860px;
  margin-bottom: .5rem;
  font-size: 1.05rem;
}

.benefits-page .benefits-content > p:not(:first-child):not(.benefits-closing) {
  border: 1px solid rgba(222, 213, 200, .85);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #f6f7f8;
  padding: 1.2rem 1.25rem;
}

.benefits-page .benefits-content strong {
  display: block;
  margin-bottom: .4rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
  line-height: 1.3;
}

.benefits-page .benefits-closing {
  grid-column: 1 / -1;
  max-width: 900px;
  margin-top: .7rem;
  border-left: 4px solid var(--brand);
  background: #f6f7f8;
  padding: 1.25rem 1.4rem;
  text-align: left;
}

.benefits-page .benefits-actions {
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.benefits-page .benefits-image-frame {
  width: min(100%, 700px);
  margin: 2.5rem auto 0;
  border: 5px solid var(--surface);
  border-radius: var(--radius);
  outline: 1px solid rgba(222, 213, 200, .9);
  padding: 0;
  box-shadow: 0 16px 34px rgba(37, 49, 60, .13);
}

.application-page .application-intro {
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: 2.3rem;
  border-top: 0;
  padding-top: 0;
}

.application-page .application-intro img {
  width: min(100%, 430px);
  border: 5px solid var(--surface);
  border-radius: var(--radius);
  outline: 1px solid rgba(222, 213, 200, .9);
  box-shadow: 0 16px 34px rgba(37, 49, 60, .13);
}

.application-page .application-intro-copy {
  max-width: 620px;
}

.application-page .application-intro-copy p,
.application-page .application-step p,
.application-page .application-step li {
  line-height: 1.7;
}

.application-page .application-intro-copy .button {
  min-height: var(--control-height);
  padding: .72rem 1.15rem;
}

.application-page .application-flow {
  gap: 1rem;
  margin-top: 3rem;
}

.application-page .application-flow-primary .application-step:last-child {
  grid-column: 1 / -1;
}

.application-page .application-step {
  border-color: rgba(222, 213, 200, .85);
  border-top: 4px solid var(--brand);
  border-left-width: 1px;
  border-radius: var(--radius);
  background: #f6f7f8;
  padding: 1.35rem;
}

.application-page .application-step span {
  border-radius: var(--radius-sm);
}

.application-page .application-step h2 {
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: none;
}

.application-page .step-note {
  border-left-color: var(--brand);
  background: var(--surface);
  padding: .75rem .85rem;
}

.application-page .application-after-submit {
  margin-top: 3.3rem;
  border-top: 1px solid var(--line);
  padding-top: 2.8rem;
}

.application-page .application-after-submit > h2 {
  margin-bottom: .7rem;
  border-left: 4px solid var(--brand);
  padding-left: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
}

.application-page .application-after-submit > p {
  max-width: 860px;
  color: var(--body-copy);
  line-height: 1.7;
}

.application-page .application-hiring-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.7rem;
}

.application-page .application-hiring-flow .application-step span {
  background: var(--site-navy);
}

/* Keep the employment navigation aligned without restyling the application. */
.application-job-page {
  padding-top: 2.4rem;
}

.application-job-page .employment-section-nav {
  width: min(1080px, calc(100vw - var(--content-gutter)));
  margin-top: 0;
  margin-left: 50%;
  transform: translateX(-50%);
}

.future-form-slots {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: .9rem;
}

.future-form-slots p {
  margin-bottom: .45rem;
}

.timeline {
  display: grid;
  gap: 1.25rem;
}

.timeline article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-round);
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 700;
}

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

.social-gallery-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.social-gallery-grid-single {
  max-width: 760px;
}

.social-gallery-placeholder,
.social-gallery-card {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
}

.social-gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.social-gallery-placeholder {
  border: 1px dashed var(--brand-focus-ring);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(77, 107, 88, .12)),
    var(--surface);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
}

.social-gallery-card {
  appearance: none;
  background: var(--surface);
  border: 1px solid rgba(222, 213, 200, .9);
  color: inherit;
  cursor: zoom-in;
  display: block;
  font: inherit;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(37, 49, 60, .11);
}

.social-gallery-grid-single .social-gallery-feature {
  aspect-ratio: 16 / 10;
  grid-column: auto;
  grid-row: auto;
}

.social-gallery-card:focus-visible {
  outline: 3px solid var(--brand-focus-ring);
  outline-offset: 3px;
}

.social-gallery-figure {
  display: block;
  height: 100%;
  margin: 0;
}

.social-gallery-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
  width: 100%;
}

.social-gallery-card:hover img,
.social-gallery-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.social-gallery-caption {
  background: linear-gradient(180deg, rgba(19, 23, 29, 0), rgba(19, 23, 29, .82));
  bottom: 0;
  color: var(--surface);
  font-size: .93rem;
  font-weight: 800;
  left: 0;
  line-height: 1.35;
  padding: 2rem .9rem .8rem;
  position: absolute;
  right: 0;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
  background: rgba(19, 23, 29, .82);
}

.gallery-lightbox-panel {
  width: min(1040px, 100%);
  max-height: calc(100vh - 2rem);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.gallery-lightbox-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  background: #111820;
}

.gallery-lightbox-media img {
  display: block;
  width: 100%;
  max-height: min(74vh, 760px);
  object-fit: contain;
}

.gallery-lightbox-close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius-round);
  background: rgba(19, 23, 29, .72);
  color: var(--surface);
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: var(--brand);
}

.gallery-lightbox-close:focus-visible {
  outline: 3px solid var(--brand-focus-ring);
  outline-offset: 3px;
}

.gallery-lightbox-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .9rem 1rem 1rem;
}

.gallery-lightbox-caption {
  margin: 0;
  color: var(--body-copy);
  font-weight: 700;
}

.gallery-lightbox-cta[hidden] {
  display: none;
}

.gallery-lightbox-cta {
  flex: 0 0 auto;
}

.blog-page,
.blog-post-page {
  width: 100%;
  padding: 2.4rem 0 clamp(3.8rem, 6vw, 5.5rem);
  background: var(--surface);
}

.blog-page > .wrap {
  width: min(1080px, calc(100% - var(--content-gutter)));
}

.blog-page .page-title,
.blog-post-page .page-title {
  position: relative;
  margin: 0 0 1.35rem;
  padding-bottom: 1rem;
  color: var(--site-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.08;
}

.blog-page .page-title::after,
.blog-post-page .page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  background: var(--brand);
}

.blog-index-intro {
  max-width: 680px;
}

.blog-index-section,
.blog-featured-section {
  margin-top: 2rem;
}

.section-kicker {
  color: var(--brand);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: .75rem;
  text-transform: uppercase;
}

.blog-featured-card {
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  overflow: hidden;
}

.blog-featured-card.no-image {
  grid-template-columns: 1fr;
}

.blog-featured-card img {
  display: block;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  width: 100%;
}

.blog-featured-copy {
  align-content: center;
  display: grid;
  gap: .75rem;
  padding: 1.6rem 1.6rem 1.6rem 0;
}

.blog-featured-card.no-image .blog-featured-copy {
  padding: 1.6rem;
}

.blog-featured-copy h2 {
  font-size: 2.35rem;
  line-height: 1.08;
}

.blog-featured-copy p {
  max-width: 62ch;
}

.blog-featured-copy .button {
  justify-self: start;
}

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

.blog-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.blog-card.no-image {
  grid-template-columns: 1fr;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.blog-year-list {
  display: grid;
  gap: 1rem;
}

.blog-year-group {
  border-top: 1px solid var(--line);
  display: grid;
  gap: .4rem;
  grid-template-columns: 96px minmax(0, 1fr);
  padding-top: 1rem;
}

.blog-year-group h2 {
  color: var(--brand);
  font-size: 1.1rem;
}

.blog-year-articles {
  display: grid;
}

.blog-archive-row {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 136px minmax(0, 1fr);
  padding: .72rem 0;
}

.blog-archive-row time {
  color: var(--muted-ink);
  font-size: .92rem;
}

.blog-archive-row a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.blog-archive-row a:hover,
.blog-archive-row a:focus-visible {
  color: var(--brand);
  text-decoration: underline;
}

.blog-article-nav {
  align-items: stretch;
  display: grid;
  gap: .75rem;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  margin: 0 0 1.35rem;
}

.blog-post-body + .blog-article-nav {
  border-top: 1px solid var(--line);
  margin: 1.7rem 0 0;
  padding-top: 1.25rem;
}

.blog-nav-back,
.blog-nav-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  min-height: 72px;
  text-decoration: none;
}

.blog-nav-back {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: .85rem 1.1rem;
  white-space: nowrap;
}

.blog-nav-item {
  display: grid;
  gap: .25rem;
  padding: .75rem .9rem;
}

.blog-nav-item-next {
  text-align: right;
}

.blog-nav-item span {
  color: var(--muted-ink);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-nav-item strong {
  font-size: .95rem;
  line-height: 1.3;
}

.blog-nav-item.is-empty {
  border-color: transparent;
}

.blog-nav-back:hover,
.blog-nav-back:focus-visible,
.blog-nav-item:hover,
.blog-nav-item:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.blog-post-wrap {
  max-width: 840px;
}

.blog-post-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
}

.blog-post-summary {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.blog-post-hero,
.blog-post-image {
  margin: 1.5rem 0;
}

.blog-post-hero img,
.blog-post-image img {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
}

.blog-post-body {
  display: grid;
  gap: 1rem;
}

.blog-post-body h2,
.blog-post-body h3 {
  color: var(--brand);
  margin-top: .75rem;
}

.blog-callout {
  border-left: 4px solid var(--brand);
  background: var(--brand-soft-bg);
  padding: 1rem 1.2rem;
}

.blog-callout p:last-child {
  margin-bottom: 0;
}

.post-date,
.form-note,
.form-privacy-note {
  color: var(--muted-ink);
  font-size: .95rem;
}

.form-privacy-note {
  margin: -.15rem 0 .35rem;
}

.static-form {
  display: grid;
  gap: .9rem;
}

.static-form label {
  display: grid;
  gap: .35rem;
  color: var(--muted-ink);
  font-weight: 700;
}

.static-form input,
.static-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .72rem .78rem;
  color: var(--ink);
  font: inherit;
}

.static-form .sms-opt-in .sms-opt-in-check,
.static-form .sms-submit-reminder .sms-opt-in-check {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .35rem;
  color: var(--body-copy);
  font-weight: 700;
}

.static-form .sms-opt-in input[type="checkbox"],
.static-form .sms-submit-reminder input[type="checkbox"] {
  flex: 0 0 auto;
  width: auto;
  min-width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--brand);
  font-weight: 700;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(90deg, rgba(248, 243, 237, .72), rgba(255, 255, 255, .95));
  color: var(--ink);
}

.footer-main {
  padding: clamp(2.5rem, 4vw, 3.6rem) 0;
  border-top: 1px solid rgba(222, 213, 200, .85);
}

.site-footer a {
  color: var(--brand);
  text-decoration: none;
}

.site-footer a[href^="tel"] {
  color: var(--body-copy);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer h2 {
  margin-bottom: .75rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line);
  color: var(--brand);
  font-size: 1.12rem;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.footer-contact {
  border-left: 1px solid var(--line);
  padding-left: clamp(2rem, 5vw, 4rem);
}

.footer-testimonial blockquote {
  position: relative;
  margin: 0;
  padding-left: 2.2rem;
  border-left: 0;
}

.footer-testimonial blockquote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -.2rem;
  color: var(--brand);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1;
}

.footer-testimonial p,
.footer-testimonial cite {
  color: var(--body-copy);
  font-size: .95rem;
  font-style: italic;
  line-height: 1.65;
}

.footer-testimonial p {
  max-width: 760px;
  margin-bottom: .55rem;
}

.footer-contact-list {
  display: grid;
  gap: .9rem;
  margin: 1.15rem 0 1.55rem;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: .8rem;
  align-items: center;
  color: var(--body-copy);
  font-size: .95rem;
}

.footer-contact-list span {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  border-radius: var(--radius-sm);
  color: var(--site-navy);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-contact-list .footer-contact-value {
  display: inline;
  min-height: 0;
  color: var(--body-copy);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.45;
  text-transform: none;
}

.footer-message-button {
  border: 1px solid var(--brand) !important;
  background: transparent !important;
  color: var(--brand) !important;
  font-weight: 800;
}

.footer-message-button:hover,
.footer-message-button:focus-visible {
  background: var(--brand) !important;
  color: var(--on-brand) !important;
}

.footer-bottom {
  background: var(--site-navy);
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  align-items: center;
  min-height: 76px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.4rem;
  align-items: center;
}

.footer-bottom nav a {
  color: rgba(255, 255, 255, .86);
}

.footer-bottom nav a + a::before {
  content: "|";
  margin-right: 1.4rem;
  color: rgba(255, 255, 255, .5);
}

@media (max-width: 860px) {
  .topbar-inner,
  .header-inner,
  .hero-grid,
  .two-column,
  .contact-grid,
  .faq-layout,
  .home-hero-shell,
  .welcome-grid,
  .about-intro-grid,
  .about-basics-copy,
  .about-history-grid,
  .faq-row,
  .faq-row-first,
  .faq-row-third,
  .faq-search-entry-row,
  .faq-search-form-row,
  .application-intro,
  .application-flow,
  .consultation-overview-list,
  .application-field-grid,
  .application-draft-panel,
  .consultation-type-options,
  .application-section-upload,
  .application-section-upload .future-form-slots,
  .application-interview-callout,
  .application-shortcut-panel,
  .application-radio-group [data-position-options],
  .booking-layout,
  .staff-owner-grid,
  .staff-entry-grid,
  .service-row,
  .service-row.reverse,
  .employment-feature-grid,
  .employment-feature-links,
  .why-join-hero,
  .why-join-card-grid,
  .why-join-actions,
  .benefits-actions,
  .why-care-grid,
  .footer-grid,
  .blog-featured-card,
  .blog-year-group,
  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-card img {
    min-height: 240px;
  }

  .blog-featured-copy {
    padding: 0 1.2rem 1.25rem;
  }

  .blog-featured-card.no-image .blog-featured-copy {
    padding: 1.25rem;
  }

  .blog-featured-copy h2 {
    font-size: 1.95rem;
  }

  .blog-article-nav {
    grid-template-columns: 1fr;
  }

  .blog-nav-item-next {
    text-align: left;
  }

  .blog-nav-item.is-empty {
    display: none;
  }

  .application-field-grid > [data-application-field] {
    grid-column: auto;
  }

  .application-path-header {
    grid-template-columns: 1fr;
  }

  .application-shortcut-panel .button {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .application-interview-callout .button {
    justify-self: start;
  }

  .application-draft-actions {
    justify-content: flex-start;
  }

  .application-skill-header {
    display: none;
  }

  .application-skill-row {
    grid-template-columns: 1fr;
  }

  .application-skill-row label span {
    display: inline;
  }

  .booking-widget-header {
    display: grid;
  }

  .booking-status {
    min-width: 0;
    text-align: left;
  }

  .application-yes-no {
    grid-template-columns: 1fr auto auto;
  }

  .topbar-inner,
  .topbar-actions {
    justify-content: center;
    text-align: center;
  }

  .header-inner {
    gap: .8rem;
  }

  .brand img {
    margin: 0 auto;
  }

  .header-inner {
    width: min(100% - var(--mobile-gutter), 1120px);
    min-height: 0;
  }

  .home-hero-shell {
    min-height: 0;
  }

  .home-hero-copy {
    width: 100%;
    min-height: 0;
    padding: 2.5rem 0 1.6rem;
  }

  .home-hero-media {
    position: relative;
    inset: auto;
    height: 330px;
    min-height: 320px;
    margin: 0 calc(var(--mobile-gutter) / -2) 1.5rem;
    border-radius: 0;
  }

  .home-hero-media::before,
  .home-hero-media::after {
    display: none;
  }

  .home-hero-actions {
    justify-content: flex-start;
    transform: none;
  }

  .primary-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-row.reverse img {
    order: 0;
  }

  .about-owner-photo,
  .about-history-figure,
  .employment-graphic img,
  .staff-entry-grid img {
    justify-self: center;
  }

  .feature-grid,
  .three-cards,
  .profile-grid,
  .profile-grid.compact,
  .caregiver-gallery,
  .social-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-gallery-wrap {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .social-gallery-copy {
    max-width: 620px;
  }

  .social-gallery-copy h2 {
    white-space: normal;
  }

  .social-gallery-actions {
    justify-content: flex-start;
    max-width: 320px;
  }

  .footer-contact {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 1.8rem;
    padding-left: 0;
  }

  .gallery-lightbox-panel {
    max-height: calc(100vh - 1.5rem);
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - var(--mobile-gutter), 1120px);
  }

  h1 {
    font-size: 2.1rem;
  }

  .blog-page,
  .blog-post-page {
    padding-top: 1.8rem;
  }

  .blog-page > .wrap {
    width: min(100% - var(--mobile-gutter), 1080px);
  }

  .blog-page .page-title,
  .blog-post-page .page-title {
    font-size: 2.35rem;
  }

  .booking-page,
  .policy-page,
  .utility-page {
    padding-top: 1.8rem;
  }

  .booking-page .page-title,
  .policy-page .page-title,
  .utility-page .page-title {
    font-size: 2.35rem;
  }

  .about-page .wrap {
    width: min(100% - var(--mobile-gutter), 1080px);
  }

  .about-page .page-title {
    margin-bottom: 1.65rem;
    font-size: 2.35rem;
  }

  .about-owner-photo {
    order: -1;
    width: min(100%, 300px);
    justify-self: center;
    margin-bottom: .5rem;
  }

  .about-page h2 {
    font-size: 1.9rem;
  }

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

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

  .home-intro h1 {
    font-size: clamp(2.15rem, 9.8vw, 2.65rem);
  }

  .brand img {
    max-height: 78px;
    width: auto;
  }

  .header-inner {
    padding: .8rem 0;
  }

  .primary-nav .nav-item > a {
    padding: .58rem .7rem;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
  }

  .home-hero-copy {
    padding: 2rem 0 1rem;
  }

  .home-hero-kicker {
    font-size: .78rem;
  }

  .home-hero-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .home-hero-actions {
    gap: .55rem;
    margin-top: 1.2rem;
  }

  .home-hero-media {
    height: 240px;
    min-height: 230px;
  }

  .primary-nav {
    gap: .2rem .55rem;
    font-size: .94rem;
  }

  .topbar-label {
    display: none;
  }

  .topbar-actions {
    width: 100%;
    justify-content: center;
  }

  .why-join-hero {
    min-height: 0;
  }

  .why-join-carousel {
    min-height: 260px;
  }

  .why-join-card-grid article {
    min-height: 0;
  }

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

  .why-care-actions img {
    margin-bottom: 1rem;
  }

  .form-name-row {
    grid-template-columns: 1fr;
    gap: .65rem;
  }

  .contact-form .field-phone,
  .contact-form .field-email,
  .contact-form .field-comment {
    max-width: none;
  }

  .why-care-copy p {
    text-indent: 0;
  }

  .why-join-actions {
    max-width: 260px;
    gap: .7rem;
  }

  .benefits-actions {
    max-width: 300px;
    gap: .7rem;
  }

  .staff-owner-copy img {
    float: none;
    width: min(100%, 180px);
    margin: .2rem auto 1rem;
  }

  .staff-actions {
    grid-template-columns: 1fr;
    max-width: 240px;
    gap: .7rem;
  }

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

  .blog-archive-row {
    gap: .25rem;
    grid-template-columns: 1fr;
  }

  .blog-featured-copy h2 {
    font-size: 1.7rem;
  }

  .feature-grid,
  .three-cards,
  .profile-grid,
  .profile-grid.compact,
  .caregiver-gallery,
  .social-gallery-grid,
  .social-gallery-grid-compact {
    grid-template-columns: 1fr;
  }

  .social-gallery-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .social-gallery-button {
    width: 100%;
  }

  .social-gallery-more {
    width: 100%;
  }

  .footer-contact-list li {
    grid-template-columns: 1fr;
    gap: .2rem;
  }

  .footer-contact-list span {
    justify-content: start;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 104px;
  }

  .gallery-lightbox {
    padding: .75rem;
  }

  .gallery-lightbox-media {
    min-height: 220px;
  }

  .gallery-lightbox-footer {
    align-items: stretch;
  }

  .gallery-lightbox-cta {
    width: 100%;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .services-page .wrap,
  .service-detail-page .wrap,
  .faq-page .wrap {
    width: min(100% - var(--mobile-gutter), 1080px);
  }

  .services-page .service-row,
  .services-page .service-row.reverse,
  .services-page .service-text-block {
    grid-template-columns: 1fr;
  }

  .services-page .service-row img,
  .services-page .service-row.reverse img {
    order: -1;
    width: min(100%, 500px);
  }

  .services-page .service-text-block {
    gap: .7rem;
  }

  .service-detail-page ul {
    grid-template-columns: 1fr;
  }

  .staff-page .staff-wrap,
  .caregivers-page .wrap {
    width: min(100% - var(--mobile-gutter), 1080px);
  }

  .staff-page .staff-owner-grid,
  .staff-page .staff-entry-grid {
    grid-template-columns: 1fr;
  }

  .staff-page .staff-entry-grid img {
    justify-self: start;
  }

  .caregivers-page .caregiver-gallery figure {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .employment-landing > .wrap,
  .why-care-page > .wrap,
  .why-join-page > .wrap,
  .benefits-page > .wrap,
  .application-page > .wrap {
    width: min(100% - var(--mobile-gutter), 1080px);
  }

  .employment-landing .employment-feature-grid,
  .why-care-page .why-join-hero,
  .why-join-page .why-join-hero,
  .benefits-page .why-join-hero,
  .why-care-page .why-care-grid,
  .why-join-page .why-join-proof,
  .application-page .application-intro,
  .application-page .application-flow {
    grid-template-columns: 1fr;
  }

  .why-care-page .why-join-carousel,
  .why-join-page .why-join-carousel,
  .benefits-page .why-join-carousel {
    min-height: 280px;
  }

  .why-care-page .why-care-actions img,
  .why-care-page .why-care-actions .button {
    justify-self: center;
    width: min(100%, 500px);
  }

  .benefits-page .benefits-content {
    grid-template-columns: 1fr;
  }

  .benefits-page .benefits-content > p:first-child,
  .benefits-page .benefits-closing {
    grid-column: auto;
  }

  .application-job-page .employment-section-nav {
    width: calc(100% + var(--page-gutter));
  }

  .contact-page-header,
  .contact-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-header {
    gap: 1.2rem;
    align-items: start;
  }

  .contact-sidebar {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 2.5rem;
    padding-left: 0;
  }

  .application-job-hero {
    width: 100%;
    aspect-ratio: 16 / 6;
    margin-left: 0;
    transform: none;
  }

  .current-openings-heading,
  .current-openings-grid {
    grid-template-columns: 1fr;
  }

  .current-openings-heading {
    gap: .55rem;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .services-page,
  .service-detail-page,
  .faq-page {
    padding-top: 1.75rem;
  }

  .services-page .page-title,
  .service-detail-page .page-title,
  .faq-page .page-title {
    font-size: 2.35rem;
  }

  .services-page .services-action,
  .service-detail-page .services-action {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-page .services-action .button,
  .service-detail-page .services-action .button,
  .faq-page .faq-action .button {
    width: 100%;
  }

  .services-page .service-text-block {
    padding: 1.35rem 1.25rem;
  }

  .service-detail-page ul {
    padding: 1.25rem 1.2rem 1.25rem 2.6rem;
  }

  .faq-page .faq-search-entry {
    padding: 1rem;
  }

  .staff-page,
  .caregivers-page {
    padding-top: 1.75rem;
  }

  .staff-page .page-title,
  .caregivers-page .page-title {
    font-size: 2.35rem;
  }

  .staff-page .staff-owner {
    padding: 1.25rem;
  }

  .staff-page .staff-actions {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .staff-page .staff-actions .button {
    width: 100%;
  }

  .caregivers-page .caregiver-gallery {
    gap: .75rem;
  }

  .caregivers-page .caregiver-gallery figure {
    flex-basis: calc((100% - .75rem) / 2);
  }

  .caregivers-page .caregiver-gallery figcaption {
    min-height: 46px;
    padding: .6rem .65rem;
    font-size: .9rem;
  }

  .employment-landing,
  .why-care-page,
  .why-join-page,
  .benefits-page,
  .application-page {
    padding-top: 1.75rem;
  }

  .application-job-page {
    padding-top: 1.75rem;
  }

  .contact-page {
    padding-top: 1.75rem;
  }

  .contact-wrap {
    width: min(100% - var(--mobile-gutter), 1080px);
  }

  .contact-page-header {
    margin: 1.9rem 0 2.4rem;
    padding-bottom: 2rem;
  }

  .contact-page .page-title {
    font-size: 2.35rem;
  }

  .contact-page-header-copy .button,
  .contact-form > .button[type="submit"],
  .contact-sidebar > .button {
    width: 100%;
  }

  .application-job-hero {
    aspect-ratio: 16 / 7;
  }

  .application-job-content {
    margin-top: 1.7rem;
  }

  .application-job-intro .page-title {
    font-size: 2.25rem;
  }

  .current-openings {
    margin-top: 1.9rem;
    padding: 1.6rem 0;
  }

  .employment-page-header .page-title,
  .application-page > .wrap > .page-title {
    font-size: 2.35rem;
  }

  .employment-landing .employment-feature-links,
  .why-join-page .why-join-actions,
  .benefits-page .benefits-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .employment-landing .employment-feature-links .button,
  .why-join-page .why-join-actions .button,
  .benefits-page .benefits-actions .button {
    width: 100%;
  }

  .why-care-page .why-join-hero-copy,
  .why-join-page .why-join-hero-copy,
  .benefits-page .why-join-hero-copy {
    padding: 1.5rem;
  }

  .why-care-page .why-join-hero-copy h1,
  .why-join-page .why-join-hero-copy h1,
  .benefits-page .why-join-hero-copy h1 {
    font-size: 2.1rem;
  }

  .why-care-page .why-join-carousel,
  .why-join-page .why-join-carousel,
  .benefits-page .why-join-carousel {
    min-height: 230px;
  }

  .employment-landing .employment-location-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .employment-landing .employment-location-buttons .button {
    width: 100%;
    min-width: 0;
  }

  .application-page .application-step {
    padding: 1.2rem;
  }
}
