@font-face {
  font-family: Manrope;
  src: url("fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --navy: #073b69;
  --deep: #062e52;
  --ink: #16334d;
  --blue: #155788;
  --yellow: #ffdc57;
  --paper: #f6f7f7;
  --muted: #5c6a75;
  --border: #dce3e8;
  --white: #fff;
  --max: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  flex-shrink: 0;
}
::selection {
  background: var(--yellow);
  color: var(--deep);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(30px, 3.2vw, 43px);
  font-weight: 750;
}
h3 {
  font-size: 22px;
  font-weight: 750;
}
p {
  color: var(--muted);
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #be5510;
  outline-offset: 6px;
}
main:focus {
  outline: none;
}
.container {
  width: min(var(--max), calc(100% - 104px));
  margin-inline: auto;
}
.icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--yellow);
  padding: 12px 24px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.utility-bar {
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 37px;
}
.utility-inner > div {
  display: flex;
  gap: 30px;
  align-items: center;
}
.utility-inner a {
  display: flex;
  align-items: center;
  gap: 9px;
}
.utility-inner .icon {
  width: 13px;
  height: 13px;
}
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e9edf0;
}
.header-inner {
  display: flex;
  min-height: 101px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  width: 78px;
  height: auto;
}
#main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
}
#main-navigation > a:not(.button) {
  font-size: 12px;
  font-weight: 750;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}
