/* Shubham Hunda — typography, photographic framing and a restrained material palette. */
:root {
  color-scheme: dark;
  --paper: #0a0a0b;
  --surface: #121214;
  --raised: #19191b;
  --ink: #f4efe6;
  --muted: #b8b1a4;
  --quiet: #928c82;
  --line: #2e2d2e;
  --accent: #7a1e2c;
  --accent-hover: #a4324a;
  --champ: #c6a667;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: Inter, system-ui, sans-serif;
  --max: 1480px;
  --pad: clamp(24px, 5.5vw, 88px);
  --section-space: clamp(80px, 9.5vw, 145px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.75 var(--sans); -webkit-font-smoothing: antialiased; }
::selection { background: var(--champ); color: var(--paper); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
a, button, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--champ); outline-offset: 6px; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -.025em; }
h2 { font-size: clamp(45px, 5.5vw, 80px); }
h2 em { color: var(--champ); }
p + p { margin-top: 24px; }
.wrap { width: 100%; max-width: var(--max); margin: auto; padding: 0 var(--pad); }
.section { padding: var(--section-space) 0; border-top: 1px solid var(--line); }
.kicker { display: flex; align-items: center; gap: 16px; color: var(--muted); font: 12px/1.5 var(--sans); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 30px; }
.kicker::before { content: ''; width: 25px; height: 1px; background: currentColor; flex: none; opacity: .7; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 30px; min-height: 56px; padding: 15px 25px; border: 1px solid var(--line); font-size: 14px; line-height: 1.5; transition: background .25s, border-color .25s; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn svg { width: 22px; height: 22px; fill: currentColor; flex: none; }
.btn span[aria-hidden], .text-link span { display: inline-block; transition: transform .25s; }
.btn:hover span[aria-hidden], .text-link:hover span { transform: translate(3px, -3px); }
.text-link, .more { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px 0; font-size: 14px; border-bottom: 1px solid #655641; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; padding: 12px 20px; background: var(--ink); color: var(--paper); }
.skip-link:focus { top: 10px; }

/* Navigation stays quiet so the portrait and name own the opening. */
#nav { position: sticky; top: 0; z-index: 50; height: 84px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 24px; background: #0a0a0bf2; backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
#nav .brand { font: 25px/1 var(--serif); letter-spacing: -.01em; white-space: nowrap; }
#nav ul { display: flex; align-items: center; gap: 27px; list-style: none; margin: 0; padding: 0; font-size: 14px; }
#nav ul a:not(.btn) { position: relative; color: var(--muted); padding: 10px 0; }
#nav ul a:not(.btn)::after { content: ''; position: absolute; bottom: 2px; left: 0; height: 1px; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--champ); transition: transform .25s; }
#nav ul a:hover, #nav ul a[aria-current] { color: var(--ink); }
#nav ul a:hover::after, #nav ul a[aria-current]::after { transform: scaleX(1); }
#nav .btn { background: transparent; border-color: #645b4c; min-height: 42px; padding: 10px 20px; }
#nav .btn:hover { background: var(--accent); border-color: var(--accent); }
.menu-btn { display: none; border: 1px solid var(--line); background: transparent; padding: 9px 16px; font-size: 14px; }

/* Opening: a portrait plate, expressive name, then an understated role index. */
.hero { padding-bottom: 0; }
.hero-topline { display: flex; justify-content: space-between; gap: 20px; padding: 27px 0; color: var(--muted); text-transform: uppercase; font-size: 12px; letter-spacing: .11em; }
.dot { width: 6px; height: 6px; background: var(--champ); border-radius: 50%; display: inline-block; margin-right: 9px; vertical-align: middle; }
.hero-layout { display: grid; grid-template-columns: 1.08fr 1fr; gap: 6%; padding: 15px 0 54px; align-items: center; }
.hero-text { padding: 25px 0 15px; position: relative; z-index: 2; }
.eyebrow { font-size: 13px; color: var(--muted); margin-bottom: 38px; }
.hero h1 { font-size: clamp(95px, 10.9vw, 160px); line-height: .83; letter-spacing: -.045em; }
.hero h1 > span { white-space: nowrap; }
.hero h1 em { display: inline-block; padding-top: 8px; }
.name-period { color: var(--champ); }
.lede { font: 31px/1.15 var(--serif); margin-top: 40px; letter-spacing: -.01em; }
.hero-description { max-width: 37ch; color: var(--muted); margin: 24px 0 31px; font-size: 16px; line-height: 1.8; }
.hero .actions { gap: 24px; }
.hero .text-link { border-bottom: 0; color: var(--muted); }
.hero .text-link:hover { color: var(--ink); }
.hero .text-link:hover span { transform: translateY(3px); }
.hero-photo { position: relative; padding: 13px 13px 0; border: 1px solid #484037; background: var(--surface); margin-left: 0; }
.hero-photo img { width: 100%; height: auto; aspect-ratio: 4/5.1; object-fit: cover; object-position: 50% 37%; filter: saturate(.42) contrast(1.04); }
.hero-photo figcaption { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 5px; color: var(--muted); font-size: 12px; }
.hero-photo figcaption span:last-child { color: var(--champ); font-size: 21px; }
.hero-foot { display: flex; align-items: center; gap: 36px; padding: 25px 0; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.hero-foot > span + span::before { content: '·'; color: var(--champ); margin-right: 36px; }
.hero-foot a { display: grid; place-items: center; margin-left: auto; width: 44px; height: 44px; border: 1px solid #484037; border-radius: 50%; color: var(--champ); font-size: 20px; transition: background .25s; }
.hero-foot a:hover { background: var(--raised); }

/* Approach: a statement with two reading columns, no competing kicker styles. */
#words { border-top: 0; }
.words { display: grid; grid-template-columns: .95fr 1.1fr; column-gap: 11%; }
.approach-heading h2 { font-size: clamp(46px, 5.25vw, 76px); line-height: 1.06; }
.approach-heading { align-self: start; }
.approach-prose { padding-top: 48px; color: var(--muted); }
.approach-prose > p:first-child { font: 29px/1.35 var(--serif); color: var(--ink); }
.approach-prose .more { color: var(--champ); margin-top: 25px; }

/* Numbers read as a compact ledger, with commercial impact emphasized. */
.numbers { background: var(--surface); padding: 55px 0 62px; }
.numbers-intro { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-bottom: 35px; }
.numbers-intro .kicker { margin: 0; }
.numbers-intro > p:not(.kicker) { font: 26px/1.2 var(--serif); }
.numbers-intro > p:not(.kicker) em { color: var(--champ); }
.numbers .grid { display: grid; grid-template-columns: 1fr 1.3fr 1fr 1fr; border-top: 1px solid var(--line); }
.stat { position: relative; padding: 27px 25px 7px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; padding-right: 0; }
.stat:nth-child(2) { background: linear-gradient(#7a1e2c25, transparent); }
.stat-label { display: flex; flex-direction: column; gap: 8px; font-size: 12px; color: var(--muted); }
.stat-label > span { color: var(--champ); font-size: 12px; }
.num { display: block; font: clamp(50px, 5.5vw, 79px)/1 var(--serif); color: var(--ink); white-space: nowrap; letter-spacing: -.03em; }
.stat:nth-child(2) .num { color: var(--champ); }
.unit { font-size: .4em; letter-spacing: 0; }
.count { position: relative; display: inline-block; vertical-align: baseline; font-variant-numeric: tabular-nums; }
.count-target { opacity: 0; }
.count-animated { position: absolute; inset: 0; text-align: right; }
.stat::after { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: var(--champ); transform-origin: left; }
.image-frame { overflow: hidden; }
.stat-desc { max-width: 25ch; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* Native disclosures retain their keyboard and no-script behavior. */
.track h2 { margin-bottom: 55px; }
.tr-item { border-top: 1px solid var(--line); }
.tr-item:last-child { border-bottom: 1px solid var(--line); }
.tr-head { list-style: none; cursor: pointer; display: grid; grid-template-columns: 35px 1.15fr 1fr 44px; align-items: center; gap: 25px; padding: 31px 0; }
.tr-head::-webkit-details-marker { display: none; }
.experience-index { font-size: 12px; color: var(--champ); }
.tr-head h3 { font-size: clamp(28px, 3vw, 43px); transition: color .25s; }
.tr-head:hover h3, .tr-item[open] .tr-head h3 { color: var(--champ); }
.meta { font-size: 14px; line-height: 1.6; }
.meta span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }
.plus { width: 44px; height: 44px; border: 1px solid #514a40; border-radius: 50%; position: relative; display: grid; place-items: center; transition: background .25s, transform .25s; }
.plus::before, .plus::after { content: ''; position: absolute; width: 13px; height: 1px; background: var(--ink); }
.plus::after { transform: rotate(90deg); }
.tr-item[open] .plus { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.tr-body { display: grid; grid-template-columns: 1fr 1.13fr; gap: 6%; padding: 15px 0 50px 60px; }
.tr-body figure { align-self: start; position: sticky; top: 110px; padding: 12px; border: 1px solid var(--line); background: var(--surface); }
.tr-body figure img { width: 100%; aspect-ratio: 1/1.05; object-fit: cover; object-position: 47% center; filter: saturate(.5); }
.tr-body dl { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 0; }
.tr-body dt { font-size: 12px; color: var(--champ); text-transform: uppercase; letter-spacing: .12em; margin-top: 22px; }
.tr-body dt:first-child { margin-top: 0; }
.tr-body dd { margin: 0; color: var(--muted); font-size: 16px; }
.tr-body dd.result { font: 30px/1.25 var(--serif); color: var(--ink); border-left: 2px solid var(--champ); padding: 6px 0 6px 24px; margin: 5px 0; }
.tr-body dd.links { font-size: 13px; }
.links a { border-bottom: 1px solid #665540; padding-bottom: 4px; }
.tr-body:not(:has(figure)) { display: block; max-width: 840px; margin-left: auto; padding-right: 68px; }

/* Biography: an ivory reading surface with a useful chapter index. */
.story { --ink: #191717; --muted: #59534b; --line: #d3cabc; --champ: #7a1e2c; color-scheme: light; color: var(--ink); background: #f4efe6; }
.story .wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10%; }
.story-title { position: sticky; top: 125px; align-self: start; }
.story-title h2 { font-size: clamp(50px, 5.6vw, 79px); }
.chapter-nav { display: flex; flex-direction: column; margin-top: 45px; max-width: 280px; border-top: 1px solid var(--line); }
.chapter-nav a { display: flex; gap: 22px; align-items: center; border-bottom: 1px solid var(--line); padding: 12px 0; color: var(--muted); font-size: 14px; transition: color .2s; }
.chapter-nav a span { color: var(--champ); font-size: 12px; }
.chapter-nav a:hover, .chapter-nav a[aria-current] { color: var(--champ); }
.story-chapter { display: grid; grid-template-columns: 28px 1fr; gap: 22px; padding: 0 0 35px; margin-bottom: 35px; border-bottom: 1px solid var(--line); scroll-margin-top: 105px; }
.chapter-number { font-size: 12px; color: var(--champ); padding-top: 7px; }
.story-chapter h3 { font-size: 35px; margin-bottom: 18px; }
.story-chapter p { color: #454039; font-size: 16px; line-height: 1.85; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; font-size: 14px; color: var(--muted); line-height: 1.7; padding-left: 50px; }
.facts b { display: block; color: var(--ink); font-weight: 500; margin-bottom: 8px; }

/* Collaboration: a readable audience index, distinct from the biography. */
.working > .wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9%; }
.working-heading { position: sticky; top: 125px; align-self: start; }
.working h2 { font-size: clamp(45px, 5vw, 72px); }
.working-grid { border-top: 1px solid var(--line); }
.working-card { display: grid; grid-template-columns: 40px 1fr; gap: 17px 22px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.working-index { grid-column: 1; grid-row: 1; padding-top: 7px; font-size: 12px; color: var(--champ); }
.working-card h3 { grid-column: 2; font-size: 39px; }
.working-card p { grid-column: 2; color: var(--muted); font-size: 16px; }
.working-card ul { grid-column: 2; list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.working-card li { font-size: 12px; line-height: 1.6; padding: 6px 10px; border: 1px solid var(--line); color: var(--muted); }
.working-card .text-link { grid-column: 2; justify-self: start; color: var(--champ); margin-top: 4px; }

/* Recognition has one lead photograph and two supporting gallery entries. */
.recog { background: var(--surface); }
.recog h2 { max-width: 19ch; }
.recog .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 35px 6%; margin-top: 55px; }
.award { min-width: 0; }
.award:first-child { grid-row: 1/3; }
.award img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: var(--pos, 50% 35%); filter: saturate(.55); transition: filter .4s; }
.award:first-child img { aspect-ratio: 4/4.6; object-position: 50% 35%; }
.award:hover img { filter: saturate(1); }
.cap { position: relative; padding: 22px 0 0 42px; }
.award-index { position: absolute; top: 24px; left: 0; font-size: 12px; color: var(--champ); }
.cap small { display: block; font-size: 12px; color: var(--muted); line-height: 1.6; }
.cap h3 { font-size: 31px; margin-top: 10px; line-height: 1.12; }
.award:first-child h3 { font-size: 41px; }

/* Press borrows a newspaper's masthead hierarchy rather than another image card. */
.press > .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.press .kicker, .press h2, .press .note { grid-column: 1/-1; }
.press h2 { margin-bottom: 50px; }
.press .row { display: flex; align-items: flex-start; flex-direction: column; padding: 30px 0 0; border-top: 1px solid #635b4c; }
.pub { font: 44px/1.1 var(--serif); padding-bottom: 27px; width: 100%; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.press h3 { font: 27px/1.3 var(--serif); letter-spacing: -.01em; max-width: 28ch; }
.press .row p { font-size: 15px; color: var(--muted); margin: 18px 0 26px; max-width: 48ch; }
.read { display: inline-block; padding: 10px 0; margin-top: auto; font-size: 14px; border-bottom: 1px solid #655641; color: var(--champ); }
.read:hover { color: var(--ink); }
.press .note { margin-top: 40px; font-size: 13px; color: var(--quiet); max-width: 78ch; }

/* A single-use speech photograph gives the principle its own stage. */
.quote { border-top: 0; padding: 15px var(--pad) 90px; }
.quote > .wrap { position: relative; isolation: isolate; overflow: hidden; max-width: calc(var(--max) - 2 * var(--pad)); min-height: 650px; display: flex; align-items: center; padding: clamp(50px, 6vw, 85px) 6%; border: 1px solid #564838; text-align: center; background: var(--paper); }
.quote-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 40% center; filter: saturate(.45); z-index: -2; }
.quote > .wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #0a0a0b35, #0a0a0be8 48%, #0a0a0bf0); z-index: -1; }
.quote-content { width: 64%; margin-left: auto; }
.quote .kicker { justify-content: center; margin-bottom: 30px; color: var(--champ); }
.quote blockquote { font: clamp(35px, 3.7vw, 54px)/1.2 var(--serif); max-width: 28ch; margin: auto; }
.quote blockquote em { color: var(--champ); }
.quote cite { display: block; font-style: normal; font-size: 13px; color: var(--muted); margin-top: 28px; }

/* Contact is a final, clearly actionable panel; personal addresses stay in links. */
.contact { background: var(--surface); }
.contact > .wrap { display: grid; grid-template-columns: 1.25fr .75fr; gap: 0 9%; }
.contact-heading { grid-column: 1/-1; }
.contact h2 { grid-column: 1; font-size: clamp(51px, 6.5vw, 93px); line-height: 1.04; }
.contact .lead { grid-column: 1; color: var(--muted); font-size: 17px; max-width: 43ch; margin: 28px 0 0; }
.contact .actions { grid-column: 2; grid-row: 2/4; display: flex; flex-direction: column; align-items: stretch; gap: 0; align-self: center; border-top: 1px solid #635b4c; }
.contact .btn { min-height: 85px; justify-content: flex-start; padding: 20px 5px; background: transparent; border: 0; border-bottom: 1px solid var(--line); font-size: 19px; gap: 20px; }
.contact .btn svg { width: 23px; height: 23px; color: var(--champ); }
.contact .btn .contact-link-arrow { margin-left: auto; color: var(--champ); }
.contact .btn:hover { background: var(--raised); color: var(--ink); }
.contact .btn:hover svg { color: var(--ink); }
.contact .lines { grid-column: 1/-1; border-top: 1px solid var(--line); margin-top: 65px; padding-top: 25px; font-size: 13px; color: var(--muted); }
.contact .lines b { font-weight: 400; text-transform: uppercase; font-size: 12px; letter-spacing: .1em; color: var(--champ); margin-right: 28px; }

/* A restrained footer completes the page without another oversized name. */
.foot { border-top: 1px solid var(--line); padding: 55px 0 25px; }
.foot-top { display: grid; grid-template-columns: 1.7fr 1fr .8fr; gap: 8%; }
.foot-brand .brand { font: 28px/1.1 var(--serif); }
.foot-brand p { margin-top: 19px; max-width: 38ch; color: var(--muted); font-size: 14px; }
.foot-col { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; color: var(--muted); font-size: 14px; }
.foot-col b { font-weight: 400; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--quiet); margin-bottom: 16px; }
.foot-col a { padding: 3px 0; }
.foot-col a:hover { color: var(--champ); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); margin-top: 50px; padding-top: 24px; font-size: 12px; color: var(--muted); }

/* Motion is progressive, brief and tied to reading or interacting with content. */
@media (prefers-reduced-motion: no-preference) {
  .hero-text > * { animation: enter .8s cubic-bezier(.2,.7,.2,1) both; }
  .hero-text h1 { animation-delay: .08s; }
  .hero-text .lede { animation-delay: .18s; }
  .hero-text .hero-description { animation-delay: .25s; }
  .hero-text .actions { animation-delay: .32s; }
  .hero-photo { animation: enter 1s .15s both; }
  [data-reveal] { transition: opacity .7s, transform .7s; transition-timing-function: cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0s); }
  .js [data-reveal].awaiting { opacity: 0; transform: translateY(20px); }
  [data-reveal]:focus-within { opacity: 1 !important; transform: none !important; transition: none; }
  .stat::after { transition: transform 1.1s cubic-bezier(.2,.7,.2,1) var(--d, 0s); }
  .js .stat:not(.is-visible)::after { transform: scaleX(0); }
  .stat.is-visible::after { transform: scaleX(1); }
  .image-frame img { transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .6s; }
  .tr-item[open] .tr-body { animation: disclosure-enter .4s ease-out; }
  .working-card h3, .working-card .working-index { transition: color .25s; }
  .contact-link-arrow { transition: transform .3s; }
  #nav.open ul { animation: menu-enter .25s ease-out; }
  @keyframes enter { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
  @keyframes disclosure-enter { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
  @keyframes menu-enter { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .hero-photo:hover .image-frame img, .award:hover .image-frame img { transform: scale(1.035); }
  .working-card:hover h3, .working-card:focus-within h3 { color: var(--champ); }
  .hero-foot a span { transition: transform .25s; }
  .hero-foot a:hover span { transform: translateY(3px); }
}

@media (max-width: 1150px) {
  #nav ul { gap: 18px; }
  #nav ul a { font-size: 13px; }
  #nav .brand { font-size: 23px; }
  .hero-layout { gap: 5%; }
  .hero h1 { font-size: 10.8vw; }
  .hero .actions { gap: 12px; }
  .hero .btn { padding: 14px 18px; gap: 18px; }
  .hero-description { max-width: 34ch; }
  .hero-photo img { aspect-ratio: 4/5.8; }
  .stat { padding-left: 18px; padding-right: 18px; }
  .num { font-size: 5.3vw; }
  .tr-head { grid-template-columns: 25px 1fr .9fr 44px; gap: 20px; }
  .tr-body { padding-left: 45px; }
  .working > .wrap { gap: 6%; }
  .story .wrap { gap: 7%; }
  .contact > .wrap { gap: 0 6%; }
}
@media (max-width: 900px) {
  #nav { height: 74px; }
  .menu-btn { display: block; }
  #nav ul { display: none; position: absolute; top: 74px; left: 0; right: 0; background: var(--paper); padding: 12px var(--pad) 24px; border-bottom: 1px solid var(--line); max-height: calc(100svh - 74px); overflow: auto; }
  #nav.open ul { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  #nav ul a:not(.btn) { display: block; padding: 12px 0; font-size: 16px; }
  #nav ul a::after { display: none; }
  #nav .btn { display: flex; margin-top: 12px; }
  #nav:not(.nav-ready) { position: relative; height: auto; min-height: 74px; flex-wrap: wrap; padding-top: 20px; }
  #nav:not(.nav-ready) .menu-btn { display: none; }
  #nav:not(.nav-ready) ul { position: static; display: flex; flex-wrap: wrap; padding: 0 0 15px; gap: 8px 20px; border: 0; max-height: none; }
  #nav:not(.nav-ready) ul a { font-size: 14px; }
  #nav:not(.nav-ready) .btn { margin-top: 0; }
  .hero-topline { font-size: 11px; }
  .hero-layout { grid-template-columns: 1.1fr 1fr; gap: 4%; }
  .hero-text { padding-top: 10px; }
  .eyebrow { margin-bottom: 28px; font-size: 12px; }
  .hero h1 { font-size: 10.5vw; }
  .lede { font-size: 27px; margin-top: 29px; }
  .hero-description { font-size: 15px; }
  .hero-photo { padding: 8px 8px 0; }
  .hero-photo img { aspect-ratio: 4/6.7; }
  .hero-photo figcaption { font-size: 12px; line-height: 1.5; }
  .hero-foot { gap: 20px; }
  .hero-foot > span + span::before { margin-right: 20px; }
  .words { gap: 6%; }
  .words h2 { font-size: 48px; }
  .approach-prose { padding-top: 45px; }
  .tr-head h3 { font-size: 29px; }
  .tr-body { grid-template-columns: 1fr; gap: 28px; }
  .tr-body figure { position: static; max-width: 550px; }
  .tr-body figure img { aspect-ratio: 3/2; }
  .story .wrap { grid-template-columns: .85fr 1.15fr; gap: 6%; }
  .story-title h2 { font-size: 53px; }
  .story-chapter { grid-template-columns: 20px 1fr; gap: 14px; }
  .facts { grid-template-columns: 1fr; padding-left: 34px; }
  .working > .wrap { grid-template-columns: 1fr; }
  .working-heading { position: static; margin-bottom: 40px; }
  .working-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .working-card { grid-template-columns: 1fr; align-content: start; padding: 25px 16px; border-right: 1px solid var(--line); }
  .working-card:first-child { padding-left: 0; }
  .working-card:last-child { border-right: 0; padding-right: 0; }
  .working-card > * { grid-column: 1; }
  .working-index { grid-row: auto; }
  .working-card h3 { font-size: 30px; }
  .working-card .text-link { font-size: 13px; gap: 12px; }
  .recog .grid { gap: 35px 5%; }
  .cap h3 { font-size: 27px; }
  .award:first-child h3 { font-size: 34px; }
  .award:first-child img { aspect-ratio: 4/5.7; }
  .contact h2 { font-size: 57px; }
  .contact .btn { font-size: 17px; }
}
@media (max-width: 650px) {
  :root { --pad: 24px; --section-space: 76px; }
  html { scroll-padding-top: 92px; }
  h2 { font-size: clamp(43px, 10vw, 60px); }
  .kicker { font-size: 12px; letter-spacing: .07em; gap: 12px; margin-bottom: 25px; }
  .kicker::before { width: 18px; }
  #nav .brand { font-size: 24px; }
  .hero-topline { padding: 22px 0; font-size: 10px; letter-spacing: .05em; }
  .hero-layout { grid-template-columns: 1fr; gap: 32px; padding: 8px 0 28px; }
  .hero-text { padding: 10px 0 0; }
  .eyebrow { font-size: 12px; }
  .hero h1 { font-size: clamp(80px, 20vw, 126px); }
  .lede { font-size: 30px; margin-top: 32px; }
  .hero-description { font-size: 16px; max-width: 42ch; margin-top: 20px; }
  .hero .actions { gap: 22px; }
  .hero .btn { padding: 15px 21px; }
  .hero-photo { padding: 10px 10px 0; }
  .hero-photo img { aspect-ratio: 4/4.6; object-position: 50% 30%; }
  .hero-photo figcaption { padding: 15px 3px; }
  .hero-foot { font-size: 12px; gap: 9px; justify-content: space-between; flex-wrap: wrap; }
  .hero-foot > span + span::before { display: none; }
  .hero-foot a { width: 34px; height: 34px; margin-left: 0; }
  .words { grid-template-columns: 1fr; }
  .words h2 { font-size: clamp(45px, 10vw, 59px); }
  .approach-prose { padding-top: 32px; }
  .approach-prose > p:first-child { font-size: 27px; }
  .numbers { padding: 40px 0; }
  .numbers-intro { flex-direction: column; align-items: flex-start; gap: 24px; }
  .numbers-intro > p:not(.kicker) { font-size: 29px; }
  .numbers .grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 15px; border-bottom: 1px solid var(--line); gap: 18px; }
  .stat:first-child, .stat:nth-child(3) { padding-left: 0; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .stat-label { font-size: 12px; }
  .num { font-size: clamp(42px, 10.5vw, 67px); }
  .stat-desc { font-size: 13px; }
  .track h2 { margin-bottom: 35px; }
  .tr-head { grid-template-columns: 21px 1fr 38px; gap: 10px 12px; padding: 25px 0; }
  .experience-index { grid-column: 1; grid-row: 1; }
  .tr-head h3 { grid-column: 2; font-size: 29px; }
  .tr-head .meta { grid-column: 2; grid-row: 2; font-size: 13px; }
  .tr-head .plus { grid-column: 3; grid-row: 1/3; width: 38px; height: 38px; }
  .tr-body, .tr-body:not(:has(figure)) { padding: 8px 0 35px; }
  .tr-body dd.result { font-size: 28px; padding-left: 18px; }
  .story .wrap { grid-template-columns: 1fr; gap: 35px; }
  .story-title { position: static; }
  .story-title h2 { font-size: 59px; }
  .chapter-nav { display: none; }
  .story-chapter { grid-template-columns: 25px 1fr; gap: 14px; margin-bottom: 28px; padding-bottom: 28px; }
  .story-chapter h3 { font-size: 32px; }
  .facts { padding-left: 39px; }
  .working h2 { font-size: clamp(43px, 10vw, 60px); }
  .working-grid { grid-template-columns: 1fr; }
  .working-card, .working-card:first-child, .working-card:last-child { grid-template-columns: 26px 1fr; padding: 28px 0; gap: 15px; border-right: 0; }
  .working-index { grid-column: 1; grid-row: 1; }
  .working-card h3 { font-size: 35px; }
  .working-card > :not(.working-index) { grid-column: 2; }
  .working-card .text-link { font-size: 14px; }
  .recog .grid { grid-template-columns: 1fr; margin-top: 35px; gap: 35px; }
  .award:first-child { grid-row: auto; }
  .award img, .award:first-child img { aspect-ratio: 4/3; }
  .cap { padding-top: 19px; }
  .award-index { top: 22px; }
  .cap h3, .award:first-child h3 { font-size: 31px; }
  .press > .wrap { grid-template-columns: 1fr; }
  .press h2 { margin-bottom: 35px; }
  .press .row { padding-top: 26px; margin-bottom: 38px; }
  .pub { font-size: 39px; padding-bottom: 22px; margin-bottom: 22px; }
  .press h3 { font-size: 29px; }
  .press .note { margin-top: 0; }
  .quote { padding: 0 18px 70px; }
  .quote > .wrap { display: block; padding: 0; min-height: 0; }
  .quote-photo { position: static; aspect-ratio: 3/2; height: auto; object-fit: contain; filter: saturate(.65); }
  .quote > .wrap::before { display: none; }
  .quote-content { width: 100%; padding: 35px 22px 40px; }
  .quote .kicker { font-size: 11px; }
  .quote blockquote { font-size: clamp(30px, 7.7vw, 45px); }
  .contact > .wrap { grid-template-columns: 1fr; }
  .contact h2 { font-size: clamp(48px, 10.7vw, 67px); }
  .contact .lead { font-size: 16px; }
  .contact .actions { grid-column: 1; grid-row: auto; margin-top: 32px; }
  .contact .btn { min-height: 75px; font-size: 19px; padding: 20px 0; }
  .contact .lines { margin-top: 35px; line-height: 1.8; }
  .contact .lines b { display: block; margin-bottom: 8px; }
  .foot { padding-top: 42px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1/-1; }
  .foot-col { gap: 7px; }
  .foot-bottom { margin-top: 35px; }
}
@media (max-width: 360px) {
  :root { --pad: 20px; }
  .hero-topline { font-size: 9px; gap: 10px; }
  .hero h1 { font-size: 78px; }
  .hero-foot > span { font-size: 11px; }
  .hero-foot a { width: 30px; height: 30px; }
  .stat { padding-right: 10px; padding-left: 10px; }
  .stat-label { font-size: 11px; }
  .story-title h2 { font-size: 52px; }
  .tr-head h3 { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal].awaiting { opacity: 1; transform: none; }
  .btn:hover span[aria-hidden], .text-link:hover span { transform: none; }
}
@media print {
  :root { --ink: #111; --paper: #fff; --muted: #444; --line: #bbb; --champ: #654318; --surface: #fff; }
  #nav, .skip-link, .chapter-nav, .menu-btn { display: none; }
  .section { padding: 30px 0; }
  .story-title, .working-heading, .tr-body figure { position: static; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
