:root {
  --bg: #f8f4eb;
  --surface: #ffffff;
  --surface-alt: #f4efe3;
  --text: #1f2a1d;
  --muted: #5e6557;
  --border: #d9d2c1;
  --brand: #0d6b3d;
  --brand-strong: #15834d;
  --brand-deep: #083b24;
  --accent: #f2c230;
  --accent-strong: #d5961d;
  --accent-soft: #fff0b6;
  --earth: #a65a2a;
  --earth-soft: #ead2ba;
  --charcoal: #20241e;
  --shadow: 0 18px 42px rgba(32, 36, 30, 0.08);
  --hero-wash: linear-gradient(135deg, rgba(9, 86, 50, 0.95), rgba(18, 127, 72, 0.9));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(242, 194, 48, 0.16), transparent 18rem),
    radial-gradient(circle at left 20%, rgba(166, 90, 42, 0.08), transparent 20rem),
    repeating-linear-gradient(
      90deg,
      rgba(13, 107, 61, 0.018) 0,
      rgba(13, 107, 61, 0.018) 2px,
      transparent 2px,
      transparent 32px
    ),
    linear-gradient(180deg, #fdfaf2 0%, var(--bg) 45%, #f2ede2 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1160px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 244, 235, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 107, 61, 0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.nav-toggle {
  display: none;
  min-height: 2.7rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand);
  font: inherit;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}

.brand-mark,
.brand-logo {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
}

.brand-logo {
  display: block;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(11, 94, 60, 0.16);
}

.brand-copy strong,
.brand-copy span {
  display: block;
  line-height: 1.05;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links,
.nav-actions,
.cta-row,
.chip-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav-links a,
.nav-actions a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a[aria-current="page"] {
  color: var(--brand);
}

.nav-links a.is-active {
  color: var(--brand);
}

.nav-links a:hover,
.nav-actions a:hover,
.nav-links a:focus-visible,
.nav-actions a:focus-visible {
  color: var(--brand);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 140ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.home-hero,
.page-hero {
  padding: 4.5rem 0 3rem;
}

.home-hero {
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: -7rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 48, 0.24), transparent 64%);
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1.25rem;
  background:
    linear-gradient(90deg, var(--brand) 0 20%, var(--accent) 20% 40%, var(--earth) 40% 60%, var(--brand-strong) 60% 80%, var(--charcoal) 80% 100%);
  opacity: 0.95;
}

.hero-pattern {
  position: absolute;
  pointer-events: none;
  opacity: 0.2;
}

.hero-pattern::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.6) 0,
      rgba(255, 255, 255, 0.6) 10px,
      transparent 10px,
      transparent 22px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(242, 194, 48, 0.5) 0,
      rgba(242, 194, 48, 0.5) 8px,
      transparent 8px,
      transparent 20px
    );
}

.hero-pattern-left {
  left: -3rem;
  bottom: 2rem;
  width: 12rem;
  height: 12rem;
}

.hero-pattern-right {
  right: 8%;
  top: 3rem;
  width: 10rem;
  height: 10rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.25rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  color: var(--brand-strong);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 0.6rem;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 0.5rem;
}

.lede,
.section-copy,
.card p,
.footer p,
.list-meta {
  color: var(--muted);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(11, 94, 60, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ffd95b);
  color: #4b3402;
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--brand);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(11, 94, 60, 0.18);
  color: var(--brand);
}

