:root {
  --blue: #00467f;
  --navy: #10283d;
  --sky: #d8eaf7;
  --green: #4f7f52;
  --gold: #f3b23c;
  --coral: #d8644a;
  --plum: #5f527a;
  --ink: #182b3a;
  --muted: #566675;
  --soft: #f5f8fb;
  --white: #fff;
  --line: #d8e2eb;
  --shadow: 0 16px 40px rgba(16, 47, 74, .14);
  --container: min(1180px, calc(100% - 40px));
  --radius: 8px;
}

@font-face {
  font-family: "OpenDyslexic";
  src: url("assets/fonts/OpenDyslexic-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenDyslexic";
  src: url("assets/fonts/OpenDyslexic-Bold.otf") format("opentype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenDyslexic";
  src: url("assets/fonts/OpenDyslexic-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "OpenDyslexic";
  src: url("assets/fonts/OpenDyslexic-BoldItalic.otf") format("opentype");
  font-weight: 700 900;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Helvetica Neue", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

.homepage-test main h1,
.homepage-test main h2,
.homepage-test main h3,
.main-page main h1,
.main-page main h2,
.main-page main h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-weight: 500;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.2vw, 3.8rem);
  line-height: 1.05;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.2;
}

h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1rem;
}

input,
select,
textarea,
button {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, .8);
}

.lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: #405464;
  font-size: 1.15rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 800;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(0, 70, 127, .22);
}

.button.dark {
  background: var(--navy);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--blue);
}

.button.gold {
  background: var(--gold);
  color: #182432;
}

.button.light {
  background: var(--white);
  color: var(--blue);
}

.button.text {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  box-shadow: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(216, 226, 235, .85);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
}

.brand img {
  width: min(310px, 48vw);
  height: auto;
}

.links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .95rem;
  font-weight: 800;
}

.links a {
  color: var(--navy);
}

.links a:hover,
.links a.active {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-button {
  display: none;
  min-width: 58px;
  height: 46px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: .86rem;
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: stretch;
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(10, 35, 55, .88), rgba(10, 35, 55, .62) 48%, rgba(10, 35, 55, .16)),
    url("assets/hero.jpg") center / cover no-repeat;
}

.hero-content {
  min-height: calc(100vh - 222px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 850px;
  color: var(--white);
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero .lead {
  color: rgba(255, 255, 255, .9);
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  color: var(--white);
  font-size: .84rem;
  font-weight: 800;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: .86rem;
  font-weight: 800;
}

.brand-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .25);
  max-width: 760px;
}

.brand-word {
  padding: 18px;
  background: rgba(255, 255, 255, .12);
}

.brand-word strong {
  display: block;
  color: var(--white);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.45rem;
}

.brand-word span {
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  line-height: 1.5;
}

.hero-strip {
  margin-top: -42px;
  position: relative;
  z-index: 3;
}

.quick-panel {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-card {
  min-height: 178px;
  padding: 26px;
  background: var(--white);
}

.quick-card.featured {
  background: var(--navy);
}

.quick-card.featured h2,
.quick-card.featured p {
  color: var(--white);
}

.section {
  padding: 84px 0;
}

.section.tight {
  padding-top: 84px;
}

.section.flush-top {
  padding-top: 0;
}

.bridge-section {
  padding: 110px 0 76px;
  background: var(--white);
}

.bridge-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.step-row {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.step-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.soft {
  background: var(--soft);
}

.band {
  background: #10283d;
  color: var(--white);
}

.band h2,
.band h3,
.band p {
  color: var(--white);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head > * {
  min-width: 0;
}

.section-head p {
  max-width: 520px;
  margin-bottom: 0;
}

.service-pathways-head {
  align-items: start;
}

.service-pathways-head > div {
  max-width: 680px;
}

.service-pathways-head h2 {
  max-width: 650px;
  font-size: clamp(2.15rem, 3.2vw, 3.05rem);
  font-weight: 500;
  line-height: 1;
  text-wrap: balance;
}

.service-pathways-head p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 10px;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 430px;
  max-width: 430px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 47, 74, .08);
}

.partner-logo-card img {
  width: 100%;
  max-height: 90px;
  object-fit: contain;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.image-card,
.story-card,
.office-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 47, 74, .08);
}

.card {
  padding: 26px;
}

.card.accent-green {
  border-top: 5px solid var(--green);
}

.card.accent-gold {
  border-top: 5px solid var(--gold);
}

.card.accent-coral {
  border-top: 5px solid var(--coral);
}

.card.accent-blue {
  border-top: 5px solid var(--blue);
}

.card.accent-plum {
  border-top: 5px solid var(--plum);
}

.image-card,
.story-card {
  overflow: hidden;
}

.image-card img,
.story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-card-body,
.story-body {
  padding: 24px;
}

.service-finder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

textarea.input {
  min-height: 140px;
  resize: vertical;
}

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.photo-block {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-block img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.careers-training-photo {
  height: 520px;
  object-position: center 46%;
}

.editorial-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.editorial-copy,
.editorial-image {
  background: var(--white);
}

.editorial-copy {
  padding: clamp(28px, 5vw, 58px);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.promise-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.promise {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
}

.promise:before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.promise:nth-child(2):before {
  background: var(--green);
}

.promise:nth-child(3):before {
  background: var(--coral);
}

.promise p {
  margin: 0;
}

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

.trust-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.trust-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--sky);
  color: var(--blue);
  font-weight: 900;
}

.icon.green {
  background: #dfeddc;
  color: var(--green);
}

.icon.gold {
  background: #fff0cc;
  color: #8b5d00;
}

.icon.coral {
  background: #fde4de;
  color: var(--coral);
}

.icon.plum {
  background: #ece8f4;
  color: var(--plum);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .22);
}

.stat {
  padding: 24px;
  background: rgba(255, 255, 255, .08);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 2.2rem;
}

.page-hero {
  padding: 86px 0;
  background: linear-gradient(135deg, #f7fbff, #e8f1f7);
  border-bottom: 1px solid var(--line);
}

.page-hero.simple-hero {
  background: var(--navy);
  color: var(--white);
}

.page-hero.simple-hero h1,
.page-hero.simple-hero p {
  color: var(--white);
}

.legal-content {
  max-width: 820px;
}

.legal-content a {
  overflow-wrap: anywhere;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.legal-updated {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.page-hero.with-photo {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.page-hero.with-photo:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 47, 74, .9), rgba(16, 47, 74, .58), rgba(16, 47, 74, .1)), var(--hero-image) var(--hero-position, center 25%) / cover no-repeat;
}

.page-hero.with-photo .container {
  position: relative;
  z-index: 1;
}

.page-hero.with-photo h1,
.page-hero.with-photo p {
  color: var(--white);
}

.page-hero.with-photo.about-hero {
  isolation: isolate;
}

.page-hero.with-photo.about-hero:before {
  z-index: 0;
  background: var(--hero-image) var(--hero-position, center 25%) / cover no-repeat;
  filter: saturate(.76) contrast(.92) brightness(.86);
  transform: scale(1.01);
}

.page-hero.with-photo.about-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(16, 47, 74, .82), rgba(16, 47, 74, .6) 52%, rgba(16, 47, 74, .28)),
    linear-gradient(180deg, rgba(243, 178, 60, .12), rgba(79, 127, 82, .1));
}

.page-hero.with-photo.about-hero .eyebrow.light {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(243, 178, 60, .42);
  border-radius: 999px;
  background: rgba(243, 178, 60, .16);
  color: #ffe1a1;
}

.page-hero.with-photo.about-hero h1 {
  color: #f7fbff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .26);
}

.page-hero.with-photo.about-hero h1 span {
  color: var(--gold);
}

.page-hero.with-photo.about-hero .lead {
  max-width: 760px;
  border-left: 4px solid var(--green);
  padding-left: 18px;
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .22);
}

.page-hero.with-photo.services-hero {
  isolation: isolate;
}

.page-hero.with-photo.services-hero:before {
  z-index: 0;
  background: var(--hero-image) var(--hero-position, center 25%) / cover no-repeat;
  filter: saturate(.74) contrast(.94) brightness(.84);
  transform: scale(1.01);
}

.page-hero.with-photo.services-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(16, 47, 74, .84), rgba(16, 47, 74, .62) 54%, rgba(16, 47, 74, .3)),
    linear-gradient(180deg, rgba(243, 178, 60, .12), rgba(79, 127, 82, .12));
}

.page-hero.with-photo.services-hero .eyebrow.light {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(243, 178, 60, .42);
  border-radius: 999px;
  background: rgba(243, 178, 60, .16);
  color: #ffe1a1;
}

.page-hero.with-photo.services-hero h1 {
  color: #f7fbff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .26);
}

.page-hero.with-photo.services-hero h1 span {
  color: var(--gold);
}

.page-hero.with-photo.services-hero .lead {
  max-width: 760px;
  border-left: 4px solid var(--green);
  padding-left: 18px;
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .22);
}

.page-hero.with-photo.about-hero,
.page-hero.with-photo.services-hero,
.page-hero.with-photo.stories-hero,
.page-hero.with-photo.contact-hero,
.page-hero.with-photo.careers-hero,
.page-hero.with-photo.resources-hero {
  display: flex;
  align-items: flex-start;
  isolation: isolate;
  height: 460px;
  min-height: 410px;
  padding: 44px 0;
}

