@font-face {
  font-family: "Suisse-Light";
  src: url("/fonts/SuisseIntl-Light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Suisse-Regular";
  src: url("/fonts/SuisseIntl-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Suisse-Medium";
  src: url("/fonts/SuisseIntl-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Suisse-Semibold";
  src: url("/fonts/SuisseIntl-Semibold.woff2") format("woff2");
  font-display: swap;
}

:root {
  --black: #000;
  --blue: #011934;
  --dark-blue: #011226;
  --light-blue: #061d38;
  --red: #d21f36;
  --wcag-red: #e74459;
  --white: #fff;
  --blue-border: #293748;
  --suisse-light: "Suisse-Light", sans-serif;
  --suisse-regular: "Suisse-Regular", sans-serif;
  --suisse-medium: "Suisse-Medium", sans-serif;
  --suisse-bold: "Suisse-Semibold", sans-serif;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
button,
input,
select,
textarea {
  color: var(--white);
  font-family: var(--suisse-light);
  font-size: 16px;
  line-height: 1.5;
}

body {
  margin: 0;
  background: var(--dark-blue);
  overflow-x: hidden;
}

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

a,
a:visited {
  color: var(--white);
  text-decoration: none;
  transition: all ease 0.5s;
}

a:hover,
a:focus,
a:active {
  color: var(--wcag-red);
}

html body :focus,
.mobile-navigation :focus {
  outline: 1px dashed var(--white);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white);
  font-family: var(--suisse-regular);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 0.5em;
  position: relative;
  text-wrap: balance;
}

h1 {
  font-size: 2.875rem;
  line-height: 1;
}

h2 {
  font-size: 2.875rem;
}

h3 {
  font-size: 2.375rem;
}

p {
  margin: 0 0 1.5em;
  text-wrap: pretty;
}

strong,
b {
  font-family: var(--suisse-bold);
  font-weight: 400;
}

button,
input,
textarea {
  border-radius: 0;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  background-color: var(--white);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.medium-container {
  max-width: 1000px;
}

.small-container {
  max-width: 800px;
}

.flexed {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flexed-v-center {
  align-items: center;
}

.flexed-justify-center {
  justify-content: center;
}

.centered {
  text-align: center;
}

.blue-bg {
  background-color: var(--blue);
}

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

.dark-blue-bg {
  background-color: var(--dark-blue);
}

.red-bg {
  background-color: var(--red);
}

.row {
  padding-bottom: 5em;
  padding-top: 5em;
}

.padding-top-6 {
  padding-top: 6em;
}

.padding-bottom-6 {
  padding-bottom: 6em;
}

.padding-top-5 {
  padding-top: 5em;
}

.padding-bottom-5 {
  padding-bottom: 5em;
}

.padding-top-4 {
  padding-top: 4em;
}

.padding-bottom-4 {
  padding-bottom: 4em;
}

.margin-bottom-1 {
  margin-bottom: 1em;
}

.margin-bottom-3 {
  margin-bottom: 3em;
}

.margin-bottom-5 {
  margin-bottom: 5em;
}

.no-line-height {
  line-height: 0;
}

.button,
a.button,
button,
input[type="submit"] {
  background-color: var(--red);
  border: 1px solid var(--white);
  border-radius: 50px;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-family: var(--suisse-medium);
  font-size: 1rem;
  line-height: 1.1;
  padding: 15px 46px 13px 36px;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: 0.5s ease;
}

.button:after,
a.button:after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 8px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
}

.button:hover,
a.button:hover,
button:hover,
input[type="submit"]:hover,
.button:focus,
a.button:focus,
button:focus,
input[type="submit"]:focus {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--dark-blue);
}

.ghost-button.button {
  background-color: transparent;
  border: 1px solid var(--white);
}

.ghost-button.button:hover,
.ghost-button.button:focus {
  background-color: var(--red);
  color: var(--white);
}

.header-fixed {
  left: 0;
  padding: 30px 40px;
  position: fixed;
  top: 0;
  transition: 0.5s ease;
  width: 100%;
  z-index: 999;
}

.header-fixed.sticky {
  background: var(--dark-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0;
  padding-top: 0;
}

.site-logo {
  margin: 10px 0;
  max-width: 285px;
  transition: 0.5s ease;
}

.site-logo a {
  display: block;
}

.logo-mark {
  color: var(--white);
  display: block;
  font-family: var(--suisse-bold);
  font-size: 4.25rem;
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-transform: uppercase;
}

.header-right {
  gap: 18px;
}

.main-navigation ul {
  align-items: center;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin-left: 20px;
  position: relative;
}

.main-navigation a {
  display: block;
  font-family: var(--suisse-regular);
  font-size: 0.875rem;
  padding: 40px 14px;
  position: relative;
}

.main-navigation a:after {
  background-color: var(--red);
  bottom: 0;
  content: "";
  height: 4px;
  left: 50%;
  margin-left: -15px;
  opacity: 0.2;
  position: absolute;
  transform: translateZ(0) scaleX(0);
  transition: 0.5s all cubic-bezier(0.48, -0.01, 0.27, 1.21);
  width: 30px;
}

.main-navigation a:hover:after,
.main-navigation a:focus:after,
.main-navigation .current-menu-item > a:after {
  opacity: 1;
  transform: translateZ(0) scaleX(1);
}

.main-navigation button {
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 0.8rem;
  line-height: 1;
  padding: 2px;
  position: absolute;
  right: -8px;
  text-transform: uppercase;
  top: 45%;
  transform: translateY(-50%);
}

.main-navigation button:after {
  content: none;
}

.main-navigation .nav-chevron {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  display: block;
  height: 7px;
  transform: rotate(45deg);
  width: 7px;
}

.main-navigation .sub-menu {
  background: var(--white);
  display: none;
  left: 0;
  min-width: 240px;
  padding: 14px 0;
  position: absolute;
  top: 100%;
  z-index: 20;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu,
.main-navigation li.focus > .sub-menu {
  display: block;
}

.main-navigation .sub-menu li {
  margin: 0;
}

.main-navigation .sub-menu a {
  color: var(--dark-blue);
  font-size: 0.95rem;
  padding: 9px 20px;
}

.main-navigation .sub-menu a:hover,
.main-navigation .sub-menu a:focus {
  color: var(--red);
}

.main-navigation .sub-menu a:after,
.main-navigation .nav-pill a:after {
  content: none;
  display: none;
}

.main-navigation .nav-pill a {
  border: 1px solid var(--white);
  border-radius: 50px;
  font-family: var(--suisse-medium);
  padding: 14px 34px 13px 24px;
  text-transform: uppercase;
}

.main-navigation .nav-pill a:before {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 8px;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
}

.main-navigation .nav-pill-red a {
  background-color: var(--red);
}

.main-navigation .nav-pill a:hover,
.main-navigation .nav-pill a:focus {
  background-color: var(--white);
  color: var(--dark-blue);
}

.mobile-nav-wrapper {
  display: none;
  position: relative;
  z-index: 1000;
}

#togglenav {
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 0.7;
  margin-left: 1em;
  padding: 0;
}

#togglenav span {
  color: var(--white);
  display: block;
  font-size: 0.75rem;
  line-height: 1;
}

.mobile-navigation {
  background-color: var(--blue);
  height: 100%;
  overflow-x: hidden;
  padding: 150px 40px 3em;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.5s;
  visibility: hidden;
  width: 0;
  z-index: 1200;
}

.mobile-navigation.open {
  visibility: visible;
  width: min(100vw, 430px);
}

#closenav {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--white);
  font-size: 3.5rem;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 3;
}

.mobile-navigation ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 1em 0 2em;
  max-width: 400px;
  padding: 0;
}

.mobile-navigation li {
  flex-basis: 100%;
  position: relative;
}

.mobile-navigation li a {
  color: var(--white);
  display: block;
  font-size: 1.5rem;
  padding: 0.25em 0;
  position: relative;
  text-transform: uppercase;
}

.mobile-navigation .sub-menu {
  display: none;
  margin: 0 0 0.5em;
}

.mobile-navigation li.open > .sub-menu {
  display: block;
}

.mobile-navigation .sub-menu a {
  font-size: 1.125rem;
  text-transform: none;
}

.mobile-navigation li > button {
  background: transparent;
  border: 0;
  color: var(--wcag-red);
  font-size: 1.25rem;
  position: absolute;
  right: 0;
  top: 6px;
}

.mobile-navigation li > button:after {
  content: "+";
}

.mobile-navigation li.open > button:after {
  content: "-";
}

.hero-image {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 700px;
  position: relative;
}

.featured-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  position: relative;
}

