:root {
  --bg: #f7f4ed;
  --surface: #fffdf8;
  --surface-strong: #f2ece0;
  --text: #1e2732;
  --muted: #5b6470;
  --line: rgba(39, 62, 90, 0.14);
  --blue: #1a7ab8;
  --blue-deep: #0d4f82;
  --burgundy: #740729;
  --gold: #f1c57a;
  --gold-deep: #c28c37;
  --shadow: 0 18px 40px rgba(23, 36, 54, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --sans: "Hanken Grotesk", "Avenir Next", "Gill Sans", sans-serif;
  --serif: "Kameron", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(241, 197, 122, 0.25), transparent 30%),
    linear-gradient(180deg, #fbf8f3, #f4efe6 42%, #f8f5ef);
}

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

a {
  color: inherit;
}

.site-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  margin-bottom: 22px;
  border: 1px solid rgba(26, 122, 184, 0.12);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 16px;
  background: white;
  padding: 8px;
  box-shadow: 0 10px 24px rgba(13, 79, 130, 0.14);
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--blue-deep);
}

.brand-text span {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.menu-toggle {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(241, 197, 122, 0.28);
  color: var(--blue-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero,
.purpose-strip,
.intro-grid,
.feature-grid,
.cards-grid,
.spotlight,
.cta-band {
  margin-bottom: 28px;
}

.hero,
.intro-grid,
.feature-grid,
.spotlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hero-copy,
.hero-card,
.panel,
.resource-card,
.info-card,
.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 48px;
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(238, 231, 219, 0.9)),
    var(--surface);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  color: var(--blue-deep);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.45rem;
}

.lead,
.hero-copy p,
.panel p,
.resource-copy p,
.section-heading p,
.cta-band p,
.footer-note,
.footer-links a {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  font-size: 1.1rem;
  max-width: 58ch;
}

.hero-actions,
.resource-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: white;
}

.button-secondary {
  background: linear-gradient(135deg, rgba(241, 197, 122, 0.32), rgba(116, 7, 41, 0.12));
  color: var(--blue-deep);
}

.button-cta-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(248, 225, 179, 0.98));
  color: var(--blue-deep);
  border: 1px solid rgba(11, 75, 128, 0.18);
  box-shadow: 0 10px 22px rgba(18, 29, 43, 0.18);
}

.hero-card,
.image-panel {
  overflow: hidden;
}

.hero-figure {
  display: flex;
  flex-direction: column;
}

.hero-image,
.feature-image,
.quote-image,
.resource-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image-contain {
  object-fit: contain;
  height: auto;
  max-height: 100%;
  background: linear-gradient(180deg, rgba(12, 56, 92, 0.06), rgba(241, 197, 122, 0.12));
}

.image-panel-wide {
  position: relative;
  min-height: 320px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 56, 92, 0.08), rgba(241, 197, 122, 0.14)),
    var(--surface);
}

.home-purpose-photo-frame {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.home-purpose-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  max-height: none;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(12, 56, 92, 0.06), rgba(241, 197, 122, 0.12));
}

body[data-page="home"] .intro-grid {
  align-items: stretch;
}

body[data-page="home"] .intro-grid .image-panel-wide {
  min-height: 100%;
}

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

.purpose-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(116, 7, 41, 0.94), rgba(26, 122, 184, 0.9)),
    var(--surface);
  color: white;
  box-shadow: var(--shadow);
}

.purpose-word {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.9rem;
}

.purpose-card span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.panel {
  padding: 30px;
}

.section-shell {
  margin: 36px 0;
}

.section-heading {
  max-width: 70ch;
  margin-bottom: 18px;
}

.resource-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  overflow: hidden;
}

.resource-card-stacked {
  grid-template-columns: 1fr;
}

.resource-image-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 0;
  background: linear-gradient(180deg, rgba(12, 56, 92, 0.08), rgba(241, 197, 122, 0.14));
}

.resource-card-stacked .resource-image {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 420px;
  background: none;
}

.foundations-card {
  margin-top: 20px;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
}

.resource-image {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(12, 56, 92, 0.1), rgba(241, 197, 122, 0.16));
}

.resource-copy {
  padding: 28px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  text-decoration: none;
}

.info-card:nth-child(1) {
  background: linear-gradient(160deg, rgba(241, 197, 122, 0.22), rgba(255, 253, 248, 0.94));
}

.info-card:nth-child(2) {
  background: linear-gradient(160deg, rgba(26, 122, 184, 0.14), rgba(255, 253, 248, 0.94));
}

.info-card:nth-child(3) {
  background: linear-gradient(160deg, rgba(116, 7, 41, 0.12), rgba(255, 253, 248, 0.94));
}