.page-hero.with-photo.about-hero:before,
.page-hero.with-photo.services-hero:before,
.page-hero.with-photo.stories-hero:before,
.page-hero.with-photo.contact-hero:before,
.page-hero.with-photo.careers-hero:before,
.page-hero.with-photo.resources-hero:before {
  z-index: 0;
  background: var(--hero-image) var(--hero-position, center 25%) / cover no-repeat;
  filter: none;
  transform: scale(1.01);
}

.page-hero.with-photo.about-hero:after,
.page-hero.with-photo.services-hero:after,
.page-hero.with-photo.stories-hero:after,
.page-hero.with-photo.contact-hero:after,
.page-hero.with-photo.careers-hero:after,
.page-hero.with-photo.resources-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 43, .97), rgba(7, 30, 46, .78) 48%, rgba(7, 30, 46, .36)),
    linear-gradient(0deg, rgba(7, 26, 43, .16), rgba(7, 26, 43, .16));
}

.page-hero.with-photo.stories-hero .eyebrow.light,
.page-hero.with-photo.contact-hero .eyebrow.light,
.page-hero.with-photo.careers-hero .eyebrow.light,
.page-hero.with-photo.resources-hero .eyebrow.light {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(243, 178, 60, .42);
  border-radius: 999px;
  background: rgba(243, 178, 60, .16);
  color: #ffe1a1;
}

.page-hero.with-photo.stories-hero h1,
.page-hero.with-photo.contact-hero h1,
.page-hero.with-photo.careers-hero h1,
.page-hero.with-photo.resources-hero h1 {
  color: #f7fbff;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .26);
}

.page-hero.with-photo.stories-hero h1 span,
.page-hero.with-photo.contact-hero h1 span,
.page-hero.with-photo.careers-hero h1 span,
.page-hero.with-photo.resources-hero h1 span {
  color: var(--gold);
}

.page-hero.with-photo.stories-hero .lead,
.page-hero.with-photo.contact-hero .lead,
.page-hero.with-photo.careers-hero .lead,
.page-hero.with-photo.resources-hero .lead {
  max-width: 760px;
  border-left: 4px solid var(--green);
  padding-left: 18px;
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .22);
}

/* Light editorial hero test for the About page. */
.page-hero.with-photo.about-hero {
  overflow: hidden;
  background: #fcfaf6;
  color: var(--navy);
}

.page-hero.with-photo.about-hero::before {
  inset: 0 0 0 auto;
  width: 65%;
  background: var(--hero-image) 50% 42% / cover no-repeat;
  filter: none;
  transform: none;
}

.page-hero.with-photo.about-hero::after {
  background:
    linear-gradient(90deg, #fcfaf6 0%, #fcfaf6 38%, rgba(252, 250, 246, .96) 41%, rgba(252, 250, 246, .62) 48%, rgba(252, 250, 246, .2) 56%, rgba(252, 250, 246, .02) 67%),
    linear-gradient(0deg, rgba(16, 40, 61, .05), rgba(16, 40, 61, .01));
}

.page-hero.with-photo.about-hero .eyebrow.light {
  display: flex;
  align-items: center;
  gap: 14px;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #9a5b1b;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .08em;
}

.page-hero.with-photo.about-hero .eyebrow.light::before {
  content: "";
  width: 48px;
  height: 2px;
  background: #b7752e;
}

.page-hero.with-photo.about-hero h1 {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(2.8rem, 4vw, 3.65rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: none;
  text-wrap: balance;
}

.page-hero.with-photo.about-hero h1 span {
  color: #bd7124;
  font-style: italic;
}

.page-hero.with-photo.about-hero .lead {
  max-width: 590px;
  margin-bottom: 0;
  padding-left: 0;
  border-left: 0;
  color: #29485a;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: none;
}

.page-hero.with-photo.editorial-main-hero {
  overflow: hidden;
  background: #fcfaf6;
  color: var(--navy);
}

.page-hero.with-photo.editorial-main-hero::before {
  inset: 0 0 0 auto;
  width: 65%;
  background: var(--hero-image) var(--editorial-hero-position, 50% 42%) / cover no-repeat;
  filter: none;
  transform: none;
}

.page-hero.with-photo.editorial-main-hero::after {
  background:
    linear-gradient(90deg, #fcfaf6 0%, #fcfaf6 38%, rgba(252, 250, 246, .96) 41%, rgba(252, 250, 246, .62) 48%, rgba(252, 250, 246, .2) 56%, rgba(252, 250, 246, .02) 67%),
    linear-gradient(0deg, rgba(16, 40, 61, .05), rgba(16, 40, 61, .01));
}

.page-hero.with-photo.editorial-main-hero .eyebrow.light {
  display: flex;
  align-items: center;
  gap: 14px;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #9a5b1b;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .08em;
}

.page-hero.with-photo.editorial-main-hero .eyebrow.light::before {
  content: "";
  width: 48px;
  height: 2px;
  background: #b7752e;
}

.page-hero.with-photo.editorial-main-hero h1 {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(2.65rem, 3.7vw, 3.45rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: none;
  text-wrap: balance;
}

.page-hero.with-photo.editorial-main-hero h1 span {
  color: #bd7124;
  font-style: italic;
}

.page-hero.with-photo.editorial-main-hero .lead {
  max-width: 540px;
  margin-bottom: 0;
  padding-left: 0;
  border-left: 0;
  color: #29485a;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.58;
  text-shadow: none;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline-year {
  color: var(--blue);
  font-weight: 900;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.service-nav-prompt {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: .95rem;
  font-weight: 800;
}

.service-jump-band {
  padding: 26px 0 30px;
  background: var(--white);
}

.service-jump-band .service-jump,
.career-path-shortcut .career-jump {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px 24px;
  width: 100%;
  padding: 20px 22px;
  border: 1px solid rgba(216, 226, 235, .95);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(16, 47, 74, .14);
}

.service-jump-band .service-jump,
.career-path-shortcut .career-jump {
  overflow: hidden;
}

.service-jump-band .service-jump::after,
.career-path-shortcut .career-jump::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 50%;
  width: 260px;
  height: 260px;
  background: url("assets/favicon.png") center / contain no-repeat;
  opacity: .065;
  transform: translateY(-50%) rotate(-8deg);
  pointer-events: none;
}

.career-path-shortcut {
  margin-bottom: 28px;
}

.service-jump-band .service-jump,
.career-path-shortcut .career-jump {
  align-items: flex-start;
  flex-direction: column;
}

.section.career-path-section {
  padding-top: 22px;
}

.career-path-shortcut .career-jump {
  justify-content: flex-start;
  background: var(--white);
}

.service-jump-band .service-nav-prompt,
.career-path-shortcut .career-nav-prompt {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.45;
}

.service-jump-band .service-nav,
.career-path-shortcut .career-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 0;
  gap: 12px;
}

.service-jump-band .service-nav .chip,
.career-path-shortcut .career-nav .chip {
  min-height: 44px;
  padding: 10px 16px;
  border-color: rgba(0, 70, 127, .18);
  background: #f7fbff;
  color: var(--blue);
  box-shadow: 0 10px 20px rgba(16, 47, 74, .1);
}

.service-jump-band .service-nav .chip:hover,
.career-path-shortcut .career-nav .chip:hover {
  background: var(--gold);
  color: #182432;
  transform: translateY(-1px);
}

.service-jump-band + .section {
  padding-top: 52px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: .9rem;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.service-card {
  display: grid;
  gap: 10px;
  min-height: 100%;
}

.service-card .meta {
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-landing {
  display: grid;
  gap: 28px;
}

.service-feature {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 47, 74, .08);
}

.service-feature:nth-child(even) {
  grid-template-columns: 1.18fr .82fr;
}

.service-feature:nth-child(even) .service-feature-image {
  order: 2;
}

.service-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-feature-copy {
  padding: clamp(26px, 4vw, 46px);
}

.service-feature-copy h3 {
  max-width: 680px;
  font-size: clamp(1.85rem, 2.35vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.detail {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--soft);
}

.detail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.detail span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.content-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

.content-side > *,
.footer-grid > * {
  min-width: 0;
}

.side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.side > * {
  min-width: 0;
  max-width: 100%;
}

.contact-panel {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
}

.contact-panel h2,
.contact-panel h3,
.contact-panel p,
.contact-panel a {
  color: var(--white);
  overflow-wrap: anywhere;
}

.contact-panel p {
  color: rgba(255, 255, 255, .84);
}

.method {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .13);
}

.method + .method {
  margin-top: 10px;
}

.method strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.form {
  display: grid;
  gap: 12px;
}

.recaptcha-field {
  min-height: 1px;
  margin-top: 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.full {
  grid-column: 1 / -1;
}

.office-card {
  padding: 20px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

@media (hover: hover) and (pointer: fine) {
  .office-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 70, 127, .24);
    box-shadow: 0 16px 34px rgba(16, 47, 74, .12);
  }
}

.office-card p {
  margin-bottom: 0;
}

.office-card address {
  margin: 10px 0 12px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.office-region-note {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 47, 74, .07);
}

.office-region-note p {
  margin: 0;
}

.office-region-note .eyebrow {
  margin-bottom: 4px;
}

.office-region-note img {
  width: 240px;
  max-width: 34%;
  max-height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

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

.resource-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 47, 74, .08);
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.resource-card.accent-green {
  border-top-color: var(--green);
}

.resource-card.accent-gold {
  border-top-color: var(--gold);
}

.resource-card.accent-coral {
  border-top-color: var(--coral);
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(16, 47, 74, .14);
}

.resource-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .02em;
}

.resource-body {
  display: grid;
  gap: 9px;
}

.resource-body strong {
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.resource-body span {
  color: var(--muted);
  line-height: 1.55;
}

.resource-body em {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.resource-area-grid {
  align-items: stretch;
}

.resource-area-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 47, 74, .09);
}

.resource-area-card h3 {
  max-width: 680px;
}

.story-card.feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.story-card.feature img {
  height: 100%;
  min-height: 380px;
}

.quote {
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.45;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
}

.story-sidebar {
  display: grid;
  gap: 22px;
}

.job-card {
  display: grid;
  gap: 14px;
}

.job-card .tag-row {
  width: auto;
  max-width: 100%;
  justify-content: center;
  justify-self: center;
}

.job-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.job-board iframe {
  display: block;
  width: 100%;
  height: 800px;
  min-height: 800px;
  border: 0;
}

.job-board-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid rgba(243, 178, 60, .34);
  background: #fff7e8;
}

.job-board-note p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.section.band.provider-transition {
  padding: 16px 0;
  text-align: center;
}

.provider-transition .container {
  max-width: 860px;
}

.provider-transition h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
}

.provider-transition p:not(.eyebrow) {
  margin: 0 auto;
  color: rgba(255, 255, 255, .86);
  font-size: .95rem;
  line-height: 1.45;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  padding: 54px 0 30px;
  background: #10283d;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.footer h3,
.footer h4,
.footer p,
.footer a {
  color: var(--white);
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .74);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, .62) !important;
  font-size: .88rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, .68);
  font-size: .84rem;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--white);
}

