:root {
  --deeper-blue: #0e202a;
  --deep-blue: #1a2a33;
  --dark-blue: #105077;
  --brand-blue: #3789c5;
  --light-blue-2: #eef3f7;
  --white: #ffffff;
  --text: #1a2a33;
  --content: 1048px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

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

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

address {
  font-style: normal;
}

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

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

:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 3px;
}

.container {
  width: min(var(--content), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 50;
  color: var(--white);
}

.utility-bar {
  height: 36px;
  background: var(--deeper-blue);
  font-size: 13px;
}

.utility-inner,
.main-nav {
  display: flex;
  align-items: center;
  width: min(1368px, calc(100% - 72px));
  margin: 0 auto;
}

.utility-inner {
  height: 36px;
  justify-content: flex-end;
  gap: 26px;
  white-space: nowrap;
}

.utility-address {
  margin-right: auto;
  margin-left: 380px;
}

.socials {
  display: inline-flex;
  gap: 13px;
  font-weight: 700;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials i {
  font-size: 20px;
  line-height: 1;
}

.nav-band {
  height: 68px;
  background: var(--deep-blue);
}

.main-nav {
  height: 68px;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 224px;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
  margin-left: auto;
}

.nav-link,
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.65px;
  padding: 26px 0;
  text-transform: uppercase;
}

.nav-link[aria-current="page"] {
  color: var(--brand-blue);
}

.chevron {
  color: var(--brand-blue);
  font-size: 12px;
  line-height: 1;
}

.quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 135px;
  min-height: 35px;
  padding: 11px 22px;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.65px;
  line-height: 1;
  text-transform: uppercase;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 67px;
  left: -74px;
  display: flex;
  min-width: 548px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-column {
  width: 252px;
  background: var(--deep-blue);
}

.dropdown-column.secondary {
  width: 278px;
  margin-left: 16px;
  margin-top: 8px;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(55, 137, 197, 0.18);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-menu a.is-current {
  background: rgba(55, 137, 197, 0.12);
  color: var(--white);
}

.mobile-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: var(--deeper-blue);
  color: var(--white);
  overflow: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  min-height: 100%;
  padding: 28px 30px 54px;
}

.mobile-menu-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mobile-close {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  cursor: pointer;
  font-size: 56px;
  line-height: 1;
}

.mobile-panel {
  width: min(252px, 100%);
  margin: 42px auto 0;
  text-align: center;
}

.mobile-panel a,
.mobile-accordion-btn {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-top: 1px solid rgba(55, 137, 197, 0.28);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.mobile-submenu {
  display: none;
  padding: 14px 18px;
  border-top: 1px solid rgba(55, 137, 197, 0.28);
}

.mobile-submenu.is-open {
  display: block;
}

.mobile-submenu a {
  min-height: 35px;
  margin-bottom: 16px;
  border: 0;
  background: rgba(26, 42, 51, 0.85);
}

.mobile-menu .quote-link {
  width: 135px;
  min-height: 34px;
  margin: 26px auto 34px;
}

.mobile-contact {
  display: grid;
  gap: 10px;
  justify-items: center;
  font-size: 16px;
}

:is(.hero-home, .about-hero, .image-cta, .page-hero, .image-block) {
  background-position: center;
  background-size: cover;
}

.hero-home {
  position: relative;
  min-height: 764px;
  background-image: linear-gradient(90deg, rgba(26, 42, 51, 1) 0%, rgba(26, 42, 51, 0.86) 45%, rgba(26, 42, 51, 0.08) 78%), url("../images/hero-home.png");
  color: var(--white);
}

.hero-home .container {
  min-height: 764px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 100%;
  padding-top: 20px;
}

.eyebrow {
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-home h1,
.about-hero h1,
.image-cta h2 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.08;
}

.hero-home h1 span,
.about-hero h1 span {
  color: var(--brand-blue);
}

.hero-copy p,
.image-cta p,
.feature-content p,
.intro-band p,
.maintenance p,
.quote-band p,
.split-panel p {
  font-size: 16px;
  font-weight: 300;
  line-height: 29px;
}

.hero-copy p {
  margin-top: 24px;
  color: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

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

.btn {
  display: inline-flex;
  min-width: 173px;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand-blue);
  background: var(--brand-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.65px;
  line-height: 1;
  padding: 12px 20px;
  text-align: center;
  text-transform: uppercase;
}

.btn-outline {
  background: transparent;
}

.btn-small {
  min-width: 135px;
  min-height: 31px;
  padding: 9px 18px;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
}

.stars {
  color: var(--brand-blue);
  font-size: 17px;
  letter-spacing: 4px;
}

.trust-line {
  margin-top: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
}

.section {
  padding: 94px 0;
}

.section.dark {
  background: var(--deep-blue);
  color: var(--white);
}

.section.deeper {
  background: var(--deeper-blue);
  color: var(--white);
}

.section.light {
  background: var(--white);
}

.section-center {
  max-width: 730px;
  margin: 0 auto;
  text-align: center;
}

.section-title,
.page-hero h1,
.feature-content h2,
.maintenance h2,
.gallery-section h2,
.split-panel h2,
.text-block h2,
.contact-prompt h2,
.find-us-copy h2 {
  font-size: 42px;
  line-height: 1.08;
}

.section-title {
  margin-bottom: 28px;
  font-weight: 800;
}

.section-title span {
  color: var(--brand-blue);
}

.section-copy {
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}

.section-copy.large {
  font-size: 16px;
  line-height: 29px;
}

.services-grid,
.cards-grid,
.process-grid,
.project-grid,
.values-grid,
.contact-strip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid {
  display: grid;
  gap: 70px;
  margin-top: 68px;
  text-align: center;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.service-card img {
  width: 67px;
  height: 67px;
  object-fit: contain;
  margin: 0 auto 28px;
}

.service-card h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.25;
}

.service-card p {
  min-height: 124px;
  color: var(--white);
  font-weight: 300;
  line-height: 25px;
}

.service-card h3 + div {
  margin-bottom: 28px;
}

.service-card .btn {
  margin-top: auto;
}

.cards-grid {
  display: grid;
  gap: 36px;
  margin-top: 46px;
}

.tile-card img,
.project-card-image img,
.feature-band img,
.map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-card {
  position: relative;
  display: grid;
  min-height: 269px;
  align-items: center;
  justify-items: center;
  border: 2px solid var(--brand-blue);
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.tile-card img {
  position: absolute;
  inset: 0;
}

.tile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 51, 0.55);
  transition: background 180ms ease;
}

.tile-card:hover::after,
.tile-card:focus-visible::after {
  background: rgba(16, 80, 119, 0.78);
}

.tile-card h3 {
  position: relative;
  z-index: 1;
  font-size: 25px;
  line-height: 1.15;
}

.coverage {
  position: relative;
  overflow: hidden;
}

.coverage .container {
  position: relative;
  min-height: 376px;
  display: flex;
  align-items: center;
}

.coverage-copy {
  width: min(503px, 100%);
  position: relative;
  z-index: 1;
}

.coverage-map {
  position: absolute;
  right: 5px;
  top: -94px;
  width: min(720px, 58vw);
  opacity: 0.22;
  pointer-events: none;
}

.coverage-map img {
  width: 100%;
  height: auto;
}

.brand-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  margin-top: 44px;
}

.brand-strip img {
  max-height: 50px;
  object-fit: contain;
}

.process-grid {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.process-card {
  min-height: 152px;
  border: 1px solid var(--brand-blue);
  padding: 26px 24px;
}

.process-card strong {
  display: block;
  color: var(--brand-blue);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}

.process-card h3 {
  color: var(--white);
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--white);
  font-size: 13px;
  font-weight: 300;
  line-height: 21px;
}

.project-grid {
  display: grid;
  gap: 28px;
  margin-top: 44px;
}

.project-card {
  background: var(--deep-blue);
  color: var(--white);
  text-align: center;
}

.project-card-image {
  position: relative;
  height: 205px;
  overflow: hidden;
}

.project-label {
  display: inline-flex;
  min-width: 171px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  margin-top: -12px;
  background: var(--brand-blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.43px;
  line-height: 1;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.project-card-body {
  padding: 18px 30px 28px;
}

.project-card h3 {
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}

.project-card .text-link {
  display: inline-flex;
  margin-top: 18px;
}

.text-link {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.text-link span {
  color: var(--brand-blue);
  margin-left: 4px;
}

.sag-page-links-feed .project-grid {
  align-items: stretch;
}

.sag-page-link-card {
  display: grid;
  min-height: 100%;
}

.sag-page-link-card.has-image {
  grid-template-rows: 205px 1fr;
}

.sag-page-link-card.no-image {
  grid-template-rows: 1fr;
}

.sag-page-link-card__image {
  display: block;
}

.sag-page-link-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sag-page-link-card.no-image .sag-page-link-card__body {
  padding-top: 28px;
}

.sag-page-link-card__title {
  width: 100%;
}

.sag-page-link-card__title,
.sag-page-link-card__title a,
.sag-page-link-card__link {
  color: var(--white);
}

.sag-page-link-card__synopsis {
  width: 100%;
}

.sag-page-link-card__synopsis > *:first-child {
  margin-top: 0;
}

.sag-page-link-card__synopsis > *:last-child {
  margin-bottom: 0;
}

.sag-page-link-card__link {
  margin-top: auto;
}

.testimonials {
  position: relative;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 188px;
  height: 150px;
  transform: translateX(-50%);
  color: rgba(55, 137, 197, 0.13);
  font-size: 220px;
  font-weight: 800;
  line-height: 1;
}

.testimonial-slider {
  position: relative;
  z-index: 1;
}

.testimonial-slide {
  width: min(760px, 100%);
  margin: 0 auto;
}

.testimonial-name {
  margin-top: 20px;
  color: var(--brand-blue);
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.testimonial-controls {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.testimonial-arrow,
.testimonial-dot {
  border: 1px solid var(--brand-blue);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.testimonial-arrow {
  width: 38px;
  height: 38px;
  line-height: 1;
}

.testimonial-dots {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
}

.testimonial-dot.is-active,
.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  background: var(--brand-blue);
}

.image-cta {
  position: relative;
  min-height: 593px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(26, 42, 51, 1) 0%, rgba(26, 42, 51, 0.86) 44%, rgba(26, 42, 51, 0.04) 78%), var(--hero-image, url("../images/cta-house.png"));
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.image-cta-content {
  width: min(465px, 100%);
}

.image-cta p {
  margin-top: 24px;
}

.site-footer {
  background: var(--deeper-blue);
  color: var(--white);
  padding: 70px 0 62px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 0.75fr 1fr 1.7fr;
  gap: 58px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 24px;
}

.footer-brand-image {
  width: 78px;
  height: auto;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: var(--brand-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: var(--white);
  font-size: 13px;
  font-weight: 300;
  line-height: 22px;
}

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

.signup {
  display: flex;
  margin-top: 16px;
}

.signup input {
  width: 100%;
  min-width: 0;
  height: 38px;
  border: 0;
  padding: 0 14px;
  color: var(--deep-blue);
  font-size: 13px;
}

.signup button {
  width: 112px;
  border: 0;
  background: var(--brand-blue);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.65px;
}

.page-hero {
  min-height: 376px;
  display: grid;
  place-items: center;
  background-color: var(--deeper-blue);
  background-image: linear-gradient(rgba(14, 32, 42, 0.75), rgba(14, 32, 42, 0.75)), var(--hero-image);
  color: var(--white);
  text-align: center;
  padding-bottom: 16px;
}

.page-hero.plain {
  background-image: none;
}

.page-hero .container {
  max-width: 720px;
}

.page-hero h1 {
  margin-bottom: 22px;
  font-weight: 800;
}

.page-hero p {
  margin: 0 auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}

.feature-band {
  position: relative;
  min-height: 592px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.feature-band.light {
  color: var(--deep-blue);
}

.feature-band img {
  position: absolute;
  inset: 0;
}

.feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 51, 0.88);
}

.feature-band.light::after {
  background: rgba(238, 243, 247, 0.9);
}

.feature-content {
  position: relative;
  z-index: 1;
  width: min(786px, calc(100% - 64px));
}

.feature-content h2 {
  margin-bottom: 34px;
}

.feature-content h2 span {
  color: var(--brand-blue);
}

.intro-band {
  padding: 70px 0;
  background: var(--deeper-blue);
  color: var(--white);
  text-align: center;
}

.intro-band.white {
  background: var(--white);
  color: var(--deep-blue);
}

.intro-band .container {
  max-width: 854px;
}

.intro-band strong {
  font-weight: 800;
}

.gate-grid {
  padding: 84px 0;
}

.gate-grid .cards-grid {
  gap: 22px;
}

.maintenance {
  background: var(--deep-blue);
  color: var(--white);
  padding: 100px 0;
}

.maintenance-grid,
.contact-prompt-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 110px;
}

.maintenance-grid {
  align-items: start;
}

.maintenance h2 {
  margin-bottom: 24px;
}

.why-list h3 {
  margin-bottom: 22px;
  color: var(--brand-blue);
  font-size: 20px;
  line-height: 1.2;
}

.why-list ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  border: 2px solid var(--brand-blue);
  padding: 13px 22px;
  color: var(--white);
  font-weight: 300;
}

.gallery-section {
  padding: 84px 0;
  background: var(--white);
  text-align: center;
}

.quote-band {
  padding: 72px 0;
  background: var(--deeper-blue);
  color: var(--white);
  text-align: center;
}

.quote-band p {
  width: min(730px, 100%);
  margin: 0 auto 28px;
}

.quote-band strong {
  font-weight: 800;
}

.spec-section {
  padding: 94px 0 102px;
  background: var(--white);
}

.spec-grid {
  display: grid;
  grid-template-columns: 423px 1fr;
  gap: 24px;
  margin-top: 52px;
}

.spec-panel,
.spec-item {
  background: var(--light-blue-2);
}

.spec-panel {
  padding: 36px;
}

.spec-panel img {
  width: 323px;
  margin: 24px auto 0;
}

.spec-item {
  min-height: 131px;
  padding: 36px 42px;
  margin-bottom: 24px;
}

.spec-section h3 {
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.2;
}

.spec-section p {
  font-weight: 300;
  line-height: 25px;
}

.split-panels,
.image-text-grid,
.find-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panels {
  background: var(--deep-blue);
  color: var(--white);
}

.split-panel {
  padding: 92px 14vw;
  text-align: center;
}

.split-panel:nth-child(even) {
  background: var(--deeper-blue);
}

.split-panel img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin: 0 auto 26px;
}

.split-panel h2 {
  margin-bottom: 24px;
}

.faq-section {
  padding: 76px 0;
  background: var(--deeper-blue);
}

.faq-list {
  display: grid;
  gap: 28px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 38px 48px;
}

.faq-item h2 {
  margin-bottom: 20px;
  color: var(--brand-blue);
  font-size: 20px;
  line-height: 1.2;
}

.faq-item p {
  font-weight: 300;
  line-height: 25px;
}

.about-hero {
  min-height: 557px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(26, 42, 51, 1) 0%, rgba(26, 42, 51, 0.86) 46%, rgba(26, 42, 51, 0.08) 78%), url("../images/hero-about.png");
  color: var(--white);
}

.values-grid {
  display: grid;
  gap: 70px;
  margin-top: 58px;
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.values-grid h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 20px;
}

.values-grid p {
  font-weight: 300;
  line-height: 25px;
}

.image-text-grid.reverse .image-block {
  order: 2;
}

.image-block {
  min-height: 650px;
}

.text-block {
  display: flex;
  align-items: center;
  background: var(--deep-blue);
  color: var(--white);
  padding: 90px 10vw;
}

.text-block h2 {
  margin-bottom: 26px;
}

.text-block p {
  font-weight: 300;
  line-height: 25px;
}

.gallery-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
  margin-bottom: 42px;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  color: var(--deep-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.search-box {
  display: flex;
  width: 210px;
  height: 35px;
  background: var(--light-blue-2);
}

.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 14px;
  color: var(--deep-blue);
  font-size: 13px;
}

.search-box button {
  width: 40px;
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  cursor: pointer;
}

.gallery-page-grid {
  row-gap: 44px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 54px;
  color: var(--dark-blue);
  font-weight: 700;
}

.contact-prompt {
  background: var(--deep-blue);
  color: var(--white);
  padding: 100px 0;
}

.contact-prompt h2 {
  margin-bottom: 24px;
}

.contact-form-section {
  padding: 62px 0;
}

.contact-form {
  width: min(607px, 100%);
  margin: 0 auto;
}

.contact-form > .wpcf7 {
  width: 100%;
}

.contact-form .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 31px;
  align-items: start;
}

.contact-form .wpcf7-form p {
  display: contents;
  margin: 0;
}

.contact-form .wpcf7-form br,
.contact-form .hidden-fields-container {
  display: none;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}

.contact-form .full {
  display: block;
  grid-column: 1 / -1;
}

.contact-form .full > .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form .wpcf7-form-control-wrap.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form .wpcf7-text,
.contact-form .wpcf7-email,
.contact-form .wpcf7-select,
.contact-form .wpcf7-textarea {
  width: 100%;
  border: 0;
  background: var(--light-blue-2);
  color: var(--deep-blue);
  min-height: 55px;
  padding: 16px 20px;
  text-align: center;
  box-sizing: border-box;
}

.contact-form select,
.contact-form .wpcf7-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-blue) 50%),
    linear-gradient(135deg, var(--brand-blue) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 24px,
    calc(100% - 16px) 24px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  padding-right: 42px;
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 163px;
  resize: vertical;
}

