/* ============================================================
   22 CORE CONSTRUCTION — styles
   Palette from the 22 Core mark: steel blue / charcoal / concrete
   Type from current site: Montserrat (display) + Arimo (body)
   ============================================================ */

:root {
  --ink: #0e1216;
  --charcoal: #151b21;
  --graphite: #1d252d;
  --steel: #1f4e79;
  --steel-bright: #3b7bb8;
  --sky: #6fb1e4;
  --line-blue: #79b8e8;
  --concrete: #f2f4f6;
  --bone: #ffffff;
  --text: #1a2129;
  --text-soft: #5a6672;
  --text-light: rgba(255, 255, 255, 0.72);
  --border: rgba(20, 30, 40, 0.12);
  --maxw: 1280px;
  --pad: clamp(24px, 5vw, 80px);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Arimo', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4, .btn { font-family: 'Montserrat', system-ui, sans-serif; }

/* ---------- shared ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-bright);
  margin: 0 0 14px;
}
.eyebrow--light { color: var(--sky); }
/* 150% larger — carries the CTA now that the big title is gone */
.eyebrow--xl {
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0.2em;
  margin: 0 0 20px;
}

.section-title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-title--sm { font-size: clamp(24px, 3vw, 36px); }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head--sub { margin: clamp(56px, 8vw, 96px) 0 clamp(28px, 4vw, 44px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 250ms ease-out, color 250ms ease-out, border-color 250ms ease-out, transform 250ms var(--ease-out);
}
.btn--primary { background: var(--steel); color: #fff; }
.btn--primary:hover { background: var(--steel-bright); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn--sm { padding: 10px 20px; font-size: 11px; }
.btn--lg { padding: 18px 38px; }

/* ---------- reveal on scroll (--d staggers siblings) ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   PRELOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 999;
  background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 700ms ease, visibility 700ms;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
/* 22logo.png has a transparent field, so it sits directly on the white loader */
.loader__logo {
  width: clamp(200px, 26vw, 320px);
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.9);
  animation: loaderIn 1s var(--ease-out) forwards;
}
@keyframes loaderIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
.loader__track { width: 180px; height: 2px; margin-top: 30px; background: rgba(14, 18, 22, 0.1); overflow: hidden; }
.loader__fill { display: block; width: 0%; height: 100%; background: var(--steel-bright); transition: width 200ms ease-out; }
.loader__label {
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(14, 18, 22, 0.45);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 300ms ease;
}
.nav.scrolled { box-shadow: 0 6px 30px rgba(10, 20, 30, 0.08); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 40px);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav__links > a, .nav__drop-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--text);
  transition: color 200ms ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav__links > a:hover, .nav__drop:hover .nav__drop-label { color: var(--steel-bright); }
.nav__drop { position: relative; }
.nav__drop-label svg { width: 9px; height: 6px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.nav__dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 18px 44px rgba(10, 20, 30, 0.14);
  min-width: 180px; padding: 10px 0;
  opacity: 0; visibility: hidden;
  transition: opacity 220ms ease, transform 220ms var(--ease-out), visibility 220ms;
}
.nav__drop:hover .nav__dropdown, .nav__drop:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block; padding: 9px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: var(--text-soft);
  transition: color 180ms, background 180ms;
}
.nav__dropdown a:hover { color: var(--steel); background: var(--concrete); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__social svg { width: 19px; height: 19px; fill: none; stroke: var(--text-soft); stroke-width: 1.7; transition: stroke 200ms; }
.nav__social svg .dot { fill: var(--text-soft); stroke: none; }
.nav__social:hover svg { stroke: var(--steel-bright); }
.nav__social:hover svg .dot { fill: var(--steel-bright); }
.nav__burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform 300ms var(--ease-out), opacity 200ms; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 10px 0 18px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  padding: 13px clamp(18px, 5vw, 40px);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--text);
}
.nav__mobile-cta { color: var(--steel-bright) !important; }

/* ============================================================
   VIDEO HERO — full-bleed, no text, no overlay
   ============================================================ */
.video-hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
}
.video-hero__frame {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  /* 16:9 source — oversize the iframe so it covers the hero from either dimension */
  aspect-ratio: 16 / 9;
  width: max(100vw, calc(100svh * 16 / 9));
  height: max(100svh, calc(100vw * 9 / 16));
  border: 0;
  pointer-events: none;
}