.hero-card,
.card,
.stat-card,
.cta-banner,
.footer-shell {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card,
.card,
.stat-card,
.cta-banner {
  padding: 1.25rem;
}

.hero-card {
  display: grid;
  gap: 0.85rem;
}

.card,
.stat-card,
.work-package-card,
.session-card,
.audience-card,
.impact-panel {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover,
.stat-card:hover,
.work-package-card:hover,
.session-card:hover,
.audience-card:hover,
.impact-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(11, 94, 60, 0.12);
  border-color: rgba(19, 122, 80, 0.22);
}

.mini-stat,
.status-block,
.alert {
  padding: 1rem;
  border-radius: 1rem;
}

.mini-stat,
.status-block {
  background: var(--surface-alt);
  border: 1px solid rgba(11, 94, 60, 0.08);
}

.alert {
  background: #fff8e1;
  border: 1px solid rgba(255, 193, 7, 0.32);
  color: #6e5200;
}

.mini-stat strong,
.status-block strong,
.stat-card strong,
.list-stack strong {
  display: block;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section {
  padding: 1.25rem 0 3rem;
  scroll-margin-top: 6rem;
}

.theme-ribbon {
  padding: 0 0 2.2rem;
}

.theme-ribbon-track {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.55rem;
  border-radius: 1.2rem;
  background: rgba(32, 36, 30, 0.94);
  box-shadow: var(--shadow);
}

.theme-ribbon-track span {
  display: grid;
  place-items: center;
  min-height: 2.9rem;
  border-radius: 0.9rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: #fdfcf7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.theme-ribbon-track span:nth-child(odd) {
  background:
    linear-gradient(135deg, rgba(13, 107, 61, 0.96), rgba(18, 127, 72, 0.9)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 6px, transparent 6px, transparent 14px);
}

.theme-ribbon-track span:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(166, 90, 42, 0.98), rgba(214, 150, 29, 0.95)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 6px, transparent 6px, transparent 14px);
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(244, 239, 227, 0.82)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 48px,
      rgba(166, 90, 42, 0.03) 48px,
      rgba(166, 90, 42, 0.03) 52px
    );
  pointer-events: none;
}

.section-alt .container {
  position: relative;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.6rem;
}

.split-heading {
  max-width: 38rem;
  margin-bottom: 0.65rem;
}

.team-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.35rem;
}

.team-heading {
  margin-bottom: 0;
}

.team-summary-card {
  padding: 1.15rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 235, 0.98)),
    repeating-linear-gradient(
      135deg,
      rgba(13, 107, 61, 0.03) 0,
      rgba(13, 107, 61, 0.03) 8px,
      transparent 8px,
      transparent 18px
    );
}

.team-summary-card h3 {
  margin-bottom: 0.9rem;
}

.team-summary-card .list-stack {
  gap: 0.65rem;
}

.team-summary-card .list-stack li {
  padding-bottom: 0.65rem;
}

.stat-card strong {
  color: var(--brand);
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.chip,
.pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.chip,
.pill {
  color: var(--brand);
  background: rgba(19, 122, 80, 0.1);
  border: 1px solid rgba(19, 122, 80, 0.12);
}

.tag {
  color: #6e5200;
  background: var(--accent-soft);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(242, 194, 48, 0.18);
  color: var(--brand-deep);
  font-weight: 700;
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 107, 61, 0.1);
  box-shadow: var(--shadow);
}

.hero-logo-badge img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
}

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

.hero-logo-badge span {
  color: var(--muted);
  font-size: 0.92rem;
}

.accent-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.list-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.list-stack li {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.list-stack li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.reference-card {
  position: relative;
  overflow: hidden;
}

.reference-card::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: -1.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 48, 0.2), transparent 66%);
}

.reference-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.reference-list li {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: var(--surface-alt);
  border: 1px solid rgba(11, 94, 60, 0.08);
}

.reference-list a {
  color: var(--brand);
  font-weight: 700;
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1rem;
}

.resource-action-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.resource-group-stack,
.resource-category-stack {
  display: grid;
  gap: 1rem;
}

.resource-group,
.resource-category {
  display: grid;
  gap: 0.9rem;
}

.resource-group-heading,
.resource-category-header {
  display: grid;
  gap: 0.5rem;
}

.resource-group-heading strong,
.resource-category-header h3 {
  margin: 0;
}

.resource-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.resource-meta-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(19, 122, 80, 0.08);
  border: 1px solid rgba(19, 122, 80, 0.12);
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
}

.institution-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.institution-logo-card {
  padding: 1.1rem;
  border-radius: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 235, 0.98));
  display: grid;
  gap: 0.5rem;
  justify-items: start;
}

.institution-logo-card-text {
  justify-items: start;
}

.institution-badge {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 1.2rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, var(--brand), var(--brand-strong)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 6px,
      transparent 6px,
      transparent 12px
    );
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.35rem;
  box-shadow: 0 14px 26px rgba(11, 94, 60, 0.14);
}

.cta-banner {
  background: linear-gradient(135deg, rgba(11, 94, 60, 0.96), rgba(19, 122, 80, 0.92));
  color: #f8fff9;
}

