:root {
  --blue: #0d47b5;
  --deep-blue: #062f7b;
  --navy: #061b3d;
  --yellow: #fff200;
  --yellow-dark: #e2d700;
  --dark: #17191d;
  --dark-2: #202329;
  --gray: #6d737c;
  --light: #f3f4f6;
  --line: #dfe2e7;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.top-strip {
  background: #0e1116;
  color: #aeb5c0;
  border-bottom: 1px solid #252a32;
  font-size: 0.76rem;
}

.top-strip-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-strip a {
  color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.navbar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
}

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

.brand-logo {
  width: 245px;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .12em;
  font-weight: 800;
  color: #30343b;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links .nav-cta {
  background: var(--blue);
  color: white;
  padding: 13px 18px;
}

.nav-links .nav-cta:hover {
  background: var(--deep-blue);
  color: white;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  min-height: 690px;
  color: white;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
}

.hero-copy {
  max-width: 770px;
  padding: 100px 0 135px;
}

.eyebrow {
  font-size: .76rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .22em;
  margin-bottom: 17px;
}

.eyebrow.yellow {
  color: var(--yellow);
}

.eyebrow.blue {
  color: var(--blue);
}

.eyebrow.dark {
  color: #141414;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  line-height: .86;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.hero p {
  max-width: 650px;
  margin: 28px 0 32px;
  color: #eef3fb;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .75rem;
  font-weight: 900;
  transition: .22s ease;
}

.btn-yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--deep-blue);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.btn-outline {
  border-color: white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.btn-dark:hover {
  background: #020d1d;
}

.value-band {
  position: relative;
  z-index: 4;
  margin-top: -70px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 22px 50px rgba(0,0,0,.2);
}

.value-card {
  padding: 32px 34px;
  min-height: 185px;
  color: white;
  background: var(--dark);
  border-right: 1px solid #3c414a;
}

.value-card:nth-child(2) {
  background: #20242a;
}

.value-card:last-child {
  border-right: 0;
}

.value-card span {
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.value-card h3 {
  margin: 8px 0 7px;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.value-card p {
  margin: 0;
  color: #aeb4bd;
  font-size: .9rem;
}

.section {
  padding: 100px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 75px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.main-image {
  width: 100%;
  height: 530px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.image-accent {
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 42%;
  height: 45%;
  background: var(--yellow);
  z-index: 1;
}

.section-copy h2,
.section-heading h2,
.featured-copy h2,
.photo-break h2,
.contact-cta h2 {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.lead {
  color: #505660;
  font-size: 1.1rem;
}

.check-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 22px;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.check-grid div::first-letter {
  color: var(--blue);
}

.services {
  background: var(--light);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
}

.split-heading > p {
  max-width: 560px;
  margin: 0 0 10px;
  color: var(--gray);
}

.service-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d7dbe0;
  border: 1px solid #d7dbe0;
}

.service-card {
  min-height: 290px;
  padding: 34px 30px;
  background: white;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 0;
  background: var(--yellow);
  transition: .3s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-number {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.service-card h3 {
  margin: 22px 0 12px;
  text-transform: uppercase;
  font-size: 1.12rem;
}

.service-card p {
  margin: 0;
  color: #6b7077;
  font-size: .92rem;
}

.featured-project {
  background: var(--navy);
  color: white;
}

.featured-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 55px;
  align-items: center;
}

.featured-copy p {
  color: #bdc8da;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--yellow);
  text-transform: uppercase;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.featured-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 215px;
  gap: 10px;
}

.featured-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-images .featured-large {
  grid-column: span 2;
  height: 100%;
}

.section-heading > p {
  max-width: 680px;
  color: var(--gray);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
  margin-top: 40px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.project-large {
  grid-column: span 2;
  grid-row: span 2;
}

.project-wide {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(0,0,0,.86));
}

.project-overlay {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: white;
}

.project-overlay span {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .69rem;
  font-weight: 900;
}

.project-overlay h3 {
  margin: 4px 0 0;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.project-large .project-overlay h3 {
  font-size: 1.7rem;
}

.photo-break {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}

.photo-break-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.photo-break h2 {
  margin-bottom: 0;
  max-width: 760px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.why-grid > div {
  border-top: 3px solid var(--yellow);
  padding-top: 18px;
}

.why-grid h3 {
  margin: 0 0 7px;
  text-transform: uppercase;
  font-size: 1rem;
}

.why-grid p {
  margin: 0;
  color: var(--gray);
  font-size: .9rem;
}

.contact-cta {
  background: var(--yellow);
  padding: 54px 0;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.contact-cta h2 {
  margin-bottom: 0;
  color: var(--navy);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 13px;
}

.contact-domain {
  font-weight: 900;
  color: var(--deep-blue);
}

footer {
  background: #11151d;
  color: #aeb5c0;
  padding-top: 66px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 55px;
}

.footer-logo {
  width: 235px;
  background: white;
  padding: 8px;
  margin-bottom: 17px;
}

.footer-grid p {
  max-width: 360px;
  font-size: .88rem;
}

.footer-grid h4 {
  color: white;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  margin: 0 0 16px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  font-size: .86rem;
}

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

.footer-bottom {
  min-height: 66px;
  border-top: 1px solid #2d333d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .75rem;
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 126px;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,.13);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid #e6e8eb;
  }

  .nav-links .nav-cta {
    margin-top: 10px;
    padding-inline: 15px;
    border-bottom: 0;
  }

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

  .value-card {
    border-right: 0;
    border-bottom: 1px solid #3c414a;
  }

  .two-column,
  .featured-grid {
    grid-template-columns: 1fr;
  }

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

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

  .project-large,
  .project-wide {
    grid-column: span 2;
  }

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

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

  .top-strip-inner {
    justify-content: center;
    text-align: center;
  }

  .top-strip-inner a {
    display: none;
  }

  .brand-logo {
    width: 210px;
  }

  .hero {
    min-height: 610px;
    background-position: 60% center;
  }

  .hero-copy {
    padding: 75px 0 105px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .value-band {
    margin-top: -28px;
  }

  .section {
    padding: 72px 0;
  }

  .main-image {
    height: 380px;
  }

  .split-heading,
  .photo-break-inner,
  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-grid,
  .why-grid,
  .project-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-auto-rows: 270px;
  }

  .project-large,
  .project-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .featured-images {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .featured-images .featured-large {
    grid-column: span 1;
  }

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

  .contact-actions {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 0;
  }
}