/* ============================================================
   STATEMENT (formerly hero — dark, crane line-art, lowered text)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero--statement {
  align-items: flex-end;
  min-height: 50svh;
  background:
    radial-gradient(ellipse 75% 60% at 24% 24%, rgba(59, 123, 184, 0.16) 0%, rgba(59, 123, 184, 0) 60%),
    radial-gradient(ellipse 70% 55% at 80% 85%, rgba(31, 78, 121, 0.18) 0%, rgba(31, 78, 121, 0) 58%),
    var(--ink);
}
.hero--statement .hero__content {
  padding-top: 48px;
  padding-bottom: clamp(56px, 9vh, 100px);
  /* crane now builds on the left, so the copy mirrors to the right */
  text-align: right;
}
.hero--statement .hero__sub { margin-left: auto; margin-right: 0; }
.hero--statement .hero__cta { justify-content: flex-end; }
/* half-scale type to match the half-height section */
.hero--statement .hero__title { font-size: clamp(26px, 3.8vw, 52px); }
.hero--statement .hero__kicker { margin-bottom: 14px; }
.hero--statement .hero__sub { margin: 16px 0 26px auto; font-size: clamp(15px, 1.2vw, 17px); }
.hero--statement .hero__crane { height: min(42vh, 340px); }
.hero--statement .hero__measure span { height: 18px; }
.hero--statement .hero__measure span:nth-child(odd) { height: 10px; }
.hero__crane {
  position: absolute; left: clamp(-40px, 2vw, 60px); bottom: 0;
  height: min(78vh, 640px); width: auto;
  opacity: 0.55;
  pointer-events: none;
}
.c-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawLine 10s ease-in-out infinite;
}
.c-thin { stroke-width: 0.9; stroke: rgba(255, 255, 255, 0.55); }
.c-accent { stroke: var(--line-blue); }
@keyframes drawLine {
  0% { stroke-dashoffset: 1200; opacity: 0; }
  5% { opacity: 1; }
  38% { stroke-dashoffset: 0; opacity: 1; }
  78% { stroke-dashoffset: 0; opacity: 1; }
  92%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 120px var(--pad) 100px;
}
.hero__kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 22px;
}
.hero__title {
  margin: 0;
  font-size: clamp(44px, 7.6vw, 104px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
}
.hero__line { display: block; }
.hero__title em { font-style: normal; color: var(--line-blue); }
.hero__sub {
  max-width: 460px;
  margin: 26px 0 38px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-light);
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 var(--pad) 26px;
}
.hero__measure { display: flex; gap: clamp(24px, 4vw, 56px); }
.hero__measure span { width: 1px; height: 26px; background: rgba(255, 255, 255, 0.35); }
.hero__measure span:nth-child(odd) { height: 14px; align-self: flex-end; }
.scroll-cue {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.scroll-cue svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; animation: cueBob 1.8s ease-in-out infinite; }
@keyframes cueBob { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }

/* ============================================================
   MANIFESTO (scroll-color text)
   ============================================================ */
.manifesto { padding: clamp(40px, 5.5vw, 75px) var(--pad); background: var(--bone); }
.manifesto__inner { max-width: 1020px; margin: 0 auto; text-align: center; }
.manifesto__text {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.01em;
  text-align: left;
}
.manifesto__text span { color: rgb(200, 205, 210); transition: color 240ms ease-out; }
.manifesto__text span.is-lit { color: var(--ink); }
.manifesto__text span.is-lit.w-key { color: var(--steel-bright); }

/* ============================================================
   SCROLL TO BUILD
   ============================================================ */
.scrolly { position: relative; height: 520vh; background: var(--ink); }
.pin { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }

.build-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.stage__scrim {
  position: absolute; inset: 0; z-index: 6; pointer-events: none;
  background:
    linear-gradient(to top, rgba(8, 12, 16, 0.72) 0%, rgba(8, 12, 16, 0) 30%),
    linear-gradient(to bottom, rgba(8, 12, 16, 0.6) 0%, rgba(8, 12, 16, 0) 24%);
}

.build-overlay {
  position: absolute; inset: 0; z-index: 7;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(72px + clamp(20px, 4vh, 44px)) var(--pad) clamp(22px, 4vh, 40px);
  pointer-events: none;
}
.build-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--sky); margin: 0 0 10px;
}
.build-title {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; line-height: 1;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.build-sub {
  margin: 14px 0 0;
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--text-light);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.6);
}
/* intro fades away once the scrub begins, like a film title */
.build-top { transition: opacity 500ms ease, transform 500ms var(--ease-out); }
.build-top.is-away { opacity: 0; transform: translateY(-18px); pointer-events: none; }

