/* === YUVRAJ TRADING & CONSTRUCTION — BOLD INDUSTRIAL === */

:root {
  --ink: #0d0d0d;
  --char: #1a1a1a;
  --steel: #2a2a2a;
  --concrete: #c8c5bd;
  --concrete-2: #b8b4aa;
  --bone: #ebe7df;
  --paper: #f4f1ea;
  --hivis: #f0e418;
  --hivis-deep: #d6c800;
  --rust: #c2410c;
  --line: rgba(13, 13, 13, 0.12);
  --line-strong: rgba(13, 13, 13, 0.85);
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --display: 'Archivo', 'Archivo Black', sans-serif;
  --body: 'Space Grotesk', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============ CONCRETE TEXTURE ============ */
.concrete-tex {
  background-color: var(--concrete);
  background-image:
    radial-gradient(circle at 23% 17%, rgba(0,0,0,0.08) 0.5px, transparent 1.2px),
    radial-gradient(circle at 67% 73%, rgba(0,0,0,0.06) 0.5px, transparent 1.2px),
    radial-gradient(circle at 47% 47%, rgba(0,0,0,0.05) 0.5px, transparent 1px),
    radial-gradient(circle at 81% 23%, rgba(255,255,255,0.4) 0.4px, transparent 1px),
    radial-gradient(circle at 12% 89%, rgba(0,0,0,0.07) 0.6px, transparent 1.4px);
  background-size: 7px 7px, 11px 11px, 5px 5px, 9px 9px, 13px 13px;
}

.grain {
  position: relative;
}
.grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: multiply;
}

/* ============ STRUCTURAL GRID ============ */
.struct-grid {
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ============ TYPE ============ */
.display {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}
.mono { font-family: var(--mono); letter-spacing: 0.01em; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line-strong);
}
.nav-inner {
  display: flex; align-items: stretch;
  height: 64px;
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  margin: 0 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  padding: 0 20px;
  border-right: 1px solid var(--line-strong);
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-brand .mark {
  width: 28px; height: 28px;
  background: var(--ink); color: var(--hivis);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 900;
  font-size: 14px;
  transform: rotate(-3deg);
}
.nav-links { display: flex; margin-left: auto; }
.nav-link {
  display: flex; align-items: center;
  padding: 0 22px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-left: 1px solid var(--line);
  position: relative;
  transition: background 0.15s, color 0.15s;
}
.nav-link:first-child { border-left: 1px solid var(--line-strong); }
.nav-link .idx {
  font-size: 10px; opacity: 0.5; margin-right: 8px;
}
.nav-link:hover { background: var(--ink); color: var(--hivis); }
.nav-link.active { background: var(--ink); color: var(--hivis); }
.nav-cta {
  background: var(--hivis); color: var(--ink);
  padding: 0 22px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-left: 1px solid var(--line-strong);
  display: flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--ink); color: var(--hivis); }

/* ============ MARQUEE TICKER ============ */
.ticker {
  background: var(--ink); color: var(--paper);
  height: 36px;
  display: flex; align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
}
.ticker-track {
  display: flex; gap: 48px;
  animation: tickerScroll 60s linear infinite;
  white-space: nowrap;
  padding-left: 48px;
}
.ticker-item {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 16px;
}
.ticker-item .dot { width: 6px; height: 6px; background: var(--hivis); border-radius: 50%; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  border-bottom: 1px solid var(--line-strong);
  overflow: hidden;
  background: var(--ink);
}
.hero-image {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.3) 40%, rgba(13,13,13,0.85) 100%),
    linear-gradient(125deg, #6b6258 0%, #3a342d 45%, #1a1814 100%);
}
.hero-image::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.06) 38.2%, rgba(255,255,255,0.06) 42%, transparent 42.2%),
    linear-gradient(115deg, transparent 60%, rgba(0,0,0,0.25) 60.2%, rgba(0,0,0,0.25) 70%, transparent 70.2%),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(255,255,255,0.04) 80px 81px);
}
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  mix-blend-mode: overlay;
}

.hero-placeholder-label {
  position: absolute; top: 24px; right: 24px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hivis);
  border: 1px dashed var(--hivis);
  padding: 6px 10px;
  background: rgba(13,13,13,0.6);
}

