:root {
  --ink: #0b1720;
  --navy: #07111c;
  --steel: #5d6e79;
  --mist: #eef4f5;
  --line: #d8e1e4;
  --amber: #d99a2b;
  --teal: #1e7b7a;
  --white: #ffffff;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: rgba(7, 17, 28, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 28, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--navy);
  background: var(--amber);
  font-size: 14px;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #f4c76d;
  opacity: 1;
}

.nav-contact {
  padding: 9px 14px;
  color: var(--navy);
  background: var(--white);
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 120px clamp(20px, 5vw, 72px) 120px;
}

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

.hero-video {
  object-fit: cover;
  z-index: -2;
  background: var(--navy);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 28, 0.82), rgba(7, 17, 28, 0.3) 58%, rgba(7, 17, 28, 0.7)),
    linear-gradient(0deg, rgba(7, 17, 28, 0.76), rgba(7, 17, 28, 0) 42%);
}

.hero-content {
  width: min(780px, 100%);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 7.4vw, 94px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
}

h1 span {
  display: block;
}

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

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.1vw, 24px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--navy);
  background: var(--amber);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-stats {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 880px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  min-height: 104px;
  padding: 18px;
  background: rgba(7, 17, 28, 0.68);
  backdrop-filter: blur(8px);
}

.hero-stats strong {
  display: block;
  color: #f8ca72;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 38px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 42px;
}

.section-heading h2 {
  max-width: 720px;
}

.section-heading.compact {
  display: block;
  text-align: center;
}

.intro-grid,
.project-grid,
.value-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.intro-grid article,
.value-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.intro-grid p,
.value-grid p,
.project-card p,
.resource-copy p,
.compliance p {
  margin: 0;
  color: var(--steel);
}

.clients {
  background: var(--mist);
}

.client-strip {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.client-strip img {
  width: 100%;
  height: 126px;
  object-fit: contain;
  padding: 22px;
  background: var(--white);
}

.finance {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 58px;
  padding-left: 0;
  padding-right: 0;
}

.turnover-bars {
  display: grid;
  gap: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 100px 1fr 118px;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.bar-track {
  height: 14px;
  overflow: hidden;
  background: #dbe6e8;
  border-radius: 999px;
}

.bar-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

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

.featured-project {
  width: min(var(--max), 100%);
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.featured-project div {
  padding: clamp(28px, 4vw, 52px);
  align-self: center;
}

.featured-project p {
  color: rgba(255, 255, 255, 0.76);
}

.featured-project strong {
  display: block;
  margin-top: 22px;
  color: #f8ca72;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: #101d29;
}

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

.project-card h3,
.project-card p,
.project-card span {
  margin-left: 18px;
  margin-right: 18px;
}

.project-card h3 {
  margin-top: 18px;
}

.project-card p {
  color: rgba(255, 255, 255, 0.72);
}

.project-card span {
  display: block;
  margin-top: 16px;
  margin-bottom: 20px;
  color: #f8ca72;
  font-weight: 800;
}

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

.resources {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.resource-copy ul {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--ink);
}

.resource-copy li + li {
  margin-top: 9px;
}

.resource-images {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: stretch;
}

.resource-images img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

.resource-images img + img {
  height: 320px;
  align-self: end;
  background: var(--mist);
}

.compliance {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  background: var(--mist);
}

.compliance > div,
.compliance-list {
  width: min(100%, 560px);
}

.compliance > div {
  justify-self: end;
}

.compliance-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.compliance-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.compliance-list dt {
  color: var(--steel);
  font-weight: 800;
}

.compliance-list dd {
  margin: 0;
  font-weight: 900;
}

.contact {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, #07111c, #123738 70%, #33250f);
}

.contact > div {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
}

address strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.contact-lines {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-lines a {
  color: #f8ca72;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #050a0f;
  font-size: 14px;
}

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

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 20px 24px;
    background: rgba(7, 17, 28, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-contact {
    width: max-content;
  }

  .hero {
    min-height: 920px;
  }

  .hero-stats,
  .intro-grid,
  .client-strip,
  .finance,
  .featured-project,
  .project-grid,
  .value-grid,
  .resources,
  .compliance,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: none;
  }

  .section-heading {
    display: block;
  }

  .finance,
  .resources {
    width: min(var(--max), calc(100% - 40px));
  }

  .client-strip img {
    height: 112px;
  }

  .compliance > div {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 175px;
    line-height: 1.1;
  }

  .hero {
    min-height: 980px;
    padding-top: 110px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-stats {
    position: static;
    margin-top: 46px;
  }

  .bar-row,
  .compliance-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .resource-images {
    grid-template-columns: 1fr;
  }

  .resource-images img,
  .resource-images img + img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  footer {
    display: grid;
  }
}