.contact-form .wpcf7-submit,
.contact-form button {
  grid-column: 1 / -1;
  justify-self: center;
  border: 0;
  cursor: pointer;
}

.contact-strip {
  background: var(--deeper-blue);
  color: var(--white);
  padding: 62px 0;
}

.contact-strip-grid {
  display: grid;
  gap: 40px;
  text-align: center;
}

.contact-icon {
  display: block;
  margin-bottom: 20px;
  color: var(--brand-blue);
  font-size: 36px;
  line-height: 1;
}

.find-us {
  background: var(--deep-blue);
  color: var(--white);
}

.find-us-copy {
  display: flex;
  min-height: 652px;
  align-items: center;
  justify-content: center;
  padding: 70px;
}

.find-us-copy h2 {
  margin-bottom: 30px;
}

.map-image img {
  min-height: 652px;
}

.gallery-single-body {
  padding: 0;
  background: linear-gradient(var(--deeper-blue) 0 140px, var(--white) 140px 860px, var(--deeper-blue) 860px 100%);
}

.single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.single-grid img {
  width: 100%;
  aspect-ratio: 496 / 310;
  object-fit: cover;
  background: var(--light-blue-2);
}

.single-placeholder {
  min-height: 205px;
  background: var(--light-blue-2);
}

.single-text {
  width: min(540px, 100%);
  margin: 48px auto;
  color: var(--deep-blue);
  text-align: center;
}