.hero-inner {
  position: relative; z-index: 2;
  padding: 80px 48px 48px;
  color: var(--paper);
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 100px);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
  color: var(--hivis);
}
.hero-eyebrow .line { flex: 0 0 60px; height: 1px; background: var(--hivis); }
.hero h1.display {
  font-size: clamp(64px, 11vw, 180px);
  margin: 0;
  max-width: 14ch;
}
.hero h1 .accent { color: var(--hivis); }
.hero h1 .underline {
  background-image: linear-gradient(transparent 78%, var(--hivis) 78%, var(--hivis) 92%, transparent 92%);
}
.hero-foot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  margin-top: 48px;
}
.hero-foot .cell {
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.hero-foot .cell:first-child { padding-left: 0; border-left: none; }
.hero-foot .cell .num {
  font-family: var(--display); font-weight: 900;
  font-size: 56px; line-height: 1;
  letter-spacing: -0.04em;
}
.hero-foot .cell .num .unit { color: var(--hivis); }
.hero-foot .cell .lbl {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 8px;
  opacity: 0.7;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 24px; left: 48px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  z-index: 3;
  display: none; /* hide if overlaps */
}

/* ============ SECTION SCAFFOLDS ============ */
.section {
  padding: 96px 48px;
  border-bottom: 1px solid var(--line-strong);
}
.section.dark { background: var(--ink); color: var(--paper); }
.section.bone { background: var(--bone); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(13,13,13,0.5);
  text-transform: uppercase;
}
.section.dark .section-head .num { color: rgba(255,255,255,0.5); }
.section-head h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
}
.section-head .blurb {
  font-size: 17px;
  line-height: 1.55;
  max-width: 52ch;
  color: rgba(13,13,13,0.7);
}
.section.dark .section-head .blurb { color: rgba(255,255,255,0.7); }

/* ============ BIG NUMBERS STRIP ============ */
.bignums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
}
.bignums .cell {
  padding: 56px 32px;
  border-right: 1px solid var(--line-strong);
  position: relative;
}
.bignums .cell:last-child { border-right: none; }
.bignums .cell .num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(72px, 9vw, 140px); line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
.bignums .cell .num .unit { color: var(--hivis-deep); }
.bignums .cell .lbl {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bignums .cell .desc {
  font-size: 14px;
  color: rgba(13,13,13,0.65);
  margin-top: 8px;
  line-height: 1.4;
}

/* ============ MISSION ============ */
.mission {
  padding: 120px 48px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
.mission .label { display: flex; align-items: flex-start; gap: 12px; }
.mission .label .marker {
  width: 12px; height: 12px; background: var(--hivis);
  margin-top: 12px; flex: 0 0 12px;
}
.mission .label span {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mission p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: none;
}
.mission p .hi {
  background-image: linear-gradient(transparent 82%, var(--hivis) 82%);
}

/* ============ SERVICES ROW ============ */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
}
.svc {
  padding: 40px 28px 32px;
  border-right: 1px solid var(--line-strong);
  background: var(--paper);
  transition: background 0.2s;
  position: relative;
  min-height: 320px;
  display: flex; flex-direction: column;
}
.svc:last-child { border-right: none; }
.svc:hover { background: var(--ink); color: var(--paper); }
.svc:hover .svc-num { color: var(--hivis); }
.svc:hover .svc-arrow { color: var(--hivis); transform: translateX(4px); }
.svc-num {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(13,13,13,0.4);
  margin-bottom: 32px;
}
.svc h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
  max-width: 12ch;
}
.svc p {
  font-size: 14px; line-height: 1.55;
  opacity: 0.75;
  margin: 0;
  flex: 1;
}
.svc-arrow {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 14px;
  transition: transform 0.2s, color 0.2s;
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
}
.member {
  border-right: 1px solid var(--line-strong);
  background: var(--paper);
  display: flex; flex-direction: column;
}
.member:last-child { border-right: none; }
.member .photo {
  aspect-ratio: 4 / 5;
  background: var(--concrete);
  position: relative;
  border-bottom: 1px solid var(--line-strong);
  overflow: hidden;
}
.member .photo .placeholder-label {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--ink); color: var(--hivis);
  padding: 4px 8px;
}
.member .photo .silhouette {
  position: absolute; inset: 0;
  display: grid; place-items: end center;
  padding-bottom: 0;
}
.member .photo .silhouette svg {
  width: 60%; height: 75%;
  opacity: 0.4;
}
.member .info { padding: 24px 22px 28px; }
.member .info .role {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hivis-deep);
  margin-bottom: 10px;
}
.member .info h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.member .info .bio {
  font-size: 13px; line-height: 1.55;
  opacity: 0.7;
}
.member .info .meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(13,13,13,0.5);
}