.hero-image:after,
.featured-image:after {
  background: linear-gradient(0deg, #011226 10%, rgba(1, 18, 38, 0.4) 50%, #011226 90%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 11;
}

.hero-text {
  align-items: flex-end;
  color: var(--white);
  display: flex;
  height: 100%;
  padding-bottom: 7em;
  position: relative;
  width: 100%;
  z-index: 20;
}

.hero-text-inner {
  max-width: 700px;
}

.hero-text h1 span.h1-title {
  display: block;
  font-family: var(--suisse-bold);
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 0.28em;
}

.hero-text h1 span.h1-text {
  display: block;
  font-size: 2rem;
  line-height: 1.25;
}

.content-area a:not(.button) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.highlight-boxes {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-boxes > li {
  flex-basis: 25%;
  margin: 0;
}

.highlight-box {
  background-color: var(--blue);
  color: var(--white);
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  min-height: 240px;
  padding: 2.3em 40px;
  text-align: center;
  text-decoration: none !important;
}

.highlight-boxes > li:nth-of-type(even) .highlight-box {
  background-color: var(--red);
}

.highlight-box span {
  color: var(--white);
  display: block;
  font-family: var(--suisse-bold);
  font-size: 2.875rem;
  line-height: 1;
  margin-top: 5px;
}

.highlight-box p {
  color: var(--white);
  font-size: 1.125rem;
  line-height: 1.1;
  max-width: 24ch;
  margin: 0;
}

.highlight-icon,
.feature-icon {
  align-items: center;
  color: var(--white);
  display: flex;
  height: 74px;
  justify-content: center;
  margin: 0 auto 1em;
  width: 74px;
}

.feature-icon {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.03);
}

.feature-icon svg {
  height: 34px;
  width: 34px;
}

.highlight-box:hover .feature-icon,
.highlight-box:focus .feature-icon,
.division-logo:hover .feature-icon,
.division-logo:focus .feature-icon,
.focus-logos a:hover .feature-icon,
.focus-logos a:focus .feature-icon {
  background: var(--white);
  color: var(--red);
}

.division-logos {
  gap: 24px;
  padding-bottom: 3em;
  padding-top: 4em;
}

.division-logo {
  color: var(--white);
  display: flex;
  flex-direction: column;
  flex: 1 1 180px;
  font-family: var(--suisse-bold);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  line-height: 0.9;
  min-height: 132px;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
}

.division-logo .feature-icon {
  height: 58px;
  margin: 0 auto 14px;
  width: 58px;
}

.division-logo .feature-icon svg {
  height: 28px;
  width: 28px;
}

#home-main-header h2 {
  max-width: 1200px;
}

