#main.foundation-main {
  max-width: none !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.foundation-container {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.foundation-container--narrow {
  width: min(100%, 1040px);
}

.foundation-eyebrow {
  margin: 0 0 0.9rem;
  color: #777;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.foundation-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: var(--fg);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(2.8rem, 6vw, 5rem);
  border-bottom: 1px solid #e3dfd7;
}

.foundation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(31, 31, 31, 0.05) 1px, transparent 0);
  background-size: 28px 28px;
  background-position: top left;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
  pointer-events: none;
  z-index: 0;
}

/* ─── Floating geometric shapes ─────────────────────────────────────── */

.foundation-hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  color: rgba(31, 31, 31, 0.18);
  overflow: hidden;
}

.foundation-hero__shape {
  position: absolute;
  display: block;
}

.foundation-hero__shape--1 {
  top: 8%;
  left: 38%;
  width: 28px;
  height: 28px;
  animation: shape-drift-a 14s ease-in-out infinite alternate;
}

.foundation-hero__shape--2 {
  top: 18%;
  right: 6%;
  width: 22px;
  height: 22px;
  animation: shape-drift-b 17s ease-in-out infinite alternate;
}

.foundation-hero__shape--3 {
  bottom: 18%;
  left: 8%;
  width: 36px;
  height: 36px;
  animation: shape-drift-c 19s ease-in-out infinite alternate;
}

.foundation-hero__shape--4 {
  top: 58%;
  right: 38%;
  width: 24px;
  height: 24px;
  color: var(--brand-accent);
  opacity: 0.32;
  animation: shape-drift-d 13s ease-in-out infinite alternate;
}

.foundation-hero__shape--5 {
  bottom: 8%;
  right: 14%;
  width: 18px;
  height: 18px;
  animation: shape-drift-e 16s ease-in-out infinite alternate;
}

@keyframes shape-drift-a {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(20px, 16px) rotate(20deg); }
}
@keyframes shape-drift-b {
  from { transform: translate(0, 0) rotate(45deg); }
  to   { transform: translate(-16px, 18px) rotate(72deg); }
}
@keyframes shape-drift-c {
  from { transform: translate(0, 0); }
  to   { transform: translate(18px, -22px); }
}
@keyframes shape-drift-d {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(-22px, -14px) rotate(35deg); }
}
@keyframes shape-drift-e {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(14px, -18px) rotate(-22deg); }
}

@media (prefers-reduced-motion: reduce) {
  .foundation-hero__shape { animation: none !important; }
}

.foundation-hero > .foundation-container {
  position: relative;
  z-index: 1;
}

.foundation-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-template-areas:
    "lead visual"
    "meta visual";
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: start;
}

.foundation-hero__lead { grid-area: lead; }
.foundation-hero__visual { grid-area: visual; align-self: center; }
.foundation-hero__meta { grid-area: meta; }

/* Single-column hero variant (used on Collaborate) */
.foundation-hero__grid--single {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "lead";
}
.foundation-hero__grid--single .foundation-hero__lead { max-width: 78ch; }
.foundation-hero__grid--single .foundation-hero__lead-copy { max-width: 66ch; margin-top: 0.9rem; }

.foundation-hero__lead h1 {
  max-width: 16ch;
  margin: 0 0 1.1rem;
  color: var(--fg);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.04;
}

.foundation-hero__lead-copy {
  max-width: 56ch;
  margin: 0;
  color: #48443f;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
}

.foundation-hero__meta {
  border-left: 1px solid #d6d1c8;
  padding-left: clamp(1.25rem, 2.5vw, 1.85rem);
  margin-bottom: 0.55rem;
}

.foundation-hero__meta-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--brand-accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.foundation-hero__meta p {
  margin: 0;
  max-width: 28ch;
  color: #48443f;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
}

/* ─── Hero diagram (animated evaluation network) ────────────────────────── */

.foundation-hero__visual {
  display: flex;
  justify-content: center;
}

.hero-diagram {
  width: 100%;
  max-width: 420px;
  height: auto;
  overflow: visible;
}

.hero-diagram__grid {
  opacity: 0.55;
}

