:root {
  --paper: #f3f6fb;
  --paper-light: #ffffff;
  --ink: #0b1628;
  --muted: #52637a;
  --line: rgba(11, 22, 40, 0.14);
  --navy: #071d3a;
  --deep-blue: #0b2f5b;
  --blue: #1e5d8f;
  --sky: #8bb8df;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 29, 58, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0;
}

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

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

p,
h1,
h2,
h3,
a,
strong,
span {
  overflow-wrap: break-word;
}

main,
section,
article,
div {
  min-width: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.nav-dropdown-trigger:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 16px 34px;
  background: rgba(243, 246, 251, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.brand span {
  display: block;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  overflow: visible;
  white-space: nowrap;
  font-size: 14px;
  color: rgba(11, 22, 40, 0.76);
}

.nav a,
.nav-dropdown summary,
.nav-dropdown-trigger,
.nav-dropdown-toggle,
.text-link {
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav-dropdown summary:hover,
.nav-dropdown-trigger:hover,
.nav-dropdown-toggle:hover,
.text-link:hover {
  border-color: currentColor;
}

.nav .is-active,
.nav-dropdown-trigger.is-active {
  color: var(--deep-blue);
  font-weight: 900;
  border-color: rgba(30, 93, 143, 0.42);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 330px;
  height: 16px;
  transform: translateX(-50%);
}

.nav-dropdown summary,
.nav-dropdown-trigger {
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown-toggle {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-dropdown summary::after,
.nav-dropdown-toggle::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown summary::after {
  margin-left: 8px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  min-width: 330px;
  padding: 10px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
}

.nav-dropdown[open] .dropdown-menu,
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-bottom: 0;
  border-radius: 6px;
  color: var(--ink);
  line-height: 1.35;
  white-space: normal;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a.is-active {
  background: rgba(30, 93, 143, 0.1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 6px;
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.nav-cta,
.button-primary {
  background: var(--deep-blue);
  color: var(--white);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

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

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 29, 58, 0.18), rgba(7, 29, 58, 0.44) 42%, rgba(7, 29, 58, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 104px 28px 116px;
  color: var(--white);
}

.hero-copy {
  width: min(100%, 500px);
}

.hero .eyebrow {
  color: #d9ecff;
  text-shadow: 0 2px 14px rgba(7, 29, 58, 0.42);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 500px;
  font-size: 72px;
  line-height: 0.98;
}

h2 {
  font-size: 44px;
  line-height: 1.08;
}

h3 {
  font-size: 24px;
  line-height: 1.16;
}

.hero-lead {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  max-width: 500px;
}

.hero-actions .button {
  flex: 0 1 auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: -30px auto 0;
  position: relative;
  z-index: 3;
  padding: 0 28px;
}

.proof-strip div {
  min-height: 118px;
  padding: 24px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 92px 28px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 52px;
  align-items: end;
}

.section-heading p,
.two-column p,
.feature-copy p,
.bio-copy p,
.split-services p,
.contact-band p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.service-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(30, 93, 143, 0.34);
  box-shadow: 0 18px 40px rgba(7, 29, 58, 0.1);
  transform: translateY(-2px);
}

.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30, 93, 143, 0.2);
  border-radius: 50%;
  background: rgba(139, 184, 223, 0.13);
  color: var(--blue);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card a {
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 0;
  align-items: stretch;
}

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

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.feature-copy {
  max-width: 610px;
  padding: 82px 58px;
  align-self: center;
}

.feature-copy p,
.feature-copy .check-list {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 26px 0;
}

.text-link {
  color: var(--sky);
  font-weight: 900;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 62px;
}

.condition-list {
  padding-top: 8px;
}

.condition-list p {
  margin-top: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.bio-long {
  max-width: 760px;
}

.bio-long p {
  line-height: 1.72;
}

.bio-long .bio-label {
  padding-bottom: 0;
  border-bottom: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.wide-image {
  margin-top: 52px;
}

.wide-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.split-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--line);
}

.split-services article {
  padding: 86px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--paper-light);
}

.split-services article:first-child {
  padding-right: 58px;
}

.split-services article:last-child {
  padding-left: 58px;
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  gap: 68px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 98px 28px;
}

.portrait img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bio-details {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.bio-details summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 900;
}

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

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.pathway-grid div {
  padding-top: 22px;
  border-top: 3px solid var(--sky);
}

.pathway-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.pathway-grid p {
  color: var(--muted);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.64fr);
  gap: 54px;
  align-items: center;
  padding: 90px max(28px, calc((100vw - var(--max)) / 2));
  background: #e8eef7;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel p {
  margin: 0;
  font-size: 15px;
}

.location-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.location-list-compact {
  margin-top: 8px;
}

.location-list p,
.location-card p {
  margin: 0;
}

.location-list p {
  position: relative;
  padding: 14px 0 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}

.contact-panel .location-list p:first-child,
.location-list p:first-child {
  border-top: 0;
}

.location-list p::before,
.location-card-icon::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(139, 184, 223, 0.54);
  border-radius: 50%;
  background: rgba(139, 184, 223, 0.14);
}

.location-list p::after,
.location-card-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.location-list p::before {
  left: 0;
  top: 16px;
}

.location-list p::after {
  left: 8px;
  top: 23px;
}

.location-list strong,
.location-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1.3;
}

.location-list span {
  display: block;
}

.location-map-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.location-map-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
}