@media (max-width: 1020px) {
  .links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .links.open {
    display: flex;
  }

  .links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-actions .button {
    display: none;
  }

  .quick-panel,
  .grid-4,
  .stats,
  .brand-line,
  .detail-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .content-side,
  .story-card.feature,
  .editorial-panel,
  .service-feature,
  .service-feature:nth-child(even),
  .story-grid,
  .bridge-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-feature:nth-child(even) .service-feature-image {
    order: 0;
  }

  .side {
    position: static;
  }

  .service-finder {
    grid-template-columns: 1fr 1fr;
  }

  .service-finder .button {
    grid-column: 1 / -1;
  }

  .job-board-note {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 640px;
    padding: 58px 0;
    background:
      linear-gradient(180deg, rgba(10, 35, 55, .9), rgba(10, 35, 55, .62), rgba(10, 35, 55, .34)),
      url("assets/hero.jpg") center / cover no-repeat;
  }

  .hero-content {
    min-height: 500px;
  }

  .button,
  .service-finder,
  .form-grid {
    width: 100%;
  }

  .button-row .button,
  .service-finder .button {
    width: 100%;
  }

  .quick-panel,
  .grid-2,
  .grid-3,
  .grid-4,
  .stats,
  .brand-line,
  .detail-grid,
  .resource-grid,
  .service-finder,
  .form-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .resource-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section {
    padding: 64px 0;
  }

  .bridge-section {
    padding: 86px 0 58px;
  }

  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .partner-logo-card {
    width: 100%;
    max-width: 520px;
    padding: 14px 16px;
  }

  .photo-block img {
    min-height: 300px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   IMPROVEMENTS — additions only, no existing rules modified
   ============================================================ */

/* --- Focus styles: keyboard accessibility --- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius);
}
.button:focus-visible {
  outline-offset: 3px;
}

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

/* --- Hamburger icon (replaces literal "Menu" text) --- */
.menu-button {
  position: relative;
}
.menu-button .menu-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 16px;
  position: relative;
}
.menu-button .menu-icon::before,
.menu-button .menu-icon::after,
.menu-button .menu-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.menu-button .menu-icon::before { top: 0; }
.menu-button .menu-icon span    { top: 7px; }
.menu-button .menu-icon::after  { top: 14px; }
.menu-button[aria-expanded="true"] .menu-icon::before {
  top: 7px;
  transform: rotate(45deg);
}
.menu-button[aria-expanded="true"] .menu-icon span {
  opacity: 0;
}
.menu-button[aria-expanded="true"] .menu-icon::after {
  top: 7px;
  transform: rotate(-45deg);
}
.menu-button .menu-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Mobile careers link inside the slide-out menu --- */
.mobile-only-cta {
  display: none;
}
@media (max-width: 1020px) {
  .mobile-only-cta {
    display: block;
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white) !important;
    text-align: center;
    border-bottom: 0 !important;
  }
}

/* --- Sticky "need help" call bar on small screens --- */
.help-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 25;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(16, 47, 74, .28);
  font-weight: 800;
  font-size: .95rem;
}
.help-bar a {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.help-bar .help-bar-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  flex-shrink: 0;
}
.help-bar.visible {
  display: block;
}
@media (min-width: 761px) {
  .help-bar { display: none !important; }
}

/* --- Service finder (services.html) --- */
.service-filter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(16, 47, 74, .06);
}
.service-filter-input {
  position: relative;
}
.service-filter-input input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
}
.service-filter-input::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23566675' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m21 21-4.3-4.3'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.service-filter-clear {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.service-filter-clear[hidden] {
  display: none;
}
.service-empty {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  text-align: center;
  color: var(--muted);
}
.service-empty[hidden] {
  display: none;
}
.service-count {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .9rem;
}
.service-card[hidden] {
  display: none;
}
.service-card mark {
  background: #fff0cc;
  color: inherit;
  padding: 0 2px;
  border-radius: 3px;
}

/* --- Office locator (contact.html) --- */
.office-filter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 18px;
}
.office-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.office-tab {
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
}
.office-tab[aria-pressed="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.office-card[hidden] {
  display: none;
}
.office-region-note[hidden] {
  display: none;
}
.office-card .directions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: .9rem;
}

/* --- Contact form: smart routing + validation --- */
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
}
.field label .req {
  color: var(--coral);
  margin-left: 2px;
}
.field .input {
  min-height: 50px;
}
.field-error {
  color: var(--coral);
  font-size: .85rem;
  font-weight: 700;
  margin: 2px 0 0;
}
.field .input[aria-invalid="true"] {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(216, 100, 74, .14);
}
.form-status {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  margin-top: 12px;
}
.form-status[hidden] {
  display: none;
}
.form-status.success {
  background: #e3efe1;
  color: #2c4a2e;
  border: 1px solid #b9d4b6;
}
.form-status.error {
  background: #fbe0db;
  color: #7a2916;
  border: 1px solid #f0bdb0;
}
.field-group[data-hidden="true"] {
  display: none;
}

/* --- Quick-jump chips (above-the-fold helper) --- */
.quick-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}
.quick-jump-label {
  margin-right: 4px;
  align-self: center;
  font-size: .85rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* --- Back-to-top button --- */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 22px rgba(16, 47, 74, .18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-2px);
}