.cta-banner p,
.cta-banner .section-copy,
.cta-banner .list-meta {
  color: rgba(248, 255, 249, 0.82);
}

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

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  padding-left: 1rem;
  position: relative;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.hero-stage {
  position: relative;
  min-height: 28rem;
  padding: 1.1rem;
  border-radius: 2rem;
  background: var(--hero-wash);
  box-shadow: 0 24px 60px rgba(11, 94, 60, 0.18);
  color: #f7fff8;
  overflow: hidden;
}

.hero-stage::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 48, 0.36), transparent 62%);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, transparent 0%, rgba(255, 255, 255, 0.06) 45%, transparent 100%),
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.hero-stage-weave {
  position: absolute;
  top: 5.7rem;
  right: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: 5.2rem;
}

.hero-stage-weave span {
  display: block;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stage-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hero-stage-badge {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-stage-number {
  margin-top: 4rem;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.hero-stage-label {
  max-width: 18rem;
  color: rgba(247, 255, 248, 0.82);
}

.story-card {
  background:
    linear-gradient(160deg, rgba(11, 94, 60, 0.96), rgba(8, 69, 44, 0.98)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 10px,
      transparent 10px,
      transparent 20px
    );
  color: #f7fff8;
}

.story-card p,
.story-card .list-meta,
.story-card blockquote {
  color: rgba(247, 255, 248, 0.84);
}

.story-card blockquote {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.55;
}

.story-card .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero-stage .story-card {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  max-width: 17rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.audience-card {
  padding: 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 244, 0.96));
}

.audience-card::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 48, 0.22), transparent 65%);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.impact-panel {
  padding: 1.25rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 244, 235, 0.97));
}

.impact-numbers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.impact-numbers strong {
  display: block;
  color: var(--brand);
  font-size: 2rem;
}

.section-band {
  padding: 1rem 0 3rem;
}

.section-band .container {
  padding: 1.2rem;
  border-radius: 2rem;
  border: 1px solid rgba(13, 107, 61, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(248, 244, 235, 0.96)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 36px,
      rgba(13, 107, 61, 0.025) 36px,
      rgba(13, 107, 61, 0.025) 38px
    );
}

.team-split {
  display: grid;
  gap: 1.5rem;
}

.team-split > div {
  display: grid;
  gap: 1rem;
}

.gallery-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.gallery-card {
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid rgba(11, 94, 60, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  display: grid;
  min-height: 100%;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  display: block;
  transition: transform 180ms ease;
}

.gallery-card:hover img {
  transform: scale(1.02);
}

.gallery-card-image-only {
  background: transparent;
  border: none;
  box-shadow: none;
}

.feature-photo {
  min-height: 100%;
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid rgba(11, 94, 60, 0.08);
  box-shadow: var(--shadow);
  background: #d9e7dd;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.photo-card {
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid rgba(11, 94, 60, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.photo-caption {
  padding: 0.95rem 1rem 1rem;
  display: grid;
  align-content: start;
  gap: 0.2rem;
}

.photo-caption strong {
  display: block;
  margin-bottom: 0.2rem;
}

.work-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.team-grid-leadership {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.team-card {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 235, 0.98));
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  display: grid;
  min-height: 100%;
}

.team-card-featured {
  position: relative;
  grid-column: span 6;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  align-items: stretch;
}

.team-card-featured::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.45rem;
  background: linear-gradient(90deg, var(--accent), var(--earth), var(--brand));
  z-index: 1;
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(32, 36, 30, 0.12);
  border-color: rgba(19, 122, 80, 0.22);
}

.team-grid-leadership .team-card:not(.team-card-featured) {
  grid-column: span 6;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: stretch;
}

.team-grid:not(.team-grid-leadership) .team-card {
  grid-column: span 1;
}

.team-grid-faculty {
  align-items: start;
  padding: 1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(13, 107, 61, 0.08);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  object-position: center top;
}

.team-card-featured img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  max-height: 15.5rem;
}

.team-grid-leadership .team-card:not(.team-card-featured) img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  max-height: 10.5rem;
}

.team-grid:not(.team-grid-leadership) .team-card img {
  aspect-ratio: 1 / 1;
  height: auto;
}

.team-card-copy {
  padding: 1rem 1rem 1.1rem;
  display: grid;
  align-content: start;
}

.team-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.team-country,
.team-role {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-country {
  background: rgba(13, 107, 61, 0.1);
  color: var(--brand);
  border: 1px solid rgba(13, 107, 61, 0.12);
}

.team-role {
  background: rgba(242, 194, 48, 0.18);
  color: #6e5200;
  border: 1px solid rgba(242, 194, 48, 0.24);
}

.team-card-copy strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.02rem;
}