.large-p p:first-of-type {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 1em;
}

.large-p p:last-of-type {
  font-size: 1rem;
  line-height: 1.5;
}

.image-text {
  gap: 0;
}

.left-img,
.right-img {
  flex-basis: 48%;
}

.left-text,
.right-text {
  flex-basis: 52%;
  padding-left: 60px;
}

.right-text {
  padding-left: 0;
  padding-right: 60px;
}

.full-image-overlap-wrap {
  position: relative;
}

.full-image-overlap_image {
  padding-bottom: 90px;
  position: relative;
}

.full-image-image img {
  aspect-ratio: 2.4 / 1;
  object-fit: cover;
  width: 100%;
}

.full-image-overlap-text {
  bottom: 0;
  padding: 42px 52px;
  position: absolute;
  right: 0;
  width: min(470px, 42%);
  z-index: 2;
}

.full-image-overlap-text p:last-child {
  margin-bottom: 0;
}

.safety-rating {
  margin-top: 2em;
}

.safety-rating p:last-of-type {
  background-color: var(--light-blue);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 0;
  padding: 25px 20px 25px 118px;
  position: relative;
}

.safety-rating .feature-icon {
  align-items: center;
  background-color: #ff6a2a;
  border-radius: 12px;
  color: var(--dark-blue);
  display: flex;
  height: 58px;
  justify-content: center;
  left: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
}

.safety-rating .feature-icon svg {
  height: 32px;
  width: 32px;
}

.safety-rating strong {
  display: block;
  font-family: var(--suisse-bold);
  font-size: 2.2rem;
  line-height: 1;
}

.featured-planning-slider-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4em;
}

.planning-slider {
  min-height: 420px;
  position: relative;
}

.planning-card-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.planning-card {
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
  min-height: 100%;
  overflow: hidden;
  text-decoration: none !important;
}

.planning-card img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  width: 100%;
}

.planning-card span {
  color: var(--white);
  display: block;
  font-family: var(--suisse-bold);
  font-size: 1.45rem;
  line-height: 1.05;
  padding: 24px 24px 8px;
}

.planning-card p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  padding: 0 24px 28px;
}

.planning-card:hover,
.planning-card:focus {
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-6px);
}

.planning-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.planning-slide.active {
  display: grid;
}

.planning-slide-image img {
  aspect-ratio: 2 / 1.15;
  object-fit: cover;
  width: 100%;
}

.planning-slide-text {
  max-width: 680px;
}

.planning-slide-text small {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--suisse-medium);
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 48%;
  transform: translateY(-50%);
}

.slick-arrow {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  pointer-events: auto;
  width: 36px;
}

.slick-arrow:hover,
.slick-arrow:focus {
  background: var(--red);
  color: var(--white);
}

.red-panel {
  background-color: var(--red);
  margin-left: auto;
  max-width: 580px;
  padding: 58px 70px;
}

.cta-split {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.8fr);
}

.cta-split .red-panel {
  margin-left: 0;
  max-width: none;
}

.cta-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.locations-feature {
  background:
    linear-gradient(180deg, rgba(1, 18, 38, 0.72), var(--dark-blue)),
    var(--blue);
}

.locations-feature__head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.locations-feature__head h2 {
  max-width: 860px;
}

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

.location-card {
  aspect-ratio: 0.82 / 1;
  background: var(--blue);
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none !important;
}

.location-card:after {
  background: linear-gradient(180deg, rgba(1, 18, 38, 0.1), rgba(1, 18, 38, 0.84));
  content: "";
  inset: 0;
  position: absolute;
}

.location-card img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
  width: 100%;
}

.location-card span {
  bottom: 18px;
  color: var(--white);
  font-family: var(--suisse-bold);
  font-size: 1.15rem;
  left: 18px;
  line-height: 1.05;
  position: absolute;
  right: 18px;
  z-index: 2;
}