/* --- Accessibility preferences menu --- */
.accessibility-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 40;
  font-family: Arial, "Helvetica Neue", sans-serif;
}
.accessibility-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(16, 47, 74, .3);
  font-weight: 800;
  cursor: pointer;
}
.accessibility-toggle-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 1rem;
  font-weight: 900;
}
.accessibility-toggle-text {
  font-size: .95rem;
}
.accessibility-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: min(390px, calc(100vw - 36px));
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(16, 47, 74, .26);
}
.accessibility-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 16px;
  background: var(--navy);
  color: var(--white);
}
.accessibility-panel-head p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  line-height: 1.45;
}
.accessibility-close {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.accessibility-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}
.accessibility-options [data-a11y-option] {
  min-height: 118px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.accessibility-options [data-a11y-option] span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: .9rem;
  font-weight: 900;
}
.accessibility-options [data-a11y-option] strong,
.accessibility-options [data-a11y-option] small {
  display: block;
}
.accessibility-options [data-a11y-option] strong {
  color: var(--navy);
  font-size: .94rem;
  line-height: 1.25;
}
.accessibility-options [data-a11y-option] small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}
.accessibility-options [data-a11y-option][aria-pressed="true"] {
  border-color: var(--blue);
  background: #eaf4fb;
  box-shadow: inset 0 0 0 2px rgba(0, 70, 127, .14);
}
.accessibility-options [data-a11y-option][aria-pressed="true"] span {
  background: var(--blue);
  color: var(--white);
}
.accessibility-reset {
  width: calc(100% - 28px);
  min-height: 44px;
  margin: 0 14px 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

html.a11y-large-text {
  font-size: 112.5%;
}
html.a11y-largest-text {
  font-size: 125%;
}

html.a11y-largest-text .page-hero.with-photo.services-hero.editorial-main-hero,
html.a11y-largest-text .page-hero.with-photo.stories-hero.editorial-main-hero,
html.a11y-largest-text .page-hero.with-photo.contact-hero.editorial-main-hero {
  height: auto;
  min-height: 460px;
  padding-top: 52px;
  padding-bottom: 64px;
}

html.a11y-readable-font body,
html.a11y-readable-font h1,
html.a11y-readable-font h2,
html.a11y-readable-font h3,
html.a11y-readable-font h4,
html.a11y-readable-font .button,
html.a11y-readable-font .eyebrow,
html.a11y-readable-font .hero-kicker,
html.a11y-readable-font .proof-pill {
  font-family: "OpenDyslexic", Verdana, Arial, "Helvetica Neue", sans-serif;
}

html.a11y-readable-font .page-hero.with-photo.about-hero,
html.a11y-readable-font .page-hero.with-photo.services-hero,
html.a11y-readable-font .page-hero.with-photo.stories-hero,
html.a11y-readable-font .page-hero.with-photo.contact-hero,
html.a11y-readable-font .page-hero.with-photo.careers-hero,
html.a11y-readable-font .page-hero.with-photo.resources-hero {
  height: auto;
  min-height: 460px;
  padding-top: 44px;
  padding-bottom: 56px;
}

html.a11y-readable-font .page-hero.with-photo.about-hero h1,
html.a11y-readable-font .page-hero.with-photo.services-hero h1,
html.a11y-readable-font .page-hero.with-photo.stories-hero h1,
html.a11y-readable-font .page-hero.with-photo.contact-hero h1,
html.a11y-readable-font .page-hero.with-photo.careers-hero h1,
html.a11y-readable-font .page-hero.with-photo.resources-hero h1 {
  max-width: 920px;
  line-height: 1.12;
}

html.a11y-readable-font .page-hero.with-photo.about-hero .lead,
html.a11y-readable-font .page-hero.with-photo.services-hero .lead,
html.a11y-readable-font .page-hero.with-photo.stories-hero .lead,
html.a11y-readable-font .page-hero.with-photo.contact-hero .lead,
html.a11y-readable-font .page-hero.with-photo.careers-hero .lead,
html.a11y-readable-font .page-hero.with-photo.resources-hero .lead {
  max-width: 860px;
  line-height: 1.75;
}
html.a11y-high-contrast {
  --blue: #003b73;
  --navy: #001525;
  --gold: #ffb31f;
  --green: #1f6a34;
  --coral: #a93420;
  --ink: #000;
  --muted: #16283a;
  --soft: #fff;
  --line: #20384c;
  --shadow: none;
}
html.a11y-high-contrast body {
  background: #fff;
  color: #000;
}
html.a11y-high-contrast p,
html.a11y-high-contrast li,
html.a11y-high-contrast label,
html.a11y-high-contrast .muted {
  color: #16283a;
}
html.a11y-high-contrast h1,
html.a11y-high-contrast h2,
html.a11y-high-contrast h3,
html.a11y-high-contrast h4 {
  color: #001525;
}
html.a11y-high-contrast a:not(.button):not(.brand):not(.social-link) {
  color: #003b73;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
html.a11y-highlight-links a:not(.button):not(.brand):not(.social-link):not(.accessibility-toggle) {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: 800;
}
html.a11y-high-contrast .card,
html.a11y-high-contrast .quick-card,
html.a11y-high-contrast .service-card,
html.a11y-high-contrast .office-card,
html.a11y-high-contrast .step-card,
html.a11y-high-contrast .service-request-card,
html.a11y-high-contrast .service-jump,
html.a11y-high-contrast .career-jump,
html.a11y-high-contrast .service-feature,
html.a11y-high-contrast .detail,
html.a11y-high-contrast .stat-card,
html.a11y-high-contrast .faq,
html.a11y-high-contrast .job-board,
html.a11y-high-contrast .office-region-note {
  border-color: #20384c;
  background-color: #fff;
  box-shadow: none;
}
html.a11y-high-contrast .section.soft,
html.a11y-high-contrast .bridge-section,
html.a11y-high-contrast .career-path-section,
html.a11y-high-contrast .story-filter-section {
  background: #fff;
}
html.a11y-high-contrast .hero,
html.a11y-high-contrast .page-hero.with-photo,
html.a11y-high-contrast .page-hero.with-photo.service-hero {
  background-color: #001525;
}
html.a11y-high-contrast .hero::after,
html.a11y-high-contrast .page-hero.with-photo::after,
html.a11y-high-contrast .page-hero.with-photo.service-hero::after {
  background: linear-gradient(90deg, rgba(0, 12, 24, .98), rgba(0, 12, 24, .94));
}
html.a11y-high-contrast .hero::before,
html.a11y-high-contrast .page-hero.with-photo::before,
html.a11y-high-contrast .page-hero.with-photo.service-hero::before {
  filter: grayscale(1) contrast(.85) brightness(.45);
}
html.a11y-high-contrast .hero p,
html.a11y-high-contrast .hero h1,
html.a11y-high-contrast .page-hero.with-photo p,
html.a11y-high-contrast .page-hero.with-photo h1 {
  color: #fff;
  text-shadow: none;
}
html.a11y-high-contrast .button,
html.a11y-high-contrast button,
html.a11y-high-contrast .chip,
html.a11y-high-contrast .input {
  border-color: #001525;
}
html.a11y-high-contrast .button.primary,
html.a11y-high-contrast .button.gold {
  background: #003b73;
  color: #fff;
}
html.a11y-high-contrast .button.secondary,
html.a11y-high-contrast .button.light,
html.a11y-high-contrast .chip {
  background: #fff;
  color: #003b73;
}
html.a11y-high-contrast .input,
html.a11y-high-contrast input,
html.a11y-high-contrast select,
html.a11y-high-contrast textarea {
  background: #fff;
  color: #000;
  border-color: #20384c;
}
html.a11y-high-contrast :focus-visible {
  outline: 3px solid #ffb31f;
  outline-offset: 3px;
}
html.a11y-high-contrast .accessibility-panel {
  border-color: #20384c;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}
html.a11y-high-contrast .accessibility-panel-head {
  background: #001525;
  color: #fff;
}
html.a11y-high-contrast .accessibility-panel-head p {
  color: #dbe9f5;
}
html.a11y-high-contrast .accessibility-options [data-a11y-option] {
  background: #fff;
  border-color: #20384c;
}
html.a11y-high-contrast .accessibility-options [data-a11y-option] small {
  color: #26384a;
}
html.a11y-high-contrast .accessibility-options [data-a11y-option][aria-pressed="true"] {
  background: #dcebf7;
  border-color: #003b73;
}
html.a11y-high-contrast .accessibility-reset {
  border-color: #20384c;
}
html.a11y-reduce-motion,
html.a11y-reduce-motion * {
  scroll-behavior: auto !important;
  animation-duration: .001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .001ms !important;
}
html.a11y-reduce-motion .button:hover,
html.a11y-reduce-motion .chip:hover,
html.a11y-reduce-motion .office-card:hover,
html.a11y-reduce-motion .image-card:hover,
html.a11y-reduce-motion a.service-card:hover,
html.a11y-reduce-motion .social-link:hover,
html.a11y-reduce-motion .pillar-card:hover,
html.a11y-reduce-motion .story-video-card:hover,
html.a11y-reduce-motion .back-to-top:hover {
  transform: none !important;
}
html.a11y-reduce-motion .related-card:hover,
html.a11y-reduce-motion a.service-card:hover .card-link .arrow {
  transform: none !important;
}
html.a11y-reduce-motion .video-poster-button:hover img,
html.a11y-reduce-motion .video-poster-button:hover .video-poster-play {
  transform: none !important;
}
html.a11y-text-spacing body {
  letter-spacing: .04em;
  line-height: 1.75;
}
html.a11y-text-spacing p,
html.a11y-text-spacing li {
  line-height: 1.9;
}

/* Hide back-to-top on small screens when help-bar is shown */
@media (max-width: 760px) {
  .back-to-top {
    right: 14px;
    bottom: 62px;
    width: 40px;
    height: 40px;
  }

  .accessibility-widget {
    left: 14px;
    bottom: 62px;
  }

  .accessibility-toggle {
    min-height: 46px;
    padding: 5px;
  }

  .accessibility-toggle-text {
    display: none;
  }

  .accessibility-toggle-icon {
    width: 36px;
    height: 36px;
    font-size: .9rem;
  }

  .help-bar {
    left: 14px;
    right: 14px;
    bottom: 8px;
    padding: 8px 12px;
    font-size: .84rem;
    line-height: 1.25;
  }

  .help-bar.visible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .help-bar .help-bar-icon {
    width: 26px;
    height: 26px;
  }

  .accessibility-panel {
    position: fixed;
    inset: auto 12px 88px;
    width: auto;
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.a11y-menu-open {
    overflow: hidden;
  }

  .accessibility-panel-head {
    padding: 14px;
  }

  .accessibility-panel-head p {
    font-size: .82rem;
  }

  .accessibility-options {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .accessibility-options [data-a11y-option] {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    column-gap: 10px;
    min-height: 68px;
    padding: 10px;
  }

  .accessibility-options [data-a11y-option] span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .accessibility-reset {
    width: calc(100% - 20px);
    margin: 0 10px 10px;
  }

  html.a11y-readable-font body {
    overflow-x: hidden;
  }

  /* OpenDyslexic has wider glyph metrics than the default typefaces. Keep the
     largest text setting fluid on narrow screens without changing normal mode. */
  html.a11y-readable-font.a11y-largest-text {
    overflow-x: clip;
  }

  html.a11y-readable-font.a11y-largest-text .container,
  html.a11y-readable-font.a11y-largest-text .section-head,
  html.a11y-readable-font.a11y-largest-text .section-head > *,
  html.a11y-readable-font.a11y-largest-text .bridge-grid,
  html.a11y-readable-font.a11y-largest-text .bridge-grid > *,
  html.a11y-readable-font.a11y-largest-text .step-card,
  html.a11y-readable-font.a11y-largest-text .step-card > *,
  html.a11y-readable-font.a11y-largest-text .pillar-card,
  html.a11y-readable-font.a11y-largest-text .pillar-card > *,
  html.a11y-readable-font.a11y-largest-text .job-card,
  html.a11y-readable-font.a11y-largest-text .job-card > *,
  html.a11y-readable-font.a11y-largest-text .promise-list,
  html.a11y-readable-font.a11y-largest-text .promise-list > * {
    min-width: 0;
    max-width: 100%;
  }

  html.a11y-readable-font.a11y-largest-text h1,
  html.a11y-readable-font.a11y-largest-text h2,
  html.a11y-readable-font.a11y-largest-text h3,
  html.a11y-readable-font.a11y-largest-text h4,
  html.a11y-readable-font.a11y-largest-text p,
  html.a11y-readable-font.a11y-largest-text li,
  html.a11y-readable-font.a11y-largest-text a,
  html.a11y-readable-font.a11y-largest-text label,
  html.a11y-readable-font.a11y-largest-text strong,
  html.a11y-readable-font.a11y-largest-text span {
    overflow-wrap: anywhere;
  }

  html.a11y-readable-font.a11y-largest-text .bridge-grid,
  html.a11y-readable-font.a11y-largest-text .pillar-grid,
  html.a11y-readable-font.a11y-largest-text .job-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  html.a11y-readable-font .contact-panel,
  html.a11y-readable-font .method,
  html.a11y-readable-font .form,
  html.a11y-readable-font .card,
  html.a11y-readable-font .stats,
  html.a11y-readable-font .stat,
  html.a11y-readable-font .mco-row,
  html.a11y-readable-font .mco-list,
  html.a11y-readable-font .mco-list li {
    min-width: 0;
  }

  html.a11y-readable-font .footer-grid,
  html.a11y-readable-font .content-side,
  html.a11y-readable-font .grid-2,
  html.a11y-readable-font .grid-3,
  html.a11y-readable-font .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  html.a11y-readable-font .contact-panel,
  html.a11y-readable-font .method,
  html.a11y-readable-font .method a,
  html.a11y-readable-font .office-card,
  html.a11y-readable-font .office-card a,
  html.a11y-readable-font .form label,
  html.a11y-readable-font .form p,
  html.a11y-readable-font .mco-label,
  html.a11y-readable-font .mco-list li,
  html.a11y-readable-font .proof-pill,
  html.a11y-readable-font .stat span {
    overflow-wrap: anywhere;
  }

  html.a11y-readable-font.a11y-text-spacing .form label,
  html.a11y-readable-font.a11y-text-spacing .input,
  html.a11y-readable-font.a11y-text-spacing .method,
  html.a11y-readable-font.a11y-text-spacing .method a,
  html.a11y-readable-font.a11y-text-spacing .mco-label,
  html.a11y-readable-font.a11y-text-spacing .mco-list li,
  html.a11y-readable-font.a11y-text-spacing .proof-pill,
  html.a11y-readable-font.a11y-text-spacing .stat span {
    letter-spacing: .01em;
  }

  html.a11y-readable-font .mco-row {
    align-items: flex-start;
    gap: 12px;
  }

  html.a11y-readable-font .mco-list {
    width: 100%;
  }

  html.a11y-readable-font .mco-list li {
    max-width: 100%;
    white-space: normal;
  }

  html.a11y-readable-font .office-tabs {
    overflow: visible;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  html.a11y-readable-font .office-tab {
    max-width: 100%;
    white-space: normal;
  }

  html.a11y-readable-font .help-bar.visible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  html.a11y-readable-font .help-bar {
    padding: 10px 12px;
    border-radius: 22px;
    font-size: .82rem;
    line-height: 1.35;
    letter-spacing: 0;
  }

  html.a11y-readable-font .help-bar > span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  html.a11y-readable-font .help-bar > span:last-child {
    display: none;
  }

  html.a11y-readable-font .help-bar .help-bar-icon {
    width: 28px;
    height: 28px;
  }
}

/* --- Stories: combined grid layout fix --- */
.stories-secondary {
  margin-top: 22px;
}

/* --- Icon.plum color completion (bug fix in original CSS) --- */
.icon.plum {
  color: var(--plum);
}

/* --- Print styles: print contact info as readable, hide nav/CTAs --- */
@media print {
  .header, .footer, .help-bar, .back-to-top, .accessibility-widget,
  .menu-button, .nav-actions, .button, .skip-link,
  .video-frame, .job-board, iframe {
    display: none !important;
  }
  body { color: #000; }
  .hero, .page-hero {
    min-height: 0 !important;
    padding: 24px 0 !important;
    background: none !important;
    color: #000 !important;
  }
  .hero h1, .hero p, .page-hero h1, .page-hero p {
    color: #000 !important;
  }
  .section, .bridge-section { padding: 18px 0 !important; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; color: #444; }
  a[href^="#"]::after, a[href^="mailto:"]::after, a[href^="tel:"]::after { content: ""; }
}

/* --- Slight tightening for the homepage brand-line readability --- */
.brand-line strong + span {
  display: block;
  margin-top: 4px;
}

/* --- Image card hover lift (subtle) --- */
.image-card {
  transition: transform .2s ease, box-shadow .2s ease;
}
.image-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 47, 74, .14);
}

/* --- Service finder: tag filter pills --- */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 22px;
}
.service-tag {
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
}
.service-tag[aria-pressed="true"] {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* --- Map link styling for office cards --- */
.office-card h3 {
  color: var(--navy);
}

/* --- Responsive adjustments for new components --- */
@media (max-width: 760px) {
  .page-hero.with-photo.about-hero,
  .page-hero.with-photo.services-hero,
  .page-hero.with-photo.stories-hero,
  .page-hero.with-photo.contact-hero,
  .page-hero.with-photo.careers-hero,
  .page-hero.with-photo.resources-hero {
    height: auto;
    min-height: 460px;
    padding: 38px 0;
  }

  html.a11y-readable-font .page-hero.with-photo.about-hero,
  html.a11y-readable-font .page-hero.with-photo.services-hero,
  html.a11y-readable-font .page-hero.with-photo.stories-hero,
  html.a11y-readable-font .page-hero.with-photo.contact-hero,
  html.a11y-readable-font .page-hero.with-photo.careers-hero,
  html.a11y-readable-font .page-hero.with-photo.resources-hero {
    height: auto;
    min-height: 420px;
    padding: 42px 0 52px;
  }

  .page-hero.with-photo.about-hero {
    min-height: 500px;
    padding: 34px 0 54px;
  }

  .page-hero.with-photo.about-hero::before {
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: 54% center;
  }

  .page-hero.with-photo.about-hero::after {
    background: linear-gradient(180deg, rgba(252, 250, 246, .96) 0%, rgba(252, 250, 246, .84) 18%, rgba(252, 250, 246, .86) 72%, rgba(252, 250, 246, .62) 90%, rgba(252, 250, 246, .18) 100%);
  }

  .page-hero.with-photo.about-hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3.1rem);
  }

  .page-hero.with-photo.about-hero .lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

  .page-hero.with-photo.editorial-main-hero {
    min-height: 500px;
    padding: 34px 0 54px;
  }

  .page-hero.with-photo.editorial-main-hero::before {
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: var(--editorial-mobile-position, 57% center);
  }

  .page-hero.with-photo.editorial-main-hero::after {
    background: linear-gradient(180deg, rgba(252, 250, 246, .96) 0%, rgba(252, 250, 246, .84) 18%, rgba(252, 250, 246, .86) 72%, rgba(252, 250, 246, .62) 90%, rgba(252, 250, 246, .18) 100%);
  }

  .page-hero.with-photo.editorial-main-hero h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 10.5vw, 2.95rem);
  }

  .page-hero.with-photo.editorial-main-hero .lead {
    max-width: 100%;
    font-size: .98rem;
    line-height: 1.58;
  }

  html.a11y-largest-text .page-hero.with-photo.services-hero.editorial-main-hero,
  html.a11y-largest-text .page-hero.with-photo.stories-hero.editorial-main-hero,
  html.a11y-largest-text .page-hero.with-photo.contact-hero.editorial-main-hero {
    min-height: 0;
    padding-top: 38px;
    padding-bottom: 70px;
  }

  .section.career-path-section {
    padding-top: 18px;
  }

  .service-jump-band {
    padding: 18px 0 24px;
  }

  .service-jump-band .service-jump,
  .career-path-shortcut .career-jump {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  .service-jump-band .service-jump::after,
  .career-path-shortcut .career-jump::after {
    display: none;
  }

  .service-jump-band .service-nav,
  .career-path-shortcut .career-nav {
    justify-content: flex-start;
  }

  .service-jump-band .service-nav .chip,
  .career-path-shortcut .career-nav .chip {
    flex: 1 1 100%;
    justify-content: center;
  }

  .service-jump-band + .section {
    padding-top: 44px;
  }

  .service-filter {
    grid-template-columns: 1fr;
  }
  .office-filter {
    grid-template-columns: 1fr;
  }
  .office-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    margin: 0 -14px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .office-region-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .office-region-note img {
    max-width: 260px;
    width: 100%;
  }
  .office-tab {
    flex-shrink: 0;
  }
}

/* Visually hidden but available to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* State label inside the service finder */
.state-label {
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 800;
  margin: 6px 0 14px;
}

/* Header: fully opaque white (overrides original translucent + backdrop-filter) */
.header {
  background: var(--white);
  backdrop-filter: none;
}

/* ============================================================
   SERVICE DETAIL PAGES + EXPANDABLE CARDS
   ============================================================ */

.page-hero.with-photo.service-hero {
  display: flex;
  align-items: flex-start;
  isolation: isolate;
  min-height: 300px;
  height: auto;
  padding: 24px 0 72px;
}

/* Compact in-page navigation for longer editorial pages. */
.page-jump-nav {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-jump-nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.page-jump-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  font-size: .86rem;
  font-weight: 800;
}

.page-jump-nav a:hover,
.page-jump-nav a:focus-visible {
  border-color: var(--blue);
  background: #eaf4fb;
}

.form-disclosure,
.representative-note {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.form-disclosure {
  margin: 10px 0 0;
}

.representative-note {
  margin: -10px 0 24px;
}

.impact-quote {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
  max-width: 1180px;
  text-align: left;
}

.impact-quote-media {
  position: relative;
  isolation: isolate;
  padding: 22px 20px 0 0;
}

.impact-quote-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 58%;
  height: 48%;
  background: #cf7a26;
}

.impact-quote-photo {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 4px 64px 4px 4px;
  box-shadow: 0 22px 44px rgba(16, 40, 61, .16);
}

.impact-quote-name {
  position: absolute;
  right: -14px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 18px 22px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(16, 40, 61, .2);
}

.impact-quote-name strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.impact-quote-name span {
  font-size: .8rem;
}

.impact-quote-copy {
  min-width: 0;
}

.impact-quote blockquote {
  position: relative;
  margin: 18px 0 22px;
  padding-top: 26px;
}

.impact-quote blockquote::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: 0;
  color: #cf7a26;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.impact-quote blockquote p {
  margin: 0;
  color: var(--navy);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.08;
}

@media (max-width: 820px) {
  .impact-quote {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 34px;
  }
  .impact-quote-photo {
    height: 300px;
  }
  .impact-quote blockquote p {
    font-size: clamp(1.65rem, 4vw, 2.1rem);
  }
  .impact-quote-name {
    right: -10px;
    min-width: 180px;
    padding: 15px 18px;
  }
}

@media (max-width: 600px) {
  .impact-quote {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .impact-quote-media {
    width: min(280px, calc(100% - 16px));
  }
  .impact-quote-photo {
    height: 340px;
  }
  .impact-quote blockquote p {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
  }
}

.service-hero-families {
  --hero-image: url("assets/families.jpg");
  --hero-position: center 42%;
}

.service-hero-employment {
  --hero-image: url("assets/employment.jpg");
  --hero-position: center 42%;
}

.service-hero-contact {
  --hero-image: url("assets/contact.jpg");
  --hero-position: center 43%;
}

.service-hero-early {
  --hero-image: url("assets/early.jpg");
  --hero-position: center 44%;
}

.page-hero.with-photo.service-hero:before {
  z-index: 0;
  background: var(--hero-image) var(--hero-position, center 25%) / cover no-repeat;
  filter: none;
  transform: none;
}

.page-hero.with-photo.service-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 43, .97), rgba(7, 30, 46, .78) 48%, rgba(7, 30, 46, .36)),
    linear-gradient(0deg, rgba(7, 26, 43, .16), rgba(7, 26, 43, .16));
}