.build-foot { display: flex; flex-direction: column; gap: 12px; }
.build-stages { display: flex; justify-content: space-between; gap: 8px; }
.bstage {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  transition: color 300ms ease;
}
.bstage.is-active { color: var(--line-blue); }
.bstage.is-done { color: rgba(255, 255, 255, 0.8); }
.build-progress { height: 2px; background: rgba(255, 255, 255, 0.18); }
.build-progress span { display: block; width: 0%; height: 100%; background: linear-gradient(90deg, var(--steel-bright), var(--line-blue)); box-shadow: 0 0 12px rgba(121, 184, 232, 0.7); }
.scroll-cue--build { align-self: center; margin-top: 4px; transition: opacity 400ms ease; }
.scroll-cue--build.is-hidden { opacity: 0; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--charcoal); padding: clamp(56px, 7vw, 96px) var(--pad); }
.stats__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat { text-align: center; }
.stat__n {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 800; letter-spacing: -0.02em;
  color: #fff; line-height: 1;
}
.stat__suffix { font-family: 'Montserrat', sans-serif; font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: var(--steel-bright); }
.stat__l {
  display: block; margin-top: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   ABOUT · TIMELINE — fast scroll scrub 2008 -> 2026
   ============================================================ */
.tl { position: relative; height: 320vh; background: var(--ink); }
.tl__pin {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(59, 123, 184, 0.14) 0%, rgba(59, 123, 184, 0) 62%),
    var(--ink);
}
.tl__eyebrow { margin-bottom: 6px; }
/* stage pairs the big year with a crossfading photo of that milestone */
/* fixed left column for the year so every date lines up and the
   media can never encroach on it */
.tl__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  width: min(1120px, 92vw);
}
.tl__year {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(60px, 11vw, 168px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-align: left;
  justify-self: start;
}
.tl__frames {
  position: relative;
  flex: 1 1 auto;
  max-width: 620px;
  aspect-ratio: 4 / 3;
}
.tlf {
  position: absolute; inset: 0; margin: 0;
  overflow: hidden; /* clips the oversized 16:9 film to the frame */
  opacity: 0;
  /* visibility too: a cross-origin iframe keeps painting through
     ancestor opacity:0, which let the film bleed over other years */
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 500ms ease, transform 700ms var(--ease-out), visibility 0s linear 500ms;
  pointer-events: none;
}
.tlf.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 500ms ease, transform 700ms var(--ease-out), visibility 0s;
}
.tlf img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* 16:9 film covering the 4:3 frame */
.tlf iframe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 134%; aspect-ratio: 16 / 9; height: auto;
  border: 0; pointer-events: none;
}
.tlf__none {
  display: block; width: 100%; height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(rgba(180, 215, 245, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 215, 245, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
}
@media (max-width: 760px) {
  .tl__stage { grid-template-columns: 1fr; gap: 18px; }
  .tl__frames { width: 100%; max-width: none; }
}
.tl__year.is-flip { animation: yearFlip 260ms var(--ease-out); }
@keyframes yearFlip {
  0% { opacity: 0.25; transform: translateY(16px) scale(0.985); }
  100% { opacity: 1; transform: none; }
}
.tl__cap {
  margin: 10px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sky);
  min-height: 1.4em;
  transition: opacity 250ms ease;
}
.tl__railwrap {
  position: relative;
  width: min(920px, 86vw);
  margin-top: clamp(36px, 6vh, 64px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
  padding: 18px 0;
}
.tl__rail {
  display: flex; gap: clamp(56px, 9vw, 120px);
  width: max-content;
  will-change: transform;
}
.tl__tick {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  transition: color 250ms ease;
  padding-top: 16px;
}
.tl__tick::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  width: 1px; height: 10px;
  background: rgba(255, 255, 255, 0.3);
}
.tl__tick.is-active { color: var(--line-blue); }
.tl__tick.is-past { color: rgba(255, 255, 255, 0.7); }
.tl__marker {
  position: absolute; left: 50%; top: 8px;
  width: 2px; height: 14px; margin-left: -1px;
  background: var(--line-blue);
  box-shadow: 0 0 12px rgba(121, 184, 232, 0.8);
}
.tl .scroll-cue--build { margin-top: clamp(28px, 5vh, 48px); }

/* ============================================================
   ABOUT · USA BAND + TEAM
   ============================================================ */
.usa { padding: clamp(70px, 9vw, 120px) 0; background: var(--bone); }
.usa__inner { max-width: 860px; }
.usa__p { margin: 0; font-size: clamp(16px, 1.5vw, 19px); color: var(--text-soft); max-width: 640px; }

.team { padding: clamp(80px, 10vw, 140px) 0; background: var(--concrete); }

/* leadership bios — fixed-width headshot beside long-form copy.
   Every photo renders at the same size in both tiers; the premier tier
   is distinguished by emphasis, not by scale. */
.bios { display: flex; flex-direction: column; gap: clamp(44px, 6vw, 88px); }
.bio {
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.bio__media {
  width: 300px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
  border-top: 3px solid var(--steel);
}

/* premier tier — founder and senior PM */
.bios--lead { margin-bottom: clamp(8px, 1vw, 16px); }
.bio--lead .bio__media { border-top-color: var(--steel-bright); }
.bio--lead .bio__role { color: var(--steel); font-size: 12.5px; }
.bio--lead .bio__copy h3 { font-size: clamp(28px, 3.2vw, 42px); }
.bio--lead .bio__copy p { font-size: 16.5px; }
.bio__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 22%;
  transition: transform 800ms var(--ease-out);
}
.bio:hover .bio__media img { transform: scale(1.03); }
.bio__role {
  display: block; margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--steel-bright);
}
.bio__copy h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800; letter-spacing: -0.01em; text-transform: uppercase;
}
.bio__copy p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.7; color: var(--text-soft); }
.bio__copy p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .bio { grid-template-columns: 1fr; }
  .bio__media { width: min(300px, 70vw); }
}
@media (max-width: 760px) {
  .tl { height: 260vh; }
}

