:root {
  --purple: #4b2e83;
  --purple-dark: #2f1b55;
  --purple-deep: #21133e;
  --purple-soft: #6a4aa2;
  --gold: #c7ad68;
  --gold-pale: #ead9ab;
  --cream: #f6f1e7;
  --paper: #fbfaf7;
  --warm: #eee5d6;
  --ink: #1d1c1f;
  --muted: #68626e;
  --line: rgba(29, 28, 31, .16);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.inline-link { color: var(--purple); font-weight: 700; text-decoration-color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: .18em; }
.inline-link:hover { text-decoration-thickness: 2px; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.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;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--gold-pale);
  color: var(--ink);
  padding: .75rem 1rem;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.shell { width: min(calc(100% - 3rem), var(--max)); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 8rem) 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: white;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.scrolled {
  background: rgba(251, 250, 247, .94);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(29, 28, 31, .12);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(calc(100% - 3rem), 1320px);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; font-weight: 750; letter-spacing: -.01em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255,255,255,.55);
  font-family: var(--serif);
  font-size: .9rem;
  color: var(--gold-pale);
}
.scrolled .brand-mark { border-color: var(--purple); color: var(--purple); }
.site-nav { display: flex; align-items: center; gap: 1.55rem; font-size: .88rem; font-weight: 650; }
.site-nav a { text-decoration: none; opacity: .82; }
.site-nav a:hover { opacity: 1; }
.nav-contact { border: 1px solid currentColor; padding: .55rem .9rem; opacity: 1 !important; }
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 11rem 0 7rem;
  color: white;
  background:
    linear-gradient(120deg, rgba(33,19,62,.96), rgba(75,46,131,.92)),
    var(--purple);
}
.hero::after {
  content: "";
  position: absolute;
  width: 44vw;
  height: 44vw;
  right: -14vw;
  top: -18vw;
  border: 1px solid rgba(234,217,171,.25);
  transform: rotate(24deg);
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 78%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.hero-copy, .record-card { min-width: 0; }
.eyebrow, .section-kicker {
  margin: 0 0 1.25rem;
  font-size: .77rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow { color: var(--gold-pale); }
.eyebrow span { margin: 0 .35rem; opacity: .65; }
.hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.15rem, 6.2vw, 6.2rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 em { color: var(--gold-pale); font-weight: 400; }
.hero-intro { max-width: 690px; margin: 2rem 0 0; font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.65; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; align-items: center; gap: 1.6rem; margin-top: 2.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: .95rem 1.2rem;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--purple-deep); background: var(--gold-pale); }
.button-gold:hover { background: #f2e4bf; }
.button-purple { color: white; background: var(--purple); }
.button-purple:hover { background: var(--purple-dark); }
.text-link { color: white; text-underline-offset: .35rem; font-weight: 750; font-size: .9rem; }
.text-link.dark { color: var(--purple); }

.record-card { align-self: end; border-top: 4px solid var(--gold); background: rgba(23, 12, 44, .72); box-shadow: 0 30px 80px rgba(15,8,28,.28); backdrop-filter: blur(10px); }
.record-heading { display: flex; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.record-main { position: relative; padding: 2.1rem 1.5rem 2.4rem; }
.record-main p { max-width: 260px; margin: .25rem 0 0; color: rgba(255,255,255,.72); font-size: .92rem; line-height: 1.5; }
.record-number { font-family: var(--serif); color: var(--gold-pale); font-size: clamp(4.5rem, 8vw, 7rem); line-height: .95; letter-spacing: -.06em; }
.record-index { position: absolute; right: 1.25rem; bottom: 1rem; color: rgba(255,255,255,.2); font-family: var(--serif); font-size: 2.7rem; }
.record-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-top: 1px solid rgba(255,255,255,.14); }
.record-list div { padding: 1.15rem 1rem; border-right: 1px solid rgba(255,255,255,.14); }
.record-list div:last-child { border-right: 0; }
.record-list dt { color: var(--gold-pale); font-family: var(--serif); font-size: 1.55rem; line-height: 1; }
.record-list dd { margin: .45rem 0 0; color: rgba(255,255,255,.58); font-size: .68rem; line-height: 1.3; text-transform: uppercase; letter-spacing: .07em; }

.split-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(3rem, 6vw, 6.5rem); }
.section-kicker { color: var(--purple); }
.keep-together { white-space: nowrap; }
.split-intro h2, .section-heading h2, .education-main h2, .interest-intro h2, .resume-panel h2, .contact-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.7vw, 4.7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.about-copy { padding-top: 2.45rem; color: var(--muted); font-size: 1.08rem; }
.about-copy p:first-child { margin-top: 0; }
.legacy-intro { margin-top: 3.5rem; }
.family .legacy-intro { margin-top: 0; }
.legacy-intro .section-kicker { margin-bottom: .7rem; }
.legacy-intro h2, .legacy-intro h3 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.75rem); font-weight: 400; line-height: 1.06; letter-spacing: -.035em; }
.legacy-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.legacy-card { padding: clamp(1.5rem, 3vw, 2.3rem); border: 1px solid var(--line); background: rgba(255,255,255,.55); }
.legacy-label { margin: 0 0 .8rem; color: var(--purple); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.legacy-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.65rem); font-weight: 400; line-height: 1.08; letter-spacing: -.03em; }
.legacy-card > p:not(.legacy-label) { margin: 1rem 0 0; color: var(--muted); font-size: .95rem; line-height: 1.7; }
.legacy-links { display: flex; flex-wrap: wrap; gap: .7rem 1.25rem; margin-top: 1.25rem; font-size: .8rem; }
.principle-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 4.5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-row span { padding: 1.5rem 1rem 1.5rem 0; font-size: .86rem; font-weight: 750; }

