:root {
  --blue: #00028f;
  --red: #730000;
  --ink: #191919;
  --muted: #666;
  --line: #e8e8e8;
  --paper: #fff;
  --soft: #f6f6f6;
  --charcoal: #242424;
  --shadow: 0 18px 45px rgba(0, 0, 0, .12);
  --max: 1250px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Questrial, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

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

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

a:hover {
  color: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
  line-height: 1.25;
}

p {
  margin: 0;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--blue);
}

.topbar {
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  letter-spacing: .4px;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .65);
  backdrop-filter: blur(14px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.nav {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  margin-top: 128px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs + main .page-hero {
  padding-top: 84px;
}

.breadcrumbs .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumbs a {
  color: var(--blue);
  font-weight: 700;
}

.brand img {
  width: 152px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--blue);
  border: 1px solid #fff;
  padding-inline: 16px;
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: var(--blue);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__slides,
.hero__slide,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity .7s ease;
}

.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 10s ease-out forwards;
}

.hero__shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, .74), rgba(0, 0, 0, .26) 58%, rgba(0, 0, 0, .45));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
}

.eyebrow {
  max-width: 720px;
  font-size: clamp(2.4rem, 7vw, 5.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  color: #f4f4f4;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.hero__copy {
  max-width: 540px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .92);
  font-size: 19px;
}

.button {
  margin-top: 30px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  color: #fff;
  background: var(--blue);
  border: 1px solid #fff;
  font-weight: 700;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.button:hover {
  color: #fff;
  background: var(--red);
  transform: translateY(-2px);
}

.button--light {
  background: rgba(0, 2, 143, .92);
}

.hero__controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 88px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero__controls button {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.hero__controls button::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  margin: 6px;
  border: 1px solid #fff;
  border-radius: 999px;
}

.hero__controls button.is-active::before {
  background: #fff;
}

.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 70px;
  fill: #fff;
  pointer-events: none;
}

.wave--top {
  top: -1px;
}

.wave--bottom {
  bottom: -1px;
}

.section {
  position: relative;
  padding: 86px 0;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 180px 0 76px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .34));
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero .section-kicker {
  width: fit-content;
  padding: 7px 11px;
  color: #fff;
  background: rgba(0, 0, 0, .58);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .75);
}

.page-hero h1 {
  max-width: 880px;
  margin-top: 10px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  text-shadow: 0 3px 18px rgba(0, 0, 0, .65);
  text-transform: uppercase;
}

.page-hero p:not(.section-kicker) {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
}

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

.service-grid--many {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  text-align: center;
  transition: transform .25s ease;
}

.service-card:hover {
  transform: translateY(-12px);
}

.service-card__image {
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto 24px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h2 {
  min-height: 112px;
  font-size: 20px;
}

.service-card h2::after {
  content: "";
  width: 48px;
  height: 2px;
  display: block;
  margin: 18px auto;
  background: var(--blue);
}

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

.feature {
  background: var(--soft);
}

.section--soft {
  background: var(--soft);
}

.copy-block {
  max-width: 920px;
}

.copy-block h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.copy-block h3 {
  margin-top: 28px;
  font-size: 24px;
  font-weight: 700;
}

.copy-block p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}

.content-grid h2,
.article-body h2,
.sitemap-list h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.content-grid p,
.article-body p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.side-panel {
  border: 1px solid var(--line);
  padding: 26px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

.side-panel h2 {
  margin-bottom: 14px;
  font-size: 18px;
  text-transform: uppercase;
}

.link-grid {
  display: grid;
  gap: 10px;
}

.link-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.link-grid a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--blue);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
}

.link-grid a:hover {
  color: #fff;
  background: var(--blue);
}

.feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 70px;
}

.section-kicker {
  color: var(--red);
  font-size: 17px;
  text-transform: uppercase;
}

.feature h2,
.section-heading h2,
.reviews h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.feature__copy p:not(.section-kicker) {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
}

.feature__image {
  justify-self: end;
}

.feature__image img {
  max-height: 720px;
  width: auto;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.feature-stack {
  width: min(100%, 560px);
  display: grid;
  gap: 18px;
}

.feature-stack__image {
  width: 100%;
  max-height: none;
  display: block;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.feature-stack__image--wide {
  aspect-ratio: 16 / 8;
}

.feature-stack__image--tall {
  width: 72%;
  aspect-ratio: 4 / 3;
  justify-self: end;
}

.reviews {
  min-height: 430px;
  padding: 118px 0;
  color: var(--ink);
  background: #f3f3f3;
  overflow: hidden;
  text-align: center;
}

.reviews .wave--top {
  fill: var(--soft);
}

.reviews .wave--bottom {
  fill: #fff;
}

.reviews__inner {
  position: relative;
  z-index: 2;
}

.review-widget {
  min-height: 180px;
  margin-top: 30px;
  color: #111;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

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

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.article-cluster + .article-cluster {
  margin-top: 56px;
}

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

.article-card {
  border: 1px solid var(--line);
  background: #fff;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card__topic {
  padding: 18px 24px 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-card h3 {
  padding: 10px 24px 0;
  font-size: 24px;
  font-weight: 700;
}

.article-card p {
  padding: 14px 24px 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin: 18px 24px 24px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
}

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

.gallery-grid--projects,
.masonry-gallery {
  display: block;
  column-count: 4;
  column-gap: 18px;
}

.gallery-item,
.masonry-gallery a {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  overflow: hidden;
  background: #f2f2f2;
  vertical-align: top;
}

.gallery-item img,
.masonry-gallery img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform .25s ease;
}

.gallery-item:hover img,
.masonry-gallery a:hover img {
  transform: scale(1.04);
}

.gallery-drive {
  width: 100%;
  min-height: 720px;
  border: 0;
  background: #fff;
}

.gallery-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.article-body {
  max-width: 860px;
  margin-inline: auto;
}

.article-body > img {
  width: 100%;
  max-height: 480px;
  margin-bottom: 28px;
  object-fit: cover;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.article-meta span,
.article-toc a,
.article-mini-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-lede {
  font-size: 20px;
  color: var(--ink);
}

.article-toc {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  padding: 22px;
  border: 1px solid var(--line);
  background: #f8f8f8;
}

.article-toc a {
  color: var(--ink);
  text-decoration: none;
}

.article-callout {
  margin: 36px 0;
  padding: 30px;
  background: var(--blue);
  color: #fff;
}

.article-callout h2,
.article-callout p {
  color: #fff;
}

.article-callout .button {
  margin-top: 10px;
  background: #fff;
  color: var(--blue);
}

.article-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.article-mini-list a {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.article-mini-list a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.quote-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 11px 12px;
  font: inherit;
}

.quote-form .button {
  border-radius: 0;
  cursor: pointer;
}

.quote-form .button:disabled {
  cursor: wait;
  opacity: .72;
}

.form-field--guard {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.form-status--success {
  border-color: #8dbb8d;
  background: #eef8ee;
  color: #215421;
}

.form-status--error {
  border-color: #d99a9a;
  background: #fff1f1;
  color: #7b1e1e;
}

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

.check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: #fff;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 9px;
  background: var(--blue);
}

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

.faq-list details {
  border: 1px solid var(--line);
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 15px 18px;
  color: var(--ink);
  font-weight: 700;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  padding: 30px;
  text-align: center;
}

.footer-hours-title {
  margin-top: 22px;
}

.site-footer {
  color: rgba(255, 255, 255, .82);
  background: #151515;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 38px;
  padding: 58px 0;
}

.footer-brand {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: #fff;
}

.footer-brand img {
  width: 128px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer ul,
.hours {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fff;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 4px 0;
}

.hours dt,
.hours dd {
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 22px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: center;
  }

  .service-grid,
  .article-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid--projects,
  .masonry-gallery {
    column-count: 2;
  }

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

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

  .feature__image {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar__inner {
    justify-content: center;
  }

  .nav {
    min-height: 76px;
  }

  .breadcrumbs {
    margin-top: 110px;
  }

  .brand img {
    width: 118px;
  }

  .hero {
    min-height: 680px;
  }

  .hero__content {
    padding-top: 112px;
  }

  .hero__shade {
    background: rgba(0, 0, 0, .62);
  }

  .section {
    padding: 64px 0;
  }

  .service-grid,
  .article-grid,
  .article-mini-list,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid--projects,
  .masonry-gallery {
    column-count: 1;
  }

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

  .feature__grid {
    gap: 36px;
  }

  .feature-stack__image--tall {
    width: 100%;
  }

  .footer-bottom__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }
}
