/* =================================================================
   Carlos Fairgray — editorial cinematic
   Near-black canvas · electric ink-blue · Archivo + Space Mono
   ================================================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink:       #0A0B0E;
  --ink-2:     #0D0F13;
  --panel:     #101319;
  --line:      rgba(255,255,255,0.10);
  --line-2:    rgba(255,255,255,0.055);
  --white:     #F3F5F8;
  --soft:      #C6CAD2;
  --muted:     #969CA6;
  --muted-2:   #6A707A;
  --faint:     #3C4047;
  --blue:      #3D7BFF;
  --blue-br:   #6E9CFF;
  --blue-deep: #14306E;
  --f-disp: 'Archivo', sans-serif;
  --f-mono: 'Space Mono', monospace;
  --pad: clamp(22px, 5.2vw, 92px);
  --maxw: 1320px;
  --ease: cubic-bezier(.16,.8,.24,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--ink);
  color: var(--soft);
  font-family: var(--f-disp);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.62;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: #06080D; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.kicker { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }
.kicker .b, .blue { color: var(--blue); }
.mono { font-family: var(--f-mono); }
.dot { color: var(--blue); }

.sec-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head .idx { font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.16em; color: var(--blue); }
.sec-head h2 { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); font-weight: 400; }

.section { position: relative; padding: clamp(84px, 12vw, 168px) 0; scroll-margin-top: 70px; }

.rule { height: 1px; background: var(--line); border: 0; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; } .reveal.d6 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,9,12,0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-2);
  padding-top: 16px; padding-bottom: 16px;
}
.nav-mark { font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); }
.nav-mark b { color: var(--blue); font-weight: 400; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 4px 0; transition: color .25s ease;
}
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }

.nav-burger { display: none; width: 40px; height: 40px; background: none; border: 0; cursor: pointer; position: relative; z-index: 80; }
.nav-burger span { display: block; width: 24px; height: 1.6px; background: var(--white); margin: 5px auto; transition: transform .35s var(--ease), opacity .25s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: rgba(8,9,12,0.97);
  backdrop-filter: blur(8px); display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad); gap: 6px;
  opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .4s ease, transform .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a { font-family: var(--f-disp); font-weight: 600; font-size: clamp(34px, 11vw, 64px); letter-spacing: -0.02em; color: var(--white); padding: 6px 0; display: flex; align-items: baseline; gap: 16px; }
.mobile-menu a .n { font-family: var(--f-mono); font-size: 13px; color: var(--blue); letter-spacing: 0.1em; font-weight: 400; }
.mobile-menu a:active { color: var(--blue); }

/* =================================================================
   HERO
   ================================================================= */
.hero { position: relative; min-height: 100svh; min-height: 100vh; overflow: hidden; display: flex; align-items: flex-end; }
.hero-media { position: absolute; inset: -8% 0 -8% 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 78% 30%;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
}
.hero-scrim { position: absolute; inset: 0; z-index: 1; background:
   linear-gradient(180deg, rgba(10,11,14,0.62) 0%, rgba(10,11,14,0.06) 24%, rgba(10,11,14,0.18) 56%, rgba(10,11,14,0.97) 100%),
   linear-gradient(90deg, rgba(10,11,14,0.86) 0%, rgba(10,11,14,0.18) 50%, rgba(10,11,14,0.0) 78%); }