.section-purple { color: white; background: var(--purple-deep); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.section-heading.light .section-kicker { color: var(--gold-pale); }
.section-heading > p { margin: 0 0 .45rem; color: var(--muted); font-size: 1rem; }
.section-heading.light > p { color: rgba(255,255,255,.62); }
.experience-ledger { display: grid; grid-template-columns: 1.35fr .65fr; gap: 1rem; }
.experience-feature, .experience-card { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.035); }
.experience-feature { padding: clamp(2rem, 4vw, 3.5rem); }
.experience-meta { display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.45); font-size: .74rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.experience-title-row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin: 2.6rem 0 2rem; }
.role { margin: 0 0 .2rem; color: var(--gold-pale); font-size: .82rem; font-weight: 750; text-transform: uppercase; letter-spacing: .12em; }
.experience-feature h3, .experience-card h3 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1; }
.experience-feature h3 { font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: -.05em; }
.experience-card h3 { font-size: 2.25rem; }
.experience-feature h3 a, .experience-card h3 a { color: inherit; text-decoration: none; }
.experience-feature h3 a:hover, .experience-card h3 a:hover { color: var(--gold-pale); }
.impact-seal { flex: 0 0 112px; width: 112px; height: 112px; display: grid; place-content: center; text-align: center; border-radius: 50%; border: 1px solid var(--gold); transform: rotate(6deg); }
.impact-seal strong { color: var(--gold-pale); font-family: var(--serif); font-size: 2rem; line-height: 1; }
.impact-seal span { margin-top: .35rem; color: rgba(255,255,255,.55); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.experience-summary { max-width: 700px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.experience-points { display: grid; gap: .75rem; margin: 2rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.experience-points li { position: relative; padding-left: 1.7rem; color: rgba(255,255,255,.7); }
.experience-points li::before { content: "↳"; position: absolute; left: 0; color: var(--gold-pale); }
.experience-stack { display: grid; gap: 1rem; }
.experience-card { padding: 2rem; }
.experience-card .role { margin-top: 2.6rem; }
.experience-card > p:last-child { color: rgba(255,255,255,.64); font-size: .94rem; }

.education-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem, 8vw, 7rem); align-items: end; }
.education-main h2 a { color: inherit; text-decoration: none; }
.education-main h2 a:hover { color: var(--purple); }
.institution { margin: 0 0 .45rem; color: var(--muted); font-size: 1rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.degree { margin: 1.75rem 0; color: var(--muted); font-size: 1.12rem; }
.degree strong { color: var(--ink); }
.education-facts { display: flex; flex-wrap: wrap; gap: .65rem; }
.education-facts span { padding: .55rem .75rem; color: var(--purple); background: #eee9f4; font-size: .78rem; font-weight: 750; }
.academic-note { position: relative; padding: 2.2rem; border-left: 4px solid var(--gold); background: var(--cream); }
.note-label { color: var(--purple); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.note-quote { margin: 1.15rem 0; font-family: var(--serif); font-size: 1.7rem; line-height: 1.25; letter-spacing: -.02em; }
.academic-note > p:not(.note-quote) { color: var(--muted); font-size: .92rem; }
.note-course { display: block; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.reference-link { display: inline-flex; align-items: center; gap: .75rem; margin-top: .85rem; color: var(--purple); font-size: .78rem; font-weight: 800; text-underline-offset: .25rem; }
.reference-link span { color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-decoration: none; }
.coursework-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 5rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.coursework-grid article { min-height: 255px; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.course-number { color: var(--purple); font-family: var(--serif); font-size: 1.2rem; }
.coursework-grid h3 { margin: 3.5rem 0 .75rem; font-family: var(--serif); font-size: 1.4rem; line-height: 1.2; }
.coursework-grid p { margin: 0; color: var(--muted); font-size: .87rem; }
.current-coursework { color: white; background: var(--purple); }
.current-coursework .course-number { color: var(--gold-pale); }
.current-coursework p { color: rgba(255,255,255,.7); }

.educator-perspectives { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.perspectives-heading { display: grid; grid-template-columns: .72fr 1.28fr; gap: 3rem; align-items: end; margin-bottom: 2rem; }
.perspectives-heading .section-kicker { margin-bottom: .35rem; }
.perspectives-heading h3 { max-width: 680px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 400; line-height: 1.05; letter-spacing: -.035em; }
.perspectives-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.perspective-card { min-height: 355px; margin: 0; padding: clamp(1.6rem, 3vw, 2.5rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.perspective-card blockquote { margin: 0 0 1.5rem; color: var(--purple-dark); font-family: var(--serif); font-size: clamp(1.55rem, 2.5vw, 2.35rem); line-height: 1.18; letter-spacing: -.025em; }
.perspective-card > p { margin: 0 0 2rem; color: var(--muted); font-size: .92rem; }
.perspective-card figcaption { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.perspective-card figcaption strong, .perspective-card figcaption span { display: block; }
.perspective-card figcaption strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.perspective-card figcaption span { margin-top: .2rem; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.section-warm { background: var(--warm); }
.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.honor-feature { min-height: 490px; overflow: hidden; color: white; background: var(--purple); }
.honor-photo { margin: 0; overflow: hidden; background: #090e12; }
.honor-photo img { display: block; width: 100%; height: auto; }
.honor-photo-standalone { align-self: start; }
.honor-feature-wide { grid-column: 1 / -1; min-height: 0; }
.honor-body { padding: clamp(2rem, 4vw, 3.5rem); }
.honor-body-wide { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .88fr) minmax(250px, .72fr); gap: clamp(1.5rem, 3vw, 3.25rem); align-items: start; }
.honor-details { padding-top: .2rem; }
.honor-year { color: var(--gold-pale); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.honor-feature h3 { max-width: 600px; margin: .65rem 0 1rem; font-family: var(--serif); font-weight: 400; font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: 1.02; letter-spacing: -.04em; }
.honor-feature-wide h3 { font-size: clamp(2.35rem, 3.6vw, 4rem); }
.honor-summary { max-width: 620px; margin-bottom: 0; color: rgba(255,255,255,.72); }
.honor-summary a { color: var(--gold-pale); text-decoration-color: rgba(255,240,178,.55); text-underline-offset: .16em; }
.honor-summary a:hover { text-decoration-color: currentColor; }
.talent-note { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: .4rem 1rem; margin: 1.2rem 0 0; padding: .9rem 1rem; background: rgba(255,255,255,.07); }
.honor-details .talent-note { margin-top: 0; }
.talent-note span { color: var(--gold-pale); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.talent-note strong { color: white; font-size: .84rem; text-align: right; }
.talent-note p { grid-column: 1 / -1; margin: .2rem 0 0; color: rgba(255,255,255,.68); font-size: .78rem; line-height: 1.55; }
.press-link { position: relative; display: grid; grid-template-columns: 1fr auto; gap: .25rem 1rem; margin-top: 1.6rem; padding: 1rem 3rem 1rem 0; border-top: 1px solid rgba(255,255,255,.2); color: white; text-decoration: none; }
.press-link span { grid-column: 1; color: var(--gold-pale); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.press-link strong { grid-column: 1; max-width: 520px; font-size: .82rem; line-height: 1.45; }
.press-link b { position: absolute; right: .25rem; bottom: 1rem; color: var(--gold-pale); font-size: 1rem; transition: transform .2s ease; }
.press-link:hover b { transform: translate(2px, -2px); }
.honor-speaking-photo { width: 100%; max-width: 420px; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.18); background: #090e12; }
.honor-speaking-photo img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.honor-speaking-photo figcaption { padding: .75rem .85rem; color: var(--gold-pale); font-size: .65rem; font-weight: 800; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }
.leadership-list { border-top: 1px solid var(--line); }
.leadership-list article { padding: 1.5rem .5rem 1.5rem 1.5rem; border-bottom: 1px solid var(--line); }
.leadership-list span { color: var(--purple); font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.leadership-list h3 { margin: .35rem 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.leadership-list p { margin: 0; color: var(--muted); font-size: .9rem; }
.honors-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.32); }
.honors-strip div { padding: 1.4rem; border-right: 1px solid var(--line); }
.honors-strip div:last-child { border-right: 0; }
.honors-strip strong, .honors-strip span { display: block; }
.honors-strip strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.honors-strip span { color: var(--muted); font-size: .72rem; }

.interest-intro { max-width: 820px; }
.interest-intro > p:last-child { max-width: 700px; margin: 1.5rem 0 0; color: var(--muted); font-size: 1.05rem; }
.interest-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 4rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.interest-grid article { min-height: 310px; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .2s ease, background .2s ease; }
.interest-grid article:hover { color: white; background: var(--purple); }
.interest-grid article > span { color: var(--purple); font-family: var(--serif); font-size: 1.25rem; }
.interest-grid article:hover > span { color: var(--gold-pale); }
.interest-grid h3 { margin: 5rem 0 .8rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; line-height: 1.15; }
.interest-grid p { margin: 0; color: var(--muted); font-size: .85rem; }
.interest-grid article:hover p { color: rgba(255,255,255,.68); }

.section-ink { color: white; background: #17151b; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.work-card { min-height: 340px; padding: 2rem; border: 1px solid rgba(255,255,255,.14); display: flex; flex-direction: column; }
.work-card-feature { background: var(--purple); }
.work-card > div { display: flex; justify-content: space-between; align-items: center; }
.status { color: var(--gold-pale); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.work-no { color: rgba(255,255,255,.35); font-family: var(--serif); font-size: 1.2rem; }
.work-card h3 { margin: auto 0 1rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.7rem); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.work-card h3 a { text-decoration: none; }
.work-card p { max-width: 580px; margin: 0 0 1.5rem; color: rgba(255,255,255,.62); }
.work-card .work-proof { margin-top: -.35rem; color: rgba(255,255,255,.78); font-size: .78rem; line-height: 1.55; }
.work-proof strong { color: var(--gold-pale); font-weight: 800; letter-spacing: .03em; }
.work-link { width: fit-content; margin: -.25rem 0 1.25rem; color: white; font-size: .78rem; font-weight: 750; text-underline-offset: .28rem; }
.work-links { display: flex; flex-wrap: wrap; gap: .65rem 1.25rem; margin: -.25rem 0 1.25rem; }
.work-links .work-link { margin: 0; }
.work-type { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.45); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* FoodTrack case study */
.project-page .site-header { color: var(--ink); background: rgba(251, 250, 247, .96); box-shadow: 0 1px 0 rgba(29, 28, 31, .12); backdrop-filter: blur(18px); }
.project-page .brand-mark { color: var(--purple); border-color: var(--purple); }
.project-hero { padding: 10.5rem 0 6rem; color: white; background: var(--purple-deep); }
.project-hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.project-eyebrow { margin: 0 0 1.3rem; color: var(--gold-pale); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-hero h1 { max-width: 780px; margin: 0; font-family: var(--serif); font-size: clamp(4.4rem, 11vw, 9rem); font-weight: 400; line-height: .84; letter-spacing: -.065em; }
.project-hero h1 em { display: block; color: var(--gold-pale); font-size: .38em; font-weight: 400; line-height: 1.05; letter-spacing: -.03em; }
.project-hero-copy > p { max-width: 700px; margin: 2rem 0 0; color: rgba(255,255,255,.72); font-size: 1.12rem; }
.project-status { padding: 1.6rem; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.045); }
.project-status span { display: block; color: var(--gold-pale); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-status strong { display: block; margin: .7rem 0 1rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.05; }
.project-status p { margin: 0; color: rgba(255,255,255,.65); font-size: .82rem; }
.project-status-link { display: inline-block; margin-top: 1.2rem; color: var(--gold-pale); font-size: .76rem; font-weight: 750; text-underline-offset: .25rem; }
.project-intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); }
.project-intro h2, .project-section h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.3rem); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.project-intro-copy p:first-child { margin-top: .3rem; }
.project-intro-copy p { color: var(--muted); }
.project-metrics { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-right: 0; }
.project-metrics div { min-height: 165px; padding: 1.4rem; border-right: 1px solid var(--line); }
.project-metrics strong { display: block; color: var(--purple); font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 400; line-height: 1; }
.project-metrics span { display: block; margin-top: 1.2rem; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.project-duo { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.18); }
.project-duo article { min-height: 430px; padding: clamp(2rem, 5vw, 4.5rem); background: var(--purple); }
.project-duo .section-kicker { color: var(--gold-pale); }
.project-duo h2 { max-width: 520px; margin: 0 0 2rem; color: white; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.7rem); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.project-duo p, .project-duo li { color: rgba(255,255,255,.7); }
.project-duo ul { margin: 1.5rem 0 0; padding-left: 1.2rem; }
.project-duo li + li { margin-top: .7rem; }
.project-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr); gap: 3rem; align-items: end; }
.project-section-heading > p { margin: 0; color: var(--muted); }
.project-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.project-cards article { min-height: 270px; padding: 2rem; border: 1px solid var(--line); background: var(--paper); }
.project-cards span { color: var(--purple); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-cards h3 { margin: 3.5rem 0 .9rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; line-height: 1.08; }
.project-cards p { margin: 0; color: var(--muted); font-size: .9rem; }
.project-role { color: white; background: #17151b; }
.project-role-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(3rem, 8vw, 8rem); }
.project-role h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; line-height: .95; letter-spacing: -.045em; }
.project-role-copy p { margin-top: 0; color: rgba(255,255,255,.68); }
.project-role-copy strong { color: var(--gold-pale); }
.project-note { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.16); font-size: .78rem; }
.project-back { display: inline-block; margin-top: 2rem; color: var(--gold-pale); font-weight: 750; text-underline-offset: .28rem; }

.resume { background: var(--gold-pale); }
.resume-panel { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
.resume-panel p:not(.section-kicker) { max-width: 570px; margin-bottom: 0; color: #5e5139; }
.resume-actions { display: flex; align-items: center; gap: 1.4rem; }

.contact { color: white; background: var(--purple); }
.contact .section-kicker { color: var(--gold-pale); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.contact-copy p { max-width: 560px; margin-top: 2.5rem; color: rgba(255,255,255,.7); font-size: 1.08rem; }
.email-link { display: inline-block; margin-top: 2rem; color: var(--gold-pale); font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 2.4rem); text-underline-offset: .35rem; }
.linkedin-link { display: block; width: fit-content; margin-top: 1.4rem; color: white; font-size: .88rem; font-weight: 750; text-underline-offset: .3rem; }

.site-footer { color: rgba(255,255,255,.65); background: var(--purple-deep); }
.footer-inner { min-height: 110px; display: grid; grid-template-columns: 1fr 2fr auto; gap: 2rem; align-items: center; font-size: .7rem; }
.footer-inner > div { display: flex; align-items: center; gap: .75rem; color: white; font-weight: 750; }
.footer-monogram { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.3); color: var(--gold-pale); font-family: var(--serif); }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero-grid, .education-grid { grid-template-columns: 1fr; }
  .record-card { max-width: 560px; }
  .experience-ledger { grid-template-columns: 1fr; }
  .experience-stack { grid-template-columns: repeat(3, 1fr); }
  .coursework-grid { grid-template-columns: repeat(2, 1fr); }
  .interest-grid { grid-template-columns: repeat(2, 1fr); }
  .interest-grid article:last-child { grid-column: span 2; min-height: 240px; }
  .honor-body-wide { grid-template-columns: 1fr minmax(240px, .72fr); }
  .honor-body-wide .honor-intro { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .header-inner { width: min(calc(100% - 2rem), 1320px); }
  .menu-button { display: grid; gap: 6px; width: 42px; height: 42px; place-content: center; border: 0; color: inherit; background: transparent; cursor: pointer; }
  .menu-button span:not(.sr-only) { display: block; width: 23px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; padding: 1.5rem; color: var(--ink); background: var(--paper); box-shadow: 0 18px 30px rgba(29,28,31,.15); }
  .site-nav.open { display: grid; gap: 0; }
  .site-nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav-contact { border: 0; }
  .hero { min-height: 0; padding-top: 9rem; }
  .split-intro, .section-heading, .leadership-grid, .contact-grid, .legacy-grid { grid-template-columns: 1fr; }
  .about-copy { padding-top: 0; }
  .principle-row { grid-template-columns: repeat(2, 1fr); }
  .section-heading { gap: 1.4rem; }
  .honor-feature { min-height: 430px; }
  .honor-feature-wide { min-height: 0; }
  .honor-body-wide { grid-template-columns: 1fr; gap: 1.8rem; }
  .honor-body-wide .honor-intro { grid-column: auto; }
  .perspectives-heading { grid-template-columns: 1fr; gap: .5rem; }
  .honors-strip { grid-template-columns: 1fr; }
  .honors-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .honors-strip div:last-child { border-bottom: 0; }
  .resume-panel { grid-template-columns: 1fr; align-items: start; }
  .footer-inner { grid-template-columns: 1fr auto; padding: 1.5rem 0; }
  .footer-inner > p:first-of-type { grid-column: 1 / -1; grid-row: 2; margin: 0; }
  .project-hero-grid, .project-intro, .project-section-heading, .project-role-grid { grid-template-columns: 1fr; }
  .project-status { max-width: 520px; }
  .project-metrics { grid-template-columns: repeat(2, 1fr); }
  .project-cards { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 2rem), var(--max)); }
  .section { padding: 4.5rem 0; }
  .brand-name { display: none; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-intro { font-size: 1rem; }
  .keep-together { white-space: normal; }
  .hero-actions, .resume-actions { align-items: flex-start; flex-direction: column; }
  .record-number { font-size: 5rem; }
  .record-heading { gap: .75rem; font-size: .62rem; }
  .record-list { grid-template-columns: 1fr; }
  .record-list div { display: grid; grid-template-columns: 90px 1fr; align-items: center; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .record-list div:last-child { border-bottom: 0; }
  .record-list dd { margin-top: 0; }
  .principle-row, .experience-stack, .coursework-grid, .interest-grid, .work-grid { grid-template-columns: 1fr; }
  .principle-row span { border-bottom: 1px solid var(--line); }
  .principle-row span:last-child { border-bottom: 0; }
  .experience-feature, .experience-card { padding: 1.5rem; }
  .experience-title-row { align-items: flex-start; }
  .impact-seal { flex-basis: 84px; width: 84px; height: 84px; }
  .impact-seal strong { font-size: 1.5rem; }
  .impact-seal span { font-size: .56rem; }
  .coursework-grid article { min-height: 220px; }
  .perspectives-grid { grid-template-columns: 1fr; }
  .perspective-card { min-height: 320px; }
  .honor-body { padding: 2rem; }
  .talent-note { grid-template-columns: 1fr; align-items: start; gap: .35rem; }
  .talent-note strong { text-align: left; }
  .talent-note p { grid-column: auto; }
  .interest-grid article, .interest-grid article:last-child { grid-column: auto; min-height: 250px; }
  .interest-grid h3 { margin-top: 3.5rem; }
  .work-card { min-height: 300px; }
  .project-hero { padding: 8.5rem 0 4.5rem; }
  .project-hero h1 { font-size: clamp(3.6rem, 20vw, 6rem); }
  .project-metrics, .project-duo { grid-template-columns: 1fr; }
  .project-metrics { border-bottom: 0; }
  .project-metrics div { min-height: 140px; border-bottom: 1px solid var(--line); }
  .project-duo article { min-height: 0; }
  .email-link { overflow-wrap: anywhere; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > p:first-of-type { grid-column: auto; grid-row: auto; }
  .footer-inner p { margin: 0; }
}

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

@media print {
  .site-header, .hero-actions, .site-footer { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section { padding: 2rem 0; break-inside: avoid; }
  .reveal { opacity: 1; transform: none; }
}