.page-hero.with-photo.service-hero .eyebrow.light {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(243, 178, 60, .42);
  border-radius: 999px;
  background: rgba(243, 178, 60, .16);
  color: #ffe1a1;
}

.page-hero.with-photo.service-hero h1 {
  max-width: 940px;
  margin-bottom: 12px;
  color: #f7fbff;
  font-size: clamp(1.95rem, 2.8vw, 2.85rem);
  text-shadow: 0 4px 22px rgba(0, 0, 0, .26);
}

.page-hero.with-photo.service-hero .lead {
  max-width: 960px;
  margin-bottom: 0;
  border-left: 4px solid var(--green);
  padding-left: 18px;
  color: rgba(255, 255, 255, .92);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .22);
}

@media (max-width: 760px) {
  .page-hero.with-photo.service-hero {
    height: auto;
    padding: 28px 0 72px;
  }

  .page-hero.with-photo.service-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .page-hero.with-photo.service-hero .lead {
    font-size: .98rem;
    line-height: 1.55;
  }
}

.service-request-band {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding: 0;
  background: transparent;
}

.service-request-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid rgba(0, 70, 127, .38);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(16, 47, 74, .13);
}

.service-request-card h2 {
  margin: 0 0 4px;
  font-size: 1.45rem;
}