.hero-diagram__lines line {
  stroke: #1f1f1f;
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 4 6;
  stroke-dashoffset: 0;
  animation: hero-flow 4s linear infinite;
  opacity: 0.7;
}

.hero-diagram__lines line:nth-child(2) { animation-delay: -0.6s; }
.hero-diagram__lines line:nth-child(3) { animation-delay: -1.2s; }
.hero-diagram__lines line:nth-child(4) { animation-delay: -1.8s; }
.hero-diagram__lines line:nth-child(5) { animation-delay: -2.4s; }
.hero-diagram__lines line:nth-child(6) { animation-delay: -3s; }

@keyframes hero-flow {
  to { stroke-dashoffset: -40; }
}

.hero-diagram__nodes circle {
  stroke: #1f1f1f;
  stroke-width: 1.4;
  fill: var(--bg);
  transform-origin: center;
  transform-box: fill-box;
  animation: hero-node-pulse 4s ease-in-out infinite;
}

.hero-diagram__nodes circle:nth-child(1) { animation-delay: -0.3s; }
.hero-diagram__nodes circle:nth-child(2) { animation-delay: -0.9s; }
.hero-diagram__nodes circle:nth-child(3) { animation-delay: -1.5s; }
.hero-diagram__nodes circle:nth-child(4) { animation-delay: -2.1s; }
.hero-diagram__nodes circle:nth-child(5) { animation-delay: -2.7s; }
.hero-diagram__nodes circle:nth-child(6) { animation-delay: -3.3s; }

@keyframes hero-node-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-diagram__pulse {
  fill: var(--brand-accent);
  opacity: 0.22;
  transform-origin: 210px 210px;
  animation: hero-center-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-center-pulse {
  0%, 100% { transform: scale(1); opacity: 0.22; }
  50% { transform: scale(1.35); opacity: 0; }
}

.hero-diagram__core {
  fill: var(--brand-accent);
}

.hero-diagram__center text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  fill: #fff;
}

.hero-diagram__labels text {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  fill: #57534d;
}

/* ─── Pillar icons ──────────────────────────────────────────────────────── */

.foundation-pillar {
  position: relative;
}

.foundation-pillar__icon {
  display: inline-flex;
  margin-bottom: 0.85rem;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6d1c8;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  transition: border-color 200ms ease, background-color 200ms ease, transform 250ms ease;
}

.foundation-pillar__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--fg);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.foundation-pillar:hover .foundation-pillar__icon,
.foundation-pillar:focus-within .foundation-pillar__icon {
  border-color: var(--brand-accent);
  background: #fff;
  transform: translateY(-2px);
}

/* ─── Stats strip ───────────────────────────────────────────────────────── */

.foundation-section--stats {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 4vw, 3.4rem) 0;
  background: var(--fg);
  color: var(--bg);
  border-bottom: none;
}

/* Diagonal hatch pattern on stats band */
.foundation-section--stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 18px,
    rgba(255, 255, 255, 0.022) 18px,
    rgba(255, 255, 255, 0.022) 19px
  );
  pointer-events: none;
}

/* Cursor spotlight on stats */
.foundation-section--stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(195, 86, 87, 0.18),
    transparent 55%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms ease;
}

.foundation-section--stats.is-spotlit::after {
  opacity: 1;
}

.foundation-section--stats > .foundation-container {
  position: relative;
  z-index: 1;
}

.foundation-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 4vw, 3rem);
}

.foundation-stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: clamp(1.1rem, 2vw, 1.8rem);
}

.foundation-stat__value {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--bg);
  letter-spacing: -0.02em;
}

.foundation-stat__label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  max-width: 22ch;
}

/* ─── News marquee ──────────────────────────────────────────────────────── */

.foundation-section--news {
  overflow: hidden;
}

.foundation-marquee {
  position: relative;
  margin-top: 1.8rem;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.foundation-marquee__track {
  display: inline-flex;
  gap: 1.5rem;
  padding: 0.5rem 0;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.foundation-marquee:hover .foundation-marquee__track {
  animation-play-state: paused;
}

.foundation-marquee__track a {
  flex: 0 0 auto;
  display: flex;
  width: 180px;
  height: 88px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ded8cf;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.foundation-marquee__track a:hover {
  border-color: #1f1f1f;
  background: #fff;
}

.foundation-marquee__track img {
  display: block;
  max-width: 130px;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.04);
  transition: filter 200ms ease, transform 200ms ease;
}

.foundation-marquee__track a:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.04);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Collaborate page ─────────────────────────────────────────────────── */

.collab-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 2.4rem) clamp(2rem, 4vw, 3.2rem);
  margin-top: 1.6rem;
}