/* ============ PORTFOLIO ============ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}
.proj {
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper);
  cursor: pointer;
  transition: background 0.2s;
  display: flex; flex-direction: column;
}
.proj:nth-child(3n) { border-right: none; }
.proj:hover { background: var(--bone); }
.proj:hover .proj-hero .open-cue { opacity: 1; transform: translate(0,0); }
.proj-hero {
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--concrete);
  border-bottom: 1px solid var(--line-strong);
  overflow: hidden;
}
.proj-hero .placeholder-label {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--ink); color: var(--hivis);
  padding: 4px 8px;
  z-index: 2;
}
.proj-hero .open-cue {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--hivis); color: var(--ink);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700;
  padding: 8px 12px;
  z-index: 2;
  opacity: 0;
  transform: translate(8px, 0);
  transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.proj-hero .count-badge {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(13,13,13,0.85); color: var(--paper);
  padding: 6px 10px;
  z-index: 2;
}
.proj-info { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.proj-info .tag-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px;
  color: rgba(13,13,13,0.6);
}
.proj-info .tag-row .cat { color: var(--hivis-deep); font-weight: 700; }
.proj-info h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 26px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.proj-info .desc {
  font-size: 13px; line-height: 1.55;
  opacity: 0.75;
  margin: 0 0 16px;
  flex: 1;
}
.proj-info .stats {
  display: flex; gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.proj-info .stats .s {
  flex: 1;
}
.proj-info .stats .s .v {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.proj-info .stats .s .v .unit { color: var(--hivis-deep); font-size: 14px; margin-left: 2px; }
.proj-info .stats .s .k {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 4px;
  color: rgba(13,13,13,0.55);
}

/* ============ FAKE PROJECT VISUAL (geometric building shapes for placeholder character) ============ */
.proj-visual { position: absolute; inset: 0; }
.proj-visual svg { width: 100%; height: 100%; display: block; }

/* ============ LIGHTBOX ============ */
.lb {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(13,13,13,0.94);
  display: none;
  flex-direction: column;
}
.lb.open { display: flex; }
.lb-head {
  padding: 20px 32px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lb-head .t {
  font-family: var(--display); font-weight: 900;
  font-size: 22px; text-transform: uppercase;
  letter-spacing: -0.01em;
}
.lb-head .meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hivis);
}
.lb-close {
  background: transparent; border: 1px solid var(--paper);
  color: var(--paper);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 18px;
}
.lb-close:hover { background: var(--paper); color: var(--ink); }

.lb-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  overflow: hidden;
}
.lb-stage {
  position: relative;
  display: grid; place-items: center;
  padding: 32px;
  overflow: hidden;
}
.lb-img {
  width: 100%; height: 100%;
  max-height: 100%;
  position: relative;
  background: var(--concrete);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--hivis); color: var(--ink);
  border: none;
  width: 56px; height: 56px;
  font-family: var(--mono); font-size: 22px; font-weight: 700;
  display: grid; place-items: center;
}
.lb-nav.prev { left: 24px; }
.lb-nav.next { right: 24px; }
.lb-nav:hover { background: var(--paper); }