.service-request-card p {
  margin: 0;
}

.service-request-card .button-row {
  justify-content: flex-end;
  margin: 0;
}

.service-request-card.service-request-actions-only {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
  padding: 18px 20px;
}

.service-request-card.service-request-actions-only::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 50%;
  width: 220px;
  height: 220px;
  background: url("assets/favicon.png") center / contain no-repeat;
  opacity: .055;
  transform: translateY(-50%) rotate(-8deg);
  pointer-events: none;
}

.service-request-card.service-request-actions-only .button-row {
  position: relative;
  z-index: 1;
}

.service-request-card.service-request-actions-only .button-row {
  justify-content: flex-start;
}

.service-request-band + .section {
  padding-top: 38px;
}

@media (max-width: 760px) {
  .service-request-card {
    align-items: stretch;
    flex-direction: column;
  }

  .service-request-card .button,
  .service-request-card .button-row {
    width: 100%;
  }
}

/* State tag in service-page hero */
.state-tag {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--state-accent, var(--blue));
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Service detail page content blocks */
.service-detail {
  margin-bottom: 36px;
}
.service-detail:last-child {
  margin-bottom: 0;
}
.service-detail h2 {
  font-size: 1.6rem;
  margin: 0 0 16px;
  color: var(--navy);
}

/* Checkmark list (used in detail pages) */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 36px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.55;
}
.check-list li:last-child {
  border-bottom: 0;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='m5 12 5 5L20 7'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Numbered step list (used in "How to start") */
.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.step-list li {
  position: relative;
  padding: 18px 0 18px 56px;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}
.step-list li:last-child {
  border-bottom: 0;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid var(--gold);
}
.step-list li strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.step-list li p {
  margin: 0;
  color: var(--ink);
}

/* FAQ accordion (used in detail pages AND services.html expandable cards) */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310283d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-item .faq-body {
  padding: 0 20px 18px;
  color: var(--ink);
}
.faq-item .faq-body p {
  margin: 0;
}

/* Service CTA sidebar */
.service-cta {
  background: var(--navy);
  color: var(--white);
}
.service-cta .eyebrow {
  color: var(--gold);
}
.service-cta h3 {
  color: var(--white);
  margin-top: 4px;
}
.service-cta p {
  color: rgba(255, 255, 255, .85);
}
.service-cta .button {
  width: 100%;
  margin-top: 12px;
}

/* Related services in sidebar */
.related-card {
  display: grid;
  grid-template-columns: minmax(100px, .8fr) minmax(0, 1.35fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.related-card > *,
.related-card strong {
  min-width: 0;
}

.related-card strong {
  overflow-wrap: anywhere;
}
.related-card:first-of-type {
  margin-top: 14px;
}
.related-card:hover {
  background: var(--soft);
  border-color: var(--blue);
  transform: translateX(2px);
}
.related-card .meta {
  display: block;
  min-width: 0;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  overflow-wrap: anywhere;
}
.related-card strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
}
.related-card .arrow {
  color: var(--blue);
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================================
   EXPANDABLE SERVICE CARDS on services.html
   ============================================================ */
.service-card {
  cursor: pointer;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.service-card:hover {
  border-color: var(--blue);
}
.service-card .card-toggle {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-size: .85rem;
  font-weight: 800;
}
.service-card .card-toggle::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23114a7e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .2s ease;
}
.service-card.expanded .card-toggle::after {
  transform: rotate(180deg);
}
.service-card .card-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, opacity .3s ease, margin-top .3s ease;
  opacity: 0;
}
.service-card.expanded .card-expand {
  max-height: 600px;
  opacity: 1;
  margin-top: 14px;
}
.service-card .card-expand-inner {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.service-card .card-expand p {
  font-size: .92rem;
  color: var(--ink);
  margin: 0 0 12px;
}
.service-card .card-expand a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-weight: 800;
  font-size: .9rem;
}

/* CARF seal placement */
.carf-seal {
  display: inline-block;
  width: 80px;
  height: 80px;
  vertical-align: middle;
  margin: 0 4px;
}
.band .carf-seal {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, .25));
}
.accreditation-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Smaller screens: detail page sidebar stacks under main content */
@media (max-width: 900px) {
  .content-side {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICE CARDS AS DIRECT LINKS
   (overrides earlier expandable-card styles)
   ============================================================ */
a.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
a.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 30px rgba(16, 47, 74, .12);
  transform: translateY(-2px);
}
a.service-card:hover h3 {
  color: var(--blue);
}
a.service-card h3 {
  transition: color .15s ease;
}
.service-card .card-link {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 800;
  font-size: .9rem;
}
.service-card .card-link .arrow {
  transition: transform .2s ease;
}
a.service-card:hover .card-link .arrow {
  transform: translateX(3px);
}
/* Push the meta tag and content into a column layout so the link sits at the bottom */
a.service-card .meta {
  margin-bottom: 8px;
}
a.service-card h3 {
  margin: 0 0 8px;
}
a.service-card p {
  margin: 0 0 10px;
}

/* Hide / disable the leftover expand-related styles (no longer present in markup,
   but in case any old cache references them) */
.service-card .card-toggle,
.service-card .card-expand {
  display: none;
}

/* ============================================================
   NAV POLISH — overrides earlier .header / .links / .brand rules
   ============================================================ */

/* Header: opaque, slightly less tall, with proper scroll shadow */
.header {
  background: rgba(252, 250, 246, .98);
  border-bottom: 1px solid rgba(16, 42, 58, .12);
  backdrop-filter: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.header.scrolled {
  box-shadow: 0 6px 18px rgba(16, 47, 74, .07);
  border-bottom-color: transparent;
}

/* Tighter overall nav bar */
.nav {
  min-height: 78px;
  gap: 32px;
}

/* Logo restored to original size (width-based, not height-based) */
.brand {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}
.brand img {
  width: min(310px, 48vw);
  height: auto;
  max-width: none;
}

/* Tighter, more refined nav links */
.links {
  gap: 34px;
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.links a:not(.mobile-only-cta) {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.links a {
  position: relative;
  padding: 8px 2px;
  color: var(--ink);
  transition: color .15s ease;
}
.links a:hover {
  color: var(--blue);
}

/* Active state — small navy underline under current page */
.links a.active {
  color: var(--navy);
}
.links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* Hover underline that animates in */
.links a:not(.active)::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -2px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  opacity: 0;
  transition: left .2s ease, right .2s ease, opacity .2s ease;
}
.links a:not(.active):hover::after {
  left: 0;
  right: 0;
  opacity: 1;
}

/* Slightly tighter Careers button on desktop */
.nav-actions .button.primary {
  padding: 12px 22px;
  font-size: .9rem;
  letter-spacing: .01em;
}

/* On mobile, the appended .mobile-only-cta inside .links shouldn't get the underline */
.links .mobile-only-cta::after {
  display: none !important;
}

@media (min-width: 1021px) {
  .nav {
    min-height: 104px;
  }

  .brand {
    padding: 0;
  }

  .brand img {
    width: 320px;
  }
}

/* The mobile dropdown panel: when open it should look like a proper sheet */
@media (max-width: 1020px) {
  .links {
    box-shadow: 0 12px 24px rgba(16, 47, 74, .08);
    border-bottom: 1px solid var(--line);
  }
  .links a:not(.active)::after,
  .links a.active::after {
    display: none;
  }
}

/* Slightly snappier mobile menu icon spacing */
.menu-button {
  width: 46px;
  min-width: 46px;
  padding: 0;
}

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.social-link svg {
  display: block;
}

/* On small screens, give a bit more spacing */
@media (max-width: 700px) {
  .social-row {
    margin-top: 14px;
    gap: 12px;
  }
}

/* ============================================================
   COMPACT CTA BANDS — used when band is a "Need help? Click here"
   call-to-action rather than an info/stats band.
   ============================================================ */
.section.band.band-cta {
  padding: 36px 0;
}
.section.band.band-cta .section-head {
  align-items: center;
  justify-content: flex-start;
  gap: clamp(36px, 7vw, 96px);
  margin-bottom: 0;
}
.section.band.band-cta .section-head > div {
  max-width: 760px;
}
.section.band.band-cta .eyebrow {
  margin-bottom: 4px;
}
.section.band.band-cta h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.25;
}

/* On mobile, stack neatly */
@media (max-width: 720px) {
  .section.band.band-cta {
    padding: 28px 0;
  }
  .section.band.band-cta .section-head {
    flex-direction: column;
    align-items: start;
    gap: 18px;
  }
}

/* ===== 2024 ASSESSMENT ADDITIONS ===== */

/* "Your Best Life" four-pillar grid (homepage) */
.pillar-grid {
  margin-top: 12px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-card h3 {
  margin: 4px 0 0;
  font-size: 1.05rem;
  color: var(--navy);
}
.pillar-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 520px) {
  .pillar-grid {
    grid-template-columns: 1fr !important;
  }
}

/* MCO preferred-provider row */
.mco-row {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}
.mco-label {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
}
.mco-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.mco-list li {
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
}
.mco-row-light {
  background: rgba(255, 255, 255, .06);
}

/* CEO message / leadership block (About) */
.leadership-message {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}
.leadership-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.leadership-block h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.15rem;
}
.leadership-block p {
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.6;
}
.leadership-block ul.check-list {
  margin: 0;
}
.leadership-sign {
  margin: 0;
  color: var(--blue);
  font-weight: 700;
  font-style: italic;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .leadership-message {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }
  .leadership-portrait {
    width: min(100%, 360px);
    max-height: 400px;
  }
  .careers-training-photo {
    height: 360px;
  }
}

/* Growth chart figure */
.growth-chart {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(16, 47, 74, .08);
}
.growth-chart svg {
  width: 100%;
  height: auto;
  display: block;
}
.growth-chart figcaption {
  margin-top: 10px;
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  font-style: italic;
}

/* Geographic reach bars */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.reach-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reach-meter {
  height: 10px;
  background: var(--sky);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.reach-meter span {
  display: block;
  height: 100%;
  width: var(--reach-fill, 0%);
  background: linear-gradient(90deg, var(--blue), var(--navy));
  border-radius: 999px;
}
.reach-stat strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.15rem;
  color: var(--navy);
}
.reach-pct {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}
@media (max-width: 880px) {
  .reach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .reach-grid {
    grid-template-columns: 1fr;
  }
}

/* Accreditation cards grid (About band) */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.accred-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.accred-card .carf-seal {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.accred-badge {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  letter-spacing: .02em;
}
.accred-card strong {
  display: block;
  color: var(--white);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.accred-card p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .accred-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.accred-card,
.accred-card > div {
  min-width: 0;
}

.accred-card strong,
.accred-card p {
  overflow-wrap: anywhere;
}

/* "Only provider" callout for SESH */
.unique-callout {
  max-width: 780px;
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 18px;
  margin: 4px 0 30px;
}
.unique-callout p {
  margin: 0;
  color: var(--navy);
  line-height: 1.5;
}
.unique-callout .eyebrow {
  color: var(--green);
  margin-bottom: 6px;
}
.unique-callout p:not(.eyebrow) {
  font-size: 1.02rem;
  font-weight: 700;
}

/* ===== 2025 ASSESSMENT ADDITIONS ===== */

/* SSMS framework cards (replaces 4-pillar icon style on homepage) */
.ssms-card {
  position: relative;
  overflow: hidden;
}
.ssms-letter {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  margin-bottom: 4px;
  box-shadow: 0 6px 14px rgba(16, 47, 74, .18);
}
.ssms-card:nth-child(1) .ssms-letter { background: var(--blue); }
.ssms-card:nth-child(2) .ssms-letter { background: var(--green); }
.ssms-card:nth-child(3) .ssms-letter { background: var(--gold); color: var(--navy); }
.ssms-card:nth-child(4) .ssms-letter { background: var(--coral); }

/* Satisfaction surveys (About page) */
.survey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 12px;
}
.survey-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 8px 24px rgba(16, 47, 74, .06);
}
.survey-card h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1.05rem;
}
.survey-card .survey-meta {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .85rem;
}
.survey-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.survey-bar {
  display: grid;
  grid-template-columns: 90px 1fr 46px;
  align-items: center;
  gap: 10px;
}
.survey-bar-label {
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
}
.survey-bar-track {
  height: 14px;
  background: var(--sky);
  border-radius: 999px;
  overflow: hidden;
}
.survey-bar-fill {
  display: block;
  height: 100%;
  width: var(--bar-pct, 0%);
  background: linear-gradient(90deg, var(--blue), var(--navy));
  border-radius: 999px;
}
.survey-bar-value {
  text-align: right;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
}
.survey-scale-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .8rem;
  font-style: italic;
  text-align: center;
}
@media (max-width: 760px) {
  .survey-grid {
    grid-template-columns: 1fr;
  }
  .survey-bar {
    grid-template-columns: 70px 1fr 40px;
  }
}