.collab-path {
  position: relative;
  border-top: 2px solid var(--brand-accent);
  padding-top: 1.35rem;
  transition: transform 220ms ease;
}

.collab-path:hover {
  transform: translateY(-2px);
}

.collab-path__number {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--brand-accent);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.collab-path h2 {
  margin: 0 0 0.7rem;
  color: var(--fg);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
}

.collab-path p {
  margin: 0;
  color: #57534d;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 56ch;
}

.foundation-section--contact .collab-contact {
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}

.foundation-section--contact .foundation-eyebrow,
.foundation-section--contact h2,
.foundation-section--contact .collab-contact__body {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.foundation-section--contact h2 {
  max-width: 24ch;
  margin: 0 auto 0.85rem;
}

.collab-contact__body {
  max-width: 54ch;
  color: #57534d;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 auto 1.5rem;
}

.foundation-section--contact .foundation-actions {
  justify-content: center;
  margin-top: 0;
}

.foundation-section--contact .foundation-button--primary {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  min-height: 48px;
  padding: 0.8rem 1.6rem;
}

.collab-contact__pec {
  margin-top: 1.5rem;
  color: #807a72;
  font-size: 0.86rem;
  line-height: 1.5;
}

.foundation-section--contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(195, 86, 87, 0.10),
    transparent 55%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms ease;
}

.foundation-section--contact.is-spotlit::after { opacity: 1; }
.foundation-section--contact { position: relative; overflow: hidden; }
.foundation-section--contact > .foundation-container { position: relative; z-index: 1; }

@media (max-width: 840px) {
  .collab-paths { grid-template-columns: 1fr; }
}

/* ─── Hover micro-interactions on existing blocks ───────────────────────── */

.foundation-paper {
  position: relative;
  transition: background-color 220ms ease;
}

.foundation-paper::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 1.35rem;
  bottom: 1.35rem;
  width: 2px;
  background: var(--brand-accent);
  opacity: 0;
  transform: scaleY(0.3);
  transform-origin: top;
  transition: opacity 220ms ease, transform 260ms ease;
}

.foundation-paper:hover {
  background: rgba(195, 86, 87, 0.04);
}

.foundation-paper:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.foundation-area {
  transition: border-color 220ms ease, transform 220ms ease;
}

.foundation-area:hover {
  border-color: var(--brand-accent);
  transform: translateY(-2px);
}

.foundation-area:hover h3 {
  color: var(--brand-accent);
}

/* ─── Scroll-reveal ─────────────────────────────────────────────────────── */

html.js-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

html.js-reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-diagram__lines line,
  .hero-diagram__nodes circle,
  .hero-diagram__pulse,
  .foundation-marquee__track { animation: none !important; }
}

.foundation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.foundation-actions--compact {
  margin-top: 1.2rem;
}

.foundation-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  padding: 0.6rem 1.05rem;
  color: var(--fg);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.foundation-button:hover,
.foundation-button:focus-visible {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.32);
  color: var(--fg);
}

.foundation-button--primary {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
}

.foundation-button--primary:hover,
.foundation-button--primary:focus-visible {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #fff;
}

/* Magnetic pull effect — JS sets --mag-x / --mag-y */
[data-magnetic] {
  transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0);
  transition: transform 200ms cubic-bezier(0.2, 0.7, 0.2, 1), background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-magnetic] {
    transform: none !important;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  }
}

.foundation-section {
  border-bottom: 1px solid #e3dfd7;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.foundation-section--muted {
  background: #f4f2ed;
}

.foundation-section--pillars {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.foundation-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 2.8rem);
}

.foundation-pillar {
  border-top: 1px solid #d6d1c8;
  padding-top: 1.35rem;
}

