


/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.7;
  color: #111;
  background: #fff;
}

a {
  color: #111;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #555;
}



/* ===== Header (mock style) ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  z-index: 50;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: #1e3a5f;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-divider {
  width: 1px;
  height: 2.4rem;
  background: #cfd5de;
}

.brand-text {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #1e3a5f;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.main-nav a {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  color: #1e3a5f;
  text-decoration: none;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.is-active {
  border-bottom-color: #1e3a5f;
}

/* ===== Hero (mock style) ===== */
.hero-css {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1e3a5f;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0.08;
}

.hero-shape-1 {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
}

.hero-shape-2 {
  width: 320px;
  height: 320px;
  bottom: -140px;
  right: 18%;
  opacity: 0.06;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3.25rem 0;
  color: #fff;
}

.hero-copy {
  max-width: 36rem;
}

.hero-css .hero-kicker {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.1rem;
}

.hero-css h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.35rem;
  max-width: none; /* remove the old 18ch limit if it’s still there */
}

.hero-css .hero-lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 32em;
  margin-bottom: 1.6rem;
}

.hero-css .hero-cta a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.7);
  text-decoration: none;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-css .hero-cta a:hover {
  border-bottom-color: #fff;
}

/* ===== Why the Centre exists ===== */
.home-why {
  padding: 4rem 0 4.5rem;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.why-title-col h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #1e3a5f;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.why-rule {
  width: 36px;
  height: 2px;
  background: #1e3a5f;
}

.why-text-col p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #3a4553;
  max-width: 34em;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid #e8e8e8;
  padding-top: 2rem;
}

.pillar {
  padding: 0 1.5rem;
}

.pillar + .pillar {
  border-left: 1px solid #e8e8e8;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ebe6df;
  color: #1e3a5f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e3a5f;
  margin: 0 0 0.5rem;
}

.pillar-rule {
  width: 24px;
  height: 2px;
  background: #1e3a5f;
  margin-bottom: 0.85rem;
}

.pillar p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5563;
}

.why-more {
  text-align: center;
  margin: 2.75rem 0 0;
}

.why-more a {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e3a5f;
  text-decoration: none;
  border-bottom: 1px solid rgba(30,58,95,0.35);
}

.why-more a:hover {
  border-bottom-color: #1e3a5f;
}

@media (max-width: 900px) {
  .brand-text { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pillar-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .pillar + .pillar {
    border-left: none;
    border-top: 1px solid #e8e8e8;
    padding-top: 1.75rem;
  }
  .pillar { padding: 0; }
}




/* CSS institutional banner */

.page-banner-css {
  display: block;
  width: 100%;
  height: 72px;
  background-color: #1e3a5f;
  position: relative;
  overflow: hidden;
}

.page-banner-css::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.08;
  top: -140px;
  right: -60px;
}


.aero-quote {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  padding: 0 0 0 1.25rem;
  border-left: 3px solid #1e3a5f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: #222;
  text-align: left;
}

/* Layout */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 2rem;
}



h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

p {
  margin-bottom: 1.1rem;
}


.quote {
  white-space: pre-line; /* respects line breaks from the data */
}



/* ===== About page (editorial) ===== */
.about-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 0 2.5rem;
}

.about-hero-text {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2.5rem;
  align-items: center; /* vertical centre with headline */
  margin-bottom: 2.5rem;
}

.about-headline h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  color: #1e3a5f;
  margin: 0;
}

.about-headline em {
  font-style: italic;
  color: #1e3a8a; /* stronger blue */
  font-weight: 500;
}

.about-aside {
  border-left: 2px solid #1e3a8a;
  padding-left: 1.15rem;
}

.about-aside p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a4553;
}

.about-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2.25rem 0;
}

.about-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.about-col h2 {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e3a8a;
  margin: 0 0 1rem;
}

.about-col h2 span {
  opacity: 0.85;
}

.about-col p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #333;
}

.about-position {
  max-width: none; /* match full width of the two columns */
}

.about-position h2 {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e3a8a;
  margin: 0 0 1rem;
}

.about-position p {
  max-width: none; /* was 42em — remove so it spans the full content width */
  font-size: 1.02rem;
  line-height: 1.7;
  color: #333;
}

.about-contact {
  margin-top: 1.5rem !important;
}

