/* ============================================================
   Archive Trust for Research in Mathematical Sciences & Philosophy
   Design System — archmathsci.org
   Aesthetic: editorial academic — ink, paper, precision
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Mono:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────── */
:root {
  --ink:       #1a1a1a;
  --ink-soft:  #3c3c3c;
  --ink-muted: #6b6b6b;
  --paper:     #f9f7f2;
  --paper-warm:#f2efe8;
  --paper-mid: #ece9e0;
  --rule:      #d4cfc4;
  --rule-dark: #b0a898;
  --gold:      #8b6914;
  --gold-light:#b8943a;
  --crimson:   #7d1f2e;
  --blue-deep: #1c2e4a;

  --ff-serif:  'EB Garamond', 'Garamond', Georgia, serif;
  --ff-body:   'Libre Baskerville', Georgia, serif;
  --ff-mono:   'DM Mono', 'Courier New', monospace;

  --nav-h: 64px;
  --max-w: 1120px;
  --col-gap: 40px;
}

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; font-weight: 500; }

p { max-width: 68ch; }

.label {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.overline {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout Helpers ────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 90px 0;
}

.section--alt {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section--dark {
  background: var(--blue-deep);
  color: #e8e4d8;
}

.section--dark h2,
.section--dark h3,
.section--dark .overline { color: #e8e4d8; }
.section--dark .overline { color: var(--gold-light); }
.section--dark p { color: #c8c2b0; }
.section--dark .rule-h { border-color: #3a4f6b; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--col-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--col-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.rule-h {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 40px 0;
}

.rule-h--heavy {
  border-top: 2px solid var(--ink);
  margin: 20px 0 32px;
}

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(249, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.nav__logo-main {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.nav__logo-sub {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__link {
  font-family: var(--ff-mono);
  font-size: 0.67rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--gold); }
.nav__link.active::after { transform: scaleX(1); }

.nav__ctas {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Hamburger hidden on desktop */
.nav__hamburger { display: none; }

.nav__cta {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(139, 105, 20, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(28, 46, 74, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Fine grid overlay — hero and page headers */
.hero__grid,
.page-header__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 100px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  max-width: 14ch;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s ease forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__body {
  max-width: 52ch;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s ease forwards;
}

.hero__stat-row {
  display: flex;
  gap: 56px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: fadeUp 0.8s 0.8s ease forwards;
}

.hero__stat-num {
  font-family: var(--ff-serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--ink);
}

.hero__stat-label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--blue-deep);
}

.btn--outline {
  border: 1px solid var(--rule-dark);
  color: var(--ink-soft);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--gold {
  background: var(--gold);
  color: var(--paper);
}

.btn--gold:hover {
  background: var(--gold-light);
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.btn:hover svg { transform: translateX(3px); }

/* ── Section: Mission ──────────────────────────────── */
.mission__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.mission__aside {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.mission__aside-num {
  font-family: var(--ff-serif);
  font-size: 7rem;
  line-height: 1;
  color: var(--rule);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.mission__body p + p { margin-top: 1.4rem; }

.mission__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  margin-top: 48px;
  border: 1px solid var(--rule);
}

.pillar {
  background: var(--paper);
  padding: 28px 24px;
}

.pillar__icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.pillar__title {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.pillar__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 100%;
}

/* ── Section: Collection ───────────────────────────── */
.collection__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.collection__intro { max-width: 50ch; }

.recording-card {
  border: 1px solid var(--rule);
  padding: 24px;
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.recording-card:hover {
  border-color: var(--rule-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.recording-card__year {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.recording-card__title {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.recording-card__speaker {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
}

.recording-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.recording-card__tag {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--paper-mid);
  color: var(--ink-muted);
}

.recording-card__play {
  margin-left: auto;
  width: 32px; height: 32px;
  border: 1px solid var(--rule-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  transition: all 0.2s;
}

.recording-card:hover .recording-card__play {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ── Section: Speakers ─────────────────────────────── */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.speaker-card {
  background: var(--paper);
  padding: 28px 24px;
  transition: background 0.2s;
}

.speaker-card:hover { background: var(--paper-warm); }

.speaker-card__name {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.speaker-card__title {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.speaker-card__recordings {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}

/* ── Section: Timeline ─────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 80px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--rule);
}

.timeline__item {
  position: relative;
  margin-bottom: 48px;
}

.timeline__year {
  position: absolute;
  left: -80px;
  top: 4px;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-align: right;
  width: 48px;
}

.timeline__dot {
  position: absolute;
  left: -68px;
  top: 7px;
  width: 9px; height: 9px;
  border: 2px solid var(--rule-dark);
  background: var(--paper);
  border-radius: 50%;
  margin-left: 16px;
}

.timeline__content h4 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.timeline__content p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── Trustees ──────────────────────────────────────── */
.trustee-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
}

.trustee-item {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s;
}

.trustee-item:last-child { border-bottom: none; }
.trustee-item:hover { background: var(--paper-warm); }

.trustee-item__name {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
}

.trustee-item__role {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.trustee-item__badge {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--rule-dark);
  color: var(--ink-muted);
  justify-self: end;
  white-space: nowrap;
}

.trustee-item__badge--chair {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Support ───────────────────────────────────────── */
.support__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

.support__block {
  padding: 56px 48px;
}

.support__block h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: #e8e4d8;
  margin-bottom: 16px;
}

.support__block p {
  font-size: 0.95rem;
  color: #a8a090;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ── Quote / Pull ──────────────────────────────────── */
.pull-quote {
  padding: 56px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}

.pull-quote__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  max-width: 46ch;
  margin-bottom: 24px;
}

.pull-quote__attr {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── Archive number tape ───────────────────────────── */
.num-tape {
  background: var(--ink);
  color: var(--paper-warm);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}

.num-tape__track {
  display: flex;
  gap: 48px;
  animation: scroll-tape 40s linear infinite;
  white-space: nowrap;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 247, 242, 0.5);
}

.num-tape__track span.highlight {
  color: var(--gold-light);
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(249, 247, 242, 0.6);
  padding: 64px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand-name {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--paper-warm);
  margin-bottom: 8px;
}

.footer__brand-charity {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 247, 242, 0.35);
  margin-bottom: 20px;
}

.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 36ch;
}

.footer__col-title {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(249, 247, 242, 0.4);
  margin-bottom: 16px;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-links a {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: rgba(249, 247, 242, 0.6);
  transition: color 0.2s;
}

.footer__col-links a:hover { color: var(--paper-warm); }

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-text {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Page-specific header ──────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 80px) 0 64px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

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

.page-header__breadcrumb {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.page-header__breadcrumb a { color: var(--gold); }

/* ── Animations ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

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

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .mission__layout { grid-template-columns: 1fr; gap: 40px; }
  .mission__aside { position: static; }
  .mission__pillars { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero__stat-row { gap: 32px; flex-wrap: wrap; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .support__inner { grid-template-columns: 1fr; }
  .trustee-item { grid-template-columns: 1fr; gap: 4px; }
  .trustee-item__badge { justify-self: start; }
  .collection__header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 56px; }

  /* Nav — hamburger */
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 16px 24px 24px;
    z-index: 99;
  }
  .nav__links.open .nav__link {
    padding: 12px 0;
    font-size: 0.78rem;
    border-bottom: 1px solid var(--rule);
    width: 100%;
  }
  .nav__links.open .nav__link:last-child { border-bottom: none; }
  .nav__links.open .nav__link::after { display: none; }
  .nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    margin-right: 12px;
    background: none;
    border: none;
  }
  .nav__hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__hamburger.open span:nth-child(2) { opacity: 0; }
  .nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav__cta { display: none; }

  /* Hero */
  .hero__inner { padding: 48px 24px 64px; }
  .hero__eyebrow { margin-bottom: 24px; }
  .hero__body { font-size: 1rem; margin-bottom: 36px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    margin-top: 48px;
  }
  .hero__stat-num { font-size: 2rem; }

  /* Page headers */
  .page-header { padding: calc(var(--nav-h) + 40px) 0 40px; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  /* Typography */
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

  /* Sections */
  .section { padding: 56px 0; }
  .support__block { padding: 36px 24px; }
  .pull-quote__text { font-size: 1.4rem; }
  .mission__aside-num { font-size: 5rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Timeline */
  .timeline { padding-left: 48px; }
  .timeline__year { left: -48px; width: 32px; font-size: 0.6rem; }
  .timeline__dot { left: -38px; }

  /* Trustee */
  .trustee-item { grid-template-columns: 1fr; gap: 4px; padding: 20px 16px; }
  .trustee-item__badge { justify-self: start; }

  /* Collection */
  .collection__header { flex-direction: column; align-items: flex-start; gap: 20px; }
}