.location-card:hover img,
.location-card:focus img {
  transform: scale(1.08);
}

.red-panel h2 {
  font-size: 2.35rem;
}

.focus-logos {
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.focus-logos li {
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex: 1 1 180px;
  font-family: var(--suisse-medium);
  justify-content: center;
  min-height: 72px;
  text-align: center;
}

.focus-logos a {
  align-items: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 126px;
  justify-content: center;
  text-decoration: none !important;
  width: 100%;
}

.focus-logos .feature-icon {
  height: 54px;
  margin: 0;
  width: 54px;
}

.focus-logos .feature-icon svg {
  height: 26px;
  width: 26px;
}

.top-content-bg {
  padding-top: 28px;
}

.top-content {
  padding-bottom: 3em;
  padding-top: 2.5em;
}

.entry-title.centered + .entry-content {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
}

.pdb-tabs {
  gap: 40px;
  margin-bottom: 5em;
}

.pdb-tab {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 0 0 12px;
}

.pdb-tab.active,
.pdb-tab:hover,
.pdb-tab:focus {
  border-bottom-color: var(--red);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.service-tabs-header h2 {
  margin-bottom: 1.5em;
}

.service-tabs-flexed {
  gap: 30px 20px;
  justify-content: center;
}

.service-tab {
  flex: 0 1 13%;
  min-width: 130px;
}

.circle-icon:before,
.circle-symbol {
  align-items: center;
  background-color: var(--red);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-family: var(--suisse-bold);
  height: 46px;
  justify-content: center;
  margin: 0 auto 14px;
  min-width: 46px;
  width: 46px;
}

.circle-icon:before {
  content: none;
  display: none;
}

.icon-card .feature-icon {
  height: 62px;
  margin-bottom: 18px;
  width: 62px;
}

.icon-card .feature-icon svg {
  height: 30px;
  width: 30px;
}

.service-tab span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.15;
}

.detail-grid {
  gap: 32px;
}

.detail-card {
  background-color: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex: 1 1 31%;
  min-height: 240px;
  padding: 32px;
  transition: 0.45s ease;
}

.detail-card:hover,
.detail-card:focus-within {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-6px);
}

.detail-card h2,
.detail-card h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.detail-card p {
  color: rgba(255, 255, 255, 0.82);
}

.detail-card a {
  font-family: var(--suisse-medium);
}

.bbl-process-differences-header {
  gap: 40px;
}

.bbl-process-difference {
  flex: 1 1 45%;
}

.timeline-card {
  background-color: var(--light-blue);
  padding: 34px;
}

.timeline-card.red-bg {
  background-color: var(--red);
}

.timeline-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-card li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 0;
}

.secondary-content {
  background-position: center;
  background-size: cover;
  min-height: 360px;
  position: relative;
}

.secondary-content:before {
  background: linear-gradient(90deg, var(--dark-blue), rgba(1, 18, 38, 0.72), rgba(1, 18, 38, 0.2));
  content: "";
  inset: 0;
  position: absolute;
}

.secondary-content .container {
  position: relative;
  z-index: 1;
}

.contact-us-page-container {
  gap: 50px;
}

.contact-us-page-text {
  flex-basis: 100%;
  gap: 40px 48px;
  justify-content: center;
}

.contact-block {
  flex: 0 1 30%;
  text-align: center;
}

.contact-block h2 {
  font-size: 1.125rem;
  line-height: 1.25;
  margin-bottom: 9px;
}

.contact-block p {
  margin-bottom: 0;
}

.contact-us-page-form {
  background-color: var(--blue);
  margin: 1em auto 0;
  max-width: 1200px;
  padding: 58px 100px;
  width: 100%;
}

.gform_fields {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.gfield--width-full,
.gfield:first-child,
.gform-footer {
  grid-column: 1 / -1;
}

.gfield_label {
  display: block;
  margin-bottom: 9px;
}

.gfield_required {
  color: #d36372;
  font-size: 0.85em;
  font-style: italic;
  margin-left: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  background: var(--white);
  border: 0;
  border-radius: 4px;
  color: var(--black);
  padding: 14px 10px;
  width: 100%;
}

textarea {
  min-height: 190px;
}

.gform-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.footer-bg {
  background-color: var(--blue);
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 1em;
}

.footer-cols--expanded {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 0.8fr));
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 360px;
}

.footer-navigation ul,
.footer-utility-navigation ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-navigation a,
.footer-utility-navigation a,
.mannix a {
  text-decoration: underline;
}

.mannix {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.78rem;
  justify-content: space-between;
  padding-bottom: 2.5em;
  padding-top: 2.5em;
}

.mannix p {
  margin: 0;
}

.gsons-h-breadcrumbs {
  margin: 0 auto 18px;
  max-width: 980px;
  opacity: 0.82;
}

.gsons-h-breadcrumbs ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gsons-h-breadcrumbs li {
  align-items: center;
  display: flex;
  gap: 8px;
}