/* nav current page marker */
.nav__links a.is-active, .nav__links .nav__drop-label.is-active { color: var(--steel-bright); }

/* ============================================================
   PORTFOLIO LANDING PAGES
   ============================================================ */
/* project tiles — names are baked into the artwork, so no captions */
.pfp-wrap { padding: clamp(70px, 9vw, 120px) 0; background: var(--bone); }
.pfp__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.pfp { margin: 0; overflow: hidden; background: var(--concrete); }
.pfp img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block;
  transition: transform 700ms var(--ease-out);
}
.pfp:hover img { transform: scale(1.04); }

/* navy sub-copy for light sections — doubled class so it beats the
   white .section-sub base regardless of source order */
.section-sub.section-sub--dark { color: var(--steel); margin-top: 14px; max-width: 640px; }

/* consulting services list */
.consult { padding: clamp(80px, 10vw, 140px) 0; background: var(--bone); }
.consult__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 44px) clamp(32px, 4vw, 64px);
}
.citem { padding-top: 20px; border-top: 1px solid rgba(20, 30, 40, 0.18); }
.citem h3 { margin: 10px 0 8px; font-size: 18px; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; }
.citem p { margin: 0; font-size: 15px; color: var(--text-soft); }

/* philanthropy — featured project video */
.feat {
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    radial-gradient(ellipse 70% 60% at 22% 30%, rgba(59, 123, 184, 0.14) 0%, rgba(59, 123, 184, 0) 60%),
    var(--ink);
}
.feat__inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
}
.feat__p { margin: 0 0 18px; font-size: clamp(16px, 1.4vw, 18px); color: var(--text-light); max-width: 520px; }
.feat__hint {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sky);
}
.feat__video { width: min(340px, 100%); justify-self: center; }
.vsound {
  position: absolute; right: 12px; bottom: 12px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(10, 16, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 250ms ease, background 250ms ease;
}
.vsound:hover { border-color: var(--line-blue); background: rgba(31, 78, 121, 0.6); }
.vsound svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.vsound .vs-body { fill: #fff; stroke: none; }
.vsound .vs-waves { display: none; }
.vsound.is-on .vs-waves { display: block; }
.vsound.is-on .vs-slash { display: none; }
@media (max-width: 1024px) {
  .feat__inner { grid-template-columns: 1fr; }
  .feat__video { justify-self: start; }
}

/* consulting — Avenir featured engagement */
.avenir__roles {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.avenir__roles li {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sky);
  border: 1px solid rgba(121, 184, 232, 0.4);
  padding: 8px 14px;
}
.avenir__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
  margin-top: clamp(32px, 4vw, 52px);
}
.ag { margin: 0; overflow: hidden; background: var(--charcoal); }
.ag img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; transition: transform 700ms var(--ease-out); }
.ag--wide { grid-column: span 2; }
.ag--wide img { aspect-ratio: 21 / 9; }
.ag:hover img { transform: scale(1.03); }