.about-contact a {
  color: #1e3a8a;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 58, 138, 0.35);
}

@media (max-width: 800px) {
  .about-hero-text,
  .about-two {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-hero-text {
    align-items: start;
  }
}
/* Project & Publication cards */
.project-card,
.pub-card {
  border-top: 1px solid #eaeaea;
  padding: 2rem 0;
  margin-top: 1.5rem;
}

.project-card:first-of-type,
.pub-card:first-of-type {
  border-top: none;
  padding-top: 0.5rem;
}

.project-card h2,
.pub-card h2 {
  font-size: 1.45rem;
  margin: 0 0 0.4rem;
  font-weight: 500;
}

.project-card h2 a,
.pub-card h2 a {
  text-decoration: none;
}

.project-meta,
.pub-meta {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0.75rem;
}

.project-card p,
.pub-card p {
  margin-bottom: 0.75rem;
  max-width: 38em;
}


/* ===== Publications page ===== */
.pubs-proto {
  --blue: #1649a5;
  --paper: #fffefa;
}

.pubs-proto .wrap {
  width: min(calc(100% - 40px), 1120px);
  margin: auto;
}

.pubs-proto .eyebrow {
  font: 700 12px/1 system-ui, -apple-system, sans-serif;
  color: var(--blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.pubs-proto .display {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.5vw, 4.3rem);
  line-height: 1.05;
  font-weight: 400;
  color: #0b1018;
  margin: 0 0 1.25rem;
}

.pubs-proto .body {
  color: #17191d;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.62;
}

.pubs-hero {
  padding: 2.5rem 0 2rem;
}

.pubs-lead {
  max-width: 40em;
  margin: 0;
  color: #3a3f47;
}

.pubs-proto .rule {
  height: 1px;
  background: #8d9197;
  margin-top: 2.5rem;
  transform-origin: left;
}

.pubs-list-wrap {
  background: #f5f2eb;
  border-top: 1px solid #c7c3ba;
  border-bottom: 1px solid #c7c3ba;
  padding: 2.5rem 0 3rem;
}

.pub-row {
  background: var(--paper);
  border: 1px solid #d3d0c8;
  padding: 1.6rem 1.5rem 1.5rem;
  margin-bottom: 1.15rem;
}

.pub-row h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.65rem;
  color: #111;
}

.pub-row h2 a {
  color: inherit;
  text-decoration: none;
}

.pub-row h2 a:hover {
  color: #1649a5;
}

.pub-row .body {
  margin: 0 0 0.85rem;
  max-width: 42em;
}

.pub-link {
  margin: 0;
}

.pubs-proto .link {
  color: #0e376b;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.pubs-proto .soon {
  margin: 0;
  font: 500 0.95rem system-ui, sans-serif;
  color: #6b7280;
}

.pubs-note {
  text-align: center;
  margin: 2.25rem 0 0;
}

.pubs-proto .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pubs-proto .reveal.in {
  opacity: 1;
  transform: none;
}
.pubs-proto .draw {
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pubs-proto .draw.in {
  transform: scaleX(1);
}

.newsletter-card-section {
  padding: 2.5rem 0 1rem;
}

.newsletter-card {
  background: #102a4d;
  color: #fff;
  border-radius: 18px;
  padding: 2.75rem 2.5rem 2.25rem;
  max-width: 920px;
  margin: 0 auto;
}

.newsletter-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 0.6rem;
  color: #fff;
}

.newsletter-card-lead {
  font-size: 1.15rem;
  color: #b7c7e0;
  margin: 0 0 1rem;
}

.newsletter-card-copy {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 34em;
  margin: 0 0 1.5rem;
}

.newsletter-card-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.newsletter-card-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.newsletter-card-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.55);
}

.newsletter-card-form button {
  padding: 0.9rem 1.35rem;
  border: none;
  border-radius: 8px;
  background: #f4f1ea;
  color: #102a4d;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.newsletter-card-form button:hover {
  background: #fff;
}

.newsletter-card-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
}

.perk {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5d4ec;
  flex-shrink: 0;
}

.perk p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 800px) {
  .newsletter-card {
    padding: 2rem 1.4rem 1.75rem;
  }
  .newsletter-card-perks {
    grid-template-columns: 1fr;
  }
}


/* AERO page – force clean white */
.aero-main {
  background: #ffffff;
  min-height: 60vh;
}

