:root {
  --navy: #062946;
  --navy-dark: #021b32;
  --blue: #1689c9;
  --gold: #f4b83f;
  --gold-dark: #d89a17;
  --white: #ffffff;
  --light: #f4f7fa;
  --muted: #5d6b7a;
  --text: #061b31;
  --border: #dfe6ee;
  --shadow: 0 18px 45px rgba(3, 24, 43, 0.14);
  --font-heading: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 41, 70, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 205px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy-dark);
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-dark);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -29px;
  height: 3px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 610px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/night_construction.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 20, 37, 0.94) 0%, rgba(1, 20, 37, 0.82) 38%, rgba(1, 20, 37, 0.42) 70%, rgba(1, 20, 37, 0.15) 100%),
    linear-gradient(0deg, rgba(1, 20, 37, 0.2), rgba(1, 20, 37, 0.2));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 118px 0 124px;
  max-width: 1180px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 740px;
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.92;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 0 32px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #061b31;
}

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

.btn.secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

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

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

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

.btn.light {
  border-color: var(--white);
  color: var(--white);
}

.stats {
  background: var(--navy-dark);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stats article {
  min-height: 160px;
  padding: 28px 28px 26px;
  text-align: center;
  position: relative;
}

.stats article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.stats .icon {
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 10px;
}

.stats strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.stats span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 72px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 62px;
}

.two-col.reversed {
  grid-template-columns: 1fr 1fr;
}

.copy h2,
.section-title-row h2,
.featured-projects h2,
.callout h2 {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.copy p {
  margin: 0 0 18px;
  font-size: 16px;
}

.copy .btn {
  margin-top: 10px;
}

.image-card {
  min-height: 310px;
  background: #e9eef4;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-card {
  position: relative;
  background:
    linear-gradient(90deg, rgba(6, 41, 70, 0.05), rgba(6, 41, 70, 0.1)),
    #dfe7ef;
}

.panel-room {
  height: 350px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 34px 34px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(6, 41, 70, 0.06) 69px 70px);
}

.panel-room span {
  display: block;
  background:
    radial-gradient(circle at 50% 30%, #f39f25 0 7px, transparent 8px),
    radial-gradient(circle at 50% 58%, #152b3f 0 8px, transparent 9px),
    linear-gradient(180deg, #aeb9c2, #79858f);
  border: 2px solid #66727d;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.12);
}

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

.section-title-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 30px;
}

.section-title-row p {
  margin: 0 0 10px;
  color: var(--muted);
}

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

.service-grid article {
  background: var(--white);
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 10px 28px rgba(4, 23, 42, 0.08);
}

.service-grid article span {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
}

.service-grid h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy);
}

.service-grid p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.featured-projects {
  background: var(--white);
  padding-top: 58px;
}

.featured-projects h2 {
  margin-bottom: 24px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(4, 23, 42, 0.08);
  overflow: hidden;
}

.project-img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
  background: #d8e0e8;
}

.project-card h3 {
  margin: 16px 14px 8px;
  min-height: 48px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy-dark);
}

.project-card p {
  margin: 0 14px 22px;
  font-size: 13px;
  color: var(--muted);
}

.project-card a {
  display: none;
}

.spotlight {
  padding: 0 0 70px;
  background: var(--white);
}

.spotlight-card {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.spotlight-art {
  position: relative;
  min-height: 365px;
  background: none !important;
  overflow: hidden;
}

.spotlight-art::before,
.spotlight-art::after {
  display: none !important;
  content: none !important;
}

.spotlight-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-copy,
.spotlight-copy2 {
  padding: 34px 36px 34px;
  background: var(--navy-dark);
}

.spotlight-copy h2,
.spotlight-copy2 h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 20px;
  margin-bottom: 22px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 22px;
}

.project-facts div {
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.project-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.project-facts strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.project-facts span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.role-grid h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.role-grid p {
  margin: 0;
  font-size: 14px;
}

.role-grid ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
}

.role-grid li::marker {
  color: var(--gold);
}

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

.capability-list {
  display: grid;
  gap: 18px;
}

.capability-list div {
  background: var(--white);
  padding: 25px 28px;
  border-left: 5px solid var(--gold);
  box-shadow: 0 10px 28px rgba(4, 23, 42, 0.08);
}

.capability-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
  color: var(--navy);
  text-transform: uppercase;
}