/* philanthropy — sponsorship partnerships */
.partners { padding: clamp(80px, 10vw, 140px) 0; background: var(--bone); }
.partners__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 36px); }
.pcard { background: var(--concrete); border-left: 3px solid var(--steel); padding: clamp(26px, 3vw, 40px); }
.pcard__tag {
  display: block; margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--steel-bright);
}
.pcard h3 { margin: 0 0 12px; font-size: 21px; font-weight: 800; letter-spacing: 0.01em; text-transform: uppercase; }
.pcard p { margin: 0; font-size: 15px; color: var(--text-soft); }

@media (max-width: 760px) {
  .avenir__grid { grid-template-columns: 1fr; }
  .ag--wide { grid-column: auto; }
  .partners__grid { grid-template-columns: 1fr; }
}

/* philanthropy */
.quoteband { padding: clamp(60px, 8vw, 110px) 0; background: var(--charcoal); }
.quoteband__q {
  margin: 0; max-width: 900px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; text-transform: uppercase;
  color: #fff;
}
.quoteband__q em { font-style: normal; color: var(--line-blue); }
.give__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 48px); }

@media (max-width: 1024px) {
  .pfp__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .pfp__grid { grid-template-columns: 1fr; }
  .consult__list { grid-template-columns: 1fr; }
  .give__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROJECT PAGE TEMPLATE (7930 Residence et al.)
   ============================================================ */
.phero {
  position: relative;
  min-height: 86svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.phero__bg { position: absolute; inset: 0; }
.phero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: pheroKen 16s ease-out forwards;
}
@keyframes pheroKen { from { transform: scale(1.1); } to { transform: scale(1); } }
/* subtle corner gradient keeps the title legible over any photo */
.phero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 85% at 100% 100%, rgba(10, 16, 22, 0.85) 0%, rgba(10, 16, 22, 0.55) 38%, rgba(10, 16, 22, 0) 74%),
    linear-gradient(to top, rgba(10, 16, 22, 0.35) 0%, rgba(10, 16, 22, 0) 30%);
}
.phero__content {
  position: relative; z-index: 2;
  max-width: var(--maxw); width: 100%;
  margin: 0 auto;
  padding: 140px var(--pad) clamp(72px, 11vh, 120px);
  text-align: right;
}
/* project title runs half the size of the standard hero, anchored bottom right */
.phero .hero__title { font-size: clamp(22px, 3.8vw, 52px); }
.phero .hero__kicker { margin-bottom: 12px; }
.phero .hero__sub {
  max-width: 420px;
  margin: 12px 0 0 auto;
  font-size: clamp(14px, 1.2vw, 16px);
}
.phero__back { text-decoration: none; color: inherit; }
.phero__back:hover { color: #fff; }

.pdetails { padding: clamp(80px, 10vw, 140px) 0; background: var(--concrete); }
.pdetails__inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 5vw, 90px);
  align-items: start;
}
.pdetails__p { margin: 0; font-size: clamp(16px, 1.4vw, 18px); color: var(--text-soft); }
.pdetails__list {
  list-style: none; margin: 8px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.pdetails__list li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid rgba(20, 30, 40, 0.14);
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
}
.pdetails__list li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 10px; height: 2px; margin-top: -1px;
  background: var(--steel-bright);
}

