:root {
  --ink: #18212c;
  --muted: #65717f;
  --line: #d8dee5;
  --paper: #f7f8f7;
  --white: #ffffff;
  --red: #c9252d;
  --blue: #15588b;
  --steel: #324456;
  --olive: #68735d;
  --shadow: 0 24px 70px rgba(24, 33, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 247, 0.86);
  border-bottom: 1px solid rgba(216, 222, 229, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 186px;
  padding: 2px 4px;
  background: var(--white);
  border-radius: 6px;
}

.brand img,
.site-footer img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
}

.button.linkedin {
  color: var(--white);
  background: #0a66c2;
}

.button.large {
  min-height: 58px;
  padding: 0 28px;
  font-size: 1rem;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  padding-top: 82px;
  background: linear-gradient(110deg, #f7f8f7 0%, #eef2f0 46%, #d8e2e3 100%);
}

.hero-content {
  align-self: center;
  max-width: 760px;
  padding: clamp(48px, 8vw, 118px) clamp(22px, 6vw, 82px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.1vw, 6.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-name {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.86;
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: var(--steel);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.7;
}

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

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #24313a;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 33, 44, 0.08), rgba(24, 33, 44, 0.32)),
    linear-gradient(0deg, rgba(24, 33, 44, 0.56), transparent 48%);
}

.capability-rail {
  position: absolute;
  left: clamp(18px, 4vw, 52px);
  right: clamp(18px, 4vw, 52px);
  bottom: clamp(18px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.capability-rail span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(24, 33, 44, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 800;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-strip div {
  padding: 28px clamp(20px, 4vw, 56px);
  background: var(--white);
}

.stats-strip strong,
.stats-strip span {
  display: block;
}

.stats-strip strong {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.stats-strip span {
  color: var(--muted);
}

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

.two-column,
.contact,
.record {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: clamp(36px, 7vw, 92px);
}

.copy-block,
.section-heading p,
.record-copy p,
.contact p {
  color: var(--steel);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 270px;
  padding: 30px;
  background: var(--white);
}

.service-number {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--blue);
  font-weight: 900;
}

.service-grid p,
.project-card span {
  color: var(--muted);
  line-height: 1.65;
}

.projects,
.site-gallery {
  background: #edf1ef;
}

.site-gallery {
  padding-top: clamp(62px, 8vw, 104px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}

.gallery-grid figure {
  overflow: hidden;
  position: relative;
  min-height: 270px;
  margin: 0;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 16px 50px rgba(24, 33, 44, 0.08);
}

.gallery-grid .gallery-feature {
  grid-row: span 2;
  min-height: 556px;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(24, 33, 44, 0.76);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

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

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(24, 33, 44, 0.08);
}

.project-card > div:last-child {
  padding: 22px;
}

.project-card p {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-visual {
  display: block;
  width: 100%;
  min-height: 260px;
  height: 280px;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(24, 33, 44, 0.15), rgba(24, 33, 44, 0.5)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.25) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #89958d, #34485b);
}

.tunnel .project-visual {
  background:
    radial-gradient(circle at 50% 72%, #151d25 0 14%, transparent 15%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.24), transparent),
    linear-gradient(135deg, #3d4a50, #908f7d);
}

.bridge .project-visual {
  background:
    linear-gradient(170deg, transparent 0 45%, rgba(24, 33, 44, 0.75) 45% 49%, transparent 49%),
    linear-gradient(8deg, transparent 0 56%, rgba(255, 255, 255, 0.7) 56% 58%, transparent 58%),
    linear-gradient(135deg, #738376, #273948);
}

.current-project {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}

.current-media {
  overflow: hidden;
  min-height: 460px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.current-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.current-copy p {
  color: var(--steel);
  font-size: 1.04rem;
  line-height: 1.75;
}

.progress-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  padding: 18px;
  background: #f7f8f7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.progress-ring {
  display: grid;
  place-items: center;
  width: 116px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #f7f8f7 0 58%, transparent 59%),
    conic-gradient(from -90deg, var(--red) 0 48%, #d8dee5 48% 100%);
}

.progress-ring span {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.progress-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 1rem;
}

.progress-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.project-facts {
  display: grid;
  gap: 1px;
  margin: 28px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-facts div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px;
  background: #f7f8f7;
}

.project-facts dt {
  color: var(--red);
  font-weight: 900;
}

.project-facts dd {
  margin: 0;
  color: var(--steel);
}

.record {
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.major-works {
  background: var(--white);
}

.works-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(24, 33, 44, 0.08);
}

.works-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: var(--white);
}

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

.works-table th {
  color: var(--white);
  background: var(--steel);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.works-table td:first-child {
  width: 24%;
  font-weight: 800;
}

.works-table td:last-child {
  width: 18%;
  color: var(--blue);
  font-weight: 800;
}

.record .section-kicker,
.record .record-copy p {
  color: #d9e3e4;
}

.record-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.record-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 92px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.record-list strong {
  color: #f26d72;
  font-size: 1.25rem;
}

.people {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  background: #edf1ef;
}

.people p {
  color: var(--steel);
  font-size: 1.04rem;
  line-height: 1.75;
}

.purpose-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.purpose-grid article {
  padding: 26px;
  background: var(--white);
}

.purpose-grid strong {
  color: var(--red);
  font-size: 1.2rem;
}

.purpose-grid h3 {
  margin: 18px 0 10px;
}

.purpose-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.leadership {
  background: var(--white);
}

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

.leader-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 50px rgba(24, 33, 44, 0.08);
}

.leader-mark {
  display: grid;
  place-items: center;
  width: 96px;
  aspect-ratio: 1;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 8px;
  font-size: 1.75rem;
  font-weight: 900;
}

.leader-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leader-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.linkedin-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, #0a66c2, #12324d);
}

.linkedin-band span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #d8ecff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.linkedin-band h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.contact {
  background: var(--white);
}

.contact-copy {
  align-self: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-details article {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-details strong {
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details span {
  color: var(--ink);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input[name="_honey"] {
  display: none;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: var(--steel);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.site-footer p strong {
  color: var(--ink);
}

.site-footer img {
  width: 92px;
}

.site-footer span {
  display: inline-flex;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-header.menu-open .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: rgba(247, 248, 247, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-open .nav a {
    padding: 14px 0;
  }

  .hero,
  .two-column,
  .contact,
  .record {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
    min-height: 430px;
  }

  .service-grid,
  .project-grid,
  .gallery-grid,
  .current-project,
  .people,
  .leader-grid,
  .linkedin-band,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-feature {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 148px;
  }

  h1 {
    font-size: 3rem;
  }

  .capability-rail span {
    min-height: 36px;
  }

  .service-grid article {
    min-height: 220px;
  }

  .contact-form {
    padding: 18px;
  }

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

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

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

  .site-footer,
  .site-footer div {
    display: grid;
  }
}
