:root {
  color-scheme: light;
  --ink: #111111;
  --paper: #f4f4f0;
  --white: #ffffff;
  --coral: #ff5a45;
  --cyan: #52d9e8;
  --line: #c9c9c3;
  --muted: #676762;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: 0; }
a { color: inherit; }
.site-header { position: fixed; z-index: 20; top: 0; left: 0; width: 100%; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 4vw; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.28); transition: color .25s ease, background .25s ease, border-color .25s ease; }
.site-header.is-solid { color: var(--ink); background: rgba(244,244,240,.96); border-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; text-decoration: none; }
.brand-mark { width: 24px; height: 20px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: end; gap: 2px; }
.brand-mark i { display: block; background: currentColor; }
.brand-mark i:nth-child(1) { height: 8px; }
.brand-mark i:nth-child(2) { height: 20px; }
.brand-mark i:nth-child(3) { height: 13px; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { font-size: 14px; text-decoration: none; }
nav a:hover { text-decoration: underline; text-underline-offset: 5px; }

.hero { position: relative; height: 88svh; min-height: 640px; overflow: hidden; color: var(--white); background: #181716; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); animation: settle 1.8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-shade { position: absolute; inset: 0; background: rgba(0,0,0,.2); box-shadow: inset 50vw 0 180px rgba(0,0,0,.48); }
.hero-content { position: absolute; z-index: 2; left: 4vw; bottom: 10%; width: min(700px, 78vw); }
.kicker, .section-index, .project-type { margin: 0; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.hero h1 { margin: 18px 0 20px; font-size: 96px; line-height: .88; font-weight: 760; }
.hero-copy { max-width: 520px; margin: 0 0 30px; font-size: 21px; line-height: 1.45; }
.hero-link { display: inline-flex; gap: 16px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid currentColor; text-decoration: none; font-weight: 650; }
.hero-link span { color: var(--coral); font-size: 22px; }
.hero-status { position: absolute; z-index: 2; right: 4vw; bottom: 5%; display: flex; align-items: center; gap: 10px; font-size: 12px; text-transform: uppercase; }
.hero-status time { min-width: 42px; }
.status-dot { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }

.manifesto, .work, .approach, .capability-grid, .contact, footer { padding-left: 4vw; padding-right: 4vw; }
.manifesto { min-height: 72vh; display: grid; grid-template-columns: 1fr 2fr 1.1fr; gap: 5vw; align-items: start; padding-top: 110px; padding-bottom: 110px; }
.manifesto h2, .section-heading h2, .approach h2, .contact h2 { margin: 0; font-size: 66px; line-height: 1.02; font-weight: 690; }
.manifesto-copy { padding-top: 8px; }
.manifesto-copy p { margin: 0 0 28px; font-size: 18px; line-height: 1.55; }

.work { padding-top: 105px; padding-bottom: 120px; background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr 1.1fr; gap: 5vw; align-items: end; padding-bottom: 70px; }
.section-heading > p:last-child { margin: 0; line-height: 1.5; }
.project { display: grid; grid-template-columns: 100px 1.1fr 1fr 60px; gap: 3vw; align-items: center; min-height: 190px; border-top: 1px solid var(--line); }
.project:last-child { border-bottom: 1px solid var(--line); }
.project-number { width: 68px; aspect-ratio: 1; display: grid; place-items: center; background: var(--coral); font-size: 28px; font-weight: 750; transition: transform .25s ease; }
.project-number.cyan { background: var(--cyan); }
.project-number.dark { color: var(--white); background: var(--ink); }
.project:hover .project-number { transform: rotate(5deg); }
.project h3 { margin: 5px 0 0; font-size: 38px; }
.project > p { color: var(--muted); line-height: 1.5; }
.project-year { font-variant-numeric: tabular-nums; }

.approach { display: grid; grid-template-columns: 1fr 1.6fr; gap: 7vw; padding-top: 120px; padding-bottom: 120px; background: var(--cyan); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 55px 150px 1fr; gap: 22px; padding: 30px 0; border-top: 1px solid rgba(17,17,17,.45); }
.steps li:last-child { border-bottom: 1px solid rgba(17,17,17,.45); }
.steps span { font-size: 12px; font-weight: 700; }
.steps strong { font-size: 24px; }
.steps p { margin: 0; line-height: 1.55; }

.capabilities { overflow: hidden; background: var(--ink); color: var(--white); }
.ticker { display: flex; width: max-content; padding: 24px 0; border-bottom: 1px solid #4b4b48; font-size: 24px; white-space: nowrap; animation: ticker 22s linear infinite; }
.ticker div { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.ticker i { width: 9px; height: 9px; background: var(--coral); }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding-top: 85px; padding-bottom: 100px; }
.capability-grid p { min-height: 100px; margin: 0; padding: 20px 12px 20px 0; border-top: 1px solid #4b4b48; font-size: 18px; }
.capability-grid .section-index { grid-column: 1 / -1; min-height: 70px; border: 0; }

.contact { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; padding-top: 100px; padding-bottom: 100px; background: var(--coral); }
.contact h2 { margin-top: 35px; }
.contact > a { width: fit-content; max-width: 100%; margin: 45px 0 80px; font-size: 34px; font-weight: 650; text-decoration: none; border-bottom: 2px solid var(--ink); overflow-wrap: anywhere; }
.contact > p:last-child { margin: 0; }
footer { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--ink); color: var(--white); font-size: 13px; }
footer a { text-decoration: none; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes settle { to { transform: scale(1); } }
@keyframes pulse { 50% { opacity: .35; } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 900px) {
  .hero h1 { font-size: 72px; }
  .manifesto, .section-heading { grid-template-columns: 1fr 2fr; }
  .manifesto-copy, .section-heading > p:last-child { grid-column: 2; }
  .manifesto h2, .section-heading h2, .approach h2, .contact h2 { font-size: 48px; }
  .project { grid-template-columns: 80px 1fr 60px; padding: 28px 0; }
  .project > p { grid-column: 2 / 4; margin: 0; }
  .approach { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  .site-header { min-height: 60px; padding: 0 20px; }
  nav { gap: 14px; }
  nav a:nth-child(2) { display: none; }
  .brand > span:last-child { font-size: 14px; }
  .hero { height: 86svh; min-height: 580px; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: rgba(0,0,0,.28); box-shadow: inset 80vw 0 100px rgba(0,0,0,.38); }
  .hero-content { left: 20px; bottom: 15%; width: calc(100% - 40px); }
  .hero h1 { font-size: 58px; }
  .hero-copy { max-width: 92%; font-size: 17px; }
  .hero-status { left: 20px; right: auto; bottom: 5%; }
  .manifesto, .section-heading, .approach { grid-template-columns: 1fr; }
  .manifesto, .work, .approach, .capability-grid, .contact, footer { padding-left: 20px; padding-right: 20px; }
  .manifesto { min-height: 0; gap: 28px; padding-top: 78px; padding-bottom: 78px; }
  .manifesto h2, .section-heading h2, .approach h2, .contact h2 { font-size: 42px; }
  .manifesto-copy, .section-heading > p:last-child { grid-column: 1; }
  .work { padding-top: 78px; padding-bottom: 90px; }
  .section-heading { gap: 24px; padding-bottom: 50px; }
  .project { grid-template-columns: 64px 1fr 45px; gap: 15px; min-height: 0; }
  .project-number { width: 52px; }
  .project h3 { font-size: 30px; }
  .approach { gap: 50px; padding-top: 80px; padding-bottom: 80px; }
  .steps li { grid-template-columns: 40px 1fr; }
  .steps li p { grid-column: 2; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); padding-top: 60px; padding-bottom: 70px; }
  .contact { min-height: 64vh; }
  .contact > a { margin: 38px 0 65px; font-size: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