.location-map-link:hover {
  color: var(--deep-blue);
}

.location-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  min-height: 250px;
  padding: 30px;
  background: linear-gradient(180deg, var(--paper-light), rgba(255, 255, 255, 0.82));
}

.location-card-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  margin-top: 4px;
}

.location-card h2 {
  margin-bottom: 18px;
}

.location-card-icon::before {
  left: 0;
  top: 0;
}

.location-card-icon::after {
  left: 8px;
  top: 7px;
}

.site-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 34px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-of-type {
  max-width: 560px;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 184, 223, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #d9ecff;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(217, 236, 255, 0.92);
  background: rgba(139, 184, 223, 0.18);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(139, 184, 223, 0.16);
  transform: translateY(-2px);
}

.social-icon {
  width: 20px;
  height: 20px;
  animation: social-drift 5.8s ease-in-out infinite;
}

.social-link:nth-child(2) .social-icon {
  animation-delay: 0.8s;
}

@keyframes social-drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-1px) scale(1.04);
  }
}

.page-main {
  background: var(--paper);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 92px 28px 76px;
}

.page-hero-centered {
  display: block;
  padding-bottom: 34px;
}

.page-hero-centered .page-hero-copy {
  max-width: 860px;
}

.page-hero h1 {
  max-width: 760px;
  font-size: 58px;
  line-height: 1;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-hero-media img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-section {
  border-top: 1px solid var(--line);
}

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

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

.detail-card {
  min-height: 260px;
  padding: 30px;
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-card h2 {
  font-size: 30px;
}

.detail-card p {
  color: var(--muted);
}

.content-list {
  color: var(--ink);
  margin-top: 0;
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 72px max(28px, calc((100vw - var(--max)) / 2));
  background: var(--navy);
  color: var(--white);
}

.cta-strip .eyebrow {
  color: var(--sky);
}

.cta-strip p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-strip .button-primary {
  background: var(--sky);
  color: var(--navy);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 54px;
  align-items: start;
}

.contact-card p {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .site-header {
    gap: 18px;
    padding: 15px 24px;
  }

  .nav {
    gap: 16px;
  }

  h1 {
    font-size: 62px;
  }

  .page-hero h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

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

  .service-card {
    min-height: 260px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px 20px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    order: 3;
  }

  .nav-dropdown {
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-dropdown::before {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    flex-basis: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown[open] .dropdown-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  h1 {
    font-size: 52px;
  }

  .hero-copy {
    width: min(48vw, 460px);
  }

  h2 {
    font-size: 36px;
  }

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

  .section-heading,
  .two-column,
  .feature,
  .editorial-band,
  .contact-band,
  .page-hero,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .page-hero {
    gap: 42px;
    padding: 76px 28px 62px;
  }

  .page-hero-media img {
    max-height: 460px;
  }

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

  .cta-strip {
    grid-template-columns: 1fr;
    padding: 64px 28px;
  }

  .feature-media img {
    width: 100%;
    min-height: 420px;
  }

  .feature-copy {
    max-width: none;
    padding: 60px 28px;
  }

  .split-services {
    grid-template-columns: 1fr;
  }

  .split-services article,
  .split-services article:first-child,
  .split-services article:last-child {
    padding: 62px 28px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .brand {
    font-size: 19px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 10px 13px;
  }

  .nav {
    gap: 10px 16px;
  }

  .nav-dropdown .dropdown-menu,
  .nav-dropdown[open] .dropdown-menu {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-image {
    object-position: 42% center;
  }

  .hero-overlay {
    background: rgba(7, 29, 58, 0.68);
  }

  .hero-content {
    justify-content: flex-end;
    padding: 88px 20px 88px;
  }

  .hero-copy {
    width: min(72vw, 380px);
  }

  h1 {
    font-size: 40px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0;
  }

  .proof-strip div {
    min-height: auto;
    box-shadow: none;
  }

  .section {
    padding: 66px 20px;
  }

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

  .service-card {
    min-height: auto;
  }

  .editorial-band {
    padding: 66px 20px;
  }

  .page-hero {
    padding: 62px 20px 50px;
  }

  .page-hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .page-actions {
    width: 100%;
  }

  .page-actions .button {
    flex: 1 1 100%;
  }

  .contact-band {
    padding: 66px 20px;
  }

  .cta-strip {
    padding: 58px 20px;
  }

  .site-footer {
    display: grid;
    padding: 24px 20px;
  }

  .site-footer p:last-of-type {
    max-width: none;
  }

  .footer-social {
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    font-size: 17px;
  }

  .nav-cta {
    font-size: 13px;
    padding: 9px 11px;
  }

  .nav {
    font-size: 13px;
  }

  .hero-content {
    padding: 76px 16px 76px;
  }

  .hero-copy {
    width: min(74vw, 300px);
  }

  h1 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .section,
  .editorial-band,
  .contact-band,
  .page-hero,
  .cta-strip {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-card,
  .contact-panel,
  .detail-card {
    padding: 22px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .site-header.is-menu-open .nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100%;
    order: 3;
    padding: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    white-space: normal;
  }

  .site-header.is-menu-open .nav-cta {
    grid-column: 1 / -1;
    display: inline-flex;
    width: 100%;
    order: 4;
    margin-top: 0;
  }

  .nav a,
  .nav-dropdown-trigger {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 0;
    border-radius: 6px;
  }

  .nav a:hover,
  .nav a:focus-visible,
  .nav-dropdown-trigger:hover,
  .nav-dropdown-trigger:focus-visible {
    background: rgba(30, 93, 143, 0.1);
  }

  .nav .is-active,
  .nav-dropdown-trigger.is-active {
    background: rgba(30, 93, 143, 0.12);
    border-color: transparent;
  }

  .nav-dropdown {
    display: grid;
    flex-basis: auto;
    flex-wrap: nowrap;
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: stretch;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown-toggle {
    display: none;
  }

  .dropdown-menu {
    position: static;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    padding: 6px 0 0 12px;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(30, 93, 143, 0.18);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .dropdown-menu a {
    min-height: 40px;
    padding: 9px 12px;
  }

  .nav-dropdown[open] .dropdown-menu,
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: none;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 12px 16px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .social-icon {
    animation: none;
  }

  .menu-toggle span {
    transition: none;
  }
}