#main-navigation > a:not(.button):hover,
#main-navigation > a[aria-current="page"] {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 23px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  border: 1px solid transparent;
  transition:
    background 0.18s,
    transform 0.18s;
  min-height: 50px;
}
.button:hover {
  transform: translateY(-2px);
}
.button-yellow {
  background: var(--yellow);
  color: var(--deep);
}
.button-yellow:hover {
  background: #ffe783;
}
.button-blue {
  background: var(--navy);
  color: #fff;
}
.button-blue:hover {
  background: var(--blue);
}
.button-outline {
  border-color: var(--navy);
  color: var(--navy);
}
.button-outline:hover {
  background: #eaf1f7;
}
.button-small {
  padding: 12px 17px;
  gap: 18px;
  min-height: 43px;
}
.button .icon {
  width: 18px;
  height: 18px;
}
.menu-toggle {
  display: none;
}
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 610px;
  background: var(--navy);
  color: white;
  overflow: hidden;
}
.hero-copy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 67px 52px 45px max(52px, calc((100vw - var(--max)) / 2));
}
.hero-copy-inner {
  width: 100%;
  max-width: 590px;
}
.hero-copy .eyebrow {
  color: #dce9f3;
  display: flex;
  align-items: center;
  gap: 11px;
}
.yellow-dash {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--yellow);
}
.hero-copy h1 {
  font-size: clamp(48px, 4.85vw, 76px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 25px 0;
}
.hero-copy h1 > span {
  color: var(--yellow);
}
.hero-copy p {
  font-size: 15px;
  color: #d9e5ef;
  line-height: 1.85;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 33px;
}
.hero-secondary {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.hero-secondary .icon {
  width: 18px;
}
.hero-secondary:hover {
  text-decoration: underline;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b9cfdf;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin-top: 42px;
}
.small-cross {
  font-size: 24px;
  font-weight: 300;
  color: var(--yellow);
}
.hero-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  position: absolute;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(2, 25, 44, 0.75), transparent 55%),
    linear-gradient(90deg, rgba(7, 59, 105, 0.16), transparent 30%);
}
.photo-caption {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 40px;
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.13em;
  color: #e2e7ec;
  line-height: 2;
}
.photo-caption strong {
  font-size: 14px;
  letter-spacing: -0.01em;
  font-weight: 650;
  color: #fff;
}
.caption-line {
  height: 40px;
  width: 3px;
  background: var(--yellow);
}
.hero-photo-mark {
  position: absolute;
  right: 23px;
  bottom: -30px;
  z-index: 1;
  font-family: Arial, sans-serif;
  font-size: 140px;
  font-weight: 900;
  letter-spacing: -12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
}
.quick-links {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.quick-links > .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.quick-links a {
  padding: 25px 25px;
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 12px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.quick-links a:first-child {
  padding-left: 0;
}
.quick-links a:last-child {
  border-right: 0;
  padding-right: 0;
}
.quick-links a > .icon {
  margin-left: auto;
  width: 19px;
}
.quick-links a:hover {
  background: var(--paper);
}
.quick-number {
  font-size: 10px;
  color: #8c9caa;
}
.quick-links strong {
  font-weight: 800;
}
.section {
  padding: 91px 0;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.section-heading h2 {
  margin-top: 17px;
}
.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  padding-bottom: 7px;
  border-bottom: 1px solid #99afc1;
  white-space: nowrap;
  align-self: flex-end;
}
.text-link:hover {
  color: #12649f;
  border-bottom-color: #12649f;
}
.text-link .icon {
  width: 18px;
  height: 18px;
}
.section-intro {
  font-size: 14px;
  margin-top: 23px;
  line-height: 1.9;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 39px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.news-section {
  background: var(--paper);
}
.news-section .resource-grid {
  margin-top: 32px;
}
.news-card h3 {
  margin: 16px 0;
}
.service-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 29px 31px 25px;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card:hover {
  background: #f1f5f8;
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: var(--navy);
  background: #edf3f7;
  margin-bottom: 21px;
}
.service-icon .icon {
  width: 27px;
  height: 27px;
}
.service-card h3 {
  font-size: 19px;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 12px;
  line-height: 1.9;
  max-width: 310px;
  margin-bottom: 24px;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 10px;
  font-weight: 800;
  margin-top: auto;
}
.card-link .icon {
  width: 19px;
  height: 19px;
}
.service-card-featured {
  grid-column: 1 / -1;
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid var(--yellow);
}
.service-card-featured:hover {
  background: var(--deep);
}
.service-card-featured .eyebrow {
  color: var(--yellow);
  margin-bottom: 18px;
}
.service-card-featured h3 {
  font-size: clamp(24px, 3vw, 34px);
}
.service-card-featured p {
  color: var(--white);
  max-width: 720px;
  font-size: 15px;
}
.service-card-featured .card-link {
  color: var(--yellow);
}
.services-note {
  font-size: 11px;
  margin-top: 20px;
}
.territory-section {
  background: #edf2f5;
  padding: 75px 0;
}
.territory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 95px;
}
.territory-visual {
  background: var(--navy);
  color: #fff;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  position: relative;
  overflow: hidden;
}
.territory-visual:after {
  content: "";
  width: 330px;
  height: 330px;
  border: 1px solid #527492;
  border-radius: 50%;
  position: absolute;
  right: -170px;
  top: -70px;
  box-shadow:
    0 0 0 35px #ffffff06,
    0 0 0 70px #ffffff06,
    0 0 0 105px #ffffff06;
}
.territory-type {
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}
.territory-type > span {
  display: block;
  font-size: 130px;
  letter-spacing: -0.08em;
  color: var(--yellow);
  line-height: 0.9;
}
.territory-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.13em;
}
.territory-location .icon {
  width: 17px;
}
.territory-copy h2 {
  font-size: clamp(28px, 2.7vw, 38px);
  margin: 19px 0 25px;
}
.territory-copy p {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 15px;
}
.territory-copy .text-link {
  margin-top: 14px;
}
.sector-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 55px;
  margin-top: 39px;
}
.sector-list > a {
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--border);
  padding: 24px 0;
  transition: color 0.2s;
}
.sector-list > a:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--border);
}
.sector-list > a > span {
  font-size: 10px;
  color: #7e919f;
}
.sector-list h3 {
  font-size: 18px;
  letter-spacing: -0.025em;
}
.sector-list .icon {
  margin-left: auto;
  width: 19px;
}
.sector-list > a:hover {
  color: #227fb3;
}
.join-strip {
  background: var(--navy);
  color: #fff;
  padding: 57px 0;
  position: relative;
  overflow: hidden;
}
.join-strip:after {
  position: absolute;
  content: "+";
  font-size: 400px;
  font-weight: 200;
  line-height: 1;
  color: #ffffff05;
  left: 45%;
  top: -130px;
  pointer-events: none;
}
.join-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.join-inner .eyebrow {
  color: var(--yellow);
  font-size: 9px;
}
.join-inner h2 {
  font-size: 35px;
  margin-top: 17px;
}
.join-inner > div:last-child {
  justify-self: end;
}
.join-inner p {
  color: #d1deea;
  font-size: 13px;
  margin-bottom: 22px;
}
.site-footer {
  background: #f7f8f9;
  padding: 61px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.25fr 1.1fr;
  gap: 35px;
  padding-bottom: 50px;
}
.brand-footer .brand-logo {
  width: 100px;
}
.footer-grid p {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 20px;
}
.footer-grid h2 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.footer-grid > div > a:not(.brand) {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer-grid > div > a:not(.brand):hover {
  text-decoration: underline;
  color: var(--navy);
}
.footer-grid > div > a .icon {
  width: 13px;
  height: 13px;
}
.footer-grid > div:last-child p {
  margin: 0 0 15px;
}
.footer-grid > div > a.footer-map {
  color: var(--navy);
  font-weight: 750;
  margin-top: 13px;
}
.footer-legal {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  font-size: 12px;
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom > span:last-child {
  display: flex;
  gap: 25px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.page-hero {
  background: #edf2f5;
  padding: 25px 0 63px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 46px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.page-hero h1 {
  font-size: clamp(37px, 4.5vw, 62px);
  max-width: 950px;
  margin: 20px 0;
  line-height: 1.12;
}
.page-hero > div > p {
  max-width: 730px;
  font-size: 16px;
  line-height: 1.8;
}
.page-body {
  padding-top: 65px;
  padding-bottom: 80px;
}
.page-body > .services-grid {
  margin-top: 0;
}
.prose {
  max-width: 790px;
  font-size: 16px;
  line-height: 1.95;
}
.prose h2 {
  font-size: 30px;
  margin: 40px 0 20px;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: 22px;
  margin: 28px 0 13px;
}
.prose p {
  margin-bottom: 20px;
}
.prose ul {
  padding-left: 22px;
  color: var(--muted);
  margin-bottom: 25px;
}
.prose a:not(.button) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.prose strong {
  color: var(--ink);
}
.prose .button {
  margin-top: 10px;
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(270px, 1fr);
  gap: 85px;
  align-items: start;
}
.contact-card {
  background: #edf2f5;
  padding: 34px;
  position: sticky;
  top: 130px;
}
.contact-card h2 {
  font-size: 27px;
  margin-bottom: 20px;
}
.contact-card p {
  font-size: 13px;
  margin-bottom: 22px;
}
.contact-card .button {
  width: 100%;
  gap: 12px;
  white-space: nowrap;
}
.contact-card .text-link {
  margin-top: 24px;
  white-space: normal;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 70px;
  align-items: start;
}
.intro-grid h2 {
  font-size: 34px;
  margin-bottom: 24px;
}
.intro-grid p {
  font-size: 15px;
  margin-bottom: 20px;
}
.intro-grid .territory-visual {
  min-height: 360px;
}
.wide-section {
  margin-top: 65px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}
.wide-section > h2 {
  margin-bottom: 25px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.values-grid h3 {
  font-size: 21px;
  margin: 15px 0;
}
.values-grid p {
  font-size: 13px;
}
.values-grid .value-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}
.sector-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.sector-detail {
  padding: 30px;
  background: var(--paper);
  scroll-margin-top: 130px;
}
.sector-detail .eyebrow {
  color: var(--blue);
}
.sector-detail h2 {
  font-size: 26px;
  margin: 15px 0;
}
.sector-detail p {
  font-size: 14px;
}
.sector-detail .sector-examples {
  font-size: 11px;
  border-top: 1px solid var(--border);
  margin-top: 22px;
  padding-top: 18px;
}
.info-note {
  border-left: 3px solid #b38b13;
  background: #fff9e8;
  padding: 20px 24px;
  margin: 30px 0 0;
  font-size: 13px;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.resource-card {
  padding: 35px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.resource-card h2 {
  font-size: 28px;
  margin: 0 0 18px;
}
.resource-card p {
  font-size: 14px;
  margin-bottom: 25px;
}
.resource-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.step {
  border-top: 2px solid var(--navy);
  padding-top: 25px;
}
.step > span {
  font-size: 12px;
  color: var(--blue);
  font-weight: 800;
}
.step h3 {
  margin: 16px 0;
  font-size: 23px;
}
.step p {
  font-size: 14px;
}
.faq {
  margin-top: 25px;
  max-width: 900px;
}
details {
  border-bottom: 1px solid var(--border);
}
summary {
  padding: 24px 30px 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
}
details > p {
  font-size: 14px;
  padding: 0 0 24px;
  max-width: 780px;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contacts-grid h2 {
  font-size: 31px;
  margin-bottom: 20px;
}
.contact-row {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-row > .icon {
  margin-top: 4px;
  color: var(--blue);
}
.contact-row strong {
  display: block;
  font-size: 13px;
  margin-bottom: 7px;
}
.contact-row p {
  font-size: 15px;
}
.contact-row a:hover {
  text-decoration: underline;
}
.contact-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
}
.location-panel {
  background: var(--navy);
  color: #fff;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 45px;
  background-image: repeating-linear-gradient(
    30deg,
    transparent,
    transparent 55px,
    #ffffff05 56px,
    #ffffff05 57px
  );
}
.location-panel > .icon {
  width: 42px;
  height: 42px;
  color: var(--yellow);
  margin-bottom: 24px;
}
.location-panel h2 {
  font-size: 42px;
  margin-bottom: 15px;
}
.location-panel p {
  color: #e1e9f1;
  margin-bottom: 30px;
}
.error-page {
  text-align: center;
  padding: 90px 24px;
}
.error-page .eyebrow {
  color: var(--blue);
}
.error-page h1 {
  font-size: clamp(40px, 6vw, 75px);
  margin: 20px 0;
}
.error-page p {
  margin-bottom: 30px;
}
@media (min-width: 1550px) {
  .home-hero {
    min-height: 680px;
  }
  .hero-copy {
    padding-right: 80px;
  }
  .hero-copy h1 {
    font-size: 79px;
  }
}
@media (max-width: 1250px) {
  .container {
    width: calc(100% - 72px);
  }
  #main-navigation {
    gap: 17px;
  }
  .hero-copy {
    padding-left: 36px;
    padding-right: 30px;
  }
  .hero-actions {
    gap: 18px;
    flex-wrap: wrap;
  }
  .hero-secondary {
    font-size: 11px;
  }
  .home-hero {
    min-height: 570px;
  }
  .territory-grid {
    gap: 55px;
  }
  .footer-grid {
    gap: 25px;
  }
}
@media (max-width: 1080px) {
  .header-inner {
    min-height: 87px;
    flex-wrap: wrap;
    gap: 0;
  }
  .menu-toggle {
    display: none;
    border: 1px solid var(--border);
    background: #fff;
    padding: 9px 13px;
    align-items: center;
    gap: 14px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 750;
  }
  .has-js .menu-toggle {
    display: flex;
  }
  .menu-lines {
    width: 18px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    position: relative;
  }
  .menu-lines:after {
    position: absolute;
    content: "";
    height: 2px;
    top: 3px;
    left: 0;
    right: 0;
    background: currentColor;
  }
  #main-navigation {
    width: 100%;
    padding: 18px 0 25px;
    gap: 10px;
    flex-wrap: wrap;
  }
  #main-navigation > a:not(.button) {
    padding: 10px 12px;
  }
  .has-js #main-navigation {
    display: none;
  }
  .has-js #main-navigation.is-open {
    display: flex;
  }
  .hero-copy h1 {
    font-size: 55px;
  }
  .hero-copy p {
    font-size: 13px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
  }
  .hero-footnote {
    margin-top: 25px;
  }
  .service-card {
    padding: 24px;
  }
  .section {
    padding: 70px 0;
  }
  .territory-grid {
    gap: 38px;
  }
  .territory-visual {
    padding: 30px;
  }
  .territory-type > span {
    font-size: 115px;
  }
  .territory-copy h2 {
    font-size: 31px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-heading > .text-link {
    margin-bottom: 6px;
  }
  .detail-grid {
    gap: 35px;
  }
  .intro-grid {
    gap: 35px;
  }
  .desktop-break {
    display: none;
  }
  .contacts-grid {
    gap: 35px;
  }
  .quick-links a {
    padding: 20px 15px;
    font-size: 11px;
  }
  .quick-number {
    display: none;
  }
}
@media (max-width: 760px) {
  .container {
    width: calc(100% - 40px);
  }
  .utility-inner {
    min-height: 32px;
    font-size: 9px;
  }
  .utility-inner > div {
    gap: 12px;
  }
  .utility-inner > div > a:first-child {
    display: none;
  }
  .header-inner {
    min-height: 80px;
  }
  .site-header .brand-logo {
    width: 62px;
  }
  .home-hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 48px 24px 32px;
    justify-content: flex-start;
  }
  .hero-copy-inner {
    max-width: none;
  }
  .hero-copy h1 {
    font-size: clamp(45px, 10.6vw, 68px);
    margin: 25px 0 23px;
  }
  .hero-copy p {
    font-size: 14px;
    max-width: 460px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-top: 25px;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
  }
  .hero-photo {
    height: 320px;
  }
  .hero-photo > img {
    object-position: 50% 48%;
  }
  .photo-caption {
    bottom: 25px;
    left: 24px;
  }
  .hero-footnote {
    margin-top: 28px;
  }
  .quick-links > .container {
    grid-template-columns: 1fr;
  }
  .quick-links a,
  .quick-links a:first-child,
  .quick-links a:last-child {
    padding: 18px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
  }
  .quick-links a:last-child {
    border-bottom: none;
  }
  .quick-number {
    display: block;
  }
  .section {
    padding: 55px 0;
  }
  .section-heading {
    display: block;
  }
  .section-heading > .text-link {
    margin-top: 24px;
  }
  .section-heading h2 {
    font-size: 31px;
    margin-top: 13px;
  }
  .section-intro {
    font-size: 13px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
  }
  .service-card {
    padding: 23px 19px;
  }
  .service-card h3 {
    font-size: 17px;
    line-height: 1.4;
  }
  .service-card p {
    font-size: 11px;
  }
  .service-icon {
    width: 39px;
    height: 39px;
    margin-bottom: 17px;
  }
  .service-icon .icon {
    width: 23px;
    height: 23px;
  }
  .territory-section {
    padding: 45px 0;
  }
  .territory-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .territory-visual {
    min-height: 350px;
  }
  .territory-type {
    font-size: 37px;
  }
  .territory-type > span {
    font-size: 125px;
  }
  .territory-copy .eyebrow {
    font-size: 10px;
  }
  .territory-copy h2 {
    font-size: 32px;
  }
  .sector-list {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }
  .sector-list > a:nth-last-child(2) {
    border-bottom: 0;
  }
  .sector-list > a {
    padding: 21px 0;
    gap: 17px;
  }
  .sector-list h3 {
    font-size: 17px;
  }
  .join-strip {
    padding: 44px 0;
  }
  .join-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .join-inner > div:last-child {
    justify-self: start;
  }
  .join-inner h2 {
    font-size: 31px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
    padding-bottom: 35px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-bottom {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }
  .footer-grid > div > a:not(.brand) {
    min-height: 28px;
  }
  .footer-bottom a {
    padding: 8px 0;
    display: inline-block;
  }
  .page-hero {
    padding: 20px 0 40px;
  }
  .breadcrumb {
    margin-bottom: 30px;
  }
  .page-hero h1 {
    font-size: 39px;
  }
  .page-hero > div > p {
    font-size: 14px;
  }
  .page-body {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .detail-grid,
  .intro-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .prose {
    font-size: 15px;
  }
  .prose h2 {
    font-size: 27px;
  }
  .contact-card {
    position: static;
  }
  .values-grid,
  .steps,
  .resource-grid,
  .sector-details {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .wide-section {
    margin-top: 40px;
    padding-top: 35px;
  }
  .resource-card {
    padding: 28px;
  }
  .intro-grid h2 {
    font-size: 29px;
  }
  .location-panel {
    padding: 32px;
    min-height: 320px;
  }
  .sector-detail {
    padding: 25px;
  }
  .text-link {
    white-space: normal;
  }
  .services-note {
    line-height: 1.8;
  }
  .info-note {
    font-size: 12px;
  }
}
@media (max-width: 380px) {
  .menu-toggle {
    padding: 8px 10px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card p {
    font-size: 13px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    height: 270px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover {
    transform: none;
  }
}