.hero-grain { position: absolute; inset: 0; z-index: 2; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E"); }

.hero-inner { position: relative; z-index: 5; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(64px, 9vh, 104px); }
.hero-rule { width: 60px; height: 2px; background: var(--blue); margin-bottom: 26px; }
.hero h1 { font-family: var(--f-disp); font-weight: 800; line-height: 0.85; letter-spacing: -0.035em; font-size: clamp(58px, 13.5vw, 208px); margin-top: 18px; color: var(--white); }
.hero h1 .l2 { display: block; color: transparent; -webkit-text-stroke: 1.4px rgba(243,245,248,0.6); }
.hero-tag { margin-top: clamp(22px, 3vw, 34px); font-family: var(--f-disp); font-weight: 500; font-size: clamp(20px, 3vw, 33px); letter-spacing: -0.01em; color: var(--white); }
.hero-statement { margin-top: 22px; max-width: 620px; font-size: clamp(16px, 2vw, 20px); line-height: 1.5; color: var(--soft); }
.scroll-cue { position: absolute; right: var(--pad); bottom: clamp(64px, 9vh, 104px); z-index: 5; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl; display: flex; align-items: center; gap: 14px; }
.scroll-cue .bar { width: 1px; height: 54px; background: linear-gradient(var(--muted), transparent); }
@keyframes cuepulse { 0%,100%{ transform: scaleY(.5); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }
.scroll-cue .bar { animation: cuepulse 2.4s var(--ease) infinite; transform-origin: top; }

/* =================================================================
   ABOUT
   ================================================================= */
.about-lead { font-family: var(--f-disp); font-weight: 500; font-size: clamp(27px, 4.4vw, 50px); line-height: 1.14; letter-spacing: -0.022em; color: var(--white); max-width: 18ch; }
.about-lead.full { max-width: 1040px; }
.about-lead em { font-style: normal; color: var(--blue); }
.about-cols { margin-top: clamp(40px, 5vw, 60px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); max-width: 980px; align-items: start; }
.about-cols p { color: var(--muted); font-size: 17px; line-height: 1.66; }
.about-cols p + p { margin-top: 0; }

/* stat strip */
.stats { margin-top: clamp(56px, 8vw, 96px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { background: var(--ink); padding: clamp(26px, 3vw, 40px) clamp(18px,2vw,28px) clamp(26px,3vw,38px); }
.stat .n { font-family: var(--f-disp); font-weight: 800; font-size: clamp(38px, 5.5vw, 70px); letter-spacing: -0.04em; line-height: 0.95; color: var(--white); }
.stat .n .u { color: var(--blue); }
.stat .l { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); margin-top: 16px; line-height: 1.5; max-width: 18ch; }

/* =================================================================
   FULL-BLEED IMAGE BANDS
   ================================================================= */
.band { position: relative; height: clamp(360px, 64vh, 720px); overflow: hidden; }
.band-media { position: absolute; inset: -12% 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06) brightness(0.8); }
.band.colour .band-media img { filter: contrast(1.04) saturate(1.05) brightness(0.82); }
.band-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,14,0.66), rgba(10,11,14,0.30) 40%, rgba(10,11,14,0.78)); }
.band-cap { position: absolute; left: 0; right: 0; bottom: clamp(28px, 5vw, 52px); }
.band-cap .wrap { display: flex; flex-direction: column; gap: 14px; }
.band-cap .q { font-family: var(--f-disp); font-weight: 500; font-size: clamp(22px, 3.4vw, 40px); letter-spacing: -0.02em; line-height: 1.12; color: var(--white); max-width: 20ch; }
.band-cap .src { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* =================================================================
   WHAT I DO
   ================================================================= */
.work { background: var(--ink-2); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar { background: var(--ink-2); padding: clamp(30px, 3.4vw, 48px); display: flex; flex-direction: column; }
.pillar .pidx { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--blue); }
.pillar h3 { font-family: var(--f-disp); font-weight: 700; font-size: clamp(26px, 2.8vw, 36px); letter-spacing: -0.025em; color: var(--white); margin: 20px 0 14px; }
.pillar p { color: var(--muted); font-size: 16.5px; line-height: 1.62; margin-bottom: 26px; }
.pillar ul { list-style: none; margin-top: auto; border-top: 1px solid var(--line); }
.pillar li { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--soft); padding: 12px 0; border-bottom: 1px solid var(--line-2); display: flex; gap: 12px; }
.pillar li::before { content: "›"; color: var(--blue); }
.pillar li:last-child { border-bottom: 0; }

/* =================================================================
   CAREER  (pinned label + timeline)
   ================================================================= */
.career-grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.career-aside { position: sticky; top: 96px; }
.career-aside .big { font-family: var(--f-disp); font-weight: 800; font-size: clamp(40px, 4.4vw, 62px); letter-spacing: -0.035em; line-height: 0.94; color: var(--white); }
.career-aside p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-top: 22px; max-width: 30ch; }
.career-aside .legend { margin-top: 30px; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.1em; color: var(--muted-2); text-transform: uppercase; line-height: 2; }

