:root {
  --ink: #17322b;
  --ink-soft: #35515a;
  --paper: #f5efe3;
  --white: #fffdf8;
  --teal: #2e6f6b;
  --teal-soft: #d9e8e2;
  --blue: #8fcfc9;
  --coral: #2e6f6b;
  --line: rgba(16, 43, 53, 0.17);
  --shadow: 0 28px 70px rgba(11, 36, 45, 0.14);
  --radius: 28px;
  --container: min(1180px, calc(100vw - 48px));
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 235, 0.9);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.83rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.site-nav a {
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:not(.nav-contact) {
  position: relative;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  content: "";
  inset: auto 0 -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--ink);
  color: white;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.section-shell {
  padding-block: clamp(84px, 11vw, 150px);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding-top: 160px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 650px;
  height: 650px;
  top: -230px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 200, 220, 0.52), transparent 69%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 6.8vw, 6.7rem);
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 54px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal);
}

.button-text {
  min-height: auto;
  padding-inline: 0;
  border-radius: 0;
}

.affiliations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.affiliations-rows {
  display: grid;
}

.affiliation-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.affiliations span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 680;
}

.hero-visual {
  position: relative;
  min-height: 0;
}

.portrait-shell {
  position: absolute;
  z-index: 2;
  inset: 28px 40px 0 30px;
  overflow: hidden;
  border-radius: 46% 46% 28px 28px;
  background: linear-gradient(155deg, #c8d9d2, #8bb8b5);
  box-shadow: var(--shadow);
}

.portrait-shell::after {
  display: none;
}

.portrait-image,
.portrait-monogram {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portrait-image {
  z-index: 1;
  object-fit: cover;
  object-position: center 28%;
}

.portrait-monogram {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--serif);
  font-size: 8rem;
}

.portrait-caption {
  position: relative;
  margin: 16px 6px 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.portrait-caption span,
.portrait-caption small {
  display: block;
}

.portrait-caption span {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.portrait-caption small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(16, 43, 53, 0.12);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-one {
  width: 106px;
  height: 106px;
  top: 0;
  right: 0;
  background: var(--coral);
  transform: rotate(7deg);
}

.orbit-two {
  width: 86px;
  height: 86px;
  right: -16px;
  bottom: 72px;
  background: var(--blue);
  transform: rotate(-7deg);
}

.orbit-three {
  width: 124px;
  height: 124px;
  left: -28px;
  bottom: 8px;
  background: var(--white);
  transform: rotate(5deg);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 60px;
}

.section-heading h2,
.collaboration-copy h2,
.contact-band h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--ink-soft);
}

.research {
  background: var(--white);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.research-card {
  min-height: 390px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease;
}

.research-card:hover {
  background: var(--teal-soft);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-card h3 {
  max-width: 430px;
  margin: 70px 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.research-card > p {
  max-width: 540px;
  color: var(--ink-soft);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 680;
}

.research-context {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding-top: 42px;
}

.context-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.context-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--ink-soft);
}

.context-list span:not(:last-child)::after {
  content: "·";
  margin-left: 22px;
  color: var(--coral);
}

.scholarship {
  background: #e8efec;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-button {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 740;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.scholarship-list {
  border-top: 1px solid var(--line);
}

.scholarship-item {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) 120px;
  align-items: start;
  gap: 28px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
  animation: item-in 250ms ease both;
}

@keyframes item-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.scholarship-meta span,
.scholarship-meta strong {
  display: block;
}

.scholarship-meta span {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scholarship-meta strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.scholarship-body h3 {
  max-width: 800px;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.scholarship-body p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.scholarship-body .venue {
  margin-top: 9px;
  font-weight: 700;
}

.scholarship-item > a {
  align-self: center;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.scholarship-item > a:hover,
.scholarship-item > a:focus-visible {
  color: var(--teal);
}

.collaborations {
  padding-bottom: 0;
  background: var(--ink);
  color: var(--white);
}

.collaboration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.eyebrow-light {
  color: var(--blue);
}

.collaboration-copy h2 {
  margin-bottom: 30px;
}

.collaboration-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.72);
}

.collaboration-copy .collaboration-lede {
  color: white;
  font-size: 1.17rem;
}

.button-light {
  margin-top: 22px;
  background: var(--white);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--blue);
}

.bridge-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.bridge-kicker {
  margin-bottom: 35px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bridge-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.bridge-steps li {
  display: grid;
  grid-template-columns: 42px 100px 1fr;
  align-items: baseline;
  gap: 14px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.bridge-steps span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
}

.bridge-steps strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.bridge-steps small {
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.73rem;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  padding-block: clamp(80px, 10vw, 130px);
  margin-top: clamp(75px, 11vw, 150px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-band h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
}

.contact-links {
  display: grid;
  min-width: 260px;
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-block: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--blue);
}

.contact-links .contact-email {
  margin: 0;
  padding-block: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 253, 248, 0.5);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
  }

  .hero-grid,
  .collaboration-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(520px, 92%);
    min-height: 0;
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 700px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .wordmark > span:last-child {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 16px auto;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 11px;
  }

  .nav-contact {
    text-align: center;
  }

  .hero {
    padding-top: 125px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-visual {
    min-height: 0;
  }

  .portrait-shell {
    inset: auto;
  }

  .orbit-one {
    width: 84px;
    height: 84px;
  }

  .orbit-two {
    right: -5px;
  }

  .orbit-three {
    width: 100px;
    height: 100px;
    left: -10px;
  }

  .research-grid {
    grid-template-columns: 1fr;
  }

  .research-card {
    min-height: 0;
  }

  .research-card h3 {
    margin-top: 48px;
  }

  .research-context {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .context-list {
    display: grid;
    gap: 7px;
  }

  .context-list span::after {
    display: none;
  }

  .scholarship-item {
    grid-template-columns: 80px 1fr;
    gap: 18px;
  }

  .scholarship-item > a {
    grid-column: 2;
  }

  .bridge-steps li {
    grid-template-columns: 35px 80px 1fr;
    gap: 8px;
  }

  .contact-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-links {
    width: 100%;
    min-width: 0;
  }

  .footer-inner {
    display: grid;
  }
}

/* WordPress editor content support. */

.dgc-editor-page-content {
  max-width: none;
  margin: 0;
}

.dgc-editor-page-content > .wp-block-group,
.dgc-editor-page-content .wp-block-group,
.dgc-editor-page-content .wp-block-columns,
.dgc-editor-page-content .wp-block-image,
.dgc-editor-page-content .wp-block-buttons {
  margin-top: 0;
  margin-bottom: 0;
}

.dgc-editor-page-content .hero-actions.wp-block-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.dgc-editor-page-content .hero-actions .wp-block-button__link,
.dgc-editor-page-content .button-light .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 750;
  text-decoration: none;
}

.dgc-editor-page-content .button-primary .wp-block-button__link {
  background: var(--coral);
  color: #152d35;
}

.dgc-editor-page-content .button-text .wp-block-button__link {
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--white);
}