/* DDA vs ECF waiver comparison table (ECF service page) */
.waiver-compare {
  margin: 24px 0 12px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(16, 47, 74, .06);
}
.waiver-compare table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: .92rem;
}
.waiver-compare thead th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  font-size: .95rem;
}
.waiver-compare thead th:first-child {
  background: var(--blue);
}
.waiver-compare tbody td {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.45;
}
.waiver-compare tbody th {
  text-align: left;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: var(--soft);
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
  white-space: nowrap;
}
.waiver-compare tbody tr:hover td,
.waiver-compare tbody tr:hover th {
  background: #fffaf0;
}
.waiver-compare-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .85rem;
  font-style: italic;
}

/* ===== STORIES PAGE: VIDEO STORIES + FILTER TABS ===== */

/* Filter tabs (similar pattern to office-locator tabs) */
.story-filter-section {
  padding-bottom: 0 !important;
  padding-top: 36px !important;
}
.story-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.story-tab {
  background: transparent;
  border: 0;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color .2s ease, border-color .2s ease;
}
.story-tab:hover {
  color: var(--blue);
}
.story-tab.is-active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.story-tab:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Hidden group when filter is active */
[data-story-group][hidden] {
  display: none !important;
}

/* Featured supported-person video — image-style hero card */
.story-feature-video {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 12px;
  box-shadow: var(--shadow);
}
.story-feature-video .video-frame {
  margin: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
.story-feature-copy {
  padding: 28px 32px;
}
.story-feature-copy h3 {
  margin: 6px 0 14px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1.2;
}
.story-feature-copy p {
  color: var(--ink);
  line-height: 1.6;
}
.employee-video-feature {
  margin-top: 30px;
}
.employee-testimonial-poster {
  object-position: center 38%;
}
@media (max-width: 880px) {
  .story-feature-video {
    grid-template-columns: 1fr;
  }
  .story-feature-copy {
    padding: 22px 24px 28px;
  }
}

/* Two-up grid of video stories */
.story-video-grid {
  margin-top: 28px;
}
.story-video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.story-video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.story-video-card .video-frame {
  margin: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}
.story-video-body {
  padding: 22px 24px 26px;
}
.story-video-body .eyebrow {
  margin-bottom: 6px;
}
.story-video-body h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: 1.2rem;
}
.story-video-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: .95rem;
}

