:root {
  --green: #4f6840;
  --green-deep: #34482a;
  --green-pale: #edf1e9;
  --wine: #6e0a10;
  --navy: #3d5a70;
  --ink: #1b1d1a;
  --muted: #5d625c;
  --line: #e2e5df;
  --paper: #ffffff;
  --wash: #f7f7f4;
  --warm: #f7f5ef;
  --display: Georgia, "Times New Roman", serif;
  --shell: min(1220px, calc(100% - 64px));
  --ease: cubic-bezier(.22,.75,.22,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", "Apple SD Gothic Neo", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.018em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
a, button { touch-action: manipulation; }
img { display: block; max-width: 100%; }
::selection { background: var(--green); color: #fff; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 14px; background: var(--ink); color: #fff; transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.site-shell { width: var(--shell); margin-inline: auto; }

/* Navigation — quiet, institutional, and persistent. */
.wordmark { display: inline-flex; align-items: baseline; font-size: 23px; font-weight: 900; line-height: 1; letter-spacing: -.075em; }
.wordmark span { color: var(--wine); }
.site-nav__brand { position: relative; z-index: 3; white-space: nowrap; }
.site-nav__brand small { margin-left: 13px; color: var(--muted); font-size: 7px; font-weight: 700; letter-spacing: .16em; }
.site-nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-nav.is-scrolled { border-color: var(--line); }
.site-nav__inner { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 32px; transition: height .25s var(--ease); }
.site-nav__links { display: flex; align-items: center; gap: clamp(16px,2vw,30px); }
.site-nav__links a {
  position: relative;
  padding: 27px 0 25px;
  color: #505650;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s;
}
.site-nav__links a small { display: none; }
.site-nav__links a::after { content: ""; position: absolute; right: 100%; bottom: 18px; left: 0; height: 1px; background: var(--green); transition: right .25s var(--ease); }
.site-nav__links a:hover, .site-nav__links a.is-active { color: var(--ink); }
.site-nav__links a:hover::after, .site-nav__links a.is-active::after { right: 0; }
.site-nav__toggle { display: none; min-width: 76px; min-height: 38px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; gap: 10px; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.site-nav__toggle i, .site-nav__toggle i::after { display: block; width: 13px; height: 1px; background: currentColor; transition: transform .2s; }
.site-nav__toggle i { position: relative; }
.site-nav__toggle i::after { content: ""; position: absolute; top: 5px; }
.menu-open .site-nav__toggle i { transform: translateY(2px) rotate(45deg); }
.menu-open .site-nav__toggle i::after { top: 0; transform: rotate(90deg); }

.eyebrow, .section-label { color: var(--green-deep); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.section { padding: clamp(68px,7vw,102px) 0; }
.section--surface { background: var(--wash); }
.section-heading { display: grid; grid-template-columns: 2fr 7fr 3fr; gap: 30px; align-items: start; }
.section-heading .section-label { padding-top: 9px; }
.section-heading__body { grid-column: 2 / 3; }
.section-heading h2, .page-intro h1 { margin: 0; font-family: var(--display); font-size: clamp(34px,4vw,54px); font-weight: 400; line-height: 1.02; letter-spacing: -.045em; text-wrap: balance; }
.section-heading p, .page-intro p { max-width: 620px; margin: 20px 0 0; color: var(--muted); font-size: clamp(15px,1.25vw,18px); line-height: 1.65; }
.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

.button-row { display: flex; flex-wrap: wrap; gap: 9px; }
.button-row--spaced { margin-top: 28px; }
.button { min-height: 46px; padding: 12px 19px; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: #fff; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: transform .2s var(--ease), border-color .2s, background .2s, color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); border-color: var(--ink); }
.button:active { transform: translateY(0); }
.button--primary { border-color: var(--green); background: var(--green); color: #fff; }
.button--primary:hover { border-color: var(--green-deep); background: var(--green-deep); }
.text-link { display: inline-flex; gap: 10px; padding-bottom: 3px; border-bottom: 1px solid; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

/* Home: Berkeley-like editorial sequence, KoJobs-specific content. */
.home-hero { position: relative; isolation: isolate; min-height: min(760px,90vh); padding: 110px 0 46px; overflow: hidden; background: #dfe5dd; }
.home-hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg,rgba(249,249,246,.97) 0%,rgba(249,249,246,.9) 37%,rgba(249,249,246,.48) 64%,rgba(249,249,246,.2) 100%),linear-gradient(0deg,rgba(35,43,33,.08),transparent 38%); }
.home-hero__background { position: absolute; z-index: -2; inset: 0; background-color: #dfe5dd; background-image: var(--home-hero-image,radial-gradient(circle at 76% 32%,rgba(95,126,72,.28),transparent 25%),radial-gradient(circle at 88% 78%,rgba(61,90,112,.18),transparent 30%),linear-gradient(135deg,#f1f2ed 0%,#dde4da 52%,#c7d0c3 100%)); background-position: center; background-size: cover; filter: saturate(.74) contrast(.96); transform: scale(1.015); }
.home-hero__grid { min-height: min(580px,69vh); display: grid; grid-template-columns: minmax(0,7fr) minmax(280px,5fr); gap: clamp(48px,7vw,100px); align-items: center; }
.home-hero__copy { min-height: 390px; display: flex; flex-direction: column; justify-content: center; }
.home-hero__copy h1 { max-width: 720px; margin: 34px 0 24px; font-family: var(--display); font-size: clamp(50px,5.6vw,72px); font-weight: 400; line-height: .96; letter-spacing: -.052em; }
.home-hero__copy > div > p { max-width: 560px; margin: 0; color: #454a44; font-size: clamp(16px,1.3vw,19px); line-height: 1.62; }
.home-hero__copy .button-row { margin-top: 30px; }

.range-wordmark { padding-block: clamp(72px,7vw,104px); background: var(--wash); color: var(--ink); }
.range-wordmark__top { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.range-wordmark__top .section-label { color: var(--green-deep); }
.range-wordmark__top p { margin: 0; color: #595d57; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.range-wordmark__top p span { color: var(--green-deep); font-weight: 700; }
.range-wordmark__sentence { max-width: 1080px; min-height: 2em; margin: clamp(52px,6vw,78px) 0; font-family: var(--display); font-size: clamp(48px,5.8vw,82px); font-weight: 400; line-height: 1.02; letter-spacing: -.05em; text-wrap: balance; }
.range-wordmark__sentence > span { display: inline; }
.range-wordmark__sentence > span:not(:last-child) { margin-right: .1em; }
.range-wordmark__sentence button { margin: 0 .07em 0 0; padding: 0; border: 0; border-bottom: .035em solid currentColor; background: transparent; color: var(--wine); font: inherit; font-style: italic; font-weight: 400; letter-spacing: inherit; line-height: inherit; text-align: left; }
.range-wordmark__sentence button i { display: inline-block; margin-left: .12em; font-family: var(--sans); font-size: .32em; font-style: normal; vertical-align: .35em; }
.range-wordmark__sentence button:hover { color: var(--wine); }
.range-wordmark button:focus-visible, .range-wordmark a:focus-visible { outline-color: var(--green); }
.range-wordmark__sentence button.is-switching span { animation: range-word-in .36s var(--ease); }
@keyframes range-word-in { 0% { opacity: 0; transform: translateY(.22em); } 100% { opacity: 1; transform: none; } }
.range-wordmark__footer { padding-top: 26px; border-top: 1px solid rgba(23,21,19,.15); display: grid; grid-template-columns: minmax(240px,4fr) minmax(300px,5fr) auto; gap: clamp(30px,5vw,72px); align-items: start; }
.range-wordmark__footer > p { max-width: 390px; margin: 0; color: #30332f; font-size: 15px; line-height: 1.55; }
.range-wordmark__footer small { color: #5f635d; font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.range-wordmark__footer div p { margin: 10px 0 0; color: #4d514c; font-size: 13px; line-height: 1.55; }
.range-wordmark__footer .text-link { margin-top: 1px; white-space: nowrap; }
.range-picker[hidden] { display: none; }
.range-picker { position: fixed; inset: 0; z-index: 120; display: flex; align-items: flex-end; justify-content: center; padding: 24px 24px 34px; }
.range-picker__backdrop { position: absolute; inset: 0; border: 0; background: rgba(249,249,246,.52); backdrop-filter: blur(18px); cursor: default; }
.range-picker__panel { position: relative; width: min(880px,calc(100vw - 48px)); min-height: 320px; padding: clamp(26px,4vw,44px) clamp(26px,4vw,48px) 62px; border: 1px solid rgba(23,21,19,.1); border-radius: 9px; background: rgba(255,255,255,.94); box-shadow: 0 24px 70px rgba(23,21,19,.12); display: flex; flex-direction: column; justify-content: space-between; animation: range-picker-up .3s var(--ease); }
@keyframes range-picker-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.range-picker__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.range-picker__head button { padding: 8px 0; border: 0; background: transparent; color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.range-picker__options { max-width: 760px; margin: 52px auto 38px; display: flex; flex-wrap: wrap; justify-content: center; gap: 7px 6px; }
.range-picker__options button { padding: 6px 10px; border: 0; border-radius: 3px; background: #e5e5e3; color: var(--ink); font-size: clamp(14px,1.35vw,18px); line-height: 1.1; transition: background .18s,color .18s,transform .18s; }
.range-picker__options button:hover,.range-picker__options button:focus-visible { background: var(--green-deep); color: #fff; transform: translateY(-2px); }
.range-picker__options button.is-active { background: var(--wine); color: #fff; }
.range-picker__preview { position: absolute; left: 50%; bottom: -18px; min-width: min(460px,82%); margin: 0; padding: 11px 18px; border-radius: 0 0 7px 7px; background: rgba(255,255,255,.96); color: var(--muted); font-size: 14px; text-align: center; transform: translateX(-50%); }
.range-picker__preview b { color: var(--ink); font-weight: 600; }
body.range-picker-open { overflow: hidden; }

.framework { margin-top: 54px; display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); gap: clamp(28px,5vw,72px); }
.framework__steps { display: flex; flex-direction: column; gap: 4px; }
.framework__steps button { min-height: 60px; padding: 12px 14px 12px 0; border: 0; background: transparent; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; text-align: left; transition: padding .22s var(--ease), color .2s;
}
.framework__steps button small { color: var(--green); font-size: 8px; }
.framework__steps button b { font-size: 17px; font-weight: 500; }
.framework__steps button i { font-style: normal; opacity: 0; transform: translateX(-8px); transition: opacity .2s, transform .2s; }
.framework__steps button:hover, .framework__steps button.is-active { padding-left: 12px; background: var(--wash); color: var(--green-deep); }
.framework__steps button:hover i, .framework__steps button.is-active i { opacity: 1; transform: none; }
.framework__content { min-height: 340px; padding: clamp(34px,5vw,68px); background: var(--wash); color: var(--ink); display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: end; }
.framework__content > div:first-child { align-self: start; display: flex; gap: 22px; }
.framework__number { color: var(--green); font-size: 11px; }
.framework__content h3 { margin: 0; font-size: clamp(40px,5vw,66px); font-weight: 500; line-height: .9; letter-spacing: -.055em; }
.framework__content h4 { margin: 14px 0 0; color: var(--muted); font-size: 13px; font-weight: 400; }
.framework__content p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.framework__proof { margin-top: 28px; padding-top: 14px; }
.framework__proof small { color: var(--green); font-size: 8px; letter-spacing: .12em; }
.framework__proof p { margin-top: 7px; font-size: 12px; }

.partner-ribbon { padding: 38px 0; background: #fff; }
.partner-ribbon__inner { display: grid; grid-template-columns: 2fr 2fr repeat(3, 1fr); gap: 28px; align-items: center; }
.partner-ribbon a { min-height: 70px; padding: 12px; display: grid; place-items: center; transition: background .2s; }
.partner-ribbon a:hover { background: var(--wash); }
.partner-ribbon img { max-width: 130px; max-height: 40px; object-fit: contain; filter: grayscale(1); opacity: .7; }
.partner-ribbon--hero { padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.partner-ribbon--hero .partner-ribbon__inner { grid-template-columns: 2fr repeat(3,1fr); }
.partner-ribbon--hero a { min-height: 46px; }
.partner-ribbon--hero img { max-height: 34px; }
.partner-ribbon--hero img[alt^="KSSA"] { width: min(168px,100%); max-width: none; }
.partner-ribbon--hero a { position: relative; gap: 4px; }
.partner-ribbon--hero a span { position: absolute; bottom: 0; color: var(--green-deep); font-size: 7px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; opacity: 0; transform: translateY(5px); transition: opacity .2s, transform .25s var(--ease); }
.partner-ribbon--hero a:hover span, .partner-ribbon--hero a:focus-visible span { opacity: 1; transform: none; }

.upcoming-banner { position: relative; isolation: isolate; overflow: hidden; padding: clamp(68px,6.5vw,92px) 0; background: #fff; color: var(--ink); }
.upcoming-banner::after { content: ""; position: absolute; z-index: -1; right: clamp(-105px,-4vw,-48px); top: 50%; width: clamp(260px,25vw,390px); aspect-ratio: 1; background: url("../images/kojobs-uwmadison-stamp-512.png") center / contain no-repeat; filter: grayscale(1); opacity: .035; transform: translateY(-50%) rotate(-5deg); transition: opacity .35s, transform .7s var(--ease); }
.upcoming-banner:hover::after { opacity: .055; transform: translateY(-50%) rotate(-2deg); }
.upcoming-banner__inner { position: relative; display: grid; grid-template-columns: 2fr 7fr 3fr; gap: 30px; align-items: start; }
.upcoming-banner .section-label { grid-column: 1; grid-row: 1 / span 2; padding-top: 10px; color: var(--wine); }
.upcoming-banner h2 { grid-column: 2; margin: 0; max-width: 680px; font-family: var(--display); font-size: clamp(34px,3.4vw,48px); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.upcoming-banner p { grid-column: 2; max-width: 610px; margin: 22px 0 0; color: var(--muted); font-size: clamp(15px,1.15vw,17px); line-height: 1.65; }
.upcoming-banner__button { grid-column: 3; grid-row: 2; align-self: end; justify-self: start; border-color: var(--wine); background: transparent; color: var(--wine); }
.upcoming-banner__button:hover { border-color: var(--wine); background: var(--wine); color: #fff; }

.cta-band { padding: clamp(58px,6vw,82px) 0; background: var(--wash); color: var(--ink); }
.cta-band .site-shell { display: grid; grid-template-columns: 2fr 7fr 3fr; gap: 30px; align-items: end; }
.cta-band small { align-self: start; color: var(--green); font-size: 9px; letter-spacing: .12em; }
.cta-band h2 { margin: 0; overflow-wrap: anywhere; font-family: var(--display); font-size: clamp(34px,4vw,54px); font-weight: 400; line-height: 1.02; letter-spacing: -.042em; }
.cta-band .button-row { align-items: center; justify-content: flex-end; }
.cta-band .button { border-color: var(--line); background: #fff; color: var(--ink); }
.cta-band .button--primary { border-color: var(--green); background: var(--green); color: #fff; }
/* Inner pages: one system, varied editorial compositions. */
.page-intro { padding: 132px 0 54px; background: var(--warm); }
.page-intro__grid { display: grid; grid-template-columns: 2fr 7fr 3fr; gap: 30px; align-items: start; }
.page-intro .section-label { padding-top: 9px; }
.page-intro__body { grid-column: 2 / 3; }
.page-intro__meta { align-self: end; color: var(--muted); font-size: 9px; line-height: 1.7; letter-spacing: .1em; text-transform: uppercase; }

.editorial-stack { display: grid; gap: 18px; }
.editorial-block { min-height: 200px; padding: 32px 0; display: grid; grid-template-columns: 60px 4fr 6fr 1fr; gap: 30px; }
.editorial-block__index { color: var(--green); font-size: 9px; }
.editorial-block h2 { margin: 0; font-family: var(--display); font-size: clamp(29px,3vw,42px); font-weight: 400; line-height: 1.05; letter-spacing: -.035em; }
.editorial-block__content { grid-column: 3 / 4; }
.editorial-block__content > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }


.program-explorer { margin-top: 48px; border-top: 1px solid var(--ink); }
.program-explorer__row { min-height: 150px; padding: 24px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 58px 4fr 5fr auto; gap: 30px; align-items: center; transition: padding .25s var(--ease), background .2s, color .2s; }
.program-explorer__row:hover { padding-inline: 18px; background: var(--green-pale); }
.program-explorer__row > span { color: var(--green); font-size: 9px; }
.program-explorer__row small { color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.program-explorer__row h2 { margin: 7px 0 0; font-family: var(--display); font-size: clamp(27px,3vw,40px); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.program-explorer__row p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.program-explorer__row i { font-style: normal; transition: transform .2s; }
.program-explorer__row:hover i { transform: translate(4px,-4px); }
.program-explorer__scope { max-width: 850px; margin: 42px 0 0 58px; display: grid; grid-template-columns: 180px 1fr; gap: 30px; align-items: start; }
.program-explorer__scope p { margin: -4px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Career Knowledge System: a continuous editorial flow, not an internal process document. */
.knowledge-page .program-detail-content { grid-column: 2 / 4; }
.knowledge-page__body { padding-top: clamp(48px,5vw,72px); }
.knowledge-lede { margin: 0 !important; padding-bottom: clamp(58px,6vw,86px); display: grid !important; grid-template-columns: 5fr 7fr !important; gap: clamp(36px,6vw,84px) !important; }
.knowledge-lede > div { grid-column: 1; }
.knowledge-lede h2, .knowledge-section-heading h2 { margin: 15px 0 0; font-family: var(--display); font-size: clamp(34px,3.8vw,50px); font-weight: 400; line-height: 1; letter-spacing: -.045em; text-wrap: balance; }
.knowledge-lede > p { grid-column: 2; align-self: end; max-width: 650px; font-size: clamp(16px,1.3vw,19px); line-height: 1.72; }
.knowledge-cycle-section, .knowledge-outputs-section { padding: clamp(58px,6vw,82px) 0 !important; margin: 0 !important; display: block !important; border-top: 1px solid var(--ink); }
.knowledge-section-heading { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(36px,6vw,84px); align-items: end; }
.knowledge-section-heading p { align-self: end; max-width: 500px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.knowledge-cycle { margin-top: clamp(38px,4.5vw,58px); display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); }
.knowledge-cycle article { position: relative; min-height: 210px; padding: 20px 24px 22px 0; border-top: 3px solid var(--line); transition: border-color .22s, transform .25s var(--ease); }
.knowledge-cycle article:not(:last-child)::after { content: "→"; position: absolute; top: 18px; right: 12px; color: var(--green); font-size: 12px; }
.knowledge-cycle article:hover { border-color: var(--green); transform: translateY(-4px); }
.knowledge-cycle small, .knowledge-outputs small { color: var(--green-deep); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.knowledge-cycle h3 { margin: 52px 0 0; font-size: clamp(18px,1.7vw,23px); font-weight: 500; line-height: 1.05; letter-spacing: -.035em; }
.knowledge-cycle p { max-width: 160px; margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.knowledge-outputs { margin-top: clamp(38px,4.5vw,58px); display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 clamp(32px,4vw,58px); }
.knowledge-outputs article { min-height: 230px; padding: 28px 0 32px; border-top: 1px solid var(--line); }
.knowledge-outputs h3 { max-width: 420px; margin: 34px 0 0; font-family: var(--display); font-size: clamp(25px,2.3vw,33px); font-weight: 400; line-height: 1.04; letter-spacing: -.04em; }
.knowledge-outputs p { max-width: 520px; margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.updates-carousel { margin-top: clamp(38px,4vw,54px); }
.updates-carousel__top { margin-bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.updates-carousel__top > p { margin: 0; color: var(--muted); font-size: 13px; }
.updates-carousel__controls { display: flex; align-items: center; gap: 12px; }
.updates-carousel__controls button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); font-size: 15px; cursor: pointer; transition: border-color .2s, background .2s, color .2s; }
.updates-carousel__controls button:hover, .updates-carousel__controls button:focus-visible { border-color: var(--green); background: var(--green); color: #fff; }
.updates-carousel__controls button:disabled { cursor: default; opacity: .32; }
.updates-carousel__controls span { min-width: 48px; color: var(--green-deep); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-align: center; }
.updates-carousel__viewport { overflow: hidden; outline: none; touch-action: pan-y; }
.updates-carousel__viewport:focus-visible { outline: 2px solid var(--green); outline-offset: 5px; }
.updates-carousel__empty { min-height: 260px; padding: 34px; background: #e8e6df; display: grid; place-content: center; justify-items: center; gap: 16px; text-align: center; }
.updates-carousel__empty[hidden] { display: none; }
.updates-carousel__empty p { margin: 0; color: var(--muted); font-size: 14px; }
.updates-carousel.is-empty .updates-carousel__viewport, .updates-carousel.is-empty .updates-carousel__controls { display: none; }
.updates-carousel__track { display: flex; gap: 16px; transition: transform .52s var(--ease); will-change: transform; }
.update-card { position: relative; flex: 0 0 calc((100% - 32px)/3); aspect-ratio: 1; background: #e8e6df; overflow: hidden; }
.update-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); opacity: .16; transition: transform .45s var(--ease), opacity .25s; }
.update-card:hover img, .update-card:focus-visible img { transform: scale(1.025); opacity: .24; }

.team-view-switcher { margin-bottom: 38px; display: inline-flex; gap: 8px; }
.team-view-switcher button { min-height: 42px; padding: 10px 17px; border: 1px solid var(--line); background: #fff; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: border-color .2s, background .2s, color .2s; }
.team-view-switcher button:hover { border-color: var(--green); color: var(--green-deep); }
.team-view-switcher button.is-active { border-color: var(--green); background: var(--green); color: #fff; }
.team-directory { min-height: 260px; }
.team-directory__status { margin: 0; padding: 32px 0; color: var(--muted); font-size: 13px; }
.team-directory__status[hidden] { display: none; }
.team-directory__status.is-error { padding: 18px; background: var(--wash); color: var(--wine); }
.team-directory__status a { border-bottom: 1px solid currentColor; }
.member-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 34px; align-items: start; }
.member-entry { min-width: 0; padding-top: 17px; border-top: 1px solid var(--line); }
.member-entry__visual { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--wash); display: grid; place-items: center; }
.member-entry__photo-pending { display: flex; align-items: center; justify-content: center; flex-direction: column; color: #92998f; }
.member-entry__photo-pending small { font-size: 7px; font-weight: 700; letter-spacing: .16em; }
.member-entry__photo-pending b { margin-top: 12px; font-family: var(--display); font-size: clamp(28px,3.5vw,46px); font-weight: 400; letter-spacing: -.06em; }
.member-entry__visual > img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.member-entry:hover .member-entry__visual > img { transform: scale(1.018); }
.member-entry__body { padding-top: 17px; }
.member-entry__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--green-deep); font-size: 7px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.member-entry__meta small { color: var(--muted); font-size: 7px; }
.member-entry h3 { margin: 13px 0 0; font-family: var(--display); font-size: clamp(25px,2.2vw,33px); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.member-entry__position { margin: 8px 0 0; font-size: 13px; font-weight: 600; }
.member-entry__academic { margin: 12px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.member-entry__academic span { margin-inline: 4px; }
.member-entry__links { margin-top: 17px; display: flex; gap: 16px; }
.member-entry__links a { padding-bottom: 2px; border-bottom: 1px solid transparent; color: var(--green-deep); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.member-entry__links a:hover { border-color: currentColor; }

.chapter-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.chapter { min-height: 155px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; background: var(--wash); transition: transform .25s var(--ease), background .25s, box-shadow .25s; }
.chapter.is-home { background: var(--green-pale); }
.chapter img { width: min(190px,100%); height: 58px; object-fit: contain; object-position: left; filter: grayscale(1); opacity: .72; transition: filter .25s, opacity .25s; }
.chapter span { color: var(--muted); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }

.collab-list { margin-top: 50px; display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; }
.collab-list article { min-height: 180px; padding: 24px 0; transition: transform .25s var(--ease), color .2s; }
.collab-list article:not(:nth-child(3n+1)) { padding-left: 0; }
.collab-list small { color: var(--green); font-size: 8px; letter-spacing: .1em; }
.collab-list h3 { margin: 40px 0 9px; font-size: 22px; font-weight: 500; }
.collab-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.partner-evidence { margin-top: 50px; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.partner-evidence article { position: relative; min-height: 290px; padding: 25px; background: var(--wash); overflow: hidden; }
.partner-evidence article > span { color: var(--green); font-size: 8px; }
.partner-evidence img { width: min(150px,80%); height: 70px; margin: 44px auto 0; object-fit: contain; filter: grayscale(1); opacity: .65; transition: transform .35s var(--ease), opacity .25s; }
.partner-evidence article small { display: block; margin-top: 22px; color: var(--green-deep); font-size: 8px; font-weight: 700; letter-spacing: .09em; text-align: center; text-transform: uppercase; }
.partner-evidence article h3 { display: none; }
.partner-evidence article p { position: absolute; inset: auto 0 0; margin: 0; padding: 20px; background: var(--green-deep); color: #fff; font-size: 12px; transform: translateY(102%); transition: transform .35s var(--ease); }
.partner-evidence article:hover img, .partner-evidence article:focus img, .partner-evidence article:focus-within img { transform: translateY(-12px); opacity: .9; }
.partner-evidence article:hover p, .partner-evidence article:focus p, .partner-evidence article:focus-within p { transform: none; }
.relationship-list { margin-top: 48px; border-top: 1px solid var(--ink); }
.relationship { min-height: 105px; padding: 20px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 70px 1fr 1fr; gap: 26px; align-items: center; transition: padding .25s var(--ease), background .2s; }
.relationship > span, .relationship small { color: var(--green); font-size: 8px; letter-spacing: .09em; }
.relationship b { display: block; margin-top: 4px; font-size: 18px; font-weight: 500; }
.relationship p { margin: 0; color: var(--muted); font-size: 13px; }

.contact-layout { display: grid; gap: clamp(54px,8vw,110px); align-items: start; }
.contact-layout--single { grid-template-columns: minmax(0, 900px); justify-content: center; }
.contact-form { padding: clamp(28px,4vw,48px) 0; background: #fff; }
.contact-form__head { margin-bottom: 34px; display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.contact-form__head p { margin: 0; color: var(--muted); font-size: 12px; }
.contact-form__guidance { margin: -8px 0 32px; padding: 18px; background: var(--wash); display: grid; grid-template-columns: 150px 1fr; gap: 24px; }
.contact-form__guidance b { color: var(--green-deep); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.contact-form__guidance p { max-width: 590px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.contact-form__row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.contact-form label { display: block; margin-top: 22px; }
.contact-form label > span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.contact-form label > span small { margin-left: 5px; color: #8a8f89; font-size: 7px; font-weight: 400; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 48px; padding: 12px 0; border: 0; border-bottom: 1px solid #afb4ad; border-radius: 0; background: transparent; outline: 0; font-size: 16px; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 1px 0 var(--green); }
.contact-form .button { margin-top: 28px; }
.contact-form .button:disabled { cursor: wait; opacity: .58; transform: none; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form__status { min-height: 21px; margin: 14px 0 0; font-size: 12px; line-height: 1.6; }
.contact-form__status.is-sending { color: var(--muted); }
.contact-form__status.is-success { color: var(--green-deep); font-weight: 700; }
.contact-form__status.is-warning { color: #8a5a12; font-weight: 700; }
.contact-form__status.is-error { color: var(--wine); }
.contact-form__fallback { margin: 5px 0 0; color: var(--muted); font-size: 10px; }
.contact-form__fallback a { padding-bottom: 2px; border-bottom: 1px solid currentColor; color: var(--green-deep); }

.join-benefits { margin-top: 50px; border-top: 1px solid var(--ink); }
.join-benefits article { min-height: 106px; padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 60px 4fr 6fr; gap: 28px; align-items: center; transition: padding .25s var(--ease), background .2s; }
.join-benefits article > span { color: var(--green); font-size: 8px; }
.join-benefits h3 { margin: 0; font-size: 23px; font-weight: 500; }
.join-benefits p { margin: 0; color: var(--muted); font-size: 14px; }
.timeline { margin-top: 50px; display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.timeline article { position: relative; min-height: 130px; padding: 18px 42px 18px 18px; background: var(--wash); display: flex; flex-direction: column; justify-content: space-between; }
.timeline article:not(:last-child)::after { content: "→"; position: absolute; right: 15px; top: 50%; color: var(--green); transform: translateY(-50%); }
.timeline small { color: var(--green); font-size: 8px; }
.timeline h3 { margin: 0; font-size: 21px; font-weight: 500; }
.recruitment-status { width: max-content; margin: 0 0 22px; display: flex; align-items: center; gap: 9px; color: var(--green-deep); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.recruitment-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(95,126,72,.11); }
.faq-list { margin-top: 48px; border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; min-height: 74px; padding: 17px 0; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; font-size: 18px; transition: color .2s, padding .2s var(--ease); }
.faq-item button span { color: var(--green); font-size: 23px; font-weight: 300; transition: transform .25s; }
.faq-item.is-open button span { transform: rotate(45deg); }
.faq-item__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-item__panel > div { overflow: hidden; }
.faq-item__panel p { max-width: 720px; margin: 0 0 24px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }

.program-detail-hero { padding: 148px 0 72px; }
.program-detail-hero__grid { display: grid; grid-template-columns: 1fr 7fr 3fr; gap: 30px; }
.program-detail-hero__index { color: var(--green); font-size: 9px; }
.program-detail-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(44px,5vw,64px); font-weight: 400; line-height: .96; letter-spacing: -.045em; }
.program-detail-hero p { max-width: 660px; margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.program-detail-hero__meta { align-self: end; }
.program-detail-hero__meta div { padding: 8px 0; }
.program-detail-hero__meta small { display: block; color: var(--muted); font-size: 7px; letter-spacing: .1em; }
.program-detail-hero__meta b { display: block; margin-top: 4px; font-size: 11px; font-weight: 500; }
.program-detail-body { display: grid; grid-template-columns: 2fr 7fr 3fr; gap: 30px; }
.program-detail-body > aside a { position: sticky; top: 100px; }
.program-detail-content { grid-column: 2 / 3; }
.program-detail-content section { padding: 0 0 28px; margin-bottom: 30px; display: grid; grid-template-columns: 2fr 5fr; gap: 30px; }
.program-detail-content h2 { margin: 0; font-size: 24px; font-weight: 500; line-height: 1.05; letter-spacing: -.04em; }
.program-detail-content p { grid-column: 2; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.program-detail-content ol { grid-column: 2; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; counter-reset: steps; }
.program-detail-content li { counter-increment: steps; padding: 13px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 48px 1fr; font-size: 13px; }
.program-detail-content li::before { content: "0" counter(steps); color: var(--green); font-size: 8px; }

/* Release polish: consistent reading rhythm, focus, and information density. */
main { min-height: 70vh; }
.page-intro__body h1 { text-wrap: balance; }
.page-intro__body > p { color: #555a54; }
.page-intro__meta { color: #626761; }
.section-heading__body h2 { text-wrap: balance; }
.section-heading__body > p { color: #555a54; }
.program-explorer__row { min-height: 132px; }
.program-explorer__row p { max-width: 620px; color: #555a54; }
.program-explorer__scope p { color: #555a54; }
.member-entry__position { color: #292c28; line-height: 1.4; }
.member-entry__academic { color: #5d625c; font-size: 12px; }
.member-entry__links a { font-size: 9px; }
.relationship p, .collab-list p { color: #555a54; }
.contact-form { width: 100%; }
.contact-form input, .contact-form select, .contact-form textarea { color: var(--ink); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #7b807a; opacity: 1; }
.program-detail-content { max-width: 880px; }
.program-detail-content p { color: #555a54; font-size: 15px; }
.program-detail-content li { min-height: 46px; align-items: center; font-size: 14px; line-height: 1.5; }
.button:focus-visible, .text-link:focus-visible, .site-nav a:focus-visible, .site-footer a:focus-visible, .program-explorer__row:focus-visible { outline: 2px solid var(--wine); outline-offset: 4px; }
.faq-item button:focus-visible, .team-view-switcher button:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; }
.page-intro__body, .section-heading__body, .program-detail-hero__body { min-width: 0; }
.editorial-block__content, .program-detail-content, .knowledge-section-heading > * { min-width: 0; }
.site-nav__links a, .site-nav__toggle, .button, .team-view-switcher button, .range-picker__options button { touch-action: manipulation; }
.site-footer__base p { max-width: 980px; }

.site-footer { padding: 38px 0 28px; background: var(--green-deep); color: #f7f5ef; }
.site-footer__top { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.site-footer__top .wordmark { color: #fff; font-size: 24px; }
.site-footer__top .wordmark span { color: #d6a6a8; }
.site-footer__socials { display: flex; flex-wrap: wrap; gap: clamp(22px,3vw,40px); }
.site-footer__socials a { padding-bottom: 3px; border-bottom: 1px solid transparent; color: rgba(255,255,255,.78); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; transition: color .2s, border-color .2s; }
.site-footer__socials a:hover { border-color: currentColor; color: #fff; }
.site-footer__base { margin-top: 18px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.2); }
.site-footer__base p { max-width: 1120px; margin: 0; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.65; }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 42px, 960px); }
  .site-nav__links { gap: 15px; }
  .home-hero__grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .home-hero__copy h1 { font-size: clamp(50px,7vw,70px); }
}

@media (max-width: 960px) {
  .site-nav__toggle { position: relative; z-index: 3; display: flex; }
  .site-nav__links { position: fixed; z-index: 2; inset: 0; padding: 98px 24px 30px; display: flex; align-items: stretch; flex-direction: column; gap: 0; overflow-y: auto; overscroll-behavior: contain; background: #fff; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .22s, visibility .22s, transform .3s var(--ease); }
  .menu-open .site-nav__links { opacity: 1; visibility: visible; transform: none; }
  .site-nav__links a { min-height: 58px; margin: 0; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 42px 1fr auto; align-items: center; color: var(--ink); font-size: 25px; font-weight: 500; letter-spacing: -.035em; text-transform: none; opacity: 0; transform: translateY(-7px); transition: opacity .22s, transform .32s var(--ease), color .2s; }
  .menu-open .site-nav__links a { opacity: 1; transform: none; }
  .menu-open .site-nav__links a:nth-child(2) { transition-delay: .025s; }
  .menu-open .site-nav__links a:nth-child(3) { transition-delay: .05s; }
  .menu-open .site-nav__links a:nth-child(4) { transition-delay: .075s; }
  .menu-open .site-nav__links a:nth-child(5) { transition-delay: .1s; }
  .menu-open .site-nav__links a:nth-child(6) { transition-delay: .125s; }
  .menu-open .site-nav__links a:nth-child(7) { transition-delay: .15s; }
  .site-nav__links a small { display: block; color: var(--green); font-size: 8px; letter-spacing: .1em; }
  .site-nav__links a::after { content: "↗"; position: static; display: block; width: auto; height: auto; background: none; font-size: 12px; }
  .home-hero { min-height: 700px; }
  .home-hero::after { background: linear-gradient(90deg,rgba(250,250,247,.96),rgba(250,250,247,.72)); }
  .home-hero__grid { grid-template-columns: minmax(0,1fr) minmax(140px,.35fr); }
  .home-hero__copy { min-height: 480px; }
  .section-heading, .page-intro__grid, .cta-band .site-shell { grid-template-columns: 2fr 8fr; }
  .section-heading__body, .page-intro__body { grid-column: 2; }
  .page-intro__meta { display: none; }
  .cta-band .button-row { grid-column: 2; margin-top: 24px; justify-content: flex-start; }
  .upcoming-banner__inner { grid-template-columns: 2fr 8fr; }
  .upcoming-banner h2, .upcoming-banner p, .upcoming-banner__button { grid-column: 2; }
  .upcoming-banner__button { grid-row: auto; margin-top: 24px; }
  .range-wordmark__sentence { max-width: 880px; font-size: clamp(43px,6.2vw,66px); }
  .range-wordmark__footer { grid-template-columns: 1fr 1fr; }
  .range-wordmark__footer .text-link { grid-column: 2; }
  .framework { grid-template-columns: 1fr; }
  .framework__steps { display: grid; grid-template-columns: repeat(6,1fr); overflow-x: auto; }
  .framework__steps button { min-width: 140px; }
  .partner-ribbon__inner { grid-template-columns: 2fr repeat(3,1fr); }
  .editorial-block { grid-template-columns: 46px 4fr 6fr; }
  .editorial-block__content { grid-column: 3; }
  .member-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .chapter-grid { grid-template-columns: repeat(2,1fr); }
  .collab-list { grid-template-columns: repeat(2,1fr); }
  .collab-list article:not(:nth-child(3n+1)) { padding-left: 0; }
  .collab-list article:nth-child(even) { padding-left: 0; }
  .partner-evidence { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .program-detail-hero__grid, .program-detail-body { grid-template-columns: 1fr 8fr; }
  .program-detail-hero__body, .program-detail-content { grid-column: 2; }
  .program-detail-hero__meta { grid-column: 2; margin-top: 24px; display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 16px; }
  .program-detail-body > aside { display: none; }
  .partner-evidence article p { position: static; margin: 20px -25px -25px; transform: none; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 30px); }
  .section { padding: 58px 0; }
  .updates-carousel__top { align-items: flex-start; }
  .updates-carousel__top > p { max-width: 180px; }
  .update-card { flex-basis: 82%; }
  .home-hero { min-height: 680px; padding: 92px 0 32px; }
  .home-hero::after { background: linear-gradient(180deg,rgba(250,250,247,.97) 0%,rgba(250,250,247,.88) 64%,rgba(250,250,247,.58) 100%); }
  .home-hero__grid { grid-template-columns: 1fr; min-height: 520px; }
  .home-hero__copy { min-height: 350px; }
  .home-hero__copy h1 { margin-top: 34px; font-size: clamp(39px,11.8vw,48px); line-height: .97; }
  .home-hero__copy > div > p { font-size: 16px; }
  .section-heading, .page-intro__grid, .cta-band .site-shell { display: block; }
  .section-heading .section-label, .page-intro .section-label { display: block; margin-bottom: 22px; }
  .section-heading h2, .page-intro h1 { font-size: clamp(30px,9.2vw,40px); }
  .page-intro__body > p, .section-heading__body > p { line-height: 1.62; }
  .range-wordmark__top { align-items: flex-start; flex-direction: column; gap: 10px; }
  .range-wordmark__sentence { min-height: 0; margin-block: 42px; font-size: clamp(36px,9.5vw,48px); line-height: 1.04; letter-spacing: -.045em; text-wrap: pretty; }
  .range-wordmark__footer { grid-template-columns: 1fr; gap: 26px; }
  .range-wordmark__footer .text-link { grid-column: auto; }
  .range-picker { padding: 12px 12px 28px; }
  .range-picker__panel { width: calc(100vw - 24px); min-height: 310px; padding: 22px 22px 58px; }
  .range-picker__options { margin-block: 40px 30px; }
  .range-picker__preview { bottom: -15px; min-width: 88%; padding: 9px 12px; font-size: 12px; }
  .framework { margin-top: 40px; }
  .framework__steps { grid-template-columns: repeat(6,minmax(132px,1fr)); gap: 6px; padding-bottom: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .framework__steps button { min-width: 132px; padding: 14px 12px; grid-template-columns: 26px 1fr auto; background: rgba(255,255,255,.58); scroll-snap-align: center; }
  .framework__steps button:hover, .framework__steps button.is-active { padding-left: 12px; background: var(--green-pale); box-shadow: inset 0 -2px 0 var(--green); }
  .framework__content { min-height: 390px; padding: 28px 22px; grid-template-columns: 1fr; gap: 32px; }
  .framework__content h3 { font-size: clamp(32px,10vw,42px); }
  .partner-ribbon__inner { grid-template-columns: 1fr 1fr; }
  .partner-ribbon__inner > .section-label { grid-column: 1 / -1; }
  .partner-ribbon--hero .partner-ribbon__inner { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
  .partner-ribbon--hero .partner-ribbon__inner > .section-label { grid-column: 1 / -1; }
  .partner-ribbon--hero a { min-width: 0; padding-inline: 6px; }
  .partner-ribbon--hero img { max-width: 100%; }
  .upcoming-banner { padding: 62px 0; }
  .upcoming-banner::after { right: -130px; width: 310px; opacity: .025; }
  .upcoming-banner__inner { display: block; }
  .upcoming-banner .section-label { display: block; margin-bottom: 24px; padding-top: 0; }
  .upcoming-banner h2 { font-size: clamp(32px,9vw,40px); }
  .upcoming-banner p { max-width: 92%; margin-top: 18px; font-size: 15px; }
  .upcoming-banner__button { margin-top: 26px; }
  .page-intro { padding: 112px 0 54px; }
  .editorial-block { min-height: 0; grid-template-columns: 34px 1fr; gap: 18px 12px; }
  .editorial-block h2 { grid-column: 2; }
  .editorial-block__content { grid-column: 2; }
  .program-explorer__row { grid-template-columns: 34px 1fr auto; gap: 15px; }
  .program-explorer__row { min-height: 0; padding-block: 24px; }
  .program-explorer__row p { grid-column: 2 / 4; }
  .program-explorer__scope { margin-left: 34px; grid-template-columns: 1fr; gap: 15px; }
  .chapter-grid, .collab-list { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: 1fr; }
  .member-grid { gap: 40px; }
  .member-entry__body { padding-top: 15px; }
  .member-entry h3 { font-size: clamp(28px,8.5vw,36px); }
  .partner-ribbon--hero a span { position: static; opacity: 1; transform: none; text-align: center; }
  .collab-list article, .collab-list article:nth-child(even) { min-height: 140px; padding: 20px 0; }
  .relationship { grid-template-columns: 50px 1fr; gap: 15px; }
  .relationship p { grid-column: 2; }
  .contact-form { padding: 24px 0; }
  .contact-form__head { align-items: flex-start; flex-direction: column; }
  .contact-form__guidance { grid-template-columns: 1fr; gap: 8px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
  .join-benefits article { grid-template-columns: 38px 1fr; gap: 14px; }
  .join-benefits p { grid-column: 2; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article, .timeline article:first-child { min-height: 88px; }
  .timeline article:not(:last-child)::after { top: auto; bottom: 10px; transform: rotate(90deg); }
  .program-detail-hero { padding: 112px 0 52px; }
  .program-detail-hero h1 { font-size: clamp(34px,10vw,44px); }
  .program-detail-hero__grid, .program-detail-body { grid-template-columns: 34px 1fr; gap: 14px; }
  .program-detail-hero__body, .program-detail-hero__meta, .program-detail-content { grid-column: 2; }
  .program-detail-hero__meta { grid-template-columns: 1fr; }
  .program-detail-content section { display: block; }
  .program-detail-content h2 { margin-bottom: 16px; }
  .program-detail-content p, .program-detail-content li { font-size: 15px; }
  .program-detail-content ol { margin-top: 22px; }
  .site-footer { padding-block: 34px 26px; }
  .site-footer__top { min-height: 0; align-items: flex-start; flex-direction: column; gap: 24px; }
  .site-footer__socials { gap: 16px 24px; }
  .site-footer__base { margin-top: 26px; }
  .cta-band h2 { font-size: clamp(30px,9.2vw,40px); }
}

@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 [data-reveal] { opacity: 1; transform: none; }
}

/* Final editorial calibration: Berkeley Consulting is the primary reference.
   Hierarchy comes from grid, spacing, and restrained dividers. */
@media (min-width: 601px) {
  :root { --shell: min(1320px, calc(100% - 80px)); }
  body { font-size: 16px; }
  .site-nav__inner { height: 68px; }
  .site-nav.is-scrolled .site-nav__inner { height: 58px; }
  .section { padding: clamp(64px, 5vw, 84px) 0; }
  .section-heading h2, .page-intro h1 { max-width: 820px; font-size: clamp(34px, 3.15vw, 46px); }
  .section-heading p, .page-intro p { max-width: 640px; font-size: clamp(15px, 1.05vw, 17px); }

  .home-hero { padding: 110px 0 52px; }
  .home-hero__grid { grid-template-columns: 7fr 5fr; gap: clamp(42px, 6vw, 82px); }
  .home-hero__copy { min-height: 400px; }
  .home-hero__copy h1 { max-width: 620px; font-size: clamp(44px, 4.7vw, 62px); line-height: .98; letter-spacing: -.052em; }
  .home-hero__copy > div > p { max-width: 560px; font-size: clamp(15px, 1.2vw, 18px); }

  /* Keep the interactive statement expressive without outranking the hero. */
  .range-wordmark__sentence { font-size: clamp(50px, 5.6vw, 78px); }

  .framework__content h3 { font-size: clamp(32px, 3.6vw, 46px); }
  .framework__content p { font-size: 15px; }
  .cta-band h2 { font-size: clamp(30px, 3.4vw, 44px); }

  .page-intro { padding: 118px 0 42px; }
  .page-intro + .section { padding-top: clamp(34px, 3.5vw, 50px); }
  .editorial-block { min-height: 190px; padding: 30px 0; }
  .editorial-block h2 { font-size: clamp(28px, 2.55vw, 38px); }
  .program-explorer__row h2 { font-size: clamp(26px, 2.35vw, 35px); }
  body[data-page="programs"] .program-explorer,
  body[data-page="team"] .team-directory { margin-top: 0; }
  body[data-page="contact"] .contact-form { padding-top: 8px; }
  .program-detail-hero { padding: 116px 0 48px; }
  .program-detail-hero h1 { font-size: clamp(36px, 3.8vw, 50px); }
}

@media (hover: hover) and (pointer: fine) {
  .chapter:hover { z-index: 1; background: var(--green-pale); box-shadow: 0 16px 34px rgba(28,36,23,.08); transform: translateY(-5px); }
  .chapter:hover img { filter: grayscale(.2); opacity: .95; }
  .collab-list article:hover { color: var(--green-deep); transform: translateY(-4px); }
  .join-benefits article:hover, .relationship:hover { padding-inline: 16px; background: var(--wash); }
  .faq-item button:hover { padding-left: 10px; color: var(--green-deep); }
  .contact-form input:hover, .contact-form select:hover, .contact-form textarea:hover { border-color: #7c837a; }
}

/* Tablet contract: navigation and editorial grids collapse before they crowd. */
@media (min-width: 601px) and (max-width: 960px) {
  :root { --shell: min(100% - 42px, 960px); }
  .home-hero__grid { grid-template-columns: minmax(0,1fr) minmax(120px,.28fr); }
  .home-hero__copy { min-height: 460px; }
  .knowledge-page .program-detail-content { grid-column: 2; }
  .knowledge-cycle { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px 0; }
  .knowledge-cycle article { min-height: 180px; }
  .knowledge-cycle article:nth-child(3)::after { display: none; }
  .knowledge-outputs { grid-template-columns: 1fr; }
  .knowledge-outputs article { min-height: 0; }
}

@media (max-width: 600px) {
  .knowledge-page .program-detail-content { grid-column: 2; }
  .knowledge-lede { display: block !important; padding-bottom: 54px; }
  .knowledge-lede > p { margin-top: 24px; font-size: 16px; }
  .knowledge-lede h2, .knowledge-section-heading h2 { font-size: clamp(32px,9.5vw,40px); }
  .knowledge-section-heading { display: block; }
  .knowledge-section-heading > p { margin-top: 22px; }
  .knowledge-cycle { grid-template-columns: 1fr; }
  .knowledge-cycle article { min-height: 0; padding: 20px 34px 24px 0; }
  .knowledge-cycle article:not(:last-child)::after { content: "↓"; top: auto; right: 6px; bottom: 18px; }
  .knowledge-cycle article:nth-child(3)::after { display: block; }
  .knowledge-cycle h3 { margin-top: 24px; font-size: 22px; }
  .knowledge-cycle p { max-width: 290px; }
  .knowledge-outputs { grid-template-columns: 1fr; }
  .knowledge-outputs article { min-height: 0; padding-block: 25px 30px; }
  .knowledge-outputs h3 { margin-top: 24px; font-size: 27px; }
}

/* Hover reveals remain readable on touch-first devices. */
@media (hover: none) {
  .partner-ribbon--hero a span { position: static; opacity: 1; transform: none; text-align: center; }
  .partner-evidence article { min-height: 0; overflow: visible; }
  .partner-evidence img { margin-top: 28px; }
  .partner-evidence article p { position: static; margin: 24px -25px -25px; transform: none; }
}