.gsons-h-breadcrumbs li + li:before {
  background: currentColor;
  content: "";
  display: inline-block;
  height: 1px;
  opacity: 0.5;
  width: 16px;
}

.gsons-h-breadcrumbs a {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--suisse-medium);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.gsons-h-breadcrumbs span {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rich-detail__media {
  margin-bottom: 42px;
}

.rich-detail__media img {
  aspect-ratio: 2.7 / 1;
  object-fit: cover;
  width: 100%;
}

.rich-detail__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.rich-article {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--suisse-light);
  font-size: 1.05rem;
  line-height: 1.76;
}

.rich-article p {
  margin-bottom: 1.2em;
}

.rich-article p:first-child {
  color: var(--white);
  font-family: var(--suisse-regular);
  font-size: 1.35rem;
  line-height: 1.45;
}

.rich-article h2 {
  font-size: 2rem;
  margin-top: 1.4em;
}

.side-panel {
  align-self: start;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--red);
  padding: 28px;
  position: sticky;
  top: 112px;
}

.side-panel h3 {
  font-family: var(--suisse-bold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-panel a {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 12px;
  padding: 13px 0;
  text-decoration: none !important;
}

.side-panel .feature-icon {
  flex: 0 0 36px;
  height: 36px;
  margin: 0;
  width: 36px;
}

.side-panel .feature-icon svg {
  height: 18px;
  width: 18px;
}

.internal-links {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-built .faq-layout {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
}

.subtle-list {
  columns: 2 240px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.subtle-list li {
  margin-bottom: 0.75em;
}

.faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--suisse-medium);
}

.faq p {
  color: rgba(255, 255, 255, 0.82);
  margin: 14px 0 0;
}

@media screen and (max-width: 1200px) {
  .main-navigation a {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main-navigation li {
    margin-left: 10px;
  }
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.375rem;
    line-height: 1.1;
  }

  .main-navigation li:not(.nav-pill-red) {
    display: none;
  }

  .main-navigation .nav-pill-red {
    display: none;
  }

  .mobile-nav-wrapper {
    display: block;
  }

  .site-logo {
    max-width: 105px;
  }

  .logo-mark {
    font-size: 3rem;
  }

  .header-fixed.sticky {
    padding: 10px 40px;
  }

  .left-img,
  .right-img,
  .left-text,
  .right-text {
    flex-basis: 100%;
  }

  .left-text,
  .right-text {
    padding: 40px 0 0;
  }

  .full-image-overlap-text {
    position: relative;
    width: 100%;
  }

  .full-image-overlap_image {
    padding-bottom: 0;
  }

  .highlight-box {
    flex-basis: 50%;
  }

  .highlight-box:nth-of-type(even) {
    background-color: var(--blue);
  }

  .highlight-box:nth-of-type(2),
  .highlight-box:nth-of-type(3) {
    background-color: var(--red);
  }

  .planning-slide {
    display: none;
    grid-template-columns: 1fr;
  }

  .planning-slide.active {
    display: grid;
  }

  .slider-controls {
    justify-content: center;
    position: static;
    transform: none;
    margin-top: 24px;
  }

  .footer-logo,
  .footer-nav,
  .footer-social {
    flex-basis: 100%;
    margin: 1.2em 0;
    text-align: center;
  }

  .footer-navigation ul,
  .footer-utility-navigation ul,
  .footer-social .flexed {
    justify-content: center;
  }

  .contact-block {
    flex-basis: 48%;
  }
}

@media screen and (max-width: 800px) {
  .container,
  .header-fixed {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-text-inner {
    max-width: 100%;
    text-align: center;
    width: 100%;
  }

  .featured-planning-slider-header {
    display: block;
    text-align: center;
  }

  .gform_fields {
    grid-template-columns: 1fr;
  }

  .contact-us-page-form {
    padding: 40px;
  }
}

@media screen and (max-width: 600px) {
  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  .hero-image {
    background-attachment: scroll;
    min-height: 620px;
  }

  .hero-text h1 span.h1-title {
    font-size: 15vw;
    line-height: 1.1;
  }

  .hero-text h1 span.h1-text {
    font-size: 1.28rem;
  }

  .top-content-bg {
    padding-top: 190px;
  }

  .highlight-box,
  .contact-block,
  .detail-card {
    flex-basis: 100%;
  }

  .division-logo {
    flex-basis: 100%;
  }
}

@media screen and (max-width: 500px) {
  .container,
  .header-fixed,
  .contact-us-page-form,
  .full-image-overlap-text,
  .highlight-box,
  .timeline-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-fixed {
    padding-top: 12px;
  }

  .main-navigation .nav-pill-red span {
    display: none;
  }

  .main-navigation .nav-pill-red a {
    border-radius: 0;
    padding: 13px 20px;
  }

  .main-navigation .nav-pill-red a:before {
    content: none;
    display: none;
  }

  #togglenav {
    margin-left: 0.5em;
  }

  .red-panel {
    padding: 44px 32px;
  }

  .safety-rating p:last-of-type {
    padding: 22px;
    text-align: center;
  }

  .safety-rating p:last-of-type:before {
    margin: 0 auto 12px;
    position: static;
    transform: none;
  }
}

/* ==========================================================================
   deep-page template (site-shell) — generated services / locations /
   property-types / capabilities detail routes.
   Everything is scoped under .site-shell, plus the standalone
   .internal-links "Explore More" section the generator emits after the
   shell. Homepage styles above are untouched. gsons-h-* classes ship their
   own inline stylesheet and are intentionally not styled here.
   ========================================================================== */
.site-shell {
  background: var(--dark-blue);
  color: var(--white);
  font-family: var(--suisse-regular);
  font-size: 17px;
  line-height: 1.65;
}

/* ---- utility strip ---- */
.site-shell .top-strip {
  align-items: center;
  background: var(--black);
  display: flex;
  font-size: 13px;
  gap: 22px;
  justify-content: flex-end;
  padding: 8px max(22px, calc(50% - 590px));
}

.site-shell .utility-link {
  color: var(--white);
  letter-spacing: 0.08em;
  opacity: 0.75;
  text-transform: uppercase;
}

.site-shell .utility-link:hover {
  color: var(--wcag-red);
  opacity: 1;
}

.site-shell .mini-search {
  display: flex;
}

.site-shell .mini-search input {
  background: var(--light-blue);
  border: 1px solid var(--blue-border);
  border-right: 0;
  color: var(--white);
  font-family: var(--suisse-regular);
  font-size: 13px;
  padding: 5px 10px;
  width: 150px;
}

.site-shell .mini-search input:focus {
  outline: 1px solid var(--wcag-red);
}

.site-shell .mini-search button {
  background: var(--red);
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-family: var(--suisse-bold);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  text-transform: uppercase;
}

.site-shell .mini-search button:hover {
  background: var(--wcag-red);
}

/* ---- header / nav ---- */
.site-shell .reference-header {
  position: relative;
  z-index: 20;
}

.site-shell .nav-wrap {
  align-items: center;
  background: var(--blue);
  border-bottom: 1px solid var(--blue-border);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 14px max(22px, calc(50% - 590px));
}

.site-shell .brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.site-shell .brand img {
  display: block;
  height: 44px;
  width: auto;
}

.site-shell .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 26px;
}

.site-shell .nav-links a {
  color: var(--white);
  font-family: var(--suisse-medium);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.site-shell .nav-links a:hover,
.site-shell .nav-links a.active {
  color: var(--wcag-red);
}

.site-shell .mobile-menu {
  display: none;
}

/* ---- inner hero ---- */
.site-shell .content-card {
  display: block;
}

.site-shell .inner-hero {
  background: linear-gradient(160deg, var(--blue) 0%, var(--light-blue) 100%);
  border-bottom: 1px solid var(--blue-border);
  padding: clamp(44px, 6vw, 84px) max(22px, calc(50% - 590px));
}

.site-shell .kicker {
  color: var(--wcag-red);
  font-family: var(--suisse-bold);
  font-size: 13px;
  letter-spacing: 0.22em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.site-shell .inner-hero h1 {
  font-family: var(--suisse-bold);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 880px;
}

.site-shell .inner-hero p {
  font-family: var(--suisse-light);
  font-size: 18px;
  margin: 0 0 26px;
  max-width: 760px;
  opacity: 0.85;
}

.site-shell .btn {
  background: var(--red);
  border-radius: 3px;
  color: var(--white);
  display: inline-block;
  font-family: var(--suisse-medium);
  padding: 13px 28px;
  transition: background 0.25s ease;
}

.site-shell .btn:hover {
  background: var(--wcag-red);
}

/* ---- content grid + article ---- */
.site-shell .content-grid {
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.65fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(36px, 5vw, 64px) 22px;
}

.site-shell .article-body {
  font-family: var(--suisse-light);
}

.site-shell .article-body p {
  margin: 0 0 18px;
}

.site-shell .article-body h2 {
  font-family: var(--suisse-medium);
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 34px 0 16px;
}

.site-shell .article-body a {
  border-bottom: 1px solid var(--wcag-red);
  color: var(--wcag-red);
}

.site-shell .article-body a:hover {
  border-bottom-color: transparent;
}

.site-shell .article-body dl {
  background: var(--blue);
  border-left: 3px solid var(--red);
  margin: 30px 0 0;
  padding: 24px 26px;
}

.site-shell .article-body dt {
  font-family: var(--suisse-medium);
  margin: 18px 0 6px;
}

.site-shell .article-body dt:first-child {
  margin-top: 0;
}

.site-shell .article-body dd {
  margin: 0 0 12px;
  opacity: 0.85;
}

/* ---- FAQ accordion variant ---- */
.site-shell .faq {
  margin-top: 36px;
}

.site-shell .faq h2 {
  font-family: var(--suisse-medium);
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 0 0 18px;
}

.site-shell .faq details {
  background: var(--blue);
  border: 1px solid var(--blue-border);
  margin-bottom: 10px;
}

.site-shell .faq summary {
  cursor: pointer;
  font-family: var(--suisse-medium);
  padding: 14px 18px;
}

.site-shell .faq summary:hover {
  color: var(--wcag-red);
}

.site-shell .faq details[open] summary {
  border-bottom: 1px solid var(--blue-border);
  color: var(--wcag-red);
}

.site-shell .faq details p {
  margin: 0;
  opacity: 0.85;
  padding: 14px 18px;
}

/* ---- side panel ---- */
.site-shell .side-panel {
  align-self: start;
  background: var(--blue);
  border: 1px solid var(--blue-border);
  border-top: 3px solid var(--red);
  padding: 26px 24px;
  position: sticky;
  top: 24px;
}

.site-shell .side-panel h3 {
  font-family: var(--suisse-bold);
  font-size: 16px;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.site-shell .side-panel a {
  border-bottom: 1px solid var(--blue-border);
  display: block;
  font-size: 15px;
  padding: 10px 0;
}

.site-shell .side-panel a:last-child {
  border-bottom: 0;
}

.site-shell .side-panel a:hover {
  color: var(--wcag-red);
}

/* ---- footer ---- */
.site-shell .reference-footer {
  background: var(--black);
  border-top: 1px solid var(--blue-border);
  padding: clamp(36px, 5vw, 64px) 22px 28px;
}

.site-shell .footer-grid {
  display: grid;
  gap: clamp(26px, 4vw, 56px);
  grid-template-columns: 1.2fr 0.8fr 1fr;
  margin: 0 auto;
  max-width: 1180px;
}

.site-shell .reference-footer h3 {
  font-family: var(--suisse-bold);
  font-size: 15px;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.site-shell .reference-footer p {
  font-family: var(--suisse-light);
  margin: 0 0 10px;
  opacity: 0.85;
}

.site-shell .reference-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-shell .reference-footer ul a {
  display: block;
  opacity: 0.85;
  padding: 4px 0;
}

.site-shell .reference-footer a:hover {
  color: var(--wcag-red);
  opacity: 1;
}

.site-shell .copyright {
  border-top: 1px solid var(--blue-border);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 18px;
  justify-content: space-between;
  margin: 30px auto 0;
  max-width: 1180px;
  opacity: 0.7;
  padding: 18px 0 6px;
}

/* ---- standalone "Explore More" block emitted after the shell ---- */
.internal-links {
  color: var(--white);
  font-family: var(--suisse-regular);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(28px, 4vw, 48px) 22px clamp(40px, 5vw, 64px);
}

.internal-links h2 {
  font-family: var(--suisse-medium);
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 0 0 18px;
}

.internal-links ul {
  display: grid;
  gap: 0 28px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.internal-links a {
  border-bottom: 1px solid var(--blue-border);
  color: var(--white);
  display: block;
  opacity: 0.85;
  padding: 9px 0;
}

.internal-links a:hover {
  color: var(--wcag-red);
  opacity: 1;
}

/* ---- deep-page responsive ---- */
@media (max-width: 900px) {
  .site-shell .nav-links {
    display: none;
  }

  .site-shell .mobile-menu {
    appearance: none;
    background: var(--light-blue);
    border: 1px solid var(--blue-border);
    border-radius: 4px;
    color: var(--white);
    display: block;
    font-family: var(--suisse-medium);
    font-size: 14px;
    padding: 9px 12px;
  }

  .site-shell .top-strip {
    justify-content: space-between;
  }

  .site-shell .content-grid,
  .site-shell .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-shell .side-panel {
    position: static;
  }
}

/* ==========================================================================
   LEX-MOBILE-PASS-B  — functional hamburger + mobile hardening (appended)
   Theme-preserving additions; do not duplicate (guarded by marker comment).
   ========================================================================== */

/* ---- hamburger button: 3-bar icon ---- */
#togglenav.burger {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
}
#togglenav.burger .burger-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
#togglenav.burger .burger-bars span {
  background: var(--white);
  border-radius: 2px;
  display: block;
  height: 3px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  width: 100%;
}
#togglenav.burger .burger-label {
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: 2px;
}
#togglenav.burger[aria-expanded="true"] .burger-bars span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#togglenav.burger[aria-expanded="true"] .burger-bars span:nth-child(2) {
  opacity: 0;
}
#togglenav.burger[aria-expanded="true"] .burger-bars span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- close (X) button ---- */
#closenav.closenav {
  align-items: center;
  display: inline-flex;
  font-size: 2rem;
  height: 48px;
  justify-content: center;
  line-height: 1;
  width: 48px;
}
#closenav.closenav span { pointer-events: none; }

/* ---- drawer items: comfortable tap targets ---- */
.mobile-navigation li a {
  min-height: 44px;
  padding-bottom: 0.4em;
  padding-top: 0.4em;
}
.mobile-navigation li > button {
  height: 44px;
  min-width: 44px;
}

/* ---- dim overlay behind the open drawer ---- */
#mobile-nav-overlay {
  background: rgba(1, 18, 38, 0.55);
  inset: 0;
  opacity: 0;
  position: fixed;
  transition: opacity 0.3s ease;
  z-index: 1100;
}
#mobile-nav-overlay.show {
  opacity: 1;
}