.single-text.dark-text {
  color: var(--white);
}

.gallery-single-contact {
  padding: 100px 0;
  background: var(--deep-blue);
  color: var(--white);
}

.gallery-single-contact h2 {
  margin-bottom: 24px;
  font-size: 42px;
  line-height: 1.05;
}

.gallery-single-contact .button-row {
  margin-top: 32px;
}

.gallery-single-cta {
  --hero-image: url("../images/cta-house.png");
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .utility-address {
    margin-left: 0;
  }

  .nav-links {
    gap: 22px;
  }

  .nav-link,
  .dropdown-trigger {
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .utility-bar {
    display: none;
  }

  .nav-band,
  .main-nav {
    height: 74px;
  }

  .main-nav,
  .utility-inner {
    width: calc(100% - 40px);
  }

  .nav-links,
  .nav-quote {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 8px 0 currentColor, 0 -8px 0 currentColor;
  }

  .container {
    width: min(var(--content), calc(100% - 40px));
  }

  .hero-home,
  .hero-home .container {
    min-height: 680px;
  }

  .hero-home {
    background-image: linear-gradient(90deg, rgba(26, 42, 51, 0.96) 0%, rgba(26, 42, 51, 0.88) 58%, rgba(26, 42, 51, 0.55) 100%), url("../images/hero-home.png");
  }

  .hero-home h1,
  .about-hero h1,
  .image-cta h2 {
    font-size: 42px;
  }

  .section-title,
  .page-hero h1,
  .feature-content h2,
  .maintenance h2,
  .gallery-section h2,
  .split-panel h2,
  .text-block h2,
  .contact-prompt h2,
  .find-us-copy h2 {
    font-size: 34px;
  }

  .services-grid,
  .cards-grid,
  .process-grid,
  .project-grid,
  .values-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-card p {
    min-height: 0;
  }

  .brand-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .maintenance-grid,
  .contact-prompt-grid,
  .spec-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split-panels,
  .image-text-grid,
  .find-us {
    grid-template-columns: 1fr;
  }

  .image-text-grid.reverse .image-block {
    order: 0;
  }

  .image-block,
  .find-us-copy,
  .map-image img {
    min-height: 420px;
  }

  .coverage .container {
    min-height: 0;
  }

  .coverage-map {
    right: 5px;
    top: -94px;
    width: 86vw;
  }

  .split-panel,
  .text-block {
    padding: 72px 32px;
  }

  .gallery-tools {
    grid-template-columns: 1fr;
  }

  .search-box {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    max-height: 48px;
  }

  .hero-home,
  .hero-home .container {
    min-height: 650px;
  }

  .hero-home h1,
  .about-hero h1,
  .image-cta h2 {
    font-size: 36px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 70px 0;
  }

  .page-hero {
    min-height: 330px;
    padding: 48px 0 72px;
  }

  .page-hero p {
    font-size: 16px;
    line-height: 29px;
  }

  .feature-band {
    min-height: 520px;
  }

  .feature-content {
    width: calc(100% - 40px);
  }

  .project-card-image {
    height: 190px;
  }

  .spec-panel,
  .spec-item,
  .faq-item {
    padding: 28px 24px;
  }

  .spec-panel img {
    width: 100%;
  }

  .contact-form .wpcf7-form {
    grid-template-columns: 1fr;
  }

  .contact-form .full,
  .contact-form textarea,
  .contact-form button {
    grid-column: auto;
  }

  .contact-strip-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-single-body {
    background: var(--white);
  }

  .single-text.dark-text {
    color: var(--deep-blue);
  }

  .gallery-single-contact {
    padding: 70px 0;
  }

  .gallery-single-contact h2 {
    font-size: 34px;
  }

  .footer-grid {
    gap: 32px;
  }
}

.nav-links,
.nav-links ul,
.mobile-panel ul,
.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.65px;
  padding: 26px 0;
  text-transform: uppercase;
}