.team-card-copy p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.team-card-featured .team-card-copy {
  padding: 1.15rem 1.15rem 1.25rem;
  gap: 0.2rem;
}

.team-card-featured .team-card-copy strong {
  font-size: 1.18rem;
}

.team-grid-leadership .team-card:not(.team-card-featured) .team-card-copy {
  padding: 0.9rem 0.95rem 1rem;
}

.team-grid-leadership .team-card:not(.team-card-featured) .team-card-copy strong {
  font-size: 1rem;
}

.team-grid-leadership .team-card:not(.team-card-featured) .team-card-copy p {
  margin-top: 0.4rem;
  font-size: 0.96rem;
  line-height: 1.45;
}

.team-card-compact {
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(32, 36, 30, 0.08);
}

.team-card-compact img {
  aspect-ratio: 1 / 1;
  object-position: center 18%;
  max-height: 10rem;
}

.team-card-compact .team-card-copy {
  padding: 0.85rem 0.9rem 1rem;
}

.team-card-compact .team-meta-row {
  margin-bottom: 0.55rem;
}

.team-card-compact .team-country {
  font-size: 0.74rem;
  min-height: 1.65rem;
  padding: 0.2rem 0.5rem;
}

.team-card-compact .team-card-copy strong {
  font-size: 0.95rem;
  line-height: 1.25;
}

.team-card-compact .list-meta {
  font-size: 0.88rem;
  line-height: 1.35;
}

.work-package-card {
  padding: 1.2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 235, 0.98));
}

.work-package-card .tag {
  margin-bottom: 0.8rem;
}

.poster-card {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(11, 94, 60, 0.08);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.94);
}

.poster-card img {
  width: 100%;
  height: auto;
}

.poster-card .photo-caption {
  padding-top: 0.85rem;
}

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

.schedule-card {
  padding: 1.2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 235, 0.98));
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.schedule-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(32, 36, 30, 0.12);
  border-color: rgba(19, 122, 80, 0.22);
}

.schedule-card-featured {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgba(13, 107, 61, 0.97), rgba(18, 127, 72, 0.93)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 10px,
      transparent 10px,
      transparent 22px
    );
  color: #f7fff8;
}

.schedule-card-featured .list-meta,
.schedule-card-featured h3,
.schedule-card-featured .schedule-date {
  color: #f7fff8;
}

.schedule-date {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
  background: rgba(242, 194, 48, 0.18);
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.session-library {
  display: grid;
  gap: 1rem;
}

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

.download-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem;
  border-radius: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 235, 0.98));
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.download-card:hover,
.download-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(32, 36, 30, 0.12);
  border-color: rgba(19, 122, 80, 0.22);
}

.download-card strong {
  color: var(--brand-deep);
}

.download-card span {
  color: var(--muted);
  line-height: 1.5;
}

.session-card {
  padding: 1.2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 235, 0.98));
}

.session-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.session-head h3 {
  max-width: 20ch;
}

.session-date {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-strong);
}

.session-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.session-list li {
  padding: 0.8rem 0 0;
  border-top: 1px solid var(--border);
}

.session-list strong {
  display: inline-block;
  margin-bottom: 0.2rem;
}

.session-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.session-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.session-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: var(--brand);
  font-weight: 700;
  word-break: break-word;
}

.session-link:hover,
.session-link:focus-visible {
  text-decoration: underline;
}

.filter-shell {
  display: grid;
  gap: 1rem;
}

.filter-toolbar {
  padding: 1rem;
  border-radius: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.94);
}

.filter-toolbar,
.session-card,
.work-package-card,
.institution-logo-card,
.poster-card,
.photo-card,
.impact-panel,
.audience-card {
  backdrop-filter: blur(8px);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 0.9rem;
  align-items: end;
}

.filter-grid label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.filter-grid input:focus-visible,
.filter-grid select:focus-visible {
  outline: 3px solid rgba(255, 193, 7, 0.26);
  border-color: rgba(19, 122, 80, 0.35);
}

.filter-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
}

.footer {
  padding: 2rem 0 3rem;
}

.contact-action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0 1rem;
}