.lb-side {
  background: var(--ink);
  border-left: 1px solid rgba(255,255,255,0.1);
  color: var(--paper);
  padding: 32px;
  overflow-y: auto;
}
.lb-side h4 {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hivis);
  margin: 0 0 8px;
}
.lb-side h2 {
  font-family: var(--display); font-weight: 900;
  font-size: 36px; line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.lb-side .desc { font-size: 14px; line-height: 1.6; opacity: 0.8; margin-bottom: 24px; }
.lb-side .spec {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}
.lb-side .spec .k {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.lb-side .spec .v { font-weight: 600; }
.lb-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 24px;
}
.lb-thumb {
  aspect-ratio: 1;
  background: var(--concrete);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.lb-thumb.active { border-color: var(--hivis); }
.lb-thumb .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(13,13,13,0.85); color: var(--paper);
  font-family: var(--mono); font-size: 8px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 4px;
  text-align: center;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.about-text {
  padding: 80px 48px;
  border-right: 1px solid var(--line-strong);
}
.about-text p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 56ch;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 96px;
  font-weight: 900;
  float: left;
  line-height: 0.85;
  margin: 4px 12px 0 0;
  color: var(--ink);
  background: var(--hivis);
  padding: 8px 14px 4px;
}
.about-values {
  background: var(--ink); color: var(--paper);
  padding: 80px 48px;
}
.about-values h3 {
  font-family: var(--display); font-weight: 900;
  font-size: 36px; line-height: 0.95;
  letter-spacing: -0.025em; text-transform: uppercase;
  margin: 0 0 40px;
}
.value {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  align-items: start;
}
.value:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.value .n {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; color: var(--hivis);
}
.value h4 {
  font-family: var(--display); font-weight: 900;
  font-size: 22px; text-transform: uppercase;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.value p {
  font-size: 13px; line-height: 1.55;
  opacity: 0.7; margin: 0;
}

/* ============ TIMELINE ============ */
.timeline {
  padding: 80px 48px;
  background: var(--bone);
  border-bottom: 1px solid var(--line-strong);
}
.tl-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line-strong);
  position: relative;
}
.tl-step {
  padding: 32px 20px;
  border-right: 1px solid var(--line);
  position: relative;
}
.tl-step:last-child { border-right: none; }
.tl-step::before {
  content: "";
  position: absolute;
  top: -7px; left: 0;
  width: 12px; height: 12px;
  background: var(--ink);
}
.tl-step.hi::before { background: var(--hivis); }
.tl-step .year {
  font-family: var(--display); font-weight: 900;
  font-size: 32px; line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.tl-step .e {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hivis-deep); font-weight: 700;
  margin-bottom: 8px;
}
.tl-step .d {
  font-size: 13px; line-height: 1.5; opacity: 0.75;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink); color: var(--paper);
  border-top: 1px solid var(--line-strong);
}
.footer-top {
  padding: 80px 48px 64px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-top h2.cta {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  max-width: 14ch;
}
.footer-top h2 .hi { color: var(--hivis); }
.footer-col h4 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hivis); margin: 0 0 20px;
}
.footer-col p, .footer-col a {
  font-size: 14px; line-height: 1.7;
  display: block;
}
.footer-col .big {
  font-family: var(--display); font-weight: 900;
  font-size: 22px; line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.footer-bottom {
  padding: 24px 48px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.7;
}

/* ============ PAGE HEADER (subpages) ============ */
.page-header {
  padding: 96px 48px 64px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.page-header .crumb {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(13,13,13,0.55);
}
.page-header .crumb .sep { color: var(--hivis-deep); margin: 0 10px; }
.page-header h1 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
}
.page-header h1 .accent { color: var(--hivis); }
.page-header .blurb {
  font-size: 17px; line-height: 1.55;
  max-width: 50ch;
  opacity: 0.75;
}

/* ============ FILTERS ============ */
.filters {
  display: flex; gap: 0;
  padding: 0 48px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-strong);
}
.filter {
  padding: 18px 22px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
  background: none; border: none;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.filter:first-child { border-left: 1px solid var(--line-strong); }
.filter:last-child { border-right: 1px solid var(--line-strong); }
.filter:hover { background: var(--bone); }
.filter.active { background: var(--ink); color: var(--hivis); }
.filter .count { opacity: 0.5; margin-left: 6px; font-size: 9px; }

/* ============ BURGER (hidden on desktop) ============ */
.nav-burger {
  display: none;
  background: var(--ink);
  border: none;
  width: 64px;
  height: 100%;
  border-left: 1px solid var(--line-strong);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--hivis);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ MOBILE DRAWER ============ */
.nav-drawer {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 49;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: none;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--paper);
}
.drawer-link .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  width: 28px;
}
.drawer-link .arr {
  margin-left: auto;
  font-size: 22px;
  color: var(--hivis);
}
.drawer-link.active { background: rgba(245,228,24,0.08); color: var(--hivis); }
.drawer-link.active .idx { color: var(--hivis); opacity: 0.8; }

.drawer-cta {
  background: var(--hivis);
  color: var(--ink) !important;
  padding: 22px 24px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  border-bottom: 1px solid var(--line-strong);
}