.dgc-editor-page-content .button-light .wp-block-button__link {
  background: var(--white);
  color: var(--ink);
}

.dgc-editor-page-content .affiliation-tag {
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 680;
}

.dgc-editor-page-content .portrait-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dgc-editor-page-content .portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.dgc-editor-page-content .portrait-monogram,
.dgc-editor-page-content .orbit,
.dgc-editor-page-content .visual-masthead {
  margin: 0;
}

.dgc-editor-page-content .portrait-caption p {
  margin: 0;
}

.dgc-editor-page-content .portrait-caption p:first-child {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.dgc-editor-page-content .portrait-caption p:last-child {
  margin-top: 4px;
  opacity: 0.77;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dgc-editor-page-content .hero-seal p {
  margin: 0;
}

.dgc-editor-page-content .overview-card .overview-link {
  margin-top: auto;
}

.dgc-editor-page-content .overview-link a,
.dgc-editor-page-content .scholarship-item > .scholarship-link a {
  color: inherit;
  text-decoration: none;
}

.dgc-editor-page-content .feature-photo img {
  width: 100%;
}

.dgc-editor-page-content .feature-photo figcaption {
  margin-top: 10px;
}

.dgc-editor-page-content .contact-links .contact-email {
  color: rgba(255, 253, 248, 0.78);
}

.editor-styles-wrapper .dgc-editor-page-content {
  width: 100%;
  max-width: none;
}

.editor-styles-wrapper .dgc-editor-page-content .reveal {
  opacity: 1;
  transform: none;
}

/* Multi-page portfolio */

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.home-explore {
  position: relative;
  overflow: hidden;
  background: #f3eee5;
}

.home-explore::before {
  position: absolute;
  content: "PORTFOLIO";
  top: 24px;
  right: -20px;
  color: rgba(16, 43, 53, 0.035);
  font-size: clamp(7rem, 15vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.home-explore .container {
  position: relative;
  z-index: 1;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.overview-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: clamp(28px, 3.4vw, 44px);
  overflow: hidden;
  border-radius: 28px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(16, 43, 53, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.overview-card::after {
  position: absolute;
  content: "";
  width: 260px;
  height: 260px;
  right: -135px;
  bottom: -135px;
  border: 1px solid rgba(16, 43, 53, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.09), 0 0 0 70px rgba(255, 255, 255, 0.05);
}

.overview-card:hover,
.overview-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 28px 58px rgba(16, 43, 53, 0.15);
}

.overview-research {
  background: #bdd3ca;
}

.overview-scholarship {
  background: #a9cadb;
}

.overview-applied {
  background: #e4aa91;
}

.overview-teaching {
  background: #d6b36a;
}

.overview-number {
  font-family: var(--serif);
  font-size: 2.1rem;
}

.overview-card > p {
  margin: 100px 0 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.overview-card h3 {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.overview-link {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid rgba(16, 43, 53, 0.24);
  font-size: 0.72rem;
  font-weight: 800;
}

.overview-link b {
  font-size: 1rem;
}

.home-contact {
  background: var(--ink);
  color: var(--white);
}

.home-contact .contact-band {
  padding-block: clamp(80px, 10vw, 130px);
  margin-top: 0;
  border-top: 0;
}

.page-hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 180px 0 70px;
  background: var(--paper);
  color: var(--ink);
}

.page-hero::before {
  display: none;
}

.page-hero-scholarship {
  background: var(--paper);
}

.page-hero-applied {
  background: var(--paper);
}

.page-hero-teaching {
  background: var(--paper);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.page-hero-lede {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.inner-page .research::before {
  top: 18px;
}

.inner-page .collaborations {
  padding-top: clamp(90px, 11vw, 150px);
}

.experience-section,
.teaching-section {
  background: #fbf8f2;
}

.media-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  margin-bottom: clamp(70px, 10vw, 120px);
}

.feature-photo {
  position: relative;
  margin: 0;
}

.feature-photo::before {
  display: none;
}

.feature-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(23, 50, 43, 0.14);
}

.feature-photo figcaption {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 10px 14px;
  margin: -18px 0 0 22px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(16, 43, 53, 0.12);
}

.feature-copy h2 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.feature-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.media-feature-dark {
  margin-bottom: clamp(95px, 12vw, 150px);
  color: var(--white);
}

.media-feature-dark .feature-photo::before {
  background: var(--blue);
}

.media-feature-dark .feature-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.experience-list {
  border-top: 2px solid var(--ink);
}

.experience-item {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 100px);
  padding: 44px 12px;
  border-bottom: 1px solid var(--line);
}

.experience-item > div:first-child span,
.experience-item > div:first-child strong {
  display: block;
}

.experience-item > div:first-child span {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-item > div:first-child strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.experience-item h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.experience-item p,
.experience-item li {
  color: var(--ink-soft);
}

.experience-item ul {
  display: grid;
  gap: 8px;
  max-width: 790px;
  padding-left: 19px;
  margin: 18px 0 0;
}

.experience-item li::marker {
  color: var(--coral);
}

.course-line {
  font-weight: 750;
}

@media (max-width: 980px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-card {
    min-height: 360px;
  }

  .overview-card > p {
    margin-top: 54px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .page-hero-lede {
    max-width: 720px;
  }

  .media-feature {
    grid-template-columns: 1fr;
  }

  .feature-photo {
    width: min(720px, calc(100% - 24px));
  }
}

@media (max-width: 760px) {
  .page-hero {
    min-height: 0;
    padding: 140px 0 80px;
  }

  .overview-card {
    min-height: 330px;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-visual,
  .hero-actions,
  .filter-row,
  .button,
  .site-footer {
    display: none !important;
  }

  .section-shell {
    padding-block: 36px;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  body,
  .research,
  .scholarship,
  .collaborations {
    background: white !important;
    color: black !important;
  }

  .research-card,
  .scholarship-item,
  .bridge-card,
  .contact-band {
    break-inside: avoid;
  }
}

/* Editorial redesign: high-contrast, layered, and intentionally not CV-like. */

.hero {
  isolation: isolate;
  min-height: auto;
  background: var(--paper);
  color: var(--ink);
}

.hero::before {
  display: none;
}

.hero .eyebrow {
  color: var(--teal);
}

.hero-edition {
  display: inline-block;
  margin: 0 0 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(2.9rem, 5.3vw, 5.1rem);
  text-wrap: balance;
}

.hero-lede {
  color: var(--ink-soft);
}

.hero .button-primary {
  background: var(--teal);
  color: #fff;
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: var(--ink);
}

.hero .button-text {
  color: var(--ink);
}

.hero .affiliations span {
  border-color: var(--line);
  background: transparent;
  color: var(--ink-soft);
}

.site-header:not(.is-scrolled) {
  color: var(--ink);
}

.visual-masthead {
  position: absolute;
  z-index: 0;
  top: -82px;
  right: 4px;
  margin: 0;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--sans);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.76;
  text-align: right;
}

.portrait-shell {
  position: relative;
  inset: auto;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #dfe7e2;
  box-shadow: 0 24px 60px rgba(23, 50, 43, 0.16);
}

.portrait-monogram {
  color: rgba(255, 255, 255, 0.52);
  font-size: 7rem;
}

.orbit {
  border: 6px solid #173943;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.orbit-one {
  top: 3px;
  right: 7px;
}

.orbit-two {
  right: 0;
  bottom: 56px;
}

.orbit-three {
  width: 154px;
  height: 154px;
  left: -92px;
  bottom: 58px;
  background: #d6b36a;
  color: var(--ink);
}

.hero-seal {
  position: absolute;
  z-index: 4;
  top: auto;
  bottom: 26px;
  left: 16px;
  width: 178px;
  padding: 14px 17px;
  border-left: 3px solid var(--coral);
  background: rgba(13, 34, 43, 0.84);
  backdrop-filter: blur(10px);
  transform: rotate(-5deg);
}

.hero-seal span,
.hero-seal strong {
  display: block;
}

.hero-seal span {
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-seal strong {
  margin-top: 3px;
  color: white;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.research {
  position: relative;
  overflow: hidden;
  background: #f3eee5;
}

.research::before {
  position: absolute;
  content: "RESEARCH";
  top: 26px;
  right: -24px;
  color: rgba(16, 43, 53, 0.035);
  font-size: clamp(7rem, 16vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.research .section-heading,
.research-grid,
.research-context {
  position: relative;
  z-index: 1;
}

.research-grid {
  gap: 16px;
  border: 0;
}

.research-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(16, 43, 53, 0.07);
}

.research-card::after {
  position: absolute;
  content: "";
  width: 230px;
  height: 230px;
  right: -110px;
  bottom: -125px;
  border: 1px solid rgba(16, 43, 53, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.08), 0 0 0 55px rgba(255, 255, 255, 0.06);
}

.research-card:nth-child(1) {
  background: #bdd3ca;
}

.research-card:nth-child(2) {
  background: #a9cadb;
}

.research-card:nth-child(3) {
  background: #e4aa91;
}

.research-card:nth-child(4) {
  background: #173943;
  color: var(--white);
}

.research-card:nth-child(4) .card-topline,
.research-card:nth-child(4) > p {
  color: rgba(255, 255, 255, 0.66);
}

.research-card:nth-child(4) .tag-list li {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
}

.research-card:hover {
  background: #edf3f5;
  color: #2f5f7a;
  transform: translateY(-5px);
  box-shadow: 0 26px 55px rgba(16, 43, 53, 0.13);
}

.research-card:hover .card-topline,
.research-card:hover h3,
.research-card:hover > p,
.research-card:hover .tag-list li,
.research-card:focus-within .card-topline,
.research-card:focus-within h3,
.research-card:focus-within > p,
.research-card:focus-within .tag-list li {
  color: #2f5f7a;
}

.research-card:hover .tag-list li,
.research-card:focus-within .tag-list li {
  background: rgba(255, 255, 255, 0.76);
}

.feature-photo > a {
  display: block;
}

.research-event-photo img {
  object-position: center 20%;
}

.research-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 74px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.research-card > p,
.research-card .tag-list {
  position: relative;
  z-index: 1;
}

.research-card-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  width: fit-content;
  padding-bottom: 3px;
  margin-top: 22px;
  border-bottom: 1px solid currentColor;
  color: #244f68;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.research-card-link a {
  color: inherit;
  text-decoration: none;
}

.research-card-link:hover,
.research-card-link:focus-visible,
.research-card:hover .research-card-link,
.research-card:focus-within .research-card-link {
  color: #2f5f7a;
}

.tag-list li {
  background: rgba(255, 253, 248, 0.48);
}

.scholarship {
  position: relative;
  overflow: hidden;
  background: #fbf8f2;
}

.scholarship::after {
  position: absolute;
  content: "";
  width: 420px;
  height: 420px;
  top: -170px;
  right: -160px;
  border: 80px solid rgba(155, 200, 220, 0.14);
  border-radius: 50%;
}

.scholarship .container {
  position: relative;
  z-index: 1;
}

.filter-button {
  padding: 10px 18px;
  background: white;
}

.scholarship-list {
  border-top: 2px solid var(--ink);
}

.scholarship-item {
  grid-template-columns: 160px minmax(0, 1fr) 130px;
  padding: 40px 22px;
  transition: background 180ms ease, padding 180ms ease;
}

.scholarship-item:hover {
  padding-inline: 34px;
  background: #e3eee9;
}

.scholarship-meta strong {
  font-size: 2.2rem;
}

.scholarship-body h3 {
  font-size: clamp(1.4rem, 2.3vw, 2.15rem);
}

.collaborations {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(155, 200, 220, 0.17), transparent 23%),
    linear-gradient(150deg, #102b35, #173d47 68%, #102b35);
}

.collaborations::before {
  position: absolute;
  content: "";
  width: 640px;
  height: 640px;
  left: -360px;
  bottom: -300px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.collaboration-grid,
.contact-band {
  position: relative;
  z-index: 1;
}

.bridge-card {
  transform: rotate(1.2deg);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 28px 28px 0 rgba(46, 111, 107, 0.75);
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
  }

  .visual-masthead {
    top: -68px;
    right: 0;
  }

  .hero-seal {
    left: 16px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    color: var(--ink);
  }

  .hero-edition {
    margin-bottom: 26px;
  }

  .portrait-shell {
    inset: auto;
    border-width: 1px;
    box-shadow: 0 16px 40px rgba(23, 50, 43, 0.16);
  }

  .hero-seal {
    top: auto;
    bottom: 20px;
    left: 18px;
    width: 150px;
  }

  .orbit-three {
    width: 132px;
    height: 132px;
    left: -38px;
    bottom: 48px;
  }

  .research-grid {
    gap: 12px;
    border: 0;
  }

  .research-card {
    min-height: 350px;
  }

  .scholarship-item {
    grid-template-columns: 72px 1fr;
    padding-inline: 0;
  }

  .scholarship-item:hover {
    padding-inline: 12px;
  }

  .bridge-card {
    margin-right: 18px;
    transform: rotate(0.7deg);
    box-shadow: 16px 16px 0 rgba(46, 111, 107, 0.75);
  }
}

body.admin-bar .site-header { top: 32px; }
.wordpress-content { max-width: 860px; }
.wordpress-content h2 { margin-top: 2em; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.wordpress-content a { color: var(--teal); }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* Final block-editor compatibility overrides. */

.dgc-editor-page-content .card-topline p,
.dgc-editor-page-content .context-list p,
.dgc-editor-page-content .experience-meta p,
.dgc-editor-page-content .scholarship-meta p,
.dgc-editor-page-content .scholarship-meta h3,
.dgc-editor-page-content .scholarship-link,
.dgc-editor-page-content .bridge-step p {
  margin: 0;
}

.dgc-editor-page-content .context-list p {
  color: var(--ink-soft);
}

.dgc-editor-page-content .context-list p:not(:last-child)::after {
  content: "·";
  margin-left: 22px;
  color: var(--coral);
}

.dgc-editor-page-content .experience-meta .experience-year {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dgc-editor-page-content .experience-meta .experience-place {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.2;
}

.dgc-editor-page-content .scholarship-meta > p {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dgc-editor-page-content .scholarship-meta > h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.dgc-editor-page-content .scholarship-link {
  align-self: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.dgc-editor-page-content .bridge-step {
  display: grid;
  grid-template-columns: 42px 100px 1fr;
  align-items: baseline;
  gap: 14px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.dgc-editor-page-content .bridge-step p:first-child {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
}

.dgc-editor-page-content .bridge-step p:nth-child(2) {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.dgc-editor-page-content .bridge-step p:last-child {
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.73rem;
}

.dgc-editor-page-content .overview-card > .overview-number {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.dgc-editor-page-content .overview-card > .overview-link {
  margin-top: auto;
  margin-bottom: 0;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
}

.dgc-editor-page-content .home-contact .contact-links > p,
.dgc-editor-page-content .collaborations .contact-links > p {
  margin: 0;
}

@media (max-width: 760px) {
  .dgc-editor-page-content .context-list p::after {
    display: none;
  }

  .dgc-editor-page-content .bridge-step {
    grid-template-columns: 35px 80px 1fr;
    gap: 8px;
  }

  .dgc-editor-page-content .scholarship-item > .scholarship-link {
    grid-column: 2;
  }
}

/* ---------------------------------------------------------------------------
   Mobile hero fix
   On phones the decorative gold circle (.orbit-three) was overlapping the
   portrait caption (your name). Lift the portrait/name above the accents and
   retire the one circle that collided. Reverse by deleting this block.
--------------------------------------------------------------------------- */
@media (max-width: 760px) {
  .portrait-shell { z-index: 4; }
  .orbit-three { display: none; }
}

/* ---------------------------------------------------------------------------
   Applied Work flagship substance sections (added v1.6)
   New, self-contained classes only. No existing rule is overridden.
--------------------------------------------------------------------------- */
.applied-substance > .container + .container { margin-top: clamp(52px, 7vw, 96px); }
.prose-narrow { max-width: 760px; }
.prose-narrow > h2 { margin-bottom: 18px; }
.prose-narrow > p { margin: 0 0 16px; color: var(--ink-soft); }
.prose-narrow > p:last-child { margin-bottom: 0; }
.beliefs { list-style: none; max-width: 820px; margin: 18px 0 0; padding: 0; border-top: 1px solid var(--line); }
.beliefs li { padding: 20px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.beliefs li strong { display: block; margin-bottom: 6px; color: var(--ink); font-family: var(--serif); font-weight: 400; font-size: 1.2rem; line-height: 1.15; letter-spacing: -0.01em; }

/* ---------------------------------------------------------------------------
   Type: editorial pairing, Lora (headings) + Inter (body).
   Lora reads best around semibold at display sizes; drop
   600 -> 500 here if the headings feel too heavy. font-optical-sizing lets
   the weight slightly at very large sizes if it feels heavy.
--------------------------------------------------------------------------- */
h1,
h2,
.research-card h3,
.scholarship-body h3,
.overview-card h3,
.experience-item h3,
.portrait-caption span,
.bridge-steps strong,
.hero-seal strong,
.wordmark-mark,
.beliefs li strong {
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
}

/* Applied Work: Paramount block moved up to its own band (added v2.1) */
.applied-intro-band { padding-block: clamp(60px, 7vw, 104px); }

/* ============================================================
   Through-line pull quote (Home) — editorial v1.0.0
   Self-contained; light section below the hero.
   ============================================================ */
.throughline-band { background: var(--paper); }
.throughline { max-width: 1040px; }
.throughline-quote {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.throughline-quote em {
  font-style: italic;
  color: var(--teal);
}
.throughline-belief {
  margin: 22px 0 0;
  max-width: 660px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   v1.1.1 fixes
   ============================================================ */
/* 1) Tighten the vertical rhythm around the Home through-line
   (it was inheriting full section padding on top of the hero's) */
.hero { padding-bottom: clamp(40px, 5vw, 76px); }
.throughline-band { padding-block: clamp(36px, 4.5vw, 68px); }

/* 2) Inner-page headers are light now, so their eyebrow should be the
   deep teal (the pale --blue variant is for dark bands only) */
.page-hero .eyebrow-light { color: var(--teal); }
