: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);
}

* {
  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(1180px, calc(100% - 40px));
  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;
}

.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: 33px;
  max-height: 33px;
  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);
}

.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;
}

.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;
}

.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);
}

.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;
}

.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 strong {
  color: #fff;
  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;
}

.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);
}

.page-hero {
  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 .wrap {
  max-width: 980px;
}

.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;
}

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

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

.prose {
  max-width: 900px;
}

.prose h2 {
  margin-top: 28px;
  font-size: clamp(26px, 3vw, 38px);
}

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

.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 {
  padding: 26px;
}

.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 {
  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;
  min-height: 86px;
  align-content: center;
  padding: 18px;
  color: var(--ink);
  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,
.mini-card a:hover {
  color: var(--red);
}

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

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

.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);
}

.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;
}

@media (max-width: 1020px) {
  .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,
  .careers-grid,
  .contact-grid,
  .case-study,
  .proof-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .project-grid,
  .mini-grid,
  .hub-grid,
  .fact-grid,
  .proof-gallery {
    grid-template-columns: 1fr;
  }
}

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

  .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;
  }

  .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;
  }
}