.drawer-foot {
  padding: 28px 24px 48px;
  display: grid;
  gap: 20px;
}
.drawer-foot .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hivis);
  margin-bottom: 6px;
}
.drawer-foot .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* ============ MOBILE / FALLBACK ============ */
@media (max-width: 1100px) {
  .nav-inner { margin: 0 12px; }
  .services, .team-grid, .bignums { grid-template-columns: repeat(2, 1fr); }
  .services .svc, .team-grid .member { border-bottom: 1px solid var(--line-strong); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .proj:nth-child(3n) { border-right: 1px solid var(--line-strong); }
  .proj:nth-child(2n) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-text { border-right: none; border-bottom: 1px solid var(--line-strong); }
  .tl-track { grid-template-columns: repeat(2, 1fr); }
  .tl-step { border-bottom: 1px solid var(--line); }
  .lb-body { grid-template-columns: 1fr; }
  .lb-side { display: none; }
  .section-head, .mission { grid-template-columns: 1fr; }
  .hero-foot { grid-template-columns: 1fr 1fr; row-gap: 24px; }
}

@media (max-width: 820px) {
  .page-header { grid-template-columns: 1fr; gap: 24px; padding: 64px 20px 40px; }
  .page-header h1 { font-size: clamp(48px, 14vw, 96px) !important; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(36px, 9vw, 64px) !important; }
  .mission { padding: 64px 20px; gap: 32px; }
  .mission p { font-size: clamp(22px, 6vw, 36px) !important; }
  .hero h1.display { font-size: clamp(48px, 14vw, 96px); }
  .hero-foot { grid-template-columns: 1fr 1fr; gap: 16px 8px; }
  .hero-foot .cell { padding: 12px 8px !important; border-left: none !important; border-top: 1px solid rgba(255,255,255,0.15); }
  .hero-foot .cell .num { font-size: 40px !important; }
  .footer-top { grid-template-columns: 1fr; padding: 56px 20px 40px; gap: 32px; }
  .footer-top h2.cta { font-size: clamp(40px, 11vw, 72px) !important; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 20px; text-align: center; }
  .lb-head { padding: 16px 20px; }
  .lb-head .t { font-size: 16px; }
  .lb-stage { padding: 16px; }
  .lb-nav { width: 44px; height: 44px; font-size: 18px; }
  .lb-nav.prev { left: 8px; }
  .lb-nav.next { right: 8px; }
  .bignums .cell { padding: 32px 20px; }
  .bignums .cell .num { font-size: clamp(56px, 14vw, 96px) !important; }
}

@media (max-width: 700px) {
  /* show burger, hide desktop links */
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-drawer { display: block; }

  /* tighter side padding */
  .section, .mission, .about-text, .about-values, .page-header, .footer-top { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .about-text, .about-values { padding-top: 56px; padding-bottom: 56px; }
  .about-text p:first-of-type::first-letter { font-size: 64px; padding: 6px 10px 2px; }
  .timeline { padding: 56px 20px; }
  .filters { overflow-x: auto; padding: 0; }
  .filter { white-space: nowrap; flex: 0 0 auto; }
  .hero { min-height: auto; }
  .hero-inner { padding: 56px 20px 32px; min-height: 80vh; }
  .hero h1.display { font-size: clamp(42px, 13vw, 72px); }
  .hero-placeholder-label { font-size: 9px; padding: 4px 8px; max-width: 180px; line-height: 1.3; }

  .services, .team-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .proj { border-right: none !important; }
  .svc { min-height: 0; }

  /* big numbers - 2 col on small mobile */
  .bignums { grid-template-columns: 1fr 1fr; }
  .bignums .cell { padding: 28px 16px; border-bottom: 1px solid var(--line-strong); }
  .bignums .cell:nth-child(2n) { border-right: none; }
  .bignums .cell .num { font-size: 48px !important; }
  .bignums .cell .desc { font-size: 13px; }

  /* portfolio card stats: stack values when tight */
  .proj-info .stats { flex-wrap: wrap; gap: 12px 16px; }
  .proj-info .stats .s { min-width: 40%; }

  /* timeline single column */
  .tl-track { grid-template-columns: 1fr; }
  .tl-step { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 0; }

  /* ticker text smaller */
  .ticker { height: 32px; }
  .ticker-item { font-size: 10px; letter-spacing: 0.14em; }

  /* hide ticker dots margins */
  .ticker-track { gap: 32px; }

  /* lightbox tweaks */
  .lb-head .meta { font-size: 9px; }
  .lb-close { width: 36px; height: 36px; }

  /* member info smaller */
  .member .info h3 { font-size: 22px; }

  /* nav brand smaller */
  .nav-brand { font-size: 11px; padding: 0 14px; gap: 10px; }
  .nav-brand .mark { width: 24px; height: 24px; font-size: 12px; }
  .nav-inner { margin: 0 8px; height: 64px; }
}

@media (max-width: 420px) {
  .bignums { grid-template-columns: 1fr; }
  .bignums .cell { border-right: none; }
  .hero-foot { grid-template-columns: 1fr; }
  .hero-foot .cell { border-top: 1px solid rgba(255,255,255,0.15); padding: 14px 0 !important; }
  .nav-brand span:not(.mark) { display: none; }
  .nav-brand { padding: 0 14px; border-right: 1px solid var(--line-strong); }
  .filter { padding: 14px 16px; font-size: 10px; }
}