.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 4px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.timeline-fill { position: absolute; left: 4px; top: 8px; width: 1px; background: linear-gradient(var(--blue), var(--blue-deep)); transform-origin: top; transform: scaleY(var(--tl, 0)); height: calc(100% - 16px); }
.role { position: relative; padding-bottom: clamp(40px, 5vw, 64px); }
.role:last-child { padding-bottom: 0; }
.role::before { content: ""; position: absolute; left: -30px; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--ink); border: 1.6px solid var(--faint); transform: translateX(0.5px); transition: border-color .4s ease, background .4s ease; }
.role.in::before, .role.cur::before { border-color: var(--blue); background: var(--blue); box-shadow: 0 0 0 4px rgba(61,123,255,0.16); }
.role .when { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--blue); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.role .when .tag { color: var(--muted-2); }
.role .when .now { background: var(--blue); color: #06080D; font-weight: 700; padding: 2px 8px; border-radius: 2px; letter-spacing: 0.06em; }
.role h3 { font-family: var(--f-disp); font-weight: 700; font-size: clamp(23px, 2.6vw, 33px); letter-spacing: -0.022em; color: var(--white); margin: 14px 0 2px; line-height: 1.08; }
.role .co { font-family: var(--f-disp); font-weight: 500; font-size: 16px; color: var(--muted); margin-bottom: 16px; }
.role .ctx { color: var(--soft); font-size: 16.5px; line-height: 1.6; max-width: 60ch; margin-bottom: 18px; }
.role ul { list-style: none; max-width: 64ch; }
.role li { position: relative; padding-left: 22px; color: var(--muted); font-size: 15.5px; line-height: 1.58; margin-bottom: 9px; }
.role li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 1px; background: var(--blue); }
.role li b { color: var(--white); font-weight: 600; }

/* earlier roles */
.earlier { margin-top: clamp(40px, 5vw, 60px); padding-top: clamp(30px, 4vw, 44px); border-top: 1px solid var(--line); }
.earlier-h { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.earlier-list { display: grid; grid-template-columns: 1fr; }
.erow { display: grid; grid-template-columns: 150px 1fr auto; gap: 18px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.erow .y { font-family: var(--f-mono); font-size: 12.5px; color: var(--muted-2); letter-spacing: 0.04em; }
.erow .r { color: var(--soft); font-size: 15.5px; }
.erow .c { font-family: var(--f-mono); font-size: 11.5px; color: var(--muted-2); letter-spacing: 0.05em; text-transform: uppercase; }
.erow:hover .r { color: var(--white); }
.erow:hover .y { color: var(--blue); }

/* =================================================================
   PEOPLE / TESTIMONIALS
   ================================================================= */
.people-intro { max-width: 26ch; font-family: var(--f-disp); font-weight: 500; font-size: clamp(24px, 3.4vw, 40px); line-height: 1.14; letter-spacing: -0.02em; color: var(--white); }
.tgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: clamp(40px, 5vw, 64px); }
.tcard { background: var(--ink); padding: clamp(30px, 3.4vw, 46px); display: flex; flex-direction: column; }
.tcard blockquote { font-family: var(--f-disp); font-weight: 400; font-size: clamp(17px, 1.9vw, 21px); line-height: 1.5; letter-spacing: -0.01em; color: var(--soft); flex: 1; }
.tcard blockquote b { color: var(--white); font-weight: 500; }
.tcard .who { display: flex; align-items: center; gap: 16px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.tcard .who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.tcard .who .nm { font-family: var(--f-disp); font-weight: 600; font-size: 16px; color: var(--white); letter-spacing: -0.01em; }
.tcard .who .rl { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }
.tcard .mk { font-family: var(--f-disp); font-weight: 800; font-size: 60px; line-height: 0.7; color: var(--blue); opacity: 0.5; margin-bottom: 10px; height: 30px; }

/* =================================================================
   INTERESTS  (colour)
   ================================================================= */
.interests { background: var(--ink); }
.int-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.int-intro .lead { font-family: var(--f-disp); font-weight: 500; font-size: clamp(24px, 3.4vw, 42px); line-height: 1.14; letter-spacing: -0.02em; color: var(--white); }
.int-intro .lead .blue { color: var(--blue); }
.int-intro p { color: var(--muted); font-size: 16.5px; line-height: 1.64; }
.int-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.int-tags span { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--soft); border: 1px solid var(--line); padding: 7px 12px; border-radius: 100px; }

.vgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.vcard { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #06080C; cursor: pointer; border: 1px solid var(--line); }
.vcard .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .6s ease; }
.vcard:hover .poster { transform: scale(1.05); }
.vcard .vscrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,8,12,0.1), rgba(6,8,12,0.15) 50%, rgba(6,8,12,0.78)); transition: background .4s ease; }
.vcard:hover .vscrim { background: linear-gradient(180deg, rgba(6,8,12,0.0), rgba(6,8,12,0.1) 50%, rgba(6,8,12,0.7)); }
.vcard .vmeta { position: absolute; left: clamp(18px,2vw,26px); right: 18px; bottom: clamp(16px,2vw,24px); z-index: 3; }
.vcard .vmeta .t { font-family: var(--f-disp); font-weight: 700; font-size: clamp(20px, 2.3vw, 28px); letter-spacing: -0.02em; color: #fff; }
.vcard .vmeta .s { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.66); margin-top: 6px; }
.vcard .play { position: absolute; z-index: 3; left: clamp(18px,2vw,26px); top: clamp(16px,2vw,24px); width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; transition: background .3s ease, border-color .3s ease, transform .3s var(--ease); }
.vcard:hover .play { background: var(--blue); border-color: var(--blue); transform: scale(1.06); }
.vcard .play svg { width: 16px; height: 16px; margin-left: 2px; fill: #fff; }
.vcard .frame { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 4; border: 0; opacity: 0; transition: opacity .4s ease; }
.vcard.playing .frame { opacity: 1; }
.vcard.playing .poster, .vcard.playing .vscrim, .vcard.playing .vmeta, .vcard.playing .play { opacity: 0; pointer-events: none; }
.int-note { margin-top: 22px; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--muted-2); }