.aero-tool {
  background: #ffffff;
}


.home-body {
  padding: 3rem 0 4rem;
}

.home-sections {
  max-width: 960px;
}

.home-section {
  margin-bottom: 3rem;
}

.home-section h2 {
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.85rem;
  color: #111;
}

.home-section h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
  color: #111;
}

.home-section p {
  margin-bottom: 0.9rem;
  max-width: 42em;
  color: #333;
}

.strand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.strand-card,
.focus-card {
  border: 1px solid #e6eaf0;
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
  background: #fff;
}

.strand-card p,
.focus-card p {
  margin-bottom: 0;
  max-width: none;
}

.focus-card {
  background: #f3f6fa;
  border-color: #d9e2ec;
}

.focus-label {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5b6b7c;
  margin-bottom: 0.45rem !important;
}

.focus-link {
  margin-top: 1rem !important;
}

.focus-link a {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e3a5f;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 58, 95, 0.35);
}

.focus-link a:hover {
  border-bottom-color: #1e3a5f;
}

.home-newsletter {
  margin: 3.5rem 0;
  padding: 1.75rem 1.5rem;
  border-radius: 14px;
  background: #1e3a5f;
  color: #fff;
}

.home-newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-newsletter h2 {
  color: #fff;
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.home-newsletter p {
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.home-newsletter .newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 420px;
  width: 100%;
}

.home-newsletter .newsletter-form input {
  flex: 1;
  padding: 0.7rem 0.85rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
}

.home-newsletter .newsletter-form button {
  padding: 0.7rem 1.1rem;
  border: none;
  border-radius: 6px;
  background: #fff;
  color: #1e3a5f;
  font-weight: 600;
  cursor: pointer;
}

.home-note p {
  color: #444;
}

.funding-note {
  font-size: 0.95rem;
  color: #666 !important;
  margin-top: 1rem !important;
}

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

  .home-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* ===== Projects grid cards ===== */

.projects-grid-page .wrap {
  width: min(calc(100% - 40px), 1120px);
  margin: auto;
}

.projects-grid-intro {
  padding: 2.5rem 0 2rem;
  max-width: none; /* match Publications width */
}

.projects-grid-intro .eyebrow {
  font: 700 12px/1 system-ui, -apple-system, sans-serif;
  color: #1649a5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.projects-grid-intro .display {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.5vw, 4.3rem);
  line-height: 1.05;
  font-weight: 400;
  color: #0b1018;
  margin: 0 0 1.25rem;
}

/* kill old h1 rules that fight .display */
.projects-grid-intro h1 {
  all: unset;
}
.projects-grid-intro h1.display {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.5vw, 4.3rem);
  line-height: 1.05;
  font-weight: 400;
  color: #0b1018;
  margin: 0 0 1.25rem;
}

.projects-grid-intro .projects-lead {
  max-width: 40em;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.62;
  color: #3a3f47;
}

.projects-grid-intro .rule {
  height: 1px;
  background: #8d9197;
  margin-top: 2.5rem;
}

.projects-grid-intro .accent-rule {
  display: none; /* was typed "dispaly" */
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 0.5rem 0 3.5rem;
}

.pg-card {
  background: #f7f4ef;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e1d8;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pg-current {
  background: #eef3fa;
  border-color: #d5e0ef;
}

.pg-art {
  position: relative;
  height: 150px;
  padding: 1.1rem 1.15rem;
  overflow: hidden;
}

.pg-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: #6b7280;
}

.pg-status {
  display: block;
  margin-top: 0.35rem;
  font: 700 0.68rem/1 system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}

.pg-current .pg-status {
  color: #1649a5;
}

.pg-body {
  padding: 1.25rem 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pg-body h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 0.55rem;
  color: #111;
  line-height: 1.2;
}

.pg-body p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #4a4d52;
  flex: 1;
}

.pg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font: 500 0.9rem system-ui, sans-serif;
}

.pg-footer a {
  color: #1649a5;
  text-decoration: none;
}

.pg-footer a:hover {
  text-decoration: underline;
}

.pg-soon {
  color: #7a8088;
}

.pg-arrow {
  color: #9aa0a6;
}

