:root {
  --black: #08090a;
  --panel: #111317;
  --gunmetal: #23272d;
  --line: #343940;
  --gold: #d4a72c;
  --cream: #f2eee3;
  --muted: #9da2a8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-kerning: normal;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

a { color: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 162px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

nav { display: flex; gap: 30px; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
nav a:hover, nav a:focus-visible { color: var(--gold); }

.hero {
  min-height: 690px;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 110px 0 70px;
  position: relative;
  overflow: hidden;
}

.eyebrow, .section-heading > p {
  color: var(--gold);
  font-size: .76rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
}

h1 {
  margin: 18px 0 26px;
  font-size: clamp(4.4rem, 11vw, 9.6rem);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

h1 span { color: var(--gold); }

.hero > p {
  width: min(540px, 100%);
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 22px;
  background: var(--gold);
  color: #08090a;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: .78rem;
}

.button:hover, .button:focus-visible { background: var(--cream); }

.signal {
  position: absolute;
  right: 3%;
  bottom: 85px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  opacity: .55;
}

.signal span {
  width: 12px;
  background: var(--gold);
}
.signal span:nth-child(1) { height: 44px; }
.signal span:nth-child(2) { height: 92px; }
.signal span:nth-child(3) { height: 152px; }
.signal span:nth-child(4) { height: 105px; }
.signal span:nth-child(5) { height: 64px; }

.projects {
  background: var(--panel);
  padding: 100px max(20px, calc((100vw - 1180px) / 2));
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}

h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -.018em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.project-grid article {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.project-grid article:first-child { padding-left: 0; }
.project-grid article:last-child { border-right: 0; }
.number { color: var(--gold); font-size: .78rem; }
h3 {
  margin: 60px 0 14px;
  font-size: 1.65rem;
  letter-spacing: -.012em;
}
.project-grid p { color: var(--muted); max-width: 310px; }
.status {
  margin-top: auto;
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about {
  width: min(900px, calc(100% - 40px));
  margin: auto;
  padding: 130px 0;
}

.about h2 { margin: 20px 0 35px; }
.about > p:last-child {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 700px;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  min-height: 120px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .065em;
}

footer img { width: 34px; height: 34px; object-fit: contain; }
footer p:last-child { margin-left: auto; }

@media (max-width: 760px) {
  .site-header { height: 76px; }
  .brand img { width: 130px; height: 46px; }
  nav { gap: 16px; }
  nav a { font-size: .68rem; }
  .hero { min-height: 620px; padding-top: 95px; }
  .signal { right: 0; opacity: .25; }
  .section-heading { display: block; }
  .section-heading > p { margin-bottom: 24px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-grid article,
  .project-grid article:first-child {
    min-height: 265px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  h3 { margin-top: 40px; }
  footer { flex-wrap: wrap; padding: 30px 0; }
  footer p:last-child { width: 100%; margin: 0; }
}