/* ---- lock page scroll while the drawer is open ---- */
body.nav-open {
  overflow: hidden;
}

body.nav-open .mobile-nav-wrapper {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   Mobile hardening @ 768px — stacking, padding, tap targets, media safety
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* media never overflows the viewport */
  img, iframe, video, embed, object, svg, table {
    max-width: 100%;
  }
  iframe { height: auto; }

  /* tighten section padding so content isn't cramped */
  .padding-top-6 { padding-top: 56px; }
  .padding-bottom-6 { padding-bottom: 56px; }
  .padding-top-5 { padding-top: 44px; }
  .padding-bottom-5 { padding-bottom: 44px; }

  /* clamp big hero type */
  .hero-text h1 span.h1-title { font-size: clamp(2.4rem, 13vw, 4.6rem); }

  /* stack common multi-column rows to a single column */
  .footer-cols,
  .footer-division-logos,
  .contact-us-page-container,
  .contact-us-page-text,
  .full-image-overlap_image,
  .award-logos .focus-logos {
    flex-direction: column;
  }
  .contact-us-page-container.flexed,
  .contact-us-page-text.flexed { gap: 18px; }

  /* primary CTA + form controls are easy to tap */
  .button,
  a.button,
  .nav-pill-red a,
  .gsons-h-contact-form button,
  .gsons-h-contact-form input,
  .gsons-h-contact-form select,
  .gsons-h-contact-form textarea {
    min-height: 44px;
  }
  .gsons-h-contact-form input,
  .gsons-h-contact-form select,
  .gsons-h-contact-form textarea {
    font-size: 16px; /* prevents iOS zoom-on-focus */
    padding: 10px 12px;
  }

  /* deep-page (reference) shell: comfy padding + tap-sized select */
  .site-shell .inner-hero { padding-left: 0; padding-right: 0; }
  .site-shell .mobile-menu { min-height: 44px; }
  .site-shell .nav-links a { padding: 8px 0; }
}

@media screen and (max-width: 480px) {
  .site-shell { font-size: 16px; }
  .hero-text h1 span.h1-title { font-size: clamp(2rem, 14vw, 3.4rem); }
}

/* ==========================================================================
   Lexington polish pass — arrows, icons, rich details, footer, mobile
   ========================================================================== */
.content-area a:not(.button).highlight-box,
.content-area a:not(.button).division-logo,
.content-area a:not(.button).planning-card,
.content-area a:not(.button).location-card {
  text-decoration: none;
}

.nav-phone a {
  color: var(--white);
  font-family: var(--suisse-bold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.main-navigation .sub-menu {
  border-top: 3px solid var(--red);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.main-navigation .sub-menu a {
  color: var(--dark-blue);
}

.gsons-h-footer-map {
  display: none !important;
}

.site-shell .rich-detail__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.site-shell .rich-detail__media img {
  aspect-ratio: 2.7 / 1;
  object-fit: cover;
  width: 100%;
}

.site-shell .rich-article {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--suisse-light);
  font-size: 1.05rem;
  line-height: 1.76;
}

.site-shell .rich-article p:first-child {
  color: var(--white);
  font-family: var(--suisse-regular);
  font-size: 1.35rem;
  line-height: 1.45;
}

.site-shell .side-panel {
  top: 112px;
}

.site-shell .side-panel a {
  align-items: center;
  display: flex;
  gap: 12px;
}

.site-shell .side-panel .feature-icon {
  flex: 0 0 36px;
  height: 36px;
  margin: 0;
  width: 36px;
}

.site-shell .side-panel .feature-icon svg {
  height: 18px;
  width: 18px;
}

@media screen and (max-width: 1200px) {
  .planning-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media screen and (max-width: 1024px) {
  .highlight-boxes > li {
    flex-basis: 50%;
  }

  .highlight-boxes > li:nth-of-type(even) .highlight-box {
    background-color: var(--blue);
  }

  .highlight-boxes > li:nth-of-type(2) .highlight-box,
  .highlight-boxes > li:nth-of-type(3) .highlight-box {
    background-color: var(--red);
  }

  .rich-detail__grid,
  .site-shell .rich-detail__grid,
  .faq-built .faq-layout,
  .cta-split {
    grid-template-columns: 1fr;
  }

  .side-panel,
  .site-shell .side-panel {
    position: static;
  }
}

@media screen and (max-width: 700px) {
  .top-content-bg {
    padding-top: 22px;
  }

  .locations-feature__head {
    align-items: start;
    flex-direction: column;
  }

  .planning-card-grid,
  .locations-grid,
  .footer-cols--expanded {
    grid-template-columns: 1fr;
  }

  .highlight-boxes > li {
    flex-basis: 100%;
  }

  .highlight-box,
  .contact-block,
  .detail-card {
    flex-basis: 100%;
  }

  .mobile-navigation {
    max-width: 100vw;
    padding-top: 96px;
  }
}