/* Soft abstract art (CSS only) */
.pg-art-1 {
  background:
    radial-gradient(circle at 85% 70%, rgba(30,58,95,0.12), transparent 42%),
    linear-gradient(160deg, #eef2f6, #e7e1d7);
}
.pg-art-2 {
  background:
    radial-gradient(circle at 80% 30%, rgba(180,120,90,0.2), transparent 35%),
    repeating-radial-gradient(circle at 50% 100%, transparent 0 8px, rgba(180,100,80,0.12) 8px 9px),
    linear-gradient(180deg, #f6f1ea, #efe8df);
}
.pg-art-3 {
  background:
    radial-gradient(circle at 88% 55%, rgba(120,140,170,0.25), transparent 28%),
    radial-gradient(circle at 70% 40%, rgba(30,58,95,0.08) 0 1px, transparent 2px),
    linear-gradient(180deg, #f3f0ea, #ebe6dc);
}
.pg-art-4 {
  background:
    radial-gradient(circle at 0% 60%, rgba(120,150,190,0.28), transparent 40%),
    linear-gradient(180deg, #f2f0ea, #e9e4da);
}
.pg-art-5 {
  background:
    radial-gradient(circle at 75% 40%, rgba(200,170,120,0.25), transparent 35%),
    linear-gradient(180deg, #f7f2ea, #efe7db);
}
.pg-art-6 {
  background:
    radial-gradient(circle at 90% 30%, rgba(80,120,90,0.15), transparent 25%),
    linear-gradient(180deg, #f3f1ea, #e8e6dc);
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
.link-soon {
  color: #777 !important;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}



.projects-grid-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.projects-grid-page .reveal.in {
  opacity: 1;
  transform: none;
}
.projects-grid-page .draw {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.projects-grid-page .draw.in {
  transform: scaleX(1);
}


.aero-eyebrow {
  font: 700 12px/1 system-ui, -apple-system, sans-serif;
  color: #1649a5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.aero-display {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.5vw, 4.3rem);
  line-height: 1.05;
  font-weight: 400;
  color: #0b1018;
  margin: 0 0 1.1rem;
}

.aero-lead {
  max-width: 42em;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.62;
  color: #3a3f47;
}

.aero-rule {
  height: 1px;
  background: #8d9197;
  margin: 1.75rem 0 0;
}


/* Footer */
/* ===== Footer (new design) ===== */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid #e8e8e8;
  text-align: center;
  color: #1e3a5f;
}

.footer-top {
  padding: 2.5rem 1.5rem 2rem;
  background: #fff;
}

.footer-top-inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3;
  color: #1e3a5f;
  margin: 0 0 1.1rem;
}

.footer-rule {
  width: 40px;
  height: 2px;
  background: #1e3a5f;
  margin: 0 auto 1.25rem;
}

.footer-funding {
  font-size: 0.98rem;
  color: #4a5563;
  margin: 0 0 1.35rem;
}

.footer-email {
  margin: 0;
}

.footer-email a {
  display: inline-block;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1e3a5f;
  text-decoration: none;
  border-bottom: 1px solid #1e3a5f;
  padding-bottom: 0.2rem;
}

.footer-email a:hover {
  opacity: 0.8;
}

.footer-arrow {
  margin-left: 0.35rem;
}

/* Nav row with icons */
.footer-nav {
  border-top: 1px solid #e8e8e8;
  background: #fff;
  padding: 2rem 1.5rem;
}

.footer-nav-inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.footer-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #1e3a5f;
  padding: 0.5rem 1rem;
  position: relative;
}

.footer-nav-item + .footer-nav-item {
  border-left: 1px solid #e5e7eb;
}

.footer-icon {
  display: block;
  color: #1e3a5f;
}

.footer-nav-label {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav-item::after {
  content: "";
  width: 22px;
  height: 2px;
  background: #1e3a5f;
  margin-top: 0.15rem;
}

.footer-nav-item:hover {
  opacity: 0.75;
}

/* Bottom band */
.footer-bottom {
  background: #ebe6df;
  padding: 1.75rem 1.5rem 1.5rem;
}

.footer-bottom-inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer-monogram-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: #c8c2b8;
}

.footer-monogram {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.06em;
  color: #1e3a5f;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: #6b7280;
}

@media (max-width: 600px) {
  .footer-title {
    font-size: 1.35rem;
  }

  .footer-nav-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-nav-item + .footer-nav-item {
    border-left: none;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25rem;
  }
}