@import url('./assets/styles/forms.css');
@import url('./plugins/fontawesome/all.min.css');

/* dm-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/dm-sans-v17-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  src: url('assets/fonts/dm-sans-v17-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  src: url('assets/fonts/dm-sans-v17-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/dm-sans-v17-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lora-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/lora-v37-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lora-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500;
  src: url('assets/fonts/lora-v37-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lora-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  src: url('assets/fonts/lora-v37-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lora-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/lora-v37-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Design tokens */ :root {
  --blue: #003ca6;
  --blue-dark: #062d73;
  --ink: #18334f;
  --muted: #607286;
  --pink: #d60053;
  --sky: #078bd7;
}
/* Base styles */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font: 16px/1.7 'DM Sans', Arial, sans-serif;
}
img {
  display: block;
  max-width: 100%;
  border: 0;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--blue-dark);
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.15;
}
a[href] {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease, text-decoration-color .2s ease;
}
a[href]:hover, a[href]:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:focus-visible {
  outline: 3px solid rgba(7, 139, 215, .45);
  outline-offset: 3px;
}
textarea {
  resize: vertical;
}
.Container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
/* Header and navigation */
.Site-Utility {
  background: linear-gradient(90deg, #f3f8fd, #f1fbfe 62%, #fff7fa);
  color: var(--muted);
  font-size: .8rem;
}
.Site-Utility .Container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 39px;
}
.Site-Utility-Right {
  display: flex;
  gap: 12px;
}
.Site-Header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
}
.Site-Header .Container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.Site-Logo img {
  width: 315px;
}
.Nav {
  position: relative;
  z-index: 1000;
  border: 0;
  text-align: right;
}
.Nav-Menu {
  display: block;
}
.Nav-MenuPanel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.Nav-MobileSummary {
  display: none;
}
.Nav-Link {
  margin-left: 28px;
  color: var(--ink) !important;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
}
.Nav-Link:hover {
  color: var(--blue) !important;
}
.Nav-Link[aria-current='page'] {
  color: var(--blue) !important;
  text-decoration: underline 3px var(--pink) !important;
  text-underline-offset: 8px;
}
a.Nav-CTA {
  margin-left: 24px;
  padding: 11px 18px;
  border: 1px solid #f2bfd2;
  border-radius: 8px;
  background: #fff1f6;
  color: #a50040 !important;
  font-weight: 700;
}
/* Hero sections */
.Hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 570px;
  overflow: hidden;
  color: #fff;
}
.Hero.Small {
  min-height: 420px;
}
.Hero > img, .Hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.Hero > img {
  object-fit: cover;
  object-position: 61% center;
}
.Hero::after {
  content: '';
  background: linear-gradient(90deg, rgba(12, 42, 78, .78), rgba(8, 62, 124, .48) 48%, rgba(7, 139, 215, .03) 82%);
}
.Hero .Container {
  position: relative;
  z-index: 1;
  padding: 84px 0;
}
.Hero.Small .Container {
  padding: 68px 0;
}
.Hero h1 {
  max-width: 740px;
  color: #fff;
  font-size: clamp(2.8rem, 5.4vw, 4.55rem);
  line-height: 1.06;
}
.Eyebrow {
  margin: 0 0 16px;
  color: #bfe8ff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.Eyebrow.Pink {
  color: var(--pink);
}
/* Content sections */
.Section {
  padding: 96px 0;
}
.Hero + .Section {
  padding-top: 42px;
  padding-bottom: 42px;
}
.Section.Tint {
  background: linear-gradient(135deg, #f3f8fd 0%, #fff 46%, #fff7fa 145%);
  border-block: 1px solid #dfeef5;
}
.About-Intro {
  padding: 64px 0;
}
.Reading {
  max-width: 850px;
  margin-inline: auto;
}
.Reading p, .Card p, .Office p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}
.Lead {
  color: var(--ink) !important;
  font: clamp(1.3rem, 2.2vw, 1.75rem)/1.5 'Lora', Georgia, serif !important;
}
.Content-Image {
  width: 100%;
  max-height: 400px;
  margin-top: 34px;
  border-radius: 14px;
  object-fit: cover;
}
.Content-Image.Wide {
  max-height: 280px;
}
.Content-Split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  max-width: 1160px;
  margin-inline: auto;
}
.Content-Split .Content-Image {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 8px 0 0;
  padding: 8px;
  border: 1px solid #dbe8ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 16px 16px 0 #edf7fb, 0 16px 34px rgba(16, 44, 76, .1);
  object-fit: cover;
}
.Content-SplitCopy {
  position: relative;
  padding-top: 28px;
}
.Content-SplitCopy::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--pink);
  content: '';
}
.Content-SplitCopy > :first-child {
  margin-top: 0;
}
.Content-SplitCopy > :last-child {
  margin-bottom: 0;
}
.Content-SplitCopy > p:not(.Lead) {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}
.Grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px clamp(56px, 8vw, 110px);
}
.Card {
  padding-top: 34px;
  border-top: 1px solid #dce5ed;
}
.Card h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}
.Card ul {
  color: var(--muted);
  line-height: 1.72;
}
.Learn-More {
  margin-top: 70px;
  padding-top: 46px;
  border-top: 1px solid #dce5ed;
}
/* Trust strip */
.Trust {
  background: linear-gradient(90deg, #fff, #f1fbfe, #fff);
  border-bottom: 1px solid #dfeef5;
}
.Trust .Container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.Trust div {
  padding: 22px 18px;
}
.Hero + .Trust div {
  padding-top: 14px;
  padding-bottom: 14px;
}
.Trust + .Section {
  padding-top: 56px;
}
.Trust strong, .Trust span {
  display: block;
}
.Trust strong {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.03rem;
}
.Trust span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .82rem;
}
/* Buttons and text links */
.Button-Row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.Button-Link, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #fff !important;
  font: 700 .88rem 'DM Sans', Arial, sans-serif;
  text-decoration: none !important;
  cursor: pointer;
}
.Button-Link:hover, .button:hover {
  background: #ad0043;
  color: #fff !important;
  text-decoration: none;
}
.Button-Link.Outline {
  border: 1px solid var(--blue);
  background: #fff;
  color: var(--blue) !important;
}
.Button-Row .Text-Link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: #fff;
  color: var(--blue) !important;
  font: 700 .88rem 'DM Sans', Arial, sans-serif;
  text-decoration: none;
}
.Button-Row .Text-Link:hover {
  border-color: var(--pink);
  background: #fff3f7;
  color: var(--pink) !important;
}
.Text-Link {
  color: var(--muted);
  font-weight: 800;
}
/* Contact page */
.Contact-Page {
  background: linear-gradient(145deg, #fff 0%, #f1fbfe 68%, #fff7fa 145%);
}
.Contact-Intro {
  max-width: 780px;
  margin-bottom: 58px;
}
.Contact-Intro > p:not(.Eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}
.Office-Grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.Office-Location {
  scroll-margin-top: 130px;
  padding: 34px clamp(34px, 6vw, 72px) 0 0;
  border-top: 1px solid #cfe0eb;
}
.Office-Location + .Office-Location {
  padding-right: 0;
  padding-left: clamp(34px, 6vw, 72px);
  border-left: 1px solid #cfe0eb;
}
.Office-Location h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}
.Office-Summary {
  min-height: 58px;
  margin: 18px 0 24px;
  color: var(--muted);
  line-height: 1.65;
}
.Office-Phone {
  display: block;
  min-height: 42px;
  margin: 0 0 22px;
  color: var(--blue) !important;
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.Office-Phone.Pending-Detail {
  color: var(--muted) !important;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  text-decoration: none;
}
.Office-Status {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 22px;
  padding: 0 18px;
  border: 1px solid #d5e1e9;
  border-radius: 999px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}
.Office-Location dl {
  display: grid;
  gap: 0;
  margin: 34px 0 28px;
  color: var(--muted);
}
.Office-Location dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #dce8f0;
}
.Office-Location dt {
  color: var(--ink);
  font-weight: 700;
}
.Office-Location dd {
  margin: 0;
  line-height: 1.55;
}
.Office-Location dd a {
  color: var(--blue);
  font-weight: 700;
}
.Mobile-Office-Actions {
  display: none;
}
/* Service page */
.Services-Page {
  background: linear-gradient(155deg, #fff, #f3f8fd);
}
.Service-Intro {
  margin-bottom: 55px;
}
.Location-Services {
  margin-bottom: 72px;
  padding: 44px 0 54px;
  border-block: 1px solid #cfe5f1;
}
.Location-Services > h2 {
  max-width: 760px;
}
.Location-Grid, .Service-Detail-Grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.Location-Grid {
  gap: 0;
  margin-top: 38px;
}
.Location-Grid article {
  padding-right: clamp(34px, 6vw, 72px);
}
.Location-Grid article + article {
  padding: 0 0 0 clamp(34px, 6vw, 72px);
  border-left: 1px solid #cfe0eb;
}
.Location-Grid h3 {
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
}
.Location-Grid p, .Coverage-Note, .Service-Detail-Grid p, .Service-Detail-Grid li {
  color: var(--muted);
  line-height: 1.68;
}
.Location-Grid ul, .Service-Detail-Grid ul {
  margin: 0 0 24px;
  padding-left: 21px;
  color: var(--muted);
  line-height: 1.72;
}
.Location-Grid li + li, .Service-Detail-Grid li + li {
  margin-top: 7px;
}
.Coverage-Note {
  max-width: 900px;
  margin: 38px 0 0;
  padding-top: 22px;
  border-top: 1px solid #dce8f0;
  font-size: .9rem;
}
.Service-Detail-Grid {
  gap: 60px clamp(54px, 8vw, 100px);
}
.Service-Detail-Grid article {
  padding-top: 30px;
  border-top: 1px solid #cfe5f1;
}
.Service-Detail-Grid .Featured-Service {
  grid-column: auto;
}
.Service-Detail-Grid h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
}
.Availability {
  margin: 0 0 9px !important;
  color: var(--blue) !important;
  font-size: .73rem !important;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
/* Careers page and form */
.Careers-Page .Hero + .Section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.Careers-Page .Hero + .Section > .Container {
  width: auto;
  margin: 0;
}
.Careers-Page .Hero + .Section > .Container.Section {
  padding: 0 0 0 clamp(34px, 5vw, 70px);
  border-left: 1px solid #dce5ed;
}
.Careers-Page .Hero + .Section > .Reading {
  position: sticky;
  top: 150px;
}
.Application-Download {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 3px solid var(--pink);
  background: #fff7fa;
  color: var(--muted);
}
.Application-Download .Text-Link {
  color: var(--blue) !important;
}

.Career-Form-Heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #dbe8f3;
}
.Career-Form-Heading .Eyebrow {
  order: 1;
}
.Career-Form-Heading h2 {
  order: 2;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: clamp(2.15rem, 4vw, 3.4rem);
}
.Career-Form-Heading p:last-child {
  order: 3;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .88rem;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin: 0;
}
.form > h2 {
  display: none;
}
.form > p {
  margin: 5px 0;
  padding: 16px 0 16px 18px;
  border-left: 2px solid #e98aae;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
  margin: 0;
}
.form-row:first-of-type {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.input-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}
.field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 18px;
  color: var(--ink);
  font-size: .87rem;
  font-weight: 800;
}
.field-label i {
  display: none;
}
.input-field.required .field-label::after {
  content: '*';
  color: var(--pink);
  font-size: 1rem;
}
.field-input {
  width: 100%;
  min-height: 49px;
  padding: 13px 14px;
  border: 1px solid #bfd2e2;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font: 1rem 'DM Sans', Arial, sans-serif;
}
.field-input::placeholder {
  color: #8a9aae;
  opacity: 1;
}
.field-input:focus {
  border-color: var(--sky);
  outline: 3px solid rgba(7, 139, 215, .2);
}
textarea.field-input {
  min-height: 96px;
}
input[type='file'].field-input {
  padding: 11px;
}
.field-options.row {
  display: flex;
  align-items: center;
  gap: 12px 14px;
  margin: 3px 0 0;
}
.field-options .option {
  display: flex;
  align-items: center;
  gap: 8px;
}
.option-input {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  opacity: 1 !important;
  accent-color: var(--pink);
}
.option-label {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ink) !important;
  font-size: .87rem;
  font-weight: 700;
}
.option-label::before {
  display: none !important;
}
[data-sfiq-errors]:not(:empty) {
  padding: 14px;
  border-radius: 3px;
  background: #fff1f6;
  color: #8c0038;
}
/* Footer */
.Newsletter {
  padding: 30px 0;
  background: linear-gradient(90deg, #f3f8fd, #f1fbfe, #fff7fa);
  border-top: 1px solid #dceaf2;
}
.Newsletter .Container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.Newsletter p {
  margin: 0;
  font: 700 1.13rem 'Lora', Georgia, serif;
}
.Newsletter .Button-Link {
  border: 1px solid #cfdae5;
  background: #fff;
  color: var(--blue) !important;
}
.Site-Footer {
  padding: 64px 0 25px;
  background: linear-gradient(155deg, #f8fafc, #f3f8fd, #fff7fa);
  color: var(--muted);
  border-top: 1px solid #dceaf2;
}
.Footer-Grid {
  display: grid;
  grid-template-columns: 1.15fr .55fr .85fr .85fr;
  gap: 52px;
}
.Footer-Grid p {
  margin: 0;
  font-size: .91rem;
  line-height: 1.7;
}
.Footer-Grid strong {
  color: var(--ink);
}
.Footer-Links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.Footer-Links a {
  color: var(--muted);
  font-size: .94rem;
}
.Footer-Logo {
  width: 235px;
  margin-bottom: 18px;
}
.Copyright {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid #dce5ed;
  font-size: .78rem;
}
.Admin {
  padding: 4px 0;
  background: #f7f9fb;
  color: #aeb8c1;
  font-size: .64rem;
}
.Admin .Container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
}
.Admin a {
  color: #a1acb5;
  text-decoration: none;
}
.Admin a:hover {
  color: #647381;
  text-decoration: underline;
}
/* Back-to-top styles */
.BackToTop {
  position: fixed;
  z-index: 40;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  padding: 10px;
  border: 1px solid #dbe5ed;
  border-radius: 5px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 25px rgba(16, 44, 76, .12);
  color: #fff;
  font-size: medium;
  opacity: 0;
  visibility: hidden;
}
.BackToTop a {
  display: inline-block;
  height: 50px;
  padding: 10px;
  border-radius: 5px;
  background: var(--pink);
  color: #fff !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, .5);
  font-size: .8em;
  line-height: normal;
  text-align: center;
  text-decoration: none !important;
}
.BackToTop a:hover {
  background: #ad0043;
}
.BackToTop #BackToTop {
  position: relative;
  width: 50px;
  cursor: pointer;
  font-size: 20px;
}
.BackToTop #BackToTop i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.BackToTop #CloseBTT {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.BackToTop #CloseBTT:focus-visible {
  outline: 3px solid rgba(7, 139, 215, .7);
  outline-offset: 3px;
}
/* Widescreen layout */
@media screen and (min-width: 1600px) {
	.Container {
		width: min(1440px, calc(100% - 120px));
	}

	.Careers-Page .Hero + .Section {
		width: min(1440px, calc(100% - 120px));
	}

	.Reading {
		max-width: 920px;
	}

	.Section {
		padding: 112px 0;
	}

	.Site-Header .Container {
		min-height: 90px;
	}

	.Site-Logo img {
		width: 330px;
	}
}