.contact-cta {
  width: 100%;
  padding: 2rem clamp(1.2rem, 3vw, 2.4rem);
  border-radius: 2rem;
  min-height: 18rem;
  display: grid;
  align-content: center;
}

.contact-cta h2 {
  max-width: 14ch;
}

.contact-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f8fff9;
}

.contact-cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.6rem;
}

.contact-cta-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f8fff9;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  padding: 1.35rem;
  background:
    linear-gradient(135deg, rgba(11, 94, 60, 0.97), rgba(19, 122, 80, 0.93)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 8px,
      transparent 8px,
      transparent 20px
    );
}

.footer-shell,
.footer-shell p,
.footer-shell a {
  color: #f8fff9;
}

.footer-links {
  justify-content: flex-end;
}

.network-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.network-map,
.network-copy {
  padding: 1.25rem;
  border-radius: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 235, 0.98));
}

.network-map {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 25%, rgba(242, 194, 48, 0.18), transparent 18%),
    radial-gradient(circle at 72% 70%, rgba(166, 90, 42, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 235, 0.98));
}

.network-map::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  border-radius: 44% 56% 60% 40% / 44% 38% 62% 56%;
  background:
    linear-gradient(135deg, rgba(13, 107, 61, 0.08), rgba(18, 127, 72, 0.12)),
    repeating-linear-gradient(135deg, rgba(13, 107, 61, 0.06) 0, rgba(13, 107, 61, 0.06) 8px, transparent 8px, transparent 18px);
}

.network-node {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(32, 36, 30, 0.92);
  color: #fdfcf7;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 28px rgba(32, 36, 30, 0.12);
}

.network-node::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(242, 194, 48, 0.14);
}

.network-node-1 { top: 22%; left: 48%; }
.network-node-2 { top: 16%; left: 58%; }
.network-node-3 { top: 38%; left: 50%; }
.network-node-4 { top: 31%; left: 42%; }
.network-node-5 { top: 48%; left: 44%; }
.network-node-6 { top: 68%; left: 34%; }
.network-node-7 { top: 62%; left: 22%; }
.network-node-8 { top: 24%; right: 4%; }

.archive-hero {
  position: relative;
  overflow: hidden;
}

.archive-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 42%),
    radial-gradient(circle at 12% 24%, rgba(166, 90, 42, 0.1), transparent 18%),
    radial-gradient(circle at 88% 20%, rgba(242, 194, 48, 0.14), transparent 18%);
  pointer-events: none;
}

.partner-intro-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.partner-intro-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(166, 90, 42, 0.08);
  border: 1px solid rgba(166, 90, 42, 0.14);
  color: var(--earth);
  font-size: 0.92rem;
  font-weight: 700;
}

.span-two {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .hero-layout,
  .two-col,
  .three-col,
  .four-col,
  .team-intro,
  .info-grid,
  .impact-grid,
  .impact-numbers,
  .resource-layout,
  .work-package-grid,
  .gallery-layout,
  .team-grid,
  .team-grid-leadership,
  .photo-grid,
  .resource-download-grid,
  .schedule-grid,
  .filter-grid,
  .network-panel,
  .institution-logo-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    padding-top: 0.35rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.35rem;
  }

  .nav-links a,
  .nav-actions a {
    width: 100%;
    padding: 0.65rem 0;
  }

  .site-header.nav-open .nav-links,
  .site-header.nav-open .nav-actions {
    display: flex;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .hero-stage {
    min-height: 22rem;
  }

  .hero-stage-weave {
    top: 4.9rem;
  }

  .hero-stage .story-card {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .theme-ribbon-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card,
  .team-card-featured,
  .team-grid-leadership .team-card:not(.team-card-featured),
  .team-grid:not(.team-grid-leadership) .team-card {
    grid-column: auto;
  }

  .team-card-featured {
    grid-template-columns: 1fr;
  }

  .network-map {
    min-height: 18rem;
  }

  .schedule-card-featured {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1160px, calc(100vw - 1rem));
  }

  h1 {
    max-width: none;
  }

  .hero-pattern-left,
  .hero-pattern-right {
    display: none;
  }

  .team-card img,
  .team-card-featured img,
  .team-grid-leadership .team-card:not(.team-card-featured) img,
  .team-grid:not(.team-grid-leadership) .team-card img {
    aspect-ratio: 4 / 3.9;
    min-height: 0;
    height: auto;
  }
}