.info-card:nth-child(4) {
  background: linear-gradient(160deg, rgba(12, 107, 75, 0.12), rgba(255, 253, 248, 0.94));
}

.spotlight-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(255, 252, 247, 0.96), rgba(240, 232, 219, 0.92)),
    var(--surface);
  box-shadow: var(--shadow);
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(116, 7, 41, 0.88), rgba(26, 122, 184, 0.82)),
    var(--surface);
  color: white;
  box-shadow: var(--shadow);
}

.quote-card span {
  padding: 18px 22px 22px;
  color: rgba(255, 255, 255, 0.86);
}

.guide-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(12, 107, 75, 0.14), rgba(255, 253, 248, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}

.guide-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background:
    linear-gradient(145deg, rgba(12, 56, 92, 0.12), rgba(241, 197, 122, 0.16)),
    var(--surface-strong);
}

.guide-card span {
  padding: 18px 22px 22px;
  color: var(--muted);
  font-weight: 700;
}

.codification-hero-card {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(12, 56, 92, 0.08), rgba(241, 197, 122, 0.14)),
    var(--surface);
}

.plain-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.plain-list li + li {
  margin-top: 0.45rem;
}

body[data-page="editors-contributors"] .hero-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(12, 56, 92, 0.08), rgba(241, 197, 122, 0.14)),
    var(--surface);
}

body[data-page="editors-contributors"] .editors-hero-card {
  display: block;
  padding: 0;
  overflow: hidden;
}

.editors-hero-figure {
  display: grid;
  margin: 0;
}

.editors-hero-image {
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, rgba(12, 56, 92, 0.08), rgba(241, 197, 122, 0.14));
}

.editors-hero-caption {
  display: grid;
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(11, 75, 128, 0.08);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 237, 225, 0.98));
}

.editors-hero-caption strong,
.editors-hero-caption em,
.editors-hero-caption span {
  display: block;
}

.editors-hero-caption strong {
  color: var(--ink);
  font-size: 1rem;
}

.editors-hero-caption em,
.editors-hero-caption span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contain-image {
  box-sizing: border-box;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(12, 56, 92, 0.08), rgba(241, 197, 122, 0.14));
  padding: 18px;
}

.hero-caption {
  display: grid;
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(11, 75, 128, 0.08);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 237, 225, 0.98));
}

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

.hero-caption strong {
  color: var(--ink);
  font-size: 1rem;
}

.hero-caption em,
.hero-caption span {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  background:
    linear-gradient(150deg, rgba(12, 56, 92, 0.96), rgba(116, 7, 41, 0.92)),
    var(--surface);
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: white;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration: none;
}

.text-link + .text-link {
  margin-top: 8px;
}

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

.timeline-overview {
  align-items: stretch;
}

.timeline-cover-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
}

.timeline-sidecards {
  display: grid;
  gap: 18px;
}

.timeline-cover-stack .timeline-frame {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.timeline-cover-stack .timeline-frame img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: contain;
  object-position: center;
  padding: 14px;
}

.timeline-frame,
.download-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.timeline-frame {
  overflow: hidden;
}

.timeline-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(12, 56, 92, 0.08), rgba(241, 197, 122, 0.14));
}

.timeline-frame figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-weight: 700;
}

.timeline-frame figcaption a {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.timeline-frame figcaption a:hover {
  text-decoration: underline;
}

.timeline-announcement {
  align-items: stretch;
}

.timeline-downloads {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.volume-shelf .download-card {
  min-height: 220px;
}

.download-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  text-decoration: none;
  background:
    linear-gradient(155deg, rgba(255, 252, 247, 0.98), rgba(237, 230, 220, 0.88)),
    var(--surface);
}

.download-card-image {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12, 56, 92, 0.06), rgba(241, 197, 122, 0.12));
}

.download-card:hover,
.download-card:focus-visible {
  transform: translateY(-2px);
  transition: transform 180ms ease;
}

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

.to-stage-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(255, 252, 247, 0.98), rgba(237, 230, 220, 0.88)),
    var(--surface);
  box-shadow: var(--shadow);
}

.to-stage-number {
  color: var(--burgundy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.to-stage-card p {
  color: var(--muted);
  line-height: 1.7;
}

.citation-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.citation-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.76);
  color: var(--muted);
  line-height: 1.65;
}

.citation-list a {
  color: var(--blue-deep);
}

.speaker-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.speaker-list li {
  line-height: 1.6;
}

.speaker-list strong {
  color: var(--blue-deep);
}

.crosslink-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(26, 122, 184, 0.08), rgba(255, 253, 248, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
}