.capability-list span {
  display: block;
  color: var(--muted);
}

.careers {
  background:
    linear-gradient(90deg, rgba(2, 27, 50, 0.94), rgba(2, 27, 50, 0.86)),
    url("images/night_construction.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.callout h2 {
  color: var(--white);
}

.callout p:not(.section-kicker) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.contact-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr 1.5fr auto;
  gap: 22px;
  align-items: center;
}

.contact-grid h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
  color: var(--navy);
  text-transform: uppercase;
}

.contact-grid a,
.contact-grid span {
  font-size: 14px;
  color: var(--navy);
}

.footer-bottom {
  background: var(--navy-dark);
  color: var(--white);
}

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

.footer-inner img {
  width: 120px;
  height: auto;
}

.footer-inner p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner nav {
  display: none;
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .brand img {
    width: 185px;
  }

  .hero h1 {
    font-size: clamp(46px, 7vw, 72px);
  }

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

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

  .spotlight-card {
    grid-template-columns: 1fr;
  }

  .spotlight-art {
    min-height: 420px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    padding: 22px 0;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 0;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 175px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--navy);
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  }

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

  .main-nav a {
    display: block;
    padding: 16px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 88px 0 96px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(44px, 9vw, 66px);
  }

  .hero p:not(.eyebrow) {
    max-width: 560px;
    font-size: 16px;
  }

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

  .stats article {
    min-height: 145px;
  }

  .stats article:nth-child(3) {
    border-left: 0;
  }

  .two-col,
  .two-col.reversed,
  .section-title-row,
  .role-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section {
    padding: 56px 0;
  }

  .copy h2,
  .section-title-row h2,
  .featured-projects h2,
  .callout h2 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .panel-room {
    height: 300px;
  }

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

  .project-img {
    height: 180px;
  }

  .spotlight {
    padding-bottom: 56px;
  }

  .spotlight-card {
    width: min(100% - 28px, 1180px);
  }

  .spotlight-art {
    min-height: 360px;
  }

  .spotlight-copy,
  .spotlight-copy2 {
    padding: 30px 26px;
  }

  .spotlight-copy h2,
  .spotlight-copy2 h2 {
    font-size: clamp(36px, 8vw, 48px);
  }

  .project-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }

  .project-facts div {
    padding: 0 14px;
  }

  .project-facts div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

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

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

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .main-nav {
    top: 68px;
  }

  .brand img {
    width: 155px;
  }

  .hero-bg {
    background-position: center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(1, 20, 37, 0.96) 0%, rgba(1, 20, 37, 0.82) 100%);
  }

  .hero-inner {
    padding: 72px 0 78px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 0.95;
  }

  .hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .stats-grid,
  .service-grid,
  .project-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats article {
    border-left: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .stats strong {
    font-size: 36px;
  }

  .section {
    padding: 46px 0;
  }

  .copy h2,
  .section-title-row h2,
  .featured-projects h2,
  .callout h2 {
    font-size: 36px;
  }

  .copy p,
  .section-title-row p {
    font-size: 15px;
  }

  .panel-room {
    height: 260px;
    grid-template-columns: repeat(3, 1fr);
    padding: 24px;
  }

  .service-grid article {
    padding: 24px 20px;
  }

  .project-img {
    height: 215px;
  }

  .project-card h3 {
    min-height: auto;
    font-size: 16px;
  }

  .spotlight-art {
    min-height: 250px;
  }

  .spotlight-copy,
  .spotlight-copy2 {
    padding: 26px 20px;
  }

  .spotlight-copy h2,
  .spotlight-copy2 h2 {
    font-size: 34px;
    line-height: 0.95;
  }

  .badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 8px 14px;
    min-height: auto;
  }

  .project-facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-facts div {
    padding: 0;
    border-left: 0;
  }

  .role-grid {
    gap: 24px;
  }

  .role-grid h3 {
    font-size: 26px;
  }

  .role-grid p,
  .role-grid ul {
    font-size: 14px;
  }

  .capability-list div {
    padding: 22px 20px;
  }

  .capability-list strong {
    font-size: 26px;
  }

  .contact-grid {
    padding: 26px 0;
    gap: 16px;
  }

  .contact-grid h2 {
    font-size: 32px;
  }

  .footer-inner img {
    width: 115px;
  }
}