:root {
  --ink: #161616;
  --muted: #5d6670;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #ddd7cb;
  --charcoal: #202020;
  --charcoal-2: #2e3438;
  --gold: #f2ba2f;
  --red: #a82224;
  --blue: #2c6077;
  --green: #657a4d;
  --shadow: 0 18px 48px rgba(20, 20, 20, 0.12);
  --page-shell-width: 1240px;
}

/* Project gallery tile view and full-size lightbox. */
.project-gallery-section .project-slideshow {
  display: block;
}

.project-gallery-section .project-slides {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  width: 100%;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.project-gallery-section .project-slide,
.project-gallery-section .project-slide.is-active {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.22);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  animation: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.project-gallery-section .project-slide:hover,
.project-gallery-section .project-slide:focus-within {
  border-color: var(--red, #a9252a);
  transform: translateY(-3px);
}

.project-gallery-section .project-slide img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-gallery-section .project-slide:hover img {
  transform: scale(1.04);
}

.project-gallery-section .project-gallery-placeholder {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(20, 20, 20, 0.45);
  border-radius: 12px;
  color: #202020;
  background: rgba(255, 255, 255, 0.48);
  text-align: center;
}

.project-gallery-section .project-gallery-placeholder span {
  color: var(--red, #a9252a);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-gallery-section .project-gallery-placeholder strong {
  margin-top: 7px;
  font-size: 0.88rem;
}

.project-gallery-section .project-slide figcaption {
  display: block;
  min-height: 0;
  padding: 10px 12px 12px;
  color: #202020;
  background: #fff;
  font-size: 0.82rem;
  line-height: 1.35;
}

.project-gallery-section .project-slide-control,
.project-gallery-section .project-slide-dots {
  display: none;
}

.project-lightbox[hidden] {
  display: none;
}

.project-lightbox {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  display: grid;
  place-items: center;
  max-width: calc(100vw - 168px);
  max-height: 90vh;
  padding: 0;
  background: transparent;
  transform: translate(-50%, -50%);
}

.project-lightbox figure {
  margin: 0;
  width: fit-content;
  max-width: calc(100vw - 168px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-lightbox-image {
  display: block;
  width: auto;
  max-width: calc(100vw - 168px);
  max-height: calc(90vh - 28px);
  object-fit: contain;
  border: 0;
  background: transparent;
}

.project-lightbox-caption {
  max-width: 900px;
  margin: 8px auto 0;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
}

.project-lightbox-close,
.project-lightbox-control {
  position: absolute;
  z-index: 2;
  border: 1px solid #fff;
  color: #161616;
  background: var(--yellow, #f2ba2f);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.project-lightbox-close {
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.project-lightbox-control {
  top: 50%;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.project-lightbox-prev { left: 22px; }
.project-lightbox-next { right: 22px; }

.project-lightbox-close:hover,
.project-lightbox-control:hover,
.project-lightbox-close:focus-visible,
.project-lightbox-control:focus-visible {
  color: #fff;
  background: var(--red, #a9252a);
}

body.project-lightbox-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .project-gallery-section .project-slides {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .project-gallery-section .project-slides {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-lightbox {
    max-width: 94vw;
    max-height: 84vh;
  }

  .project-lightbox-image {
    max-width: 94vw;
    max-height: calc(84vh - 28px);
  }

  .project-lightbox-control {
    top: auto;
    bottom: 20px;
    margin-top: 0;
  }

  .project-lightbox-prev { left: calc(50% - 62px); }
  .project-lightbox-next { right: calc(50% - 62px); }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

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

.wrap {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  background: var(--charcoal);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.topbar-inner,
.topbar-links,
.nav-inner,
.nav-links,
.actions,
.footer-inner {
  display: flex;
  align-items: center;
}

.topbar-inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 18px;
}

.topbar-links {
  gap: 18px;
}

.topbar a,
.nav a,
.button,
.text-link {
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 60px;
  justify-content: space-between;
  gap: 22px;
  position: relative;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #181818;
  background: var(--gold);
  border-radius: 6px;
  font-size: 28px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 22px;
  text-transform: uppercase;
}

.brand-logo {
  width: auto;
  height: 86px;
  max-height: 86px;
  object-fit: contain;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--red);
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  overflow: hidden;
  color: #fff;
}

.hero-img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.92), rgba(16, 16, 16, 0.62) 56%, rgba(16, 16, 16, 0.24)),
    linear-gradient(0deg, rgba(16, 16, 16, 0.3), rgba(16, 16, 16, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: calc(100vh - 120px);
  max-width: 820px;
  padding: 78px 0 96px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5.7vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 23px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.58;
}

.hero-copy {
  max-width: 700px;
  color: #f4ead7;
  font-size: 19px;
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.center-actions {
  justify-content: center;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid #171717;
  border-radius: 6px;
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.28), 0 14px 26px rgba(0, 0, 0, 0.18);
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button.primary {
  color: #171717;
  background: linear-gradient(180deg, #ffd35c, var(--gold));
  border-color: #171717;
}

.button.ghost {
  color: #fff;
  background: rgba(32, 32, 32, 0.72);
  border-color: var(--gold);
}

.button.dark-ghost {
  color: #fff;
  background: var(--charcoal);
  border-color: var(--gold);
}

.button.dark {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.3), 0 16px 28px rgba(0, 0, 0, 0.2);
}

.button:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3), 0 8px 18px rgba(0, 0, 0, 0.16);
}

.proof-band {
  background: var(--charcoal);
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid div {
  min-height: 120px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid strong {
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
}

.proof-grid span {
  color: #e6e0d4;
  font-weight: 800;
}

.section {
  padding: 82px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head p {
  font-size: 18px;
}

.why-viking-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 34px;
}

.why-viking-intro .section-head {
  margin-bottom: 0;
}

.why-viking-photo {
  margin: 0;
}

.why-viking-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(24, 24, 24, 0.22);
  border-radius: 8px;
}

.why-viking-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

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

.service-card,
.project-card,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 290px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  outline: 0 solid transparent;
  transition: border-color 160ms ease, outline-color 160ms ease, transform 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.service-card span,
.project-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.project-section,
.coverage {
  background: #eef1ec;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.featured-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.featured-copy {
  display: grid;
  align-content: center;
  padding: 36px;
}

.featured-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.facts {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.facts div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-weight: 800;
}

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

.fact-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.fact-grid dt {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-grid dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.project-card {
  overflow: hidden;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e5e0d5;
}

.project-card div {
  padding: 20px;
}

.project-card h3 {
  margin: 8px 0 10px;
}

.split-section {
  background: var(--charcoal-2);
  color: #fff;
}

.split-section p {
  color: #dfe5e8;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.industry-list,
.city-grid,
.county-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-list a,
.city-grid a,
.county-strip a {
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
}

.industry-list a {
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.industry-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.industry-icon-grid a {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 16px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.industry-icon-grid a:hover,
.industry-icon-grid a:focus-visible {
  background: rgba(242, 186, 47, 0.16);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.industry-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  flex: 0 0 60px;
  overflow: hidden;
  width: 60px;
  height: 60px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.industry-icon svg {
  display: block;
  width: 32px !important;
  height: 32px !important;
  max-width: 32px;
  max-height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.industry-icon-grid strong {
  align-self: end;
  font-size: 16px;
}

.industry-icon-grid small {
  align-self: start;
  margin-top: 4px;
  color: #dfe5e8;
  font-size: 12px;
  line-height: 1.35;
}

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

.industry-directory-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  min-height: 128px;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.industry-directory-card:hover,
.industry-directory-card:focus-visible {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.industry-directory-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 50%;
}

.industry-directory-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.industry-directory-card strong {
  align-self: end;
  font-size: 17px;
}

.industry-directory-card small {
  align-self: start;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .industry-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .industry-directory-grid {
    grid-template-columns: 1fr;
  }
}

.client-proof-section {
  background: #fff;
}

.review-connection {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: #f2f4f3;
}

.review-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
}

.review-connection strong {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
}

.review-connection p {
  margin: 0;
  color: var(--muted);
}

.past-clients-section {
  background: #eef1ec;
}

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

.client-name-grid div {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  color: var(--ink);
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.client-logo-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.logo-rail-control {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 1px solid var(--blue);
  border-radius: 50%;
  font: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.logo-rail-control:hover,
.logo-rail-control:focus-visible {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.client-logo-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--blue) #d7ddd9;
  scrollbar-width: auto;
}

.client-logo-grid::-webkit-scrollbar {
  height: 12px;
}

.client-logo-grid::-webkit-scrollbar-track {
  background: #d7ddd9;
  border-radius: 999px;
}

.client-logo-grid::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 999px;
}

.client-logo-grid div {
  flex: 0 0 174px;
  display: grid;
  min-height: 138px;
  place-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-snap-align: start;
}

.client-logo-grid img {
  width: 100%;
  height: 108px;
  object-fit: contain;
}

@media (max-width: 700px) {
  .client-logo-carousel {
    gap: 8px;
  }

  .logo-rail-control {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

.field-experience-section {
  background: #fff;
}

.field-photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 14px;
}

.field-photo-grid figure {
  grid-column: span 3;
  grid-row: span 2;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e5e0d5;
}

.field-photo-grid figure:nth-child(4) {
  grid-column: span 6;
}

.field-photo-grid figure:nth-child(5) {
  grid-column: span 6;
}

.field-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.field-photo-grid figure:hover img {
  transform: scale(1.04);
}

.certifications-section {
  background: var(--gold);
}

.certifications-section .eyebrow {
  color: var(--red);
}

.credential-logo-grid {
  display: grid;
  gap: 14px;
}

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

.certification-card {
  display: grid;
  justify-items: start;
  gap: 10px;
  min-height: 190px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(24, 24, 24, 0.24);
  border-radius: 8px;
}

.cert-logo-slot {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 70px;
  height: 54px;
  color: var(--blue);
  border: 1px solid var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.certification-card-logo .cert-logo-slot {
  width: 100%;
  height: 116px;
  border: 0;
  background: #fff;
}

.certification-card-logo .cert-logo-slot img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 102px;
  object-fit: contain;
}

.credential-card-isnet .cert-logo-slot img {
  max-width: 100%;
  max-height: 112px;
}

.credential-card-adeq .cert-logo-slot {
  height: 156px;
}

.credential-card-adeq .cert-logo-slot img {
  max-width: 86%;
  max-height: 146px;
}

.credential-logo-grid .certification-card-logo {
  min-height: 236px;
}

.credential-card-contrast .cert-logo-slot {
  background: #232323;
}

@media (max-width: 900px) {
  .credential-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .credential-logo-grid {
    grid-template-columns: 1fr;
  }
}

.certification-card strong {
  font-size: 17px;
}

.certification-card small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.city-grid a {
  min-width: 130px;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.county-strip {
  margin-top: 18px;
}

.county-strip a {
  padding: 12px 14px;
  color: #fff;
  background: var(--blue);
}

.featured-copy h3 a,
.project-card h3 a {
  color: inherit;
  text-decoration: none;
}

.featured-copy > .text-link {
  color: var(--red, #a9252a);
}

.featured-copy > .text-link:hover,
.featured-copy > .text-link:focus-visible {
  color: #0172cf;
}

.service-card:hover h3,
.featured-copy h3 a:hover,
.project-card h3 a:hover,
.industry-list a:hover,
.city-grid a:hover,
.county-strip a:hover {
  color: var(--red);
}

.careers {
  background: #fff;
}

.careers-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
}

.careers-grid .button {
  justify-self: end;
}

.contact {
  color: #fff;
  background: var(--red);
}

.contact .eyebrow {
  color: #ffd369;
}

.contact p {
  color: #ffe9e0;
}

.contact-box {
  display: grid;
  gap: 14px;
  padding: 28px;
  color: var(--ink);
  font-style: normal;
}

.contact-box a {
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.contact-box small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.footer {
  padding: 42px 0 26px;
  color: #dcdcdc;
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(210px, 0.95fr) minmax(230px, 1fr) minmax(160px, 0.65fr);
  gap: 26px;
  align-items: start;
}

.footer-company,
.footer-contact,
.footer-credentials,
.footer-links {
  display: grid;
  gap: 10px;
}

.footer-logo-white {
  width: auto;
  height: 88px;
  max-width: 300px;
  margin-top: 6px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer strong {
  color: #0172cf;
  font-size: 16px;
}

.footer p,
.footer span,
.footer a {
  color: #dcdcdc;
  font-size: 14px;
  line-height: 1.5;
}

.footer p {
  max-width: 440px;
  margin: 0;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: var(--gold);
}

.footer-contact {
  font-style: normal;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.social-link {
  display: grid !important;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff !important;
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-link svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.social-facebook {
  background: #356da6;
}

.social-linkedin {
  background: #087db8;
}

.social-link:hover,
.social-link:focus-visible {
  color: #fff !important;
  background: var(--red);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.breadcrumb-band {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

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

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 64px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 22, 22, 0.96), rgba(46, 52, 56, 0.9)),
    var(--charcoal);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -120px auto;
  width: min(460px, 48vw);
  height: min(460px, 48vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 186, 47, 0.28), rgba(242, 186, 47, 0));
  pointer-events: none;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  max-width: var(--page-shell-width);
}

.page-section > .wrap {
  max-width: var(--page-shell-width);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
}

.page-hero p:not(.eyebrow) {
  max-width: 800px;
  color: #ede7dd;
  font-size: 19px;
}

.section-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.section-jump-nav a {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.section-jump-nav a:hover {
  color: var(--gold);
  border-color: rgba(242, 186, 47, 0.55);
}

.page-section {
  padding: 62px 0;
}

.page-section.alt {
  background: #eef1ec;
}

.industry-directory-section {
  background: #ddd7cb;
}

.industry-hub-page {
  display: flex;
  flex-direction: column;
}

.industry-hub-page > .breadcrumb-band {
  order: 0;
}

.industry-hub-page > .page-hero {
  order: 1;
}

.industry-hub-page > .page-section:not(#industry-directory):not(#industry-context) {
  order: 2;
}

.industry-hub-page > #industry-directory {
  order: 3;
}

.industry-hub-page > #industry-context {
  order: 4;
}

.prose {
  max-width: 900px;
}

.prose h2 {
  position: relative;
  margin-top: 34px;
  padding-top: 18px;
  font-size: clamp(26px, 3vw, 38px);
}

.prose h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
}

.prose h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 26px;
  align-items: start;
}

.page-intro-aside {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.page-intro-aside span,
.service-category-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-intro-aside strong {
  font-size: 30px;
  line-height: 1.05;
}

.snapshot-subhead {
  margin: -2px 0 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(22, 22, 22, 0.18);
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.signal-list li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.checklist-grid > div,
.mini-card,
.hub-link,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.checklist-grid > div {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.checklist-grid > div::before,
.mini-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--gold);
}

.checklist-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

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

.mini-card {
  position: relative;
  padding: 20px;
}

.mini-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-card a,
.hub-link {
  text-decoration: none;
}

.hub-link {
  display: grid;
  gap: 10px;
  min-height: 210px;
  align-content: start;
  padding: 24px;
  border-left: 5px solid var(--gold);
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hub-link-kicker {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hub-link strong {
  font-size: 22px;
  line-height: 1.12;
}

.hub-link small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.hub-link em {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.internal-link-section h3 {
  margin: 26px 0 12px;
}

.hub-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hub-grid.compact .hub-link {
  min-height: 58px;
  padding: 14px 16px;
  font-size: 14px;
}

.hub-link:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  background: #fbfaf6;
  color: var(--ink);
}

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

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

.faq-list details {
  padding: 18px 20px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-cloud a,
.link-cloud span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.case-study img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.project-feature-image {
  margin: 0;
}

.project-feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-feature-image figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.project-lead-section {
  background: #fff;
}

.project-profile-page .project-lead-section .prose h2 {
  margin-top: 0;
  padding-top: 0;
  color: var(--gold, #f2ba2f);
}

.project-profile-page .project-lead-section .prose > .eyebrow {
  color: var(--red, #a9252a);
}

.project-profile-page .project-lead-section .prose h2::before {
  display: none;
}

.project-profile-page .page-hero .wrap,
.project-profile-page .page-section > .wrap,
.project-profile-page > .wrap {
  width: min(1240px, calc(100% - 48px));
  max-width: 1240px;
}

.project-index-page .page-hero .wrap,
.project-index-page .page-section > .wrap {
  width: min(1240px, calc(100% - 48px));
  max-width: 1240px;
}

.project-profile-page .page-hero {
  padding: 70px 0 62px;
}

.project-profile-page .page-hero h1 {
  max-width: none;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.project-profile-page .page-hero p:not(.eyebrow) {
  max-width: 940px;
}

.project-profile-page .page-section {
  padding: 62px 0;
}

.project-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: clamp(30px, 4vw, 52px);
  align-items: center;
}

.project-profile-page .project-feature-image {
  overflow: hidden;
  border-radius: 22px;
  background: var(--charcoal);
}

.project-profile-page .project-feature-image img {
  aspect-ratio: 16 / 10;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.project-profile-page .project-feature-image:hover img {
  transform: scale(1.035);
}

.project-profile-page .checklist-grid {
  gap: 28px;
}

.project-profile-page .checklist-grid > div {
  min-height: 0;
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  transition: transform 220ms ease, border-color 220ms ease;
}

.project-profile-page .checklist-grid > div:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.project-detail-placeholder,
.project-response-placeholder {
  min-height: 170px;
  margin-top: 22px;
  box-shadow: none;
}

.project-detail-placeholder::before,
.project-response-placeholder::before {
  min-height: 94px;
}

.project-response-placeholder {
  min-height: 150px;
}

.project-profile-page .fact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.project-profile-page .fact-grid div {
  min-height: 126px;
  padding: 22px;
  border-radius: 14px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.project-profile-page .fact-grid div:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.project-profile-page .project-response-section .split-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 48px;
}

.project-profile-page .project-response-section .accent-panel {
  border-left: 6px solid var(--gold);
  background: #fff;
}

.project-profile-page .faq-list {
  max-width: 1240px;
}

@keyframes project-rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-profile-page .page-hero .wrap,
.project-profile-page .project-lead-section .project-profile > *,
.project-profile-page .checklist-grid > div,
.project-profile-page .project-response-section .split-grid > * {
  animation: project-rise-in 700ms ease both;
}

.project-profile-page .project-lead-section .project-profile > :nth-child(2),
.project-profile-page .checklist-grid > :nth-child(2),
.project-profile-page .project-response-section .split-grid > :nth-child(2) {
  animation-delay: 120ms;
}

@media (prefers-reduced-motion: reduce) {
  .project-profile-page *,
  .project-profile-page *::before,
  .project-profile-page *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

.project-profile-page .facts {
  margin: 24px 0;
}

.project-profile-page .facts dt {
  font-weight: 800;
}

.project-profile-page .facts dd {
  font-weight: 400;
}

.video-trigger {
  cursor: pointer;
}

.project-response-section {
  background: #f3ecde;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 22, 0.76);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  padding: 28px;
  border: 1px solid var(--gold);
  background: #fff;
}

.video-modal-dialog h2 {
  max-width: calc(100% - 48px);
  margin-bottom: 20px;
  font-size: clamp(24px, 3vw, 38px);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.video-modal-frame {
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-open {
  overflow: hidden;
}

.proof-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: start;
  margin-bottom: 28px;
}

.tight-list {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding-left: 20px;
}

.proof-note {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.proof-note strong {
  font-size: 18px;
}

.proof-note span {
  color: var(--muted);
  line-height: 1.45;
}

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

.proof-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.proof-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-photo figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

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

.image-placeholder {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 220px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f3ecde;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  display: block;
  min-height: 160px;
  border: 2px dashed rgba(168, 34, 36, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(44, 96, 119, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(44, 96, 119, 0.12) 1px, transparent 1px),
    #fbf7ed;
  background-size: 24px 24px, 24px 24px, auto;
  background-position: center;
}

.image-placeholder::after {
  content: "PHOTO PLACEMENT";
  position: absolute;
  top: 36px;
  right: 36px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(32, 32, 32, 0.8);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.image-placeholder strong {
  color: var(--ink);
  font-size: 18px;
}

.image-placeholder span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.image-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.project-library-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.project-library-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.project-library-photo-grid figure:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.project-library-photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-library-photo-grid figcaption {
  min-height: 68px;
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.project-story {
  background: #fbfaf6;
}

.project-story-feature {
  background: #ddd7cb;
}

.project-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.project-story-grid.reverse {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
}

.project-story-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.project-story-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-story-media:hover img {
  transform: scale(1.025);
}

.project-story-media figcaption {
  padding: 12px 16px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.project-story-copy {
  max-width: 560px;
}

.project-story-copy h2 {
  margin-top: 0;
}

.project-story-copy .eyebrow {
  color: var(--red);
}

.project-story-callout {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: #fff;
  font-weight: 900;
}

.project-story-detail {
  background: #fff;
}

.project-story-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, .8fr));
  gap: 16px;
  align-items: start;
}

.project-story-media-small img {
  aspect-ratio: 4 / 5;
}

.market-band {
  position: relative;
  color: var(--ink);
  background: #f2ba2f;
}

.market-band .wrap {
  position: relative;
  z-index: 1;
}

.market-band .section-head {
  margin-bottom: 22px;
}

.market-band .section-head p,
.market-band p,
.market-band li {
  color: var(--ink);
}

.market-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.market-table {
  width: 100%;
  border-collapse: collapse;
}

.market-table th,
.market-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.market-table thead th {
  color: #171717;
  background: #fff4cc;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.market-table tbody tr:nth-child(even) td {
  background: #faf7ef;
}

.market-table tbody tr:last-child td {
  border-bottom: 0;
}

.market-table td:first-child {
  width: 24%;
  color: var(--ink);
  font-weight: 900;
}

.market-table td:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.city-quickfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.city-quickfacts article {
  padding: 18px 18px 20px;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 12px;
  background: #fff;
}

.city-quickfacts span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.city-quickfacts strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.05;
}

.city-quickfacts p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.services-fact-card {
  position: relative;
  min-height: 100%;
  padding-top: 22px;
}

.services-fact-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 14px;
  background: rgba(22, 22, 22, 0.18);
}

.services-fact-card.fact-card-paper {
  background: #f3ecde;
}

.services-fact-card.fact-card-white {
  background: #fff;
}

.services-fact-card.fact-card-gold {
  background: #f3e3b0;
}

.services-fact-row {
  padding-top: 24px;
  background: #fbfaf6;
}

.services-fact-row-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.services-fact-row-head .eyebrow {
  color: var(--red);
}

.services-fact-row-head h2 {
  margin-bottom: 0;
}

.services-process-section {
  background: #fff;
}

.services-process-section .eyebrow {
  color: var(--gold);
}

.services-credentials-section {
  background: #fff;
}

.services-next-steps-section {
  background: #ddd7cb;
}

.services-intro-section {
  background: #f3ecde;
}

.services-page .services-market-band {
  background: #ddd7cb;
}

.services-fact-row {
  padding-top: 24px;
  background: #f2ba2f;
}

.services-library-section {
  background: #ddd7cb;
}

.services-fact-horizontal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.services-fact-horizontal .services-fact-card {
  padding: 22px 20px 24px;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 14px;
}

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

.process-step,
.accent-panel,
.region-note {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.process-step {
  padding: 22px;
  background: #fff;
}

.process-step span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 0 0 10px;
}

.process-step p {
  margin: 0;
}

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

.service-category-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #fffefc, #f3eee2);
  box-shadow: var(--shadow);
}

.service-category-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.service-category-card p {
  margin: 0;
}

.service-inline-placeholder {
  min-height: 170px;
  margin-top: 14px;
}

.service-inline-placeholder::before {
  min-height: 105px;
}

.section-inline-placeholder {
  margin-top: 18px;
  min-height: 190px;
}

.section-inline-placeholder::before {
  min-height: 125px;
}

.fact-inline-placeholder {
  margin-top: 14px;
  min-height: 150px;
}

.fact-inline-placeholder::before {
  min-height: 88px;
}

.process-inline-placeholder {
  margin-top: 14px;
  min-height: 160px;
}

.process-inline-placeholder::before {
  min-height: 96px;
}

.section-wide-placeholder {
  margin-top: 22px;
  min-height: 220px;
}

.section-wide-placeholder::before {
  min-height: 145px;
}

.next-step-placeholder {
  margin-top: 18px;
}

.service-link-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.service-link-list a {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(32, 32, 32, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.service-link-list a:hover {
  color: var(--red);
  border-color: rgba(168, 34, 36, 0.28);
  transform: translateY(-1px);
}

.service-split-layout {
  gap: 22px;
}

.service-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(242, 186, 47, 0.12), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: var(--shadow);
}

.service-cta-band h2,
.service-cta-band p {
  margin-bottom: 0;
}

.accent-panel {
  padding: 30px;
  background: #fff4cc;
}

.accent-panel h2 {
  margin-bottom: 12px;
}

.accent-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}

.accent-panel li {
  position: relative;
  padding-left: 18px;
}

.accent-panel li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.region-note {
  padding: 24px;
}

.region-note h3 {
  margin-bottom: 12px;
  color: var(--ink);
}

.services-page .section-head {
  max-width: none;
}

.services-page .section-head p {
  color: var(--ink);
}

.services-page .page-intro-aside strong,
.services-page .service-category-card h3,
.services-page .services-band-card h3,
.services-page .service-cta-band h2 {
  color: var(--ink);
}

.services-page .service-category-card,
.services-page .service-link-list a,
.services-page .service-cta-band {
  border-width: 1px;
}

.services-page .page-intro-aside,
.services-page .services-band-lead,
.services-page .services-band-card,
.services-page .services-band-aside,
.services-page .services-fact-horizontal .services-fact-card,
.services-page .process-step,
.services-page .service-category-card,
.services-page .service-link-list a,
.services-page .accent-panel,
.services-page .region-note,
.services-page .hub-link,
.services-page .image-placeholder,
.services-page .service-cta-band,
.services-page .button {
  box-shadow: none;
}

.services-page .service-category-card {
  background: #fff;
}

.services-page .service-link-list a {
  background: #fbfaf6;
}

.services-band-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: start;
}

.services-band-copy {
  display: grid;
  gap: 16px;
}

.services-band-lead {
  padding: 24px;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 14px;
  background: #fff;
}

.services-band-lead span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-band-lead h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.05;
}

.services-band-lead p {
  margin: 0;
  color: var(--ink);
}

.services-band-main {
  display: grid;
  gap: 18px;
}

.services-band-stack {
  display: grid;
  gap: 14px;
}

.services-band-visual {
  align-self: stretch;
}

.services-photo-placeholder {
  min-height: 100%;
  height: 100%;
}

.services-photo-placeholder::before {
  min-height: 420px;
}

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

.services-band-card,
.services-band-aside {
  padding: 20px;
  border: 1px solid rgba(22, 22, 22, 0.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.services-band-card-large {
  background: #fff;
}

.services-band-card span,
.services-band-aside span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-band-card h3,
.services-band-aside h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.services-band-card p,
.services-band-aside p,
.services-band-aside li {
  margin: 0;
  color: var(--ink);
}

.region-note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 1020px) {
  .why-viking-intro {
    grid-template-columns: 1fr;
  }

  .project-library-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .featured-project,
  .split-grid,
  .project-story-grid,
  .project-story-grid.reverse,
  .careers-grid,
  .contact-grid,
  .case-study,
  .proof-detail-grid,
  .page-intro-grid,
  .service-cta-band,
  .services-band-layout {
    grid-template-columns: 1fr;
  }

  .services-photo-placeholder::before {
    min-height: 260px;
  }

  .careers-grid .button {
    justify-self: start;
  }

  .project-grid,
  .mini-grid,
  .hub-grid,
  .project-story-detail-grid,
  .fact-grid,
  .proof-gallery,
  .image-placeholder-grid,
  .process-grid,
  .service-category-grid,
  .services-band-grid {
    grid-template-columns: 1fr;
  }

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

  .city-quickfacts {
    grid-template-columns: 1fr;
  }

  .market-table,
  .market-table thead,
  .market-table tbody,
  .market-table th,
  .market-table td,
  .market-table tr {
    display: block;
  }

  .market-table thead {
    display: none;
  }

  .market-table td {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .market-table td:first-child {
    padding-bottom: 8px;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, 1240px);
  }

  .project-library-photo-grid {
    grid-template-columns: 1fr;
  }

  .project-story-grid,
  .project-story-grid.reverse {
    gap: 24px;
  }

  .project-story-copy {
    max-width: none;
  }

  .topbar-inner,
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-inner {
    padding: 10px 0;
  }

  .topbar-links,
  .nav-links {
    align-items: flex-start;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .nav-inner {
    padding: 12px 0;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0;
  }

  .hero-shade {
    background: rgba(16, 16, 16, 0.76);
  }

  .proof-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 54px 0 48px;
  }

  .page-section {
    padding: 46px 0;
  }

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

  .services-fact-horizontal {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-copy {
    padding: 24px;
  }

  .featured-media img {
    min-height: 300px;
  }
}

.project-slideshow {
  display: grid;
  grid-template-columns: 58px minmax(0, 1080px) 58px;
  grid-template-rows: auto auto;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
  min-width: 0;
}

.project-gallery-section {
  background: #f2ba2f;
}

.project-gallery-wrap {
  width: min(1240px, calc(100% - 48px)) !important;
  max-width: 1240px !important;
}

.project-gallery-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

.project-gallery-heading .eyebrow {
  color: var(--red, #a9252a);
}

.project-gallery-heading h2 {
  max-width: 880px;
}

.project-gallery-heading p:not(.eyebrow) {
  max-width: 760px;
}

.project-slides {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line, #d8d2c7);
  border-radius: 22px;
  background: var(--charcoal, #202020);
}

.project-slide {
  display: none;
  margin: 0;
}

.project-slide.is-active {
  display: block;
  animation: project-slide-in 420ms ease both;
}

.project-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-slide figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-height: 56px;
  padding: 15px 20px;
  color: #fff;
  background: var(--charcoal, #202020);
}

.project-slide figcaption span {
  flex: 0 0 auto;
  color: var(--yellow, #f2ba2f);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-slide figcaption strong {
  font-size: 0.96rem;
  font-weight: 600;
}

.project-slide figcaption:only-child {
  font-size: 0.96rem;
  font-weight: 600;
}

.project-slide-control {
  position: static;
  align-self: center;
  z-index: 2;
  width: 56px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #161616;
  background: var(--yellow, #f2ba2f);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.project-slide-control:hover,
.project-slide-control:focus-visible {
  color: #fff;
  background: var(--red, #a9252a);
}

.project-slide-prev {
  grid-column: 1;
  grid-row: 1;
}

.project-slide-next {
  grid-column: 3;
  grid-row: 1;
}

.project-slide-dots {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 16px auto 0;
}

.project-slide-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--red, #a9252a);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.project-slide-dots button.is-active {
  border-color: var(--yellow, #f2ba2f);
  background: var(--yellow, #f2ba2f);
  transform: scale(1.25);
}

@keyframes project-slide-in {
  from { opacity: 0.35; transform: translateX(-48px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 720px) {
  .project-slideshow {
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
    row-gap: 14px;
  }

  .project-slides {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .project-slide-prev,
  .project-slide-next {
    grid-row: 2;
  }

  .project-slide-prev { grid-column: 1; justify-self: end; }
  .project-slide-next { grid-column: 2; justify-self: start; }

  .project-slide-dots {
    grid-row: 3;
  }

  .project-slide img { aspect-ratio: 4 / 3; }
  .project-slide figcaption { display: block; }
  .project-slide figcaption strong { display: block; margin-top: 5px; }
  .project-slide-control { width: 48px; min-height: 38px; font-size: 0.66rem; }
}

@media (max-width: 1020px) {
  .project-profile-page .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-profile-page .project-response-section .split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .project-profile-page .page-hero .wrap,
  .project-profile-page .page-section > .wrap {
    width: min(100% - 28px, 1240px);
  }

  .project-profile-page .page-hero {
    padding: 64px 0 58px;
  }

  .project-profile-page .page-hero h1 {
    white-space: normal;
    font-size: clamp(42px, 13vw, 64px);
  }

  .project-profile-page .project-feature-image img {
    min-height: 280px;
  }

  .project-profile-page .page-section {
    padding: 56px 0;
  }

  .project-profile-page .fact-grid {
    grid-template-columns: 1fr;
  }
}

/* Full-viewport header and footer alignment on desktop. */
.topbar-inner,
.nav-inner,
.footer > .wrap {
  width: auto;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(28px, 10.42vw, 200px);
}

.nav-inner {
  min-height: 92px;
}

.footer-grid {
  padding-top: 4px;
}

@media (max-width: 900px) {
  .topbar-inner,
  .nav-inner,
  .footer > .wrap {
    padding-inline: 28px;
  }

  .brand-logo,
  .footer-logo-white {
    height: 72px;
    max-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-inner {
    flex-direction: row;
    align-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 28px;
    left: 28px;
    z-index: 20;
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--paper);
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1020px) {
  .certification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-photo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 140px;
  }

  .field-photo-grid figure,
  .field-photo-grid figure:nth-child(4),
  .field-photo-grid figure:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .industry-icon-grid,
  .client-name-grid,
  .certification-grid {
    grid-template-columns: 1fr;
  }

  .field-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .field-photo-grid figure,
  .field-photo-grid figure:nth-child(4),
  .field-photo-grid figure:nth-child(5) {
    grid-column: span 1;
  }

  .review-connection {
    grid-template-columns: 58px 1fr;
  }

  .review-connection .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}