.pgal-wrap { padding: clamp(80px, 10vw, 140px) 0; background: var(--bone); }
.pgal { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.pg { margin: 0; overflow: hidden; background: var(--concrete); }
.pg img {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 3; object-fit: cover; display: block;
  transition: transform 700ms var(--ease-out);
}
.pg--wide { grid-column: span 2; }
.pg--wide img { aspect-ratio: auto; height: 100%; }
.pg:hover img { transform: scale(1.03); }
.pgal__more { margin-top: clamp(32px, 4vw, 52px); text-align: center; }

@media (max-width: 1024px) {
  .pdetails__inner { grid-template-columns: 1fr; }
  .pgal { grid-template-columns: repeat(2, 1fr); }
  .pg--wide { grid-column: span 2; }
}
@media (max-width: 760px) {
  .pgal { grid-template-columns: 1fr; }
  .pg--wide { grid-column: auto; }
  .pdetails__list { grid-template-columns: 1fr; }
}

/* ============================================================
   CURRENT BUILDS — hover-to-play video carousel
   ============================================================ */
.current {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  overflow: hidden;
}
.section-title--light { color: #fff; }
.section-head--tight { margin-bottom: clamp(24px, 3vw, 40px); }
.section-sub {
  margin: 4px 0 0;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-light);
  max-width: 520px;
}

.cur { position: relative; }
.cur__viewport {
  overflow: hidden;
  /* fade the cards out at both edges of the screen */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.cur__track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  width: max-content;
  will-change: transform;
}

.vcard { flex: 0 0 auto; width: clamp(230px, 23vw, 330px); margin: 0; }
.vcard__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
}
.vcard__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out), opacity 400ms ease;
  opacity: 0.88;
}
.vcard:hover .vcard__media video { transform: scale(1.03); opacity: 1; }
.vcard__hint {
  position: absolute; left: 14px; bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(10, 16, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: opacity 300ms ease;
  pointer-events: none;
}
.vcard.is-playing .vcard__hint { opacity: 0; }
.vcard figcaption {
  margin-top: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.vcard__num { color: var(--line-blue); margin-right: 10px; font-weight: 800; }

.cur__arrow {
  position: absolute; top: 50%; transform: translateY(-72%);
  z-index: 3;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(14, 18, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 250ms ease, background 250ms ease, transform 250ms var(--ease-out);
}
.cur__arrow svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cur__arrow:hover { border-color: var(--line-blue); background: rgba(31, 78, 121, 0.55); transform: translateY(-72%) scale(1.06); }
.cur__arrow--prev { left: clamp(10px, 2.5vw, 40px); }
.cur__arrow--next { right: clamp(10px, 2.5vw, 40px); }

@media (max-width: 760px) {
  .vcard { width: 58vw; }
  .cur__arrow { width: 44px; height: 44px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: clamp(80px, 10vw, 140px) 0; background: var(--bone); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.svc { display: block; text-decoration: none; color: inherit; }
.svc__media { aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 20px; background: var(--concrete); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out), filter 700ms ease; }
.svc:hover .svc__media img { transform: scale(1.05); }
.svc h3 {
  margin: 0 0 8px;
  font-size: 19px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 250ms ease;
}
.svc:hover h3 { color: var(--steel-bright); }
.svc p { margin: 0 0 12px; font-size: 15px; color: var(--text-soft); }
.svc__more {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel);
  opacity: 0.75; transition: opacity 250ms, transform 250ms var(--ease-out);
  display: inline-block;
}
.svc:hover .svc__more { opacity: 1; transform: translateX(4px); }

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--concrete);
}
.approach__values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.val {
  background: #fff;
  padding: clamp(28px, 3vw, 44px);
  border-top: 3px solid var(--steel);
}
.val__icon { width: 52px; height: 52px; margin-bottom: 18px; }
.v-line { fill: none; stroke: var(--ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.v-accent { stroke: var(--steel-bright); }
.val h3 { margin: 0 0 10px; font-size: 20px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.val p { margin: 0; font-size: 15.5px; color: var(--text-soft); }

.phases {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.6vw, 40px);
  counter-reset: phase;
}
.phase { position: relative; padding-top: 22px; border-top: 1px solid rgba(20, 30, 40, 0.22); }
.phase__n {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.2em;
  color: var(--steel-bright);
}
.phase h4 { margin: 10px 0 8px; font-size: 17px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; }
.phase p { margin: 0; font-size: 14.5px; color: var(--text-soft); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { padding: clamp(80px, 10vw, 140px) 0; background: var(--bone); }
.pf__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 26px; }
.pf { display: block; text-decoration: none; color: inherit; }
.pf__media { aspect-ratio: 5 / 4; overflow: hidden; margin-bottom: 16px; background: var(--concrete); }
.pf__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.pf:hover .pf__media img { transform: scale(1.05); }
.pf h3 { margin: 0 0 4px; font-size: 18px; font-weight: 700; letter-spacing: 0.02em; transition: color 250ms; }
.pf:hover h3 { color: var(--steel-bright); }
.pf__phase { color: var(--text-soft); font-weight: 600; }
.pf__meta {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-soft);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: clamp(80px, 10vw, 140px) 0; background: var(--charcoal); color: #fff; }
.about .section-title { color: #fff; }
.about__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.about__copy p { color: var(--text-light); font-size: 16.5px; }
.about__team { display: flex; flex-direction: column; gap: 8px; }
.tm { padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.tm__role {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sky);
}
.tm h4 { margin: 8px 0 8px; font-size: 21px; font-weight: 800; letter-spacing: 0.01em; color: #fff; }
.tm p { margin: 0; font-size: 15px; color: var(--text-light); }

/* ============================================================
   CTA — Let's Build (animated construction elevation)
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 28% 28%, rgba(59, 123, 184, 0.2) 0%, rgba(59, 123, 184, 0) 62%),
    radial-gradient(ellipse 70% 60% at 78% 82%, rgba(31, 78, 121, 0.22) 0%, rgba(31, 78, 121, 0) 60%),
    var(--ink);
  text-align: center;
  padding: clamp(120px, 17vw, 210px) var(--pad);
}
.cta__svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.cta-grid line { stroke: rgba(255, 255, 255, 0.5); stroke-width: 0.5; opacity: 0.07; }
.plan-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: drawPlan 24s ease-in-out infinite;
}
.plan-line--accent { stroke: rgba(121, 184, 232, 0.75); }
.plan-line.c-thin { stroke-width: 0.65; stroke: rgba(255, 255, 255, 0.4); }
@keyframes drawPlan {
  0% { stroke-dashoffset: 2400; opacity: 0; }
  5% { opacity: 0.7; }
  45% { stroke-dashoffset: 0; opacity: 0.7; }
  82% { stroke-dashoffset: 0; opacity: 0.7; }
  95%, 100% { stroke-dashoffset: 2400; opacity: 0; }
}
.plan-text {
  fill: rgba(255, 255, 255, 0.42);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeText 24s ease-in-out infinite;
}
@keyframes fadeText {
  0%, 32% { opacity: 0; }
  42%, 78% { opacity: 0.75; }
  88%, 100% { opacity: 0; }
}
.cta__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(8, 12, 16, 0.3) 0%, rgba(8, 12, 16, 0.78) 78%, rgba(8, 12, 16, 0.92) 100%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.cta__title {
  margin: 0 0 24px;
  font-size: clamp(40px, 6.6vw, 86px);
  font-weight: 900; letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; line-height: 1.02;
}
.cta__title em { font-style: normal; color: var(--line-blue); }
.cta__sub { max-width: 520px; margin: 0 auto 44px; color: var(--text-light); font-size: 17px; }
.cta__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0a0e12; color: rgba(255, 255, 255, 0.7); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) var(--pad) clamp(36px, 4vw, 56px);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 64px);
}
.footer__logo { display: inline-block; background: #fff; padding: 12px 18px; border-radius: 5px; margin-bottom: 18px; }
.footer__logo img { height: 34px; width: auto; }
.footer__brand p { margin: 0; font-size: 14.5px; max-width: 320px; }
.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__col h4 {
  margin: 0 0 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff;
}
.footer__col a, .footer__col span { font-size: 14.5px; color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.footer__col a:hover { color: var(--line-blue); }
.footer__social { display: flex; gap: 16px; margin-top: 6px; }
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px var(--pad);
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .phases { grid-template-columns: repeat(2, 1fr); }
  .pf__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__crane { opacity: 0.32; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__social { display: none; }
  .nav__burger { display: block; }
  .nav__inner { height: 64px; }
  .brand img { height: 32px; }
  .scrolly { height: 460vh; }
  .build-overlay { padding-top: calc(64px + 18px); }
  .bstage { font-size: 8.5px; letter-spacing: 0.1em; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
  .approach__values { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .phases { grid-template-columns: 1fr; }
  .pf__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__measure { display: none; }
  .hero__crane { display: none; }
  .cta__actions .btn { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .c-line, .plan-line { animation: none; stroke-dashoffset: 0; opacity: 0.5; }
  .plan-text { animation: none; opacity: 0.6; }
  .scrolly { height: auto; }
  .pin { position: relative; height: 70vh; }
  .build-top { transition: none; }
  .scroll-cue svg { animation: none; }
}