/* Tablet layout */
@media screen and (max-width: 1050px) {
  .Footer-Grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }
  .Grid-2 {
    gap: 54px;
  }
  .Trust .Container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .Trust div:nth-child(n + 3) {
    border-top: 1px solid #d5e5f2;
  }
}
/* Desktop navigation safeguard */
@media screen and (min-width: 768px) {
  .Nav-MenuPanel {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }

  .Nav-MobileSummary {
    display: none !important;
  }
}

/* Mobile layout */
@media screen and (max-width: 767px) {
  .Container, .Careers-Page .Hero + .Section {
    width: min(1160px, calc(100% - 28px));
  }
  .Section > .Reading {
    width: calc(100% - 40px);
  }
  .Site-Utility .Container {
    justify-content: center;
  }
  .Site-Utility .Container > span {
    display: none;
  }
  .Site-Utility-Right {
    width: 100%;
    justify-content: space-between;
  }
  .Site-Header .Container {
    min-height: 74px;
  }
  .Site-Logo img {
    width: 225px;
  }
  .Nav-Menu {
    position: relative;
  }
  .Nav-MobileSummary {
    display: block;
    padding: 10px 14px;
    border: 1px solid #cbd9e5;
    border-radius: 7px;
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    cursor: pointer;
  }
  .Nav-MenuPanel {
    display: none;
    position: absolute;
    top: 52px;
    right: 0;
    width: 220px;
    padding: 9px;
    border: 1px solid #dce5ed;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(16, 44, 76, .1);
  }
  .Nav-Menu[open] .Nav-MenuPanel {
    display: block;
  }
  .Nav-Link, a.Nav-CTA {
    display: block;
    margin: 0;
    padding: 12px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: var(--ink) !important;
    text-align: left;
  }
  .Nav-MenuPanel a.Nav-CTA {
    display: none;
  }
  .Nav-Link[aria-current='page'] {
    background: #f3f9fc;
    text-decoration: none !important;
  }
  .Hero {
    min-height: 315px;
    align-items: end;
  }
  .Hero.Small {
    min-height: 280px;
  }
  .Hero > img {
    object-position: 66% center;
  }
  .Hero::after {
    background: linear-gradient(0deg, rgba(10, 39, 73, .93), rgba(7, 61, 122, .66) 68%, rgba(7, 139, 215, .12));
  }
  .Hero .Container {
    padding: 44px 0 50px;
  }
  .Section {
    padding: 68px 0;
  }
  .Hero + .Section {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .Trust + .Section {
    padding-top: 42px;
  }
  .Grid-2, .Location-Grid, .Office-Grid, .Service-Detail-Grid, .Trust .Container, .Footer-Grid {
    grid-template-columns: 1fr;
  }
  .Trust div {
    padding: 19px 6px;
    border-bottom: 1px solid #d5e5f2;
  }
  .Trust div:nth-child(n + 3) {
    border-top: 0;
  }
  .Button-Row {
    flex-direction: column;
  }
  .Button-Row .Button-Link, .Button-Row .Text-Link {
    width: 100%;
  }
  .Newsletter .Container {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .Newsletter .Button-Link {
    width: 100%;
  }
  .Location-Grid article {
    padding-right: 0;
  }
  .Location-Grid article + article {
    margin-top: 42px;
    padding: 34px 0 0;
    border-top: 1px solid #cfe0eb;
    border-left: 0;
  }
  .Office-Location + .Office-Location {
    margin-top: 42px;
    padding: 34px 0 0;
    border-top: 1px solid #cfe0eb;
    border-left: 0;
  }
  .Office-Summary {
    min-height: 0;
  }
  .Content-Split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .Content-Split .Content-Image {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-top: 0;
    border-radius: 12px;
    box-shadow: 10px 10px 0 #edf7fb, 0 12px 26px rgba(16, 44, 76, .1);
  }
  .Content-SplitCopy {
    padding-top: 24px;
  }
  .Service-Detail-Grid .Featured-Service {
    grid-column: auto;
  }
  .Careers-Page .Hero + .Section {
    display: block;
    margin: 0 auto;
  }
  .Careers-Page .Hero + .Section > .Container {
    width: auto;
  }
  .Careers-Page .Hero + .Section > .Reading {
    position: static;
    margin-bottom: 42px;
  }
  .Careers-Page .Hero + .Section > .Container.Section {
    padding: 42px 0 0;
    border-top: 1px solid #dce5ed;
    border-left: 0;
  }
  .form-row, .form-row:first-of-type {
    grid-template-columns: 1fr;
  }
  .field-options.row {
    flex-wrap: wrap;
  }
  .BackToTop {
    right: 18px;
    bottom: 67px;
    left: auto;
    display: block;
    width: 38px;
    height: 38px;
    padding: 0;
    border-color: var(--pink);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(16, 44, 76, .16);
  }
  .BackToTop > a:not(#BackToTop), .BackToTop #CloseBTT {
    display: none;
  }
  .BackToTop #BackToTop {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--pink) !important;
    box-shadow: none;
    font-size: 18px;
  }

  /* Reference mobile header, hero, and reading layout */
  .Site-Utility .Container { min-height: 36px; font-size: .72rem; }
  .Site-Utility-Right { align-items: center; gap: 10px; }
  .Site-Utility-Right > span, .Site-Utility-Right > a { white-space: nowrap; }
  .Site-Header .Container { min-height: 72px; }
  .Site-Logo img { width: 205px; }
  .Nav-MobileSummary { display: grid; place-items: center; min-width: 72px; min-height: 45px; padding: 0; font-size: 1rem; }
  .Nav-MobileLabelOpen { display: block !important; }
  .Nav-MobileLabelClose { display: none !important; }
  .Nav-Menu[open] .Nav-MobileLabelOpen { display: none !important; }
  .Nav-Menu[open] .Nav-MobileLabelClose { display: block !important; }
  .Hero.Small { min-height: 280px; }
  .Hero.Small .Container { padding: 44px 0 50px; }
  .Hero h1 { max-width: 330px; font-size: clamp(2.55rem, 12vw, 3.35rem); }
  .Eyebrow { margin-bottom: 14px; font-size: .72rem; }
  .Section { padding: 66px 0; }
  .About-Intro { padding: 46px 0; }
  .Reading { margin: 0; }
  .Reading .Lead { font-size: clamp(1.2rem, 5.5vw, 1.55rem) !important; line-height: 1.5 !important; }
  .Reading p, .Card p, .Office p { font-size: 1rem; line-height: 1.9; }
  .Content-Image { max-height: 260px; margin-top: 26px; border-radius: 10px; }
  .Content-Image.Wide { max-height: 180px; }
  .Mobile-Office-Actions { position: fixed; z-index: 39; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 58px; border-top: 1px solid #dbe5ed; background: #fff; box-shadow: 0 -4px 18px rgba(16, 44, 76, .09); }
  .Mobile-Office-Actions a { display: grid; min-width: 0; padding: 8px 5px; place-items: center; color: var(--blue) !important; font-size: clamp(.74rem, 3.8vw, .92rem); font-weight: 700; line-height: 1.2; text-align: center; text-decoration: none !important; white-space: nowrap; }
  .Mobile-Office-Actions a + a { border-left: 1px solid #e1e8ef; background: #fff7fa; color: #a50040 !important; }
  .Site-Footer { padding-bottom: 86px; }
}

@media screen and (max-width: 399px) {
  .Mobile-Office-Actions { min-height: 52px; }
  .Mobile-Office-Actions a { padding-inline: 3px; font-size: clamp(.68rem, 3.7vw, .82rem); }
  .Site-Utility-Right {
    justify-content: center;
  }
  .Site-Utility-Right > a {
    display: none;
  }
  .Nav-MobileSummary {
    min-width: 48px;
    font-size: 0;
  }
  .Nav-MobileSummary::before {
    color: var(--blue);
    content: '\2630';
    font-size: 1.45rem;
    line-height: 1;
  }
  .Nav-MobileLabel {
    display: none !important;
  }
  .Nav-Menu[open] .Nav-MobileSummary::before {
    content: '\00d7';
    font-size: 1.75rem;
  }
}

/* High-zoom reflow: avoid a persistent header consuming the narrow viewport. */
@media screen and (max-width: 600px) {
  .Site-Header {
    position: static;
    backdrop-filter: none;
  }
  .Nav-MenuPanel {
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 340px) {
  .Mobile-Office-Actions { min-height: 58px; }
  .Mobile-Office-Actions a { padding-inline: 6px; line-height: 1.25; white-space: normal; }
}

/* Services navigation dropdown */
.Nav-Services { position: relative; margin-left: 28px; }
.Nav-Services > summary { color: var(--ink); cursor: pointer; font-size: .92rem; font-weight: 600; list-style: none; white-space: nowrap; }
.Nav-Services > summary::-webkit-details-marker { display: none; }
.Nav-Services > summary::after { content: '⌄'; display: inline-block; margin-left: 6px; transition: transform .2s ease; }
.Nav-Services[open] > summary::after { transform: rotate(180deg); }
.Nav-Services > summary:hover, .Nav-Services > summary:focus-visible { color: var(--blue); }
.Nav-ServicesPanel { position: absolute; top: calc(100% + 13px); right: 0; display: none; width: 210px; padding: 8px; border: 1px solid #dce5ed; border-radius: 8px; background: #fff; box-shadow: 0 12px 28px rgba(16, 44, 76, .12); text-align: left; }
.Nav-Services[open] .Nav-ServicesPanel { display: block; }
.Nav-ServicesPanel a { display: block; padding: 10px 12px; border-radius: 5px; color: var(--ink) !important; font-size: .88rem; font-weight: 600; text-decoration: none !important; }
.Nav-ServicesPanel a:hover, .Nav-ServicesPanel a:focus-visible { background: #f3f9fc; color: var(--blue) !important; }
@media screen and (max-width: 767px) {
  .Nav-Services { margin: 0; }
  .Nav-Services > summary { display: block; padding: 12px; border-radius: 5px; color: var(--ink); }
  .Nav-ServicesPanel { position: static; width: auto; margin: 0 8px 6px; padding: 4px; box-shadow: none; }
  .Nav-ServicesPanel a { padding: 10px 12px; }
}
/* Refined Services dropdown */
.Nav-Services {
  margin-left: 22px;
  text-align: left;
}
.Nav-Services > summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid #cbd9e5;
  border-radius: 7px;
  background: #f3f9fc;
  color: var(--blue);
  line-height: 1;
}
.Nav-Services > summary::after {
  margin-left: 0;
  color: var(--pink);
  font-size: 1.05em;
  font-weight: 700;
}
.Nav-Services > summary:hover,
.Nav-Services > summary:focus-visible,
.Nav-Services[open] > summary {
  border-color: #8eb8dc;
  background: #eaf5fc;
  color: var(--blue-dark);
}
.Nav-ServicesPanel {
  top: calc(100% + 8px);
  padding: 8px;
  border-color: #bfd4e5;
}
.Nav-ServicesPanel a + a {
  margin-top: 3px;
}

@media screen and (max-width: 767px) {
  .Nav-MenuPanel {
    width: min(290px, calc(100vw - 28px));
    padding: 10px;
    text-align: left;
  }
  .Nav-Services {
    margin: 4px 0;
  }
  .Nav-Services > summary {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 12px;
    border-color: #b7d3e8;
    border-radius: 6px;
    background: #eef8fd;
    color: var(--blue);
    text-align: left;
  }
  .Nav-ServicesPanel {
    margin: 4px 0 8px 10px;
    padding: 5px 6px;
    border: 0;
    border-left: 3px solid #d60053;
    border-radius: 0;
    background: #fff7fa;
  }
  .Nav-ServicesPanel a {
    padding: 11px 12px;
    color: var(--blue-dark) !important;
    font-size: .9rem;
  }
}
/* Desktop Services control: match the text navigation while keeping its dropdown cue clear. */
@media screen and (min-width: 768px) {
  .Nav-Services > summary {
    display: inline-flex;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: .92rem;
    font-weight: 600;
  }
  .Nav-Services > summary::after {
    content: '▼';
    color: var(--pink);
    font-size: .7rem;
  }
  .Nav-Services > summary:hover,
  .Nav-Services > summary:focus-visible,
  .Nav-Services[open] > summary {
    border: 0;
    background: transparent;
    color: var(--blue);
    text-decoration: underline 3px var(--pink);
    text-underline-offset: 8px;
  }
}
/* Location-aware navigation */
.Nav-Locations { position: relative; margin-left: 22px; text-align: left; }
.Nav-Locations > summary { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); cursor: pointer; font-size: .92rem; font-weight: 600; list-style: none; white-space: nowrap; }
.Nav-Locations > summary::-webkit-details-marker { display: none; }
.Nav-Locations > summary::after { content: '▼'; color: var(--pink); font-size: .7rem; }
.Nav-Locations > summary:hover, .Nav-Locations > summary:focus-visible, .Nav-Locations[open] > summary { color: var(--blue); text-decoration: underline 3px var(--pink); text-underline-offset: 8px; }
.Nav-LocationsPanel { position: absolute; top: calc(100% + 13px); right: 0; display: none; width: min(620px, calc(100vw - 40px)); padding: 14px; border: 1px solid #bfd4e5; border-radius: 10px; background: #fff; box-shadow: 0 14px 34px rgba(16, 44, 76, .14); }
.Nav-Locations[open] .Nav-LocationsPanel { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.Nav-LocationsPanel section { padding: 14px; border-radius: 7px; background: #f3f9fc; }
.Nav-LocationsPanel section + section { background: #fff7fa; }
.Nav-LocationsPanel h2 { margin: 0 0 5px; color: var(--blue-dark); font-family: 'DM Sans', Arial, sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0; line-height: 1.3; }
.Nav-LocationsPanel p { margin: 0 0 9px; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.Nav-LocationsActions { display: flex; flex-wrap: wrap; gap: 8px; }
.Nav-LocationsActions a { color: var(--blue) !important; font-size: .8rem; font-weight: 700; text-decoration: none !important; }
.Nav-LocationsActions a:hover, .Nav-LocationsActions a:focus-visible { color: var(--pink) !important; text-decoration: underline !important; }
@media screen and (max-width: 767px) {
  .Nav-MenuPanel .Nav-CTA { display: none; }
  .Nav-Locations { margin: 4px 0; }
  .Nav-Locations > summary { display: flex; justify-content: space-between; width: 100%; padding: 12px; border: 1px solid #b7d3e8; border-radius: 6px; background: #eef8fd; color: var(--blue); text-align: left; }
  .Nav-Locations > summary:hover, .Nav-Locations > summary:focus-visible, .Nav-Locations[open] > summary { text-decoration: none; }
  .Nav-LocationsPanel { position: static; width: auto; margin: 4px 0 8px 10px; padding: 7px; border: 0; border-left: 3px solid #d60053; border-radius: 0; background: #fff; box-shadow: none; }
  .Nav-Locations[open] .Nav-LocationsPanel { display: grid; grid-template-columns: 1fr; gap: 6px; }
  .Nav-LocationsPanel section, .Nav-LocationsPanel section + section { padding: 11px; background: #f8fbfd; }
  .Nav-LocationsPanel section + section { background: #fff7fa; }
  .Nav-LocationsPanel p { font-size: .82rem; }
}
/* Find-your-office dropdown */
.Nav-Locations.Nav-CTA {
  margin-left: 24px;
}
.Nav-Locations.Nav-CTA > summary {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border: 1px solid #f2bfd2;
  border-radius: 8px;
  background: #fff1f6;
  color: #a50040;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 700;
  list-style: none;
  text-decoration: none;
  white-space: nowrap;
}
.Nav-Locations.Nav-CTA > summary::-webkit-details-marker {
  display: none;
}
.Nav-Locations.Nav-CTA > summary::after {
  content: none;
}
.Nav-Locations.Nav-CTA > summary:hover,
.Nav-Locations.Nav-CTA > summary:focus-visible,
.Nav-Locations.Nav-CTA[open] > summary {
  border-color: var(--pink);
  background: #fdeaf1;
  color: #a50040;
  text-decoration: none;
}



/* Distinct office-menu actions */
.Nav-LocationsActions {
  align-items: center;
  gap: 8px;
}
.Nav-LocationsActions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .76rem;
  line-height: 1;
}
.Nav-LocationsActions a:first-child {
  background: var(--blue);
  color: #fff !important;
}
.Nav-LocationsActions a:last-child {
  border-color: var(--pink);
  background: #fff;
  color: #a50040 !important;
}
.Nav-LocationsActions a:first-child:hover,
.Nav-LocationsActions a:first-child:focus-visible {
  background: var(--blue-dark);
  color: #fff !important;
  text-decoration: none !important;
}
.Nav-LocationsActions a:last-child:hover,
.Nav-LocationsActions a:last-child:focus-visible {
  background: #fff1f6;
  color: #a50040 !important;
  text-decoration: none !important;
}

/* Homepage action layout */
.Home-Buttons {
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .Home-Buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .Home-Buttons .Find-Office-Button {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* Keep homepage action labels together */
.Home-Buttons > .Button-Link {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .Home-Buttons > .Button-Link {
    width: auto;
    min-width: 0;
    padding-inline: 10px;
    font-size: .82rem;
  }
}

/* Brochure button hover states */
.Button-Link.Outline:hover,
.Button-Link.Outline:focus-visible {
  border-color: var(--pink);
  background: #fff1f6;
  color: #a50040 !important;
  text-decoration: none !important;
}