/* =================================================================
   CONTACT FOOTER
   ================================================================= */
.contact { position: relative; padding: clamp(96px, 14vw, 200px) 0 clamp(40px, 5vw, 60px); border-top: 1px solid var(--line); overflow: hidden; }
.contact::before { content: ""; position: absolute; left: 50%; top: -30%; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px; transform: translateX(-50%); background: radial-gradient(circle, rgba(61,123,255,0.16), transparent 62%); pointer-events: none; }
.contact-inner { position: relative; }
.contact h2 { font-family: var(--f-disp); font-weight: 800; font-size: clamp(52px, 11vw, 168px); letter-spacing: -0.04em; line-height: 0.86; color: var(--white); }
.contact h2 .dot { color: var(--blue); }
.contact-row { margin-top: clamp(40px, 5vw, 64px); display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 40px); }
.clink { display: flex; flex-direction: column; gap: 8px; padding: 22px 0; min-width: 240px; border-top: 1px solid var(--line); flex: 1; transition: border-color .3s ease; }
.clink:hover { border-color: var(--blue); }
.clink .lab { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.clink .val { font-family: var(--f-disp); font-weight: 500; font-size: clamp(19px, 2.2vw, 26px); letter-spacing: -0.015em; color: var(--white); display: flex; align-items: center; gap: 10px; }
.clink .val .arr { color: var(--blue); transition: transform .3s var(--ease); }
.clink:hover .val .arr { transform: translate(4px,-4px); }

.foot { margin-top: clamp(56px, 8vw, 96px); padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.foot .c { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--muted-2); }
.foot .tag { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.foot .tag b { color: var(--blue); font-weight: 400; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .about-cols { grid-template-columns: 1fr; max-width: 640px; }
  .about-cols p + p { margin-top: 16px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .career-grid { grid-template-columns: 1fr; gap: 30px; }
  .career-aside { position: static; top: auto; }
  .career-aside p { max-width: 46ch; }
  .tgrid { grid-template-columns: 1fr; }
  .int-intro { grid-template-columns: 1fr; align-items: start; }
  .vgrid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16.5px; }
  .stats { grid-template-columns: 1fr; }
  .hero h1 .l2 { -webkit-text-stroke: 1px rgba(243,245,248,0.6); }
  .erow { grid-template-columns: 78px 1fr; }
  .erow .c { display: none; }
  .scroll-cue { display: none; }
  .stat .l { max-width: none; }
}