.crosslink-card p {
  color: var(--muted);
  line-height: 1.7;
}

.download-type {
  color: var(--burgundy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.testimonial-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  background:
    linear-gradient(160deg, rgba(26, 122, 184, 0.08), rgba(255, 253, 248, 0.96)),
    var(--surface);
}

.testimonial-card strong {
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.testimonial-card span {
  color: var(--muted);
  line-height: 1.6;
}

.timeline-gallery-viewer {
  display: grid;
  gap: 18px;
}

.timeline-gallery-stage {
  display: grid;
  gap: 14px;
  margin: 0;
}

.timeline-gallery-stage-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.timeline-gallery-stage img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  display: block;
  background: linear-gradient(180deg, rgba(12, 56, 92, 0.06), rgba(241, 197, 122, 0.12));
}

.timeline-gallery-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  color: var(--muted);
  font-weight: 700;
}

.timeline-gallery-caption a {
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.timeline-gallery-caption a:hover {
  text-decoration: underline;
}

.timeline-gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(96px, 116px);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.timeline-gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.gallery-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--blue-deep);
  font-size: 1.7rem;
  line-height: 1;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  border-color: rgba(11, 75, 128, 0.36);
  transform: translateY(-1px);
}

.timeline-thumb {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  scroll-snap-align: center;
}

.timeline-thumb:hover,
.timeline-thumb:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(11, 75, 128, 0.36);
}

.timeline-thumb.is-active {
  border-color: rgba(11, 75, 128, 0.48);
  box-shadow: 0 16px 28px rgba(18, 29, 43, 0.18);
}

.timeline-thumb img {
  width: 100%;
  aspect-ratio: 1.1 / 0.88;
  object-fit: cover;
  display: block;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.proceedings-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proceedings-gallery a {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.proceedings-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
  background: linear-gradient(180deg, rgba(12, 56, 92, 0.06), rgba(241, 197, 122, 0.12));
}

.release-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.release-card img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(12, 56, 92, 0.1), rgba(241, 197, 122, 0.16));
}

.release-card-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(145deg, rgba(12, 56, 92, 0.12), rgba(241, 197, 122, 0.16)),
    var(--surface-strong);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background:
    linear-gradient(145deg, rgba(12, 56, 92, 0.12), rgba(241, 197, 122, 0.16)),
    var(--surface-strong);
}

.media-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.directory-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.directory-card {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(155deg, rgba(255, 252, 247, 0.98), rgba(237, 230, 220, 0.88)),
    var(--surface);
  box-shadow: var(--shadow);
}

.person-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
}

.person-list li {
  line-height: 1.55;
}

.person-list a {
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 14px;
  padding: 26px 8px 0;
  color: var(--muted);
}

.footer-links a {
  text-decoration: none;
}

.partner-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.partner-path-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(155deg, rgba(255, 252, 247, 0.98), rgba(237, 230, 220, 0.88)),
    var(--surface);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-path-card:hover,
.partner-path-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(26, 122, 184, 0.34);
  box-shadow: 0 22px 46px rgba(23, 36, 54, 0.15);
}

.partner-path-kicker {
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-path-card strong {
  font-family: var(--serif);
  color: var(--blue-deep);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.06;
}

.partner-path-card span:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.sponsor-tiers {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.sponsor-tier {
  display: grid;
  gap: 26px;
  padding: clamp(26px, 5vw, 46px);
}

.tier-champion {
  background: #f7ebcf;
}

.tier-vital-force {
  background: #efb26f;
}

.tier-ruby {
  background: #ead1d1;
}

.tier-diamond {
  background: #dedede;
}

.tier-gold {
  background: #edb53e;
}

.tier-silver {
  background: #bcbcbc;
}

.tier-bronze {
  background: #f5d553;
}

.tier-additional {
  background: #e5c8ba;
}

.tier-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.tier-title {
  margin: 0;
  color: #252525;
  font-family: var(--sans);
  font-size: clamp(2.3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 #dfc090,
    0 4px 0 rgba(20, 20, 20, 0.28),
    0 12px 18px rgba(0, 0, 0, 0.24);
  -webkit-text-stroke: 1px rgba(243, 211, 157, 0.9);
}

.tier-title-image {
  width: min(420px, 70vw);
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.tier-title-image-wide {
  width: min(620px, 78vw);
}

.tier-title-image img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  object-position: left center;
}

.tier-principle {
  display: grid;
  gap: 5px;
  max-width: 360px;
  margin: 4px 0 0;
  color: #332f2d;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-style: italic;
  line-height: 1.3;
  text-align: right;
}

.tier-principle span {
  display: block;
}

.champion-badge {
  flex: 0 0 auto;
  width: min(230px, 34vw);
  filter: drop-shadow(0 16px 18px rgba(74, 55, 24, 0.22));
}

.champion-badge img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 20px;
  align-items: center;
}

.featured-logo-grid,
.single-logo-grid {
  grid-template-columns: minmax(240px, 520px);
  justify-content: center;
}

.partner-logo-card {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 18px;
  border: 2px solid rgba(17, 108, 112, 0.34);
  border-radius: 999px;
  color: var(--blue-deep);
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(23, 36, 54, 0.16);
}

.partner-logo-card img {
  max-width: min(100%, 300px);
  max-height: 96px;
  object-fit: contain;
}

.partner-logo-card.wide-logo img {
  max-width: min(100%, 430px);
}

.text-logo {
  color: var(--blue-deep);
  font-weight: 900;
}

.text-logo span,
.text-logo small {
  display: block;
}

.text-logo span {
  font-size: clamp(1.35rem, 3vw, 2.55rem);
  line-height: 1;
}

.text-logo small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.metagenics-logo span {
  color: #052f5f;
  font-size: clamp(2rem, 5vw, 4.8rem);
}

.ndnr-logo span {
  color: #0b86c8;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  text-transform: lowercase;
}

.cyto-logo span {
  color: #6d747d;
}

.innate-logo span {
  color: #68422a;
  font-family: var(--serif);
  text-transform: uppercase;
}

.wanp-logo span {
  color: #6d7f3e;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 2rem);
}

.additional-gifts-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 0.9fr);
  gap: 24px;
  align-items: center;
}