.nav-links > li.current-menu-item > a,
.nav-links > li.current-menu-ancestor > a,
.nav-links > li > a[aria-current="page"] {
  color: var(--brand-blue);
}

.nav-links .menu-item-has-children > a::after {
  content: "v";
  color: var(--brand-blue);
  font-size: 12px;
  line-height: 1;
}

.nav-links .sub-menu {
  position: absolute;
  top: 67px;
  left: -24px;
  min-width: 252px;
  background: var(--deep-blue);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 20;
}

.nav-links .menu-item-has-children:hover > .sub-menu,
.nav-links .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links .sub-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(55, 137, 197, 0.18);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.nav-links .sub-menu a:hover,
.nav-links .sub-menu a:focus {
  background: rgba(55, 137, 197, 0.12);
}

.mobile-panel > ul > li > a {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(55, 137, 197, 0.28);
  color: var(--white);
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.mobile-panel .sub-menu {
  display: block;
  padding: 14px 18px;
  border-top: 1px solid rgba(55, 137, 197, 0.28);
}

.mobile-panel .sub-menu a {
  display: flex;
  width: 100%;
  min-height: 35px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  background: rgba(26, 42, 51, 0.85);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

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

.signup .wpcf7-form {
  display: grid;
  gap: 12px;
}

.signup .wpcf7-form p {
  margin: 0;
}

.contact-form > .wpcf7,
.contact-form .wpcf7-form {
  width: 100%;
}

.contact-form .wpcf7-form-control-wrap,
.contact-form .wpcf7-form-control {
  display: block;
  width: 100%;
}

.contact-form .wpcf7-not-valid-tip,
.wpcf7-response-output {
  font-size: 13px;
}

.contact-form .wpcf7-spinner {
  display: none;
}

.single-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