.foundation-pillar__number {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--brand-accent);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.foundation-pillar h3 {
  margin: 0 0 0.45rem;
  color: var(--fg);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.foundation-pillar p {
  margin: 0;
  color: #57534d;
  font-size: 0.96rem;
  line-height: 1.55;
}

.foundation-section--quote .foundation-container {
  display: grid;
  gap: 0.85rem;
}

.foundation-quote {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.1rem;
}

.foundation-quote blockquote {
  margin: 0;
  max-width: 28ch;
  color: var(--fg);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-style: italic;
  line-height: 1.3;
}

.foundation-quote__expansion {
  max-width: 62ch;
  margin: 0;
  color: #48443f;
  font-size: 1rem;
  line-height: 1.7;
}

.foundation-section h2 {
  max-width: 1040px;
  margin: 0 0 1.1rem;
  color: var(--fg);
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.institutional-page h1 {
  max-width: 760px;
  margin: 0 0 1.1rem;
  color: var(--fg);
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.foundation-text {
  max-width: 68ch;
}

.foundation-text p,
.institutional-intro {
  margin: 0 0 1.15rem;
  color: #48443f;
  font-size: 1rem;
  line-height: 1.7;
}

.foundation-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 2.5rem;
  margin-top: 1.8rem;
}

.foundation-area,
.foundation-work-row,
.research-area-row,
.person,
.people-section {
  border-top: 1px solid #d6d1c8;
}

.foundation-area {
  padding-top: 1.25rem;
}

.foundation-area span,
.foundation-work-meta,
.research-area-label,
.person-role {
  color: var(--brand-accent);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.foundation-area h3,
.foundation-work-row h3,
.research-area-row h2,
.person h3,
.people-section-heading h2,
.institutional-callout h2 {
  margin: 0.55rem 0 0.55rem;
  color: var(--fg);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
}

.foundation-area p,
.foundation-work-row p,
.research-area-row p,
.person p,
.people-section-heading p,
.people-note,
.institutional-callout p {
  margin: 0;
  color: #57534d;
  font-size: 0.98rem;
  line-height: 1.65;
}

.foundation-inline-link {
  display: inline-flex;
  margin-top: 1.35rem;
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration-color: var(--brand-accent);
  text-underline-offset: 0.28rem;
}

.foundation-paper-list {
  display: grid;
  gap: 0;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d6d1c8;
}

.foundation-paper {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  border-bottom: 1px solid #d6d1c8;
  padding: 1.35rem 0;
  align-items: start;
}

.foundation-paper__year {
  color: var(--brand-accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
  padding-top: 0.18rem;
}

.foundation-paper__body h3 {
  margin: 0 0 0.4rem;
  color: var(--fg);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.foundation-paper__body p {
  max-width: 72ch;
  margin: 0 0 0.65rem;
  color: #57534d;
  font-size: 0.96rem;
  line-height: 1.6;
}

.foundation-paper__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.foundation-work-list {
  display: grid;
  gap: 0;
  margin-top: 1.6rem;
}

.foundation-work-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
}

.foundation-work-meta {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.35rem;
  color: #777;
  letter-spacing: 0.04em;
}

.foundation-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.foundation-news-grid a {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ded8cf;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  padding: 1rem;
  transition: border-color 160ms ease, background 160ms ease;
}

.foundation-news-grid a:hover,
.foundation-news-grid a:focus-visible {
  border-color: #bfb5a8;
  background: #fff;
}

.foundation-news-grid img {
  display: block;
  max-width: 136px;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.04);
}

.foundation-final {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.institutional-page {
  padding: clamp(3.2rem, 6vw, 5.4rem) 0;
}

.institutional-page > .foundation-container {
  position: relative;
}

.institutional-page > .foundation-container::before {
  display: block;
  width: 72px;
  border-top: 2px solid var(--brand-accent);
  margin-bottom: 1.45rem;
  content: "";
}

.institutional-page--manifesto {
  text-align: center;
}

.institutional-page--manifesto h1 {
  margin-left: auto;
  margin-right: auto;
}

.institutional-subtitle {
  max-width: 58ch;
  margin: 0 0 1.35rem;
  color: #68625c;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
}

.institutional-page--manifesto .institutional-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.manifesto-body {
  max-width: 66ch;
  margin: 0 auto;
  text-align: left;
}

.manifesto-body p {
  margin: 0 0 1.35rem;
  color: #282828;
  font-family: var(--font-serif);
  font-size: 1.17rem;
  line-height: 1.72;
}

.manifesto-body p.drop::first-letter {
  float: left;
  padding: 0.2rem 0.55rem 0 0;
  color: var(--brand-accent);
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 0.9;
}

.manifesto-page {
  padding-top: 1.25rem !important;
}

.manifesto-banner {
  margin-bottom: 1.5rem;
}

.manifesto-banner .hero-image-wrapper {
  max-width: 900px;
  margin-bottom: 0.85rem;
}

.manifesto-banner .hero-image-wrapper img {
  border-radius: 0;
}

.manifesto-kicker {
  color: #666;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.manifesto-original {
  margin-top: 0;
}

.manifesto-original h1 {
  margin: 0 auto 0.35rem;
  color: var(--fg);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.manifesto-lead {
  margin: 0 0 1.5rem !important;
  color: #666;
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
}

.manifesto-original section {
  margin: 0 0 1.75rem;
}

.manifesto-original p {
  margin: 0 0 1rem;
}

.research-area-list,
.people-section-list {
  display: grid;
  gap: 0;
  margin-top: clamp(2.6rem, 5vw, 3.9rem);
}

.research-area-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  padding: clamp(1.75rem, 4vw, 2.6rem) 0;
}

.research-area-row:last-child,
.people-section:last-child {
  border-bottom: 1px solid #d6d1c8;
}

.institutional-callout {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid #d6d1c8;
  border-bottom: 1px solid #d6d1c8;
  border-left: 3px solid var(--brand-accent);
  background: #f4f2ed;
  padding: clamp(1.7rem, 4vw, 2.7rem) clamp(1.4rem, 4vw, 2.4rem);
}

.institutional-callout h2 {
  margin-top: 0;
}

.people-section {
  padding: clamp(1.9rem, 4vw, 2.6rem) 0;
}

.people-section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  margin-bottom: 2rem;
}

.people-section-heading h2 {
  margin-top: 0;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem 2.2rem;
}

.people-section--note .people-section-heading {
  margin-bottom: 1.25rem;
}

.person {
  padding-top: 1.25rem;
  transition: border-color 220ms ease, transform 220ms ease;
}

.person:hover {
  border-color: var(--brand-accent);
  transform: translateY(-2px);
}

.person:hover h3 {
  color: var(--brand-accent);
}

.person h3 {
  margin-bottom: 0.2rem;
  transition: color 220ms ease;
}

.person-role {
  margin: 0 0 0.7rem !important;
}

.person-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.person-links a {
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration-color: var(--brand-accent);
  text-underline-offset: 0.25rem;
}

.people-note {
  width: min(100%, 860px);
  max-width: none;
  margin: 1.5rem auto 0;
  border: 1px dashed #cfc6bb;
  border-radius: 8px;
  background: #f4f2ed;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  font-size: 1.03rem;
}

@media (max-width: 840px) {
  .foundation-hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "visual"
      "meta";
    align-items: start;
    row-gap: 1.8rem;
  }

  .foundation-hero__visual {
    justify-content: flex-start;
    max-width: 320px;
  }

  .foundation-hero__meta {
    border-left: none;
    border-top: 1px solid #d6d1c8;
    padding-left: 0;
    padding-top: 1.1rem;
    margin-bottom: 0;
  }

  .foundation-pillars {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .foundation-stats {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .foundation-marquee__track a {
    width: 140px;
    height: 72px;
  }

  .foundation-area-grid,
  .foundation-final,
  .research-area-row,
  .institutional-callout,
  .people-section-heading,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .foundation-work-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .foundation-paper {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .foundation-paper__year {
    padding-top: 0;
  }

  .foundation-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  #main.foundation-main {
    padding: 0 !important;
  }

  .foundation-container {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .foundation-hero__lead h1 {
    font-size: 2.4rem;
  }

  .foundation-section,
  .institutional-page {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .foundation-section h2,
  .institutional-page h1 {
    font-size: 2rem;
  }

  .foundation-news-grid {
    grid-template-columns: 1fr;
  }
}