.additional-logo-grid {
  grid-template-columns: repeat(2, minmax(170px, 1fr));
}

.additional-gifts-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #2e2926;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  text-align: center;
  list-style: none;
}

.partner-support-grid .partner-logo-card {
  min-height: 138px;
  border-radius: var(--radius-lg);
}

.logo-directory-card {
  align-content: start;
}

.logo-directory-card .partner-logo-card {
  width: 100%;
}

@media (max-width: 1100px) {
  .site-shell {
    width: min(100% - 20px, 1280px);
  }

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

  .foundations-card {
    margin-top: 0;
  }

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

  .timeline-downloads,
  .release-grid,
  .proceedings-gallery,
  .media-grid,
  .to-stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .partner-path-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-grid,
  .additional-logo-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav a {
    padding-left: 0;
    border-radius: 14px;
  }

  .hero,
  .intro-grid,
  .feature-grid,
  .spotlight,
  .purpose-strip,
  .timeline-cover-stack,
  .additional-gifts-layout,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .tier-heading {
    display: grid;
  }

  .tier-principle {
    text-align: left;
  }

  .champion-badge {
    width: min(220px, 72vw);
  }

  .resource-card,
  .foundations-card {
    display: block !important;
  }

  body[data-page="home"] #textbooks .feature-grid > .resource-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    align-items: start;
  }

  .resource-card > .resource-image,
  .foundations-card > a,
  .foundations-card .resource-image,
  .resource-image-shell {
    min-height: auto !important;
    height: auto !important;
    max-height: 420px;
    width: 100%;
    display: block;
  }

  body[data-page="home"] #textbooks .feature-grid > .resource-card > .resource-image,
  body[data-page="home"] #textbooks .feature-grid > .resource-card > .resource-image-shell {
    grid-column: 1;
    grid-row: 1;
  }

  body[data-page="home"] #textbooks .feature-grid > .resource-card > .resource-image {
    object-fit: contain !important;
    object-position: top center;
    max-width: 260px;
    max-height: none !important;
    padding: 0 !important;
    margin: 18px auto 0 !important;
    vertical-align: top;
    background: none !important;
  }

  .resource-card > .resource-copy,
  .foundations-card > .resource-copy {
    position: relative;
    z-index: 1;
    padding-top: 22px;
    background: var(--surface);
  }

  body[data-page="home"] #textbooks .feature-grid > .resource-card > .resource-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 22px 28px 28px;
  }

  body[data-page="home"] #textbooks .feature-grid > .resource-card > .resource-image-shell .resource-image {
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-copy {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .cards-grid,
  .timeline-downloads,
  .release-grid,
  .proceedings-gallery,
  .media-grid,
  .directory-grid,
  .directory-column,
  .partner-logo-grid,
  .additional-logo-grid,
  .to-stage-grid {
    grid-template-columns: 1fr;
  }

  .timeline-gallery-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-gallery-controls {
    justify-content: flex-start;
  }

  .site-shell {
    width: min(100% - 16px, 1280px);
  }

  .site-header {
    padding: 14px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .resource-image {
    max-height: 380px;
  }
}
