@charset "UTF-8";

:root {
    --black: #090909;
    --ink: #141414;
    --paper: #f2f1ed;
    --white: #ffffff;
    --gray: #a7a7a2;
    --line: rgba(20, 20, 20, .18);
    --line-dark: rgba(255, 255, 255, .18);
    --accent: #4169ff;
    --pad: clamp(24px, 4.2vw, 72px);
    --display: "Oswald", "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
    --body: "Noto Sans JP", "Helvetica Neue", Arial, "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 12px 18px; background: var(--accent); color: var(--white); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.honey { position: absolute!important; left: -9999px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.accent { color: var(--accent); }

.site-header { height: 84px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; background: transparent; position: fixed; top: 0; right: 0; left: 0; z-index: 100; transition: background-color .25s ease, color .25s ease; }
.site-header.is-scrolled { background: var(--paper); color: var(--ink); }
.site-header.is-over-dark:not(.is-scrolled) { color: var(--white); }
.site-header.is-over-dark:not(.is-scrolled) .brand-logo { filter: invert(1); }
.site-header.is-over-dark:not(.is-scrolled) .nav-contact { background: var(--white); color: var(--ink); }
.brand { display: block; line-height: 0; }
.brand-logo { display: block; width: clamp(154px, 13vw, 184px); height: auto; transition: filter .25s ease; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 42px); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.primary-nav a { position: relative; padding: 32px 0; }
.primary-nav a:not(.nav-contact)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 23px; height: 2px; background: currentColor; transition: right .25s ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { right: 0; }
.primary-nav .nav-contact { background: var(--ink); color: var(--white); padding: 13px 17px; }
.primary-nav .nav-contact span { margin-left: 20px; color: var(--accent); }
.menu-button { display: none; border: 0; background: none; color: inherit; font-size: 12px; font-weight: 800; letter-spacing: .1em; }

.hero { min-height: 100svh; background: var(--black); color: var(--white); padding: calc(84px + clamp(34px, 5vh, 70px)) var(--pad) 0; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.hero-grid { position: absolute; inset: 0; pointer-events: none; display: grid; grid-template-columns: repeat(4, 1fr); opacity: .17; }
.hero-grid span { border-left: 1px solid white; }
.hero-grid span:last-child { border-right: 1px solid white; }
.hero-kicker { position: relative; margin: 0; font-size: 10px; letter-spacing: .18em; font-weight: 700; display: flex; justify-content: space-between; }
.hero-kicker span { color: var(--gray); }
.hero h1 { position: relative; font-family: var(--body); font-size: clamp(46px, 6.4vw, 104px); font-weight: 500; letter-spacing: -.045em; line-height: 1.1; margin: auto 0 clamp(34px, 5vh, 68px); max-width: 1400px; }
.hero-bottom { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; padding-bottom: 44px; }
.hero-bottom > p { max-width: 620px; margin: 0; font-size: clamp(15px, 1.35vw, 21px); line-height: 1.85; color: #d2d2ce; }
.hero-actions { display: flex; align-items: center; justify-content: flex-end; gap: 36px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 36px; padding: 0 20px; font-size: 12px; font-weight: 700; letter-spacing: .04em; border: 1px solid currentColor; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--black); }
.button-light:hover { background: var(--accent); color: var(--white); }
.button-dark { background: var(--black); color: var(--white); }
.button-dark:hover { background: var(--accent); color: var(--white); }
.text-link, .arrow-link { display: inline-flex; gap: 24px; font-size: 12px; font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 7px; }
.text-link span, .arrow-link span { color: var(--accent); }
.hero-manifesto { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); padding: 15px 0 17px; font-size: 9px; letter-spacing: .2em; color: var(--gray); }

.section-pad { padding: clamp(80px, 11vw, 180px) var(--pad); }
.section-dark { background: var(--black); color: var(--white); }
.section-index { font: 700 11px/1 var(--body); letter-spacing: .1em; }
.eyebrow { font-size: 10px; line-height: 1.4; letter-spacing: .18em; font-weight: 800; text-transform: uppercase; }
.statement { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement-inner { width: 100%; max-width: 1440px; margin: 0 auto; }
.statement-copy { max-width: none; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr); grid-template-areas: "meta meta" "title body" "title link"; column-gap: clamp(48px, 7vw, 120px); align-content: start; }
.statement-meta { grid-area: meta; display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.statement .eyebrow { margin: 0; }
.page-hero h1, .section-heading h2, .profile-copy h2, .not-found h1 { font-family: var(--display); font-weight: 400; letter-spacing: -.065em; line-height: 1; }
.statement h2, .fellowship-band h2, .newsletter h2, .single-entry h1, .legal-page h1 { font-family: var(--body); font-weight: 500; letter-spacing: -.045em; line-height: 1.1; }
.statement h2 { grid-area: title; font-size: clamp(50px, 6.4vw, 100px); margin: 44px 0 0; padding-right: clamp(10px, 2vw, 34px); }
.statement-copy > p:not(.eyebrow) { grid-area: body; margin: 44px 0 0; max-width: 520px; font-size: clamp(16px, 1.35vw, 21px); line-height: 1.95; }
.statement .arrow-link { grid-area: link; align-self: start; justify-self: start; margin: 32px 0 0; }

.modes { display: grid; grid-template-columns: repeat(4, 1fr); }
.mode-card { min-height: 400px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 28px; display: flex; flex-direction: column; transition: background .25s, color .25s; }
.mode-card:hover { background: var(--black); color: var(--white); }
.mode-card > span { font-size: 10px; }
.mode-card h3 { font-family: var(--display); font-size: clamp(36px, 3.4vw, 58px); letter-spacing: -.055em; font-weight: 400; margin: auto 0 14px; }
.mode-card p { font-size: 13px; margin: 0; color: var(--gray); }
.mode-card i { font-style: normal; margin-top: 36px; color: var(--accent); font-size: 20px; align-self: flex-end; }

.section-heading { display: grid; grid-template-columns: 17% 1fr auto; align-items: end; margin-bottom: clamp(56px, 7vw, 110px); }
.section-heading .section-index { display: block; margin-bottom: 24px; }
.section-heading h2 { font-size: clamp(58px, 7vw, 110px); margin: 0; }
#now-building { padding-right: 0; padding-bottom: 0; padding-left: 0; }
#now-building > .section-heading { padding-right: var(--pad); padding-left: var(--pad); }
.entry-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid currentColor; }
.entry-card { min-width: 0; border-right: 1px solid currentColor; }
.entry-card:last-child { border-right: 0; }
.entry-card a { min-height: 460px; padding: 25px 26px; display: flex; flex-direction: column; transition: background .25s, color .25s; }
.section-dark .entry-card a:hover { background: var(--white); color: var(--black); }
.entry-grid:not(.section-dark *) .entry-card a:hover { background: var(--black); color: var(--white); }
.entry-thumb { margin: 0; aspect-ratio: 3 / 2; overflow: hidden; background: var(--black); }
.entry-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .45s ease; }
.entry-card a:hover .entry-thumb img { transform: scale(1.035); }
@media (hover: hover) and (pointer: fine) {
    #works-list .entry-thumb img,
    #research-list .entry-thumb img,
    #journal-list .entry-thumb img,
    #now-building .entry-thumb img { filter: grayscale(1); }
    #works-list .entry-card a:hover .entry-thumb img,
    #works-list .entry-card a:focus-visible .entry-thumb img,
    #research-list .entry-card a:hover .entry-thumb img,
    #research-list .entry-card a:focus-visible .entry-thumb img,
    #journal-list .entry-card a:hover .entry-thumb img,
    #journal-list .entry-card a:focus-visible .entry-thumb img,
    #now-building .entry-card a:hover .entry-thumb img,
    #now-building .entry-card a:focus-visible .entry-thumb img { filter: grayscale(0); }
}
.card-meta { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.status-dot::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: 7px; box-shadow: 0 0 0 3px rgba(65,105,255,.16); }
.entry-card h2 { font-family: var(--body); font-size: clamp(32px, 3.2vw, 54px); line-height: 1.15; letter-spacing: -.035em; font-weight: 600; margin: auto 0 24px; overflow-wrap: anywhere; }
.entry-card p { font-size: 13px; line-height: 1.8; color: var(--gray); margin: 0 0 42px; }
.card-foot { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: .08em; }
.card-foot b { color: var(--accent); margin-left: 12px; }
.research-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); background: var(--white); border-color: var(--line); border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.research-grid .entry-card { border-color: var(--line); }
.research-grid .entry-card:nth-child(3n) { border-right: 0; }
.research-grid .entry-card a { min-height: 0; height: 100%; padding: 0; }
.research-grid .card-meta { padding: 19px 20px 0; }
.research-grid .entry-card h2 { margin: 19px 20px 14px; font-size: clamp(24px, 1.8vw, 32px); line-height: 1.18; }
.research-grid .entry-card p { margin: 0 20px 26px; color: #62625f; font-size: 13px; line-height: 1.75; }
.research-grid .card-foot { margin-top: auto; padding: 15px 20px 18px; border-top: 1px solid var(--line); }
.research-grid .entry-card a:hover p { color: #b8b8b4; }
.research-grid .entry-card a:hover .card-foot { border-color: var(--line-dark); }
#works-list,
#research-list,
#journal-list { gap: clamp(18px, 2vw, 30px); border: 0; background: transparent; }
#works-list .entry-card,
#works-list .entry-card:nth-child(3n),
#research-list .entry-card,
#research-list .entry-card:nth-child(3n),
#journal-list .entry-card,
#journal-list .entry-card:nth-child(3n) { border: 1px solid var(--line); background: var(--white); }
.entry-pagination { width: calc(100% - (var(--pad) * 2)); max-width: 1440px; margin: clamp(34px, 5vw, 64px) auto clamp(110px, 11vw, 180px); padding-top: 22px; display: grid; grid-template-columns: minmax(86px, 1fr) auto minmax(86px, 1fr); align-items: center; gap: 24px; border-top: 1px solid var(--line); }
.entry-pagination[hidden] { display: none; }
.entry-pagination > button,
.entry-pagination [data-page-list] button { min-width: 42px; min-height: 42px; padding: 0 12px; border: 1px solid var(--line); background: transparent; color: var(--ink); font-family: var(--display); font-size: 11px; font-weight: 500; letter-spacing: .08em; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.entry-pagination > button:first-child { justify-self: start; }
.entry-pagination > button:last-child { justify-self: end; }
.entry-pagination > button:disabled { opacity: .32; cursor: default; }
.entry-pagination > button:not(:disabled):hover,
.entry-pagination [data-page-list] button:hover,
.entry-pagination [data-page-list] button[aria-current="page"] { border-color: var(--black); background: var(--black); color: var(--white); }
.entry-pagination [data-page-list] { display: flex; justify-content: center; gap: 8px; }
.entry-pagination .page-ellipsis { min-width: 20px; display: grid; place-items: center; color: #777; font-size: 12px; }
.entry-tools { width: calc(100% - (var(--pad) * 2)); max-width: 1440px; margin: clamp(60px, 9vw, 140px) auto 0; padding: 18px 20px; display: grid; grid-template-columns: minmax(260px, 1fr) minmax(190px, 260px) auto; gap: 18px; align-items: end; border: 1px solid var(--line); background: var(--white); }
.entry-tools label { display: grid; gap: 9px; min-width: 0; }
.entry-tools label > span { font-family: var(--display); font-size: 10px; font-weight: 500; letter-spacing: .12em; }
.entry-tools input, .entry-tools select { width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 0; background: var(--paper); color: var(--ink); font: inherit; font-size: 13px; }
.entry-tools input:focus, .entry-tools select:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.entry-results { min-width: 64px; min-height: 48px; margin: 0; display: flex; align-items: center; justify-content: flex-end; font-family: var(--body); font-size: 13px; }
.entry-empty { grid-column: 1 / -1; margin: 0; padding: 20px 0 2px; border-top: 1px solid var(--line); color: #62625f; font-size: 13px; }
.entry-empty[hidden] { display: none; }
.entry-tools + .research-grid { width: calc(100% - (var(--pad) * 2)); max-width: 1440px; margin: 48px auto 0; }

.notes-section { border-bottom: 1px solid var(--line); }
.note-list { border-top: 1px solid var(--ink); }
.note-row { display: grid; grid-template-columns: 9% 1fr auto 24px; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); padding: 28px 0; transition: padding .25s, background .25s; }
.note-row:hover { padding-left: 18px; padding-right: 18px; background: var(--white); }
.note-row > span, .note-row time { font-size: 10px; color: #60605d; }
.note-row small { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.note-row h3 { font-family: var(--body); font-size: clamp(20px, 2.1vw, 34px); line-height: 1.3; letter-spacing: -.025em; font-weight: 600; margin: 8px 0 0; }
.note-row i { color: var(--accent); background: var(--black); width: 25px; height: 25px; display: grid; place-items: center; font-style: normal; }

.profile-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; }
.profile-visual { background: var(--black); color: var(--white); display: flex; flex-direction: column; justify-content: space-between; padding: var(--pad); overflow: hidden; }
.q-figure { font-family: Arial Black, sans-serif; font-size: clamp(260px, 42vw, 650px); line-height: .74; letter-spacing: -.2em; transform: translateX(-.08em); }
.profile-visual span { font-size: 10px; letter-spacing: .16em; line-height: 1.5; }
.profile-copy { background: var(--white); padding: clamp(60px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; }
.profile-copy h2 { font-size: clamp(64px, 7.2vw, 112px); margin: 24px 0 56px; }
.profile-copy p:not(.eyebrow) { max-width: 540px; font-size: 16px; line-height: 1.9; margin: 0 0 46px; }
.profile-copy .button { align-self: flex-start; }

.fellowship-band { background: var(--paper); color: var(--black); position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fellowship-band::before { content: "04"; position: absolute; right: var(--pad); top: 50%; transform: translateY(-58%); font: 800 clamp(180px, 31vw, 500px)/1 var(--display); color: rgba(9,9,9,.055); }
.fellowship-band h2 { position: relative; font-size: clamp(44px, 6vw, 96px); line-height: 1.08; margin: 38px 0 70px; max-width: 100%; }
.fellowship-band > div { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 8vw; align-items: end; max-width: 980px; margin-left: 20%; }
.fellowship-band > div p { font-size: 16px; line-height: 1.9; margin: 0; color: rgba(9,9,9,.72); }
.newsletter { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 8vw; background: var(--accent); color: var(--white); }
.newsletter h2 { font-size: clamp(34px, 3.2vw, 52px); line-height: 1.18; margin: 25px 0 0; }
.newsletter-form label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .12em; margin-bottom: 12px; }
.newsletter-form > div, .inline-form { display: flex; border-bottom: 2px solid var(--black); }
.newsletter-form input, .inline-form input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 18px 0; outline: none; font-size: 18px; }
.newsletter-form button, .inline-form button { border: 0; background: transparent; padding: 0 6px 0 24px; font-size: 12px; font-weight: 800; cursor: pointer; }
.newsletter-form small { display: block; margin-top: 12px; font-size: 10px; }
.newsletter .newsletter-form > div { border-color: var(--white); }
.newsletter .newsletter-form input, .newsletter .newsletter-form button { color: var(--white); }
.newsletter .newsletter-form input::placeholder { color: rgba(255,255,255,.68); }

.site-footer { background: var(--black); color: var(--white); padding: clamp(70px, 9vw, 140px) var(--pad) 24px; }
.footer-brand { display: block; width: clamp(190px, 18vw, 260px); margin-bottom: clamp(58px, 7vw, 100px); line-height: 0; }
.footer-brand img { display: block; width: 100%; height: auto; }
.footer-lead { padding-bottom: 100px; border-bottom: 1px solid var(--line-dark); }
.footer-lead > a { display: inline-block; font-family: var(--display); font-size: clamp(50px, 8.5vw, 132px); letter-spacing: -.07em; line-height: .92; margin-top: 34px; }
.footer-lead > a span { color: var(--accent); font-size: .35em; vertical-align: top; }
.footer-grid { display: grid; grid-template-columns: 2fr 2fr 1fr; gap: 40px; padding: 70px 0; }
.footer-grid > div { display: flex; flex-direction: column; gap: 14px; }
.footer-grid a { font-size: 13px; color: #d0d0cc; }
.footer-grid a:hover { color: var(--accent); }
.footer-label { font-size: 9px; letter-spacing: .16em; color: #777; margin-bottom: 16px; text-transform: uppercase; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 22px; display: flex; justify-content: space-between; font-size: 9px; letter-spacing: .1em; color: #777; }

.page-hero { min-height: 78svh; padding-top: clamp(120px, 11vw, 180px); display: flex; align-items: flex-end; border-bottom: 1px solid var(--line); background-image: linear-gradient(90deg, transparent calc(25% - 1px), var(--line) 25%, transparent calc(25% + 1px), transparent calc(50% - 1px), var(--line) 50%, transparent calc(50% + 1px), transparent calc(75% - 1px), var(--line) 75%, transparent calc(75% + 1px)); }
.page-hero-inner { width: 100%; max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 12% minmax(0, 1fr); align-items: end; }
.page-hero h1 { font-size: clamp(64px, 9.7vw, 154px); margin: 28px 0 55px; }
.page-lead { font-size: clamp(15px, 1.4vw, 21px); line-height: 1.8; max-width: 700px; margin: 0 0 0 45%; }
.page-hero + .entry-grid { margin: clamp(60px, 9vw, 140px) var(--pad); }
.page-hero + .research-grid { width: calc(100% - (var(--pad) * 2)); max-width: 1440px; margin: clamp(60px, 9vw, 140px) auto 0; }

.editorial { display: grid; grid-template-columns: 28% 1fr; gap: 60px; }
.editorial-label { font-size: 10px; letter-spacing: .14em; font-weight: 700; }
.long-copy { max-width: 850px; }
.long-copy h2 { font-family: var(--body); font-size: clamp(40px, 5vw, 78px); line-height: 1.15; letter-spacing: -.04em; font-weight: 500; margin: 0 0 55px; }
.long-copy p { font-size: clamp(16px, 1.4vw, 20px); line-height: 2; margin: 0 0 28px; }
.long-copy blockquote { margin: 80px 0 0; padding: 34px 0; border-top: 1px solid; border-bottom: 1px solid; font-family: var(--body); font-size: clamp(30px, 3.5vw, 54px); letter-spacing: -.025em; }
.profile-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.profile-detail h2 { font-family: var(--display); font-size: clamp(72px, 9vw, 140px); line-height: .86; letter-spacing: -.07em; font-weight: 400; margin: 35px 0; }
.about-hero { min-height: 100svh; padding: calc(84px + clamp(36px, 5vw, 78px)) var(--pad) clamp(52px, 7vw, 110px); background: var(--black); color: var(--white); }
.about-hero-meta { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.about-identity { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); gap: clamp(50px, 7vw, 120px); align-items: end; margin-top: clamp(58px, 8vw, 120px); }
.about-name .eyebrow { margin: 0 0 34px; color: #a9a9a4; }
.about-name h1 { margin: 0; font-family: var(--display); font-size: clamp(94px, 13.2vw, 208px); font-weight: 400; letter-spacing: -.07em; line-height: .78; }
.about-name h1 span { color: var(--accent); }
.about-ja-name { margin: 34px 0 0; font-size: 13px; letter-spacing: .24em; }
.about-portrait { width: min(100%, 380px); margin: 0; justify-self: end; }
.about-portrait > div { aspect-ratio: 1; padding: clamp(10px, 1vw, 16px); background: var(--accent); }
.about-portrait img { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-portrait figcaption { padding-top: 14px; font-size: 8px; letter-spacing: .16em; color: #8d8d88; }
.about-hero-intro { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(360px, 1.2fr); gap: clamp(50px, 9vw, 160px); margin-top: clamp(64px, 8vw, 120px); padding-top: 30px; border-top: 1px solid var(--line-dark); }
.about-hero-intro p { margin: 0; }
.about-hero-intro p:first-child { font-size: clamp(20px, 2vw, 30px); line-height: 1.65; }
.about-hero-intro p:last-child { max-width: 720px; font-size: clamp(15px, 1.25vw, 19px); line-height: 2; color: #c8c8c4; }
.about-facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--paper); border-bottom: 1px solid var(--line); }
.about-facts article { min-height: 250px; padding: 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.about-facts article:last-child { border-right: 0; }
.about-facts article > span { font-size: 9px; }
.about-facts strong { margin-top: auto; font-family: var(--display); font-size: clamp(44px, 4.4vw, 72px); font-weight: 400; letter-spacing: -.05em; }
.about-facts small { margin-top: 6px; font-size: 8px; font-weight: 700; letter-spacing: .13em; color: var(--accent); }
.about-facts p { margin: 22px 0 0; font-size: 12px; line-height: 1.7; }
.about-story { background: var(--white); }
.about-story-inner { width: 100%; max-width: 1440px; margin: 0 auto; }
.about-section-label { display: flex; gap: 28px; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.about-section-label > span { font-size: 10px; font-weight: 700; }
.about-section-label p { margin: 0; }
.about-story-body h2 { max-width: 1050px; margin: clamp(44px, 6vw, 84px) 0 0; font-family: var(--body); font-size: clamp(42px, 4.8vw, 72px); font-weight: 500; letter-spacing: -.04em; line-height: 1.22; }
.about-story-content { margin-top: clamp(52px, 7vw, 96px); display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: clamp(60px, 8vw, 130px); align-items: start; }
.about-story-copy { max-width: 760px; }
.about-story-copy p { margin: 0 0 30px; font-size: clamp(15px, 1.15vw, 18px); line-height: 2; }
.about-story-copy a,
.profile-dossier a { color: inherit; text-decoration-color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: .22em; }
.profile-dossier { margin: 0; border-top: 1px solid var(--line); }
.profile-dossier > div { display: grid; grid-template-columns: 34% 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.profile-dossier dt { font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.profile-dossier dd { margin: 0; font-size: 13px; line-height: 1.6; }
.career-section { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.career-head { display: grid; grid-template-columns: 28% 1fr; align-items: end; margin-bottom: clamp(60px, 8vw, 120px); }
.career-head > div { display: flex; gap: 28px; align-items: flex-end; }
.career-head > div > span { font-size: 10px; font-weight: 700; }
.career-head p { margin: 0; }
.career-head h2 { margin: 0; font-family: var(--display); font-size: clamp(58px, 7vw, 110px); font-weight: 400; letter-spacing: -.065em; line-height: .9; }
.career-timeline { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--ink); }
.career-timeline li { display: grid; grid-template-columns: 14% 28% 1fr; gap: 30px; align-items: baseline; padding: 30px 0; border-bottom: 1px solid var(--line); }
.career-timeline time { font: 400 clamp(28px, 3vw, 46px)/1 var(--display); letter-spacing: -.04em; }
.career-timeline h3 { margin: 0; font-size: 11px; letter-spacing: .12em; }
.career-timeline p { max-width: 720px; margin: 0; font-size: 14px; line-height: 1.85; color: #555552; }
.venture-archive { background: var(--accent); color: var(--white); }
.venture-head { display: grid; grid-template-columns: 20% 1fr 34%; gap: clamp(34px, 6vw, 90px); align-items: end; margin-bottom: clamp(70px, 9vw, 140px); }
.venture-head > div { display: flex; gap: 28px; }
.venture-head > div > span { font-size: 10px; font-weight: 700; }
.venture-head p { margin: 0; }
.venture-head > p { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,.78); }
.venture-head h2 { margin: 0; font-family: var(--display); font-size: clamp(62px, 8vw, 124px); font-weight: 400; letter-spacing: -.065em; line-height: .88; }
.venture-head h2 span { color: var(--black); }
.venture-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.45); }
.venture-grid article { min-height: 350px; padding: 28px 30px; border-right: 1px solid rgba(255,255,255,.45); border-bottom: 1px solid rgba(255,255,255,.45); display: flex; flex-direction: column; }
.venture-grid article:nth-child(even) { border-right: 0; }
.venture-grid article:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; }
.venture-grid article > span { font-size: 9px; }
.venture-grid .venture-meta { margin: 16px 0 0; font-size: 9px; font-weight: 800; letter-spacing: .13em; color: rgba(255,255,255,.68); }
.venture-grid h3 { margin: auto 0 22px; font-family: var(--display); font-size: clamp(34px, 4vw, 64px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.venture-grid .venture-description { max-width: 620px; margin: 0; font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.82); }
.venture-url { width: fit-content; margin-top: 28px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.68); color: var(--white); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.venture-url:hover,
.venture-url:focus-visible { border-color: var(--white); }
.about-practice { background: var(--black); color: var(--white); }
.about-practice-head { display: grid; grid-template-columns: 20% 1fr 34%; gap: clamp(34px, 6vw, 90px); align-items: end; margin-bottom: clamp(70px, 9vw, 140px); }
.about-practice-head > div { display: flex; gap: 28px; }
.about-practice-head > div > span { font-size: 10px; font-weight: 700; }
.about-practice-head p { margin: 0; }
.about-practice-head > p { font-size: 15px; line-height: 1.9; color: #b8b8b4; }
.about-practice h2 { margin: 0; font-family: var(--display); font-size: clamp(62px, 8vw, 124px); font-weight: 400; letter-spacing: -.065em; line-height: .88; }
.about-practice h2 span { color: var(--accent); }
.practice-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-dark); }
.practice-grid article { min-height: 300px; padding: 28px 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); display: flex; flex-direction: column; }
.practice-grid article:nth-child(even) { border-right: 0; }
.practice-grid article > span { font-size: 9px; }
.practice-grid h3 { margin: auto 0 24px; font-family: var(--display); font-size: clamp(34px, 4vw, 64px); font-weight: 400; letter-spacing: -.045em; }
.practice-grid p { max-width: 560px; margin: 0; font-size: 14px; line-height: 1.85; color: #b8b8b4; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.capability-grid > div { min-height: 200px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.capability-grid span { font-size: 9px; }
.capability-grid p { font-size: 15px; line-height: 1.5; }
.principles { background: var(--white); }
.principles > .eyebrow { margin-bottom: 45px; }
.principles article { display: grid; grid-template-columns: 10% 45% 1fr; gap: 30px; align-items: baseline; border-top: 1px solid var(--line); padding: 32px 0; }
.principles article > span { font-size: 10px; }
.principles h2 { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 3.2vw, 50px); letter-spacing: -.04em; margin: 0; }
.principles article p { margin: 0; line-height: 1.8; color: #60605d; }
.about-hero,
.about-facts,
.about-story,
.career-section,
.venture-archive,
.about-practice,
.principles { padding-left: max(var(--pad), calc((100% - 1440px) / 2)); padding-right: max(var(--pad), calc((100% - 1440px) / 2)); }

.topic-strip { border-top: 1px solid var(--line); }
.topic-strip > div { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px; }
.topic-strip span { border: 1px solid var(--ink); border-radius: 100px; padding: 12px 18px; font-size: 12px; }
.program-split { display: grid; grid-template-columns: 1fr 1fr; }
.program-split article { padding: clamp(60px, 8vw, 120px) var(--pad); background: var(--white); }
.program-split .inverse { background: var(--black); color: var(--white); }
.program-split h2 { font-family: var(--body); font-size: clamp(38px, 4.2vw, 68px); font-weight: 500; letter-spacing: -.04em; margin: 30px 0 50px; }
.program-split ul { list-style: none; padding: 0; margin: 0; }
.program-split li { padding: 18px 0; border-top: 1px solid currentColor; font-size: 14px; }
.program-split li::before { content: "+"; color: var(--accent); margin-right: 18px; }
.fellowship-cta { background: var(--accent); color: var(--white); }
.fellowship-cta h2 { font-family: var(--body); font-size: clamp(44px, 6vw, 96px); letter-spacing: -.04em; line-height: 1.14; font-weight: 500; margin: 35px 0; }
.fellowship-cta > p:not(.eyebrow) { max-width: 700px; line-height: 1.8; }
.fellowship-cta .button { margin-top: 50px; }

.single-entry { max-width: 1600px; margin: 0 auto; padding: clamp(130px, 11vw, 180px) var(--pad) clamp(60px, 9vw, 150px); }
.single-entry > header { max-width: 1200px; margin-right: auto; margin-left: auto; padding-bottom: 90px; border-bottom: 1px solid var(--line); }
.single-entry header > a { font-size: 11px; font-weight: 700; }
.single-entry header .eyebrow { margin-top: 70px; }
.single-entry h1 { font-size: clamp(42px, 5vw, 82px); line-height: 1.12; margin: 30px 0 50px; }
.single-lead { font-size: clamp(18px, 2vw, 30px); line-height: 1.7; max-width: 850px; }
.article-hero-image { max-width: 1200px; margin: clamp(48px, 7vw, 90px) auto 0; aspect-ratio: 3 / 2; overflow: hidden; background: var(--black); }
.article-hero-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: filter .45s ease; }
@media (hover: hover) and (pointer: fine) {
    .article-hero-image--works img { filter: grayscale(1); }
    .article-hero-image--works:hover img { filter: grayscale(0); }
}
.article-body { max-width: 960px; margin: 90px auto; }
.article-body > p:first-child { font-size: clamp(19px, 1.7vw, 23px); line-height: 1.95; }
.article-body h2 { font-family: var(--body); font-size: clamp(28px, 3vw, 44px); line-height: 1.4; letter-spacing: -.03em; font-weight: 600; margin: 76px 0 26px; }
.article-body h3 { font-size: 21px; line-height: 1.5; margin: 54px 0 22px; }
.article-body h4 { margin: 38px 0 16px; padding-left: 14px; border-left: 3px solid var(--accent); font-size: 14px; line-height: 1.65; letter-spacing: .05em; }
.article-body p { font-size: 17px; line-height: 2.1; margin: 0 0 28px; }
.article-body strong { font-weight: 700; }
.article-external-link a { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 5px; border-bottom: 1px solid var(--line-strong); overflow-wrap: anywhere; }
.article-external-link a:hover { color: var(--blue); border-color: var(--blue); }
.article-body ul, .article-body ol { margin: 34px 0 42px; padding: 0 0 0 1.4em; }
.article-body li { padding: 7px 0 7px 8px; font-size: 16px; line-height: 1.85; }
.article-body li::marker { color: var(--accent); font-weight: 800; }
.article-body blockquote { margin: 55px 0; padding: 30px 34px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--white); }
.article-body blockquote p { margin: 0; font-family: var(--body); font-size: clamp(25px, 3vw, 38px); line-height: 1.6; letter-spacing: -.02em; font-weight: 500; }
.article-table-wrap { width: min(960px, calc(100vw - (var(--pad) * 2))); margin: 55px 0 65px 50%; overflow-x: auto; transform: translateX(-50%); border-top: 1px solid var(--ink); }
.article-table-wrap table { width: 100%; min-width: 680px; border-collapse: collapse; background: var(--white); }
.article-table-wrap th, .article-table-wrap td { padding: 18px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 13px; line-height: 1.7; }
.article-table-wrap th { background: var(--black); color: var(--white); font-size: 10px; letter-spacing: .08em; }
.article-table-wrap th:last-child, .article-table-wrap td:last-child { border-right: 0; }
.article-image, .article-video { width: min(960px, calc(100vw - (var(--pad) * 2))); margin: 60px 0 70px 50%; transform: translateX(-50%); }
.article-image img { display: block; width: 100%; height: auto; background: var(--black); }
.article-image figcaption, .article-video figcaption { margin-top: 12px; font-size: 10px; line-height: 1.6; color: #656560; }
.article-video > div { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--black); }
.article-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.article-after { max-width: 960px; margin: 0 auto 70px; }
.article-share { padding: 28px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.article-share .eyebrow { margin: 0 0 20px; }
.article-share > div { display: flex; flex-wrap: wrap; gap: 8px; }
.article-share a, .article-share button { min-height: 44px; padding: 0 16px; border: 1px solid var(--ink); background: transparent; color: var(--ink); display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; cursor: pointer; }
.article-share a:hover, .article-share button:hover { background: var(--black); color: var(--white); }
.article-share button.is-copied { background: var(--accent); border-color: var(--accent); color: var(--white); }
.article-author { margin-top: 50px; display: grid; grid-template-columns: 220px 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; padding: clamp(28px, 4vw, 52px); background: var(--black); color: var(--white); }
.article-author > img { display: block; width: 220px; height: 220px; object-fit: cover; }
.article-author .eyebrow { margin: 0 0 18px; color: #999994; }
.article-author h2 { margin: 0 0 22px; font-family: var(--display); font-size: clamp(38px, 5vw, 68px); font-weight: 400; letter-spacing: -.05em; }
.article-author p:not(.eyebrow) { max-width: 560px; margin: 0 0 25px; color: #c3c3be; font-size: 14px; line-height: 1.85; }
.single-entry footer { max-width: 960px; margin: 0 auto; border-top: 1px solid var(--line); padding-top: 40px; }
.related-section { background: var(--white); border-top: 1px solid var(--line); }
.related-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: clamp(40px, 6vw, 80px); }
.related-head .eyebrow { margin: 0; }
.related-head h2 { margin: 0; font-family: var(--display); font-size: clamp(52px, 7vw, 100px); font-weight: 400; letter-spacing: -.06em; line-height: .9; }
.related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.related-grid .entry-card:last-child { border-right: 1px solid var(--line); }
.related-grid .entry-card a { min-height: 0; padding: 0; }
.related-grid .card-meta { padding: 17px 18px 0; }
.related-grid .entry-card h2 { margin: 18px 18px 13px; font-size: clamp(25px, 2.2vw, 36px); line-height: 1.12; }
.related-grid .entry-card p { margin: 0 18px 24px; font-size: 12px; line-height: 1.7; color: #62625f; }
.related-grid .card-foot { margin-top: auto; padding: 14px 18px 17px; border-top: 1px solid var(--line); }
.related-grid .entry-card a:hover p { color: #b8b8b4; }
@media (hover: hover) and (pointer: fine) {
    .related-section--works .entry-thumb img { filter: grayscale(1); }
    .related-section--works .entry-card a:hover .entry-thumb img,
    .related-section--works .entry-card a:focus-visible .entry-thumb img { filter: grayscale(0); }
}

.contact-layout { width: calc(100% - (var(--pad) * 2)); max-width: 1440px; margin-right: auto; margin-left: auto; padding-right: 0; padding-left: 0; display: grid; grid-template-columns: minmax(260px, 1fr) minmax(0, 1.7fr); gap: clamp(64px, 7vw, 120px); }
.contact-layout aside p { line-height: 1.9; max-width: 390px; }
.contact-layout aside a { display: inline-block; margin-top: 30px; border-bottom: 1px solid; font-size: 13px; }
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { font-size: 10px; letter-spacing: .08em; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form textarea, .contact-form select { width: 100%; display: block; border: 0; border-bottom: 1px solid var(--line); background: transparent; border-radius: 0; padding: 15px 0; outline: 0; font-size: 16px; margin-top: 7px; }
.contact-form textarea { border: 1px solid var(--line); padding: 15px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--accent); box-shadow: 0 2px 0 var(--accent); }
.contact-form .check { display: flex; align-items: center; gap: 12px; letter-spacing: 0; font-weight: 400; font-size: 12px; }
.contact-form .check input { width: 18px; height: 18px; }
.contact-form .check a { text-decoration: underline; }
.contact-form .button { align-self: flex-start; min-width: 220px; }
.notice { position: sticky; top: 0; z-index: 120; background: var(--accent); color: var(--white); padding: 16px var(--pad); font-size: 13px; font-weight: 700; }
.notice.is-error { background: #ff6159; color: var(--white); }

.search-section form { max-width: 900px; }
.search-count { margin: 60px 0 30px; font-size: 13px; }
.search-section .entry-grid { grid-template-columns: 1fr; }
.search-section .entry-card { border-right: 0; border-bottom: 1px solid var(--line); }
.search-section .entry-card a { min-height: 260px; }
.legal-page { max-width: 1120px; margin: auto; padding-top: clamp(130px, 11vw, 180px); }
.legal-page h1 { font-size: clamp(54px, 8vw, 110px); margin: 40px 0 90px; }
.not-found { min-height: 80svh; padding: 12vw var(--pad); }
.not-found h1 { font-size: clamp(80px, 13vw, 200px); margin: 35px 0; }
.not-found > p:not(.eyebrow) { margin-bottom: 45px; }

.jp-heading { line-break: strict; word-break: auto-phrase; text-wrap: pretty; }
.heading-line { display: block; }
.heading-phrase { display: inline-block; white-space: nowrap; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .site-header { height: 70px; }
    .site-header.is-menu-open { color: var(--white); }
    .site-header.is-menu-open .brand-logo { filter: invert(1); }
    .site-header.is-menu-open .menu-button i::before,
    .site-header.is-menu-open .menu-button i::after { background: var(--white); }
    .brand, .menu-button { position: relative; z-index: 2; }
    .site-header.is-over-dark:not(.is-scrolled) .menu-button i { background: var(--white); box-shadow: 0 5px var(--white); }
    .menu-button { display: flex; align-items: center; gap: 10px; cursor: pointer; }
    .menu-button i { display: block; position: relative; width: 20px; height: 12px; background: none!important; box-shadow: none!important; }
    .menu-button i::before,
    .menu-button i::after { content: ""; position: absolute; left: 0; width: 20px; height: 1px; background: var(--ink); transition: top .3s ease, transform .3s ease, background-color .2s ease; }
    .menu-button i::before { top: 3px; }
    .menu-button i::after { top: 9px; }
    .site-header.is-over-dark:not(.is-scrolled) .menu-button i::before,
    .site-header.is-over-dark:not(.is-scrolled) .menu-button i::after { background: var(--white); }
    .menu-button[aria-expanded="true"] i::before { top: 6px; transform: rotate(45deg); }
    .menu-button[aria-expanded="true"] i::after { top: 6px; transform: rotate(-45deg); }
    .primary-nav { display: flex; position: fixed; inset: 0; z-index: 1; min-height: 100svh; overflow-y: auto; background: var(--black); color: var(--white); padding: clamp(110px, 16vh, 150px) var(--pad) clamp(32px, 6vh, 64px); flex-direction: column; align-items: stretch; justify-content: center; gap: 0; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px); transition: opacity .38s ease, transform .45s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .45s; }
    .primary-nav::before { content: "NAVIGATION"; display: block; margin-bottom: clamp(18px, 4vh, 36px); color: var(--gray); font: 600 9px/1 var(--body); letter-spacing: .22em; }
    .primary-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
    .primary-nav a { padding: clamp(12px, 2vh, 21px) 0; border-bottom: 1px solid var(--line-dark); font-family: var(--display); font-size: clamp(34px, 6.5vw, 62px); font-weight: 400; line-height: 1; letter-spacing: -.025em; opacity: 0; transform: translateY(18px); transition: opacity .28s ease, transform .4s cubic-bezier(.22, 1, .36, 1), color .2s ease; }
    .primary-nav.is-open a { opacity: 1; transform: none; }
    .primary-nav.is-open a:nth-of-type(1) { transition-delay: .08s; }
    .primary-nav.is-open a:nth-of-type(2) { transition-delay: .12s; }
    .primary-nav.is-open a:nth-of-type(3) { transition-delay: .16s; }
    .primary-nav.is-open a:nth-of-type(4) { transition-delay: .2s; }
    .primary-nav.is-open a:nth-of-type(5) { transition-delay: .24s; }
    .primary-nav.is-open a:nth-of-type(6) { transition-delay: .28s; }
    .primary-nav a::after { display: none; }
    .primary-nav .nav-contact { margin-top: clamp(18px, 4vh, 34px); padding: 18px 20px; background: var(--accent); color: var(--white); border-bottom: 0; font-family: var(--body); font-size: 13px; font-weight: 700; letter-spacing: .04em; }
    .primary-nav .nav-contact span { color: var(--white); }
    .site-header.is-menu-open .primary-nav .nav-contact { background: var(--accent); color: var(--white); }
    .site-header.is-menu-open .primary-nav .nav-contact span { color: var(--white); }
    .hero { min-height: 100svh; padding-top: calc(70px + clamp(34px, 5vh, 70px)); }
    .hero-bottom { grid-template-columns: 1fr; gap: 28px; }
    .section-heading { grid-template-columns: 1fr auto; gap: 30px; }
    .section-heading > div { display: none; }
    .entry-card a { min-height: 400px; }
    .research-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .research-grid .entry-card:nth-child(3n) { border-right: 1px solid currentColor; }
    .research-grid .entry-card:nth-child(even) { border-right: 0; }
    .profile-band { min-height: 650px; }
    .profile-copy { padding: 60px 44px; }
    .q-figure { font-size: 36vw; }
    .page-lead { margin-left: 25%; }
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { gap: 6vw; }
    .about-story-content { grid-template-columns: 1fr; gap: 54px; }
    .about-identity { grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr); }
    .about-facts { grid-template-columns: 1fr 1fr; }
    .about-facts article:nth-child(2) { border-right: 0; }
    .career-head { grid-template-columns: 1fr 1fr; }
    .venture-head { grid-template-columns: 1fr 1fr; }
    .venture-head > p { grid-column: 2; }
    .about-practice-head { grid-template-columns: 1fr 1fr; }
    .about-practice-head > p { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
    .primary-nav,
    .primary-nav a,
    .menu-button i::before,
    .menu-button i::after { transition-duration: .01ms!important; transition-delay: 0s!important; }
}

@media (max-width: 720px) {
    :root { --pad: 20px; }
    .hero { padding-top: 98px; }
    .hero-kicker span { display: none; }
    .hero h1 { font-size: clamp(38px, 10.5vw, 64px); line-height: 1.08; margin-top: auto; }
    .hero-actions { align-items: stretch; justify-content: flex-start; flex-direction: column; gap: 22px; }
    .hero-manifesto { font-size: 7px; letter-spacing: .08em; }
    .section-pad { padding-top: 78px; padding-bottom: 78px; }
    .statement-meta { gap: 20px; }
    .statement-copy { grid-template-columns: 1fr; grid-template-areas: "meta" "title" "body" "link"; }
    .statement h2 { font-size: 12vw; margin-top: 28px; padding-right: 0; }
    .statement-copy > p:not(.eyebrow) { margin-top: 34px; }
    .statement .arrow-link { margin-top: 26px; }
    .modes { grid-template-columns: 1fr 1fr; }
    .mode-card { min-height: 270px; padding: 20px; }
    .section-heading { grid-template-columns: 1fr; }
    .section-heading .arrow-link { justify-self: start; }
    .entry-grid { grid-template-columns: 1fr; }
    .entry-card { border-right: 0; border-bottom: 1px solid currentColor; }
    .entry-card a { min-height: 350px; }
    .research-grid { grid-template-columns: 1fr; }
    .research-grid .entry-card,
    .research-grid .entry-card:nth-child(3n),
    .research-grid .entry-card:nth-child(even) { border-right: 0; }
    .research-grid .card-meta { padding: 20px 20px 0; }
    .research-grid .entry-card h2 { margin: 20px 20px 15px; font-size: clamp(24px, 7vw, 32px); }
    .research-grid .entry-card p { margin: 0 20px 28px; }
    .research-grid .card-foot { padding: 16px 20px 20px; }
    .entry-pagination { margin-bottom: 80px; grid-template-columns: 1fr auto 1fr; gap: 10px; padding-top: 18px; }
    .entry-pagination > button { min-width: 44px; padding: 0 10px; }
    .entry-pagination > button span { display: none; }
    .entry-pagination [data-page-list] { gap: 6px; }
    .entry-pagination [data-page-list] button { min-width: 38px; min-height: 40px; padding: 0 9px; }
    .entry-tools { grid-template-columns: 1fr; padding: 16px; gap: 14px; }
    .entry-results { min-height: 0; justify-content: flex-start; }
    .note-row { grid-template-columns: 36px 1fr 22px; gap: 10px; }
    .note-row time { display: none; }
    .profile-band { grid-template-columns: 1fr; }
    .profile-visual { min-height: 460px; }
    .q-figure { font-size: 80vw; }
    .profile-copy { padding: 78px var(--pad); }
    .profile-copy h2 { font-size: 18vw; }
    .fellowship-band h2 { font-size: 11vw; }
    .fellowship-band > div { margin-left: 0; grid-template-columns: 1fr; }
    .newsletter { grid-template-columns: 1fr; }
    .newsletter-form > div { flex-direction: column; align-items: stretch; }
    .newsletter-form button { padding: 18px 0; text-align: left; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .page-hero { min-height: 70svh; }
    .page-hero-inner { grid-template-columns: 1fr; align-content: end; gap: 36px; }
    .page-hero h1 { font-size: 15vw; margin: 22px 0 35px; }
    .page-lead { margin-left: 0; }
    .editorial, .profile-detail { grid-template-columns: 1fr; }
    .profile-detail h2 { font-size: 20vw; }
    .about-hero { min-height: auto; padding-top: 34px; }
    .about-hero-meta span:last-child { display: none; }
    .about-identity { grid-template-columns: 1fr; gap: 52px; margin-top: 58px; }
    .about-name h1 { font-size: 24vw; }
    .about-portrait { width: min(100%, 320px); justify-self: start; }
    .about-hero-intro { grid-template-columns: 1fr; gap: 30px; margin-top: 60px; }
    .about-facts { grid-template-columns: 1fr 1fr; }
    .about-facts article { min-height: 210px; padding: 20px; }
    .about-facts strong { font-size: 12vw; }
    .about-story-body h2 { font-size: clamp(38px, 11vw, 54px); }
    .about-story-content { margin-top: 44px; gap: 42px; }
    .career-head { grid-template-columns: 1fr; gap: 42px; }
    .career-timeline li { grid-template-columns: 72px 1fr; gap: 18px; }
    .career-timeline li p { grid-column: 2; }
    .profile-dossier > div { grid-template-columns: 1fr; gap: 7px; }
    .venture-head { grid-template-columns: 1fr; gap: 42px; }
    .venture-head > p { grid-column: 1; }
    .venture-grid { grid-template-columns: 1fr; }
    .venture-grid article { min-height: 300px; border-right: 0; padding: 22px 20px; }
    .about-practice-head { grid-template-columns: 1fr; gap: 42px; }
    .about-practice-head > p { grid-column: 1; }
    .practice-grid { grid-template-columns: 1fr; }
    .practice-grid article { min-height: 250px; border-right: 0; padding: 22px 20px; }
    .capability-grid { grid-template-columns: 1fr 1fr; }
    .capability-grid > div { min-height: 150px; padding: 16px; }
    .principles article { grid-template-columns: 40px 1fr; }
    .principles article p { grid-column: 2; }
    .program-split { grid-template-columns: 1fr; }
    .single-entry h1 { font-size: clamp(38px, 11vw, 52px); }
    .single-entry header { padding-bottom: 60px; }
    .article-hero-image { margin-top: 38px; }
    .article-body { margin: 65px 0; }
    .article-body p { font-size: 16px; line-height: 1.95; }
    .article-body h2 { margin-top: 65px; }
    .article-body h3 { font-size: 21px; margin-top: 48px; }
    .article-body h4 { margin-top: 34px; }
    .article-body blockquote { padding: 24px 20px; }
    .article-author { grid-template-columns: 1fr; }
    .article-author > img { width: 150px; height: 150px; }
    .article-share > div { display: grid; grid-template-columns: 1fr 1fr; }
    .article-share a, .article-share button { justify-content: center; }
    .related-head { align-items: flex-start; flex-direction: column; }
    .related-grid { grid-template-columns: 1fr; }
    .related-grid .entry-card,
    .related-grid .entry-card:last-child { border-right: 0; }
    .contact-layout { grid-template-columns: 1fr; gap: 70px; }
    .field-row { grid-template-columns: 1fr; }
    .inline-form { flex-direction: column; }
    .inline-form button { text-align: left; padding: 18px 0; }
}

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