/* Actual supported-person and employee portraits */
.marco-feature {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  margin-top: 32px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}
.leadership-portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 47, 74, .1);
}
.marco-feature > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 42%;
}
.marco-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  color: var(--white);
}
.marco-feature-copy h3 {
  margin: 8px 0 14px;
  color: var(--white);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.marco-feature-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .88);
  line-height: 1.65;
}
.marco-feature-copy .voice-coming {
  margin: 18px 0 0;
  padding: 14px 0 0 18px;
  border-left: 3px solid var(--gold);
  font-weight: 700;
}

.team-lead-feature {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 47, 74, .1);
}
.team-lead-feature > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 18%;
}
.team-lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
}
.team-lead-copy h3,
.employee-card-body h3,
.employee-profile-card h3 {
  margin: 6px 0 4px;
  color: var(--navy);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}
.team-lead-copy h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.team-role {
  margin: 0;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.team-lead-copy blockquote,
.employee-card-body blockquote {
  margin: 0;
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}
.team-lead-copy blockquote {
  margin-top: 28px;
  padding-left: 24px;
  border-left: 4px solid var(--gold);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.45;
}

.employee-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.employee-quote-card,
.employee-profile-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(16, 47, 74, .07);
}
.employee-quote-card {
  border-top-width: 4px;
}
.employee-quote-card.accent-green { border-top-color: var(--green); }
.employee-quote-card.accent-gold { border-top-color: var(--gold); }
.employee-quote-card.accent-coral { border-top-color: var(--coral); }
.employee-quote-card > img,
.employee-profile-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.employee-quote-card:nth-child(3) > img {
  object-position: center 24%;
}
.employee-card-body {
  padding: 24px;
}
.employee-card-body h3 {
  font-size: 1.45rem;
}
.employee-card-body blockquote {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  line-height: 1.55;
}
.employee-card-body blockquote + blockquote {
  margin-top: 14px;
  padding-top: 14px;
}

.employee-roster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.employee-profile-card > div {
  min-height: 106px;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
}
.employee-profile-card h3 {
  font-size: 1.25rem;
}
.employee-profile-card p {
  margin: 7px 0 0;
  color: var(--muted);
}

.learning-section {
  background: var(--navy);
  color: var(--white);
}
.learning-head h2,
.learning-head > p {
  color: var(--white);
}
.learning-head > p {
  opacity: .82;
}
.learning-gallery {
  display: grid;
  grid-template-columns: .8fr 1.4fr .8fr;
  grid-template-rows: repeat(2, 230px);
  gap: 14px;
}
.learning-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .16);
}
.learning-cpr {
  grid-column: 1;
  grid-row: 1 / 3;
}
.learning-group {
  grid-column: 2;
  grid-row: 1;
}
.learning-focus {
  grid-column: 2;
  grid-row: 2;
}
.learning-close {
  grid-column: 3;
  grid-row: 1 / 3;
}

@media (max-width: 900px) {
  .marco-feature,
  .team-lead-feature {
    grid-template-columns: 1fr;
  }
  .marco-feature > img,
  .team-lead-feature > img {
    height: min(62vw, 480px);
  }
  .employee-quote-grid,
  .employee-roster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .learning-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 260px);
  }
  .learning-cpr,
  .learning-group,
  .learning-focus,
  .learning-close {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .employee-quote-grid,
  .employee-roster-grid {
    grid-template-columns: 1fr;
  }
  .marco-feature > img,
  .team-lead-feature > img {
    height: 320px;
  }
  .team-lead-copy,
  .marco-feature-copy {
    padding: 26px 22px 30px;
  }
  .learning-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .learning-gallery img {
    height: 300px;
  }
}

/* ===== CLICK-TO-PLAY VIDEO POSTER ===== */

.video-poster {
  position: relative;
  padding: 0;
  background: #000;
}
.video-poster-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}
.video-poster-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .25s ease;
}
.video-poster-button:hover img,
.video-poster-button:focus-visible img {
  transform: scale(1.03);
  filter: brightness(.85);
}
.video-poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .35));
}
.video-poster-button:hover .video-poster-play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-poster-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

/* When the iframe takes over, kill the button container styles */
.video-poster.is-playing .video-poster-button {
  display: none;
}

/* ===== HOMEPAGE SECTION RHYTHM REFINEMENTS ===== */

  :root {
  --soft: #edf4f8;
  --soft-blue: #e8f1f6;
  --soft-warm: #fbf7ef;
  --section-rule: rgba(16, 47, 74, .1);
}

.bridge-section {
  padding: 92px 0 66px;
  border-bottom: 1px solid var(--section-rule);
}

.section {
  padding: 76px 0;
}

.section.tight {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section.soft {
  position: relative;
  border-top: 1px solid rgba(16, 47, 74, .08);
  border-bottom: 1px solid rgba(16, 47, 74, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 32%),
    var(--soft-blue);
}

.editorial-panel {
  gap: 0;
  border-color: #d5e0e8;
  background: #d5e0e8;
}

.editorial-copy,
.editorial-image {
  background: var(--soft-warm);
}

.editorial-copy {
  border-top: 4px solid var(--gold);
}

.editorial-image {
  position: relative;
  min-height: 100%;
}

.editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 40, 61, .1), rgba(16, 40, 61, 0));
  pointer-events: none;
}

.editorial-image img {
  min-height: 520px;
  object-position: center;
}

.video-frame {
  box-shadow: 0 18px 42px rgba(16, 47, 74, .16);
}

/* Compact homepage leadership feature */
.leadership-feature-section {
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--navy);
  color: var(--white);
}

.leadership-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.leadership-feature-media,
.leadership-feature-copy {
  min-width: 0;
}

.leadership-feature-media .video-frame {
  border: 1px solid rgba(239, 193, 127, .46);
  border-radius: 8px 28px 8px 8px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, .32);
}

.leadership-feature-media .video-poster-button::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(5, 24, 39, .82));
  pointer-events: none;
}

.leadership-feature-media .video-poster-play {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .28));
}

.leadership-feature-media .video-poster-play svg {
  width: 42px;
  height: 30px;
}

.leadership-feature-media .video-poster-play path:first-child {
  fill: var(--blue);
}

.leadership-video-label {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.leadership-feature-media .video-poster-play {
  z-index: 3;
}

.leadership-feature-copy .eyebrow {
  margin-bottom: 14px;
  color: #f4c979;
}

.leadership-feature-copy h2 {
  max-width: 600px;
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(2.1rem, 3.7vw, 3.45rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.leadership-feature-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
}

.leadership-feature-cta {
  gap: 12px;
  border-color: #efc17f;
  background: #efc17f;
  color: var(--navy);
}

.leadership-feature-cta:hover {
  border-color: #f6d49f;
  background: #f6d49f;
}

@media (min-width: 1280px) {
  .leadership-feature-grid.container {
    width: min(1240px, calc(100% - 40px));
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  }
}

@media (max-width: 840px) {
  .leadership-feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .leadership-feature-copy h2 {
    max-width: 680px;
  }

}

.core-services-section {
  border-top: 1px solid rgba(16, 47, 74, .06);
  border-bottom: 1px solid rgba(16, 47, 74, .08);
  background: #fcfaf6;
}

@media (max-width: 560px) {
  .leadership-feature-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .leadership-video-label {
    left: 14px;
    bottom: 12px;
    font-size: .64rem;
  }
}

.pillar-grid .pillar-card {
  border-color: #cfdae4;
}

@media (max-width: 760px) {
  .bridge-section {
    padding: 74px 0 52px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .section.tight {
    padding: 58px 0;
  }

  .editorial-image img {
    min-height: 300px;
  }
}
