
.masthead {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--ground) 92%, transparent);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem var(--pad); gap: 1rem;
}
.masthead .mark { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; }
.masthead nav { display: none; gap: 1.3rem; font-family: var(--font-ui); font-size: .88rem; font-weight: 600; }
.masthead nav a { text-decoration: none; color: var(--ink-soft); }
@media (min-width: 56rem) { .masthead nav { display: flex; } }
.masthead .btn { min-height: 40px; padding: .5rem 1.1rem; font-size: .9rem; }

.opener { padding-block: clamp(2.6rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem); }
.opener h1 {
  font-size: clamp(2.1rem, 5.6vw, 4rem); font-weight: 800; letter-spacing: -.04em;
  max-width: 20ch;
}
.opener .sub { margin-top: 1.2rem; font-size: clamp(1.06rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 44ch; line-height: 1.5; }
.opener .cta { margin-top: 1.8rem; display: flex; gap: .7rem; flex-wrap: wrap; }

/* the counts, as a data table not a card row */
.counts { border-top: 1.5px solid var(--ink); border-bottom: 1px solid var(--line); }
.counts dl {
  margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0;
}
.counts .cell { padding: 1.5rem 1.2rem 1.6rem; border-left: 1px solid var(--line-soft); }
.counts .cell:first-child { border-left: 0; padding-left: 0; }
.counts dt {
  font-family: var(--font-display); font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 800;
  letter-spacing: -.045em; line-height: 1; font-variant-numeric: tabular-nums;
}
.counts .unit { font-family: var(--font-ui); font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); display: block; margin-top: .45rem; }
.counts dd { margin: .5rem 0 0; font-size: .88rem; color: var(--ink-soft); line-height: 1.35; }

.band { padding-block: clamp(3rem, 7vw, 5.5rem); border-top: 1px solid var(--line); }
.band h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.band .lede { font-size: 1.1rem; color: var(--ink-soft); margin-top: .9rem; line-height: 1.5; }
.band-head { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1.8rem; }

/* geography: a plotted list, not a decorative map */
.geo { display: grid; gap: 0; margin-top: 1.6rem; }
.geo-row {
  display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 1rem; align-items: center;
  padding: .95rem .2rem; border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-ui);
}
.geo-row:first-child { border-top: 1.5px solid var(--ink); }
.geo-row .place { font-weight: 700; font-size: 1rem; }
.geo-row .what { font-size: .9rem; color: var(--ink-soft); }
.geo-row .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); justify-self: end; }

.prog { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.prog article { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; }
.prog img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.prog .in { padding: 1.05rem 1.15rem 1.3rem; display: flex; flex-direction: column; gap: .45rem; }
.prog h3 { font-size: 1.08rem; }
.prog p { font-size: .93rem; color: var(--ink-soft); line-height: 1.45; }

.give-band { background: var(--surface-2); border-top: 1px solid var(--line); }
.give-band .inner { display: grid; gap: 2.2rem; align-items: start; }
@media (min-width: 62rem) { .give-band .inner { grid-template-columns: 1fr 27rem; gap: 3.5rem; } }

.gap-note {
  border-left: 3px solid var(--accent); padding: .3rem 0 .3rem 1.1rem;
  margin-top: 1.5rem; font-size: 1.02rem; line-height: 1.5; color: var(--ink-soft);
}
.gap-note b { font-family: var(--font-ui); color: var(--ink); }

.creds { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); margin-top: 1.6rem; }
.creds div { border-top: 1.5px solid var(--ink); padding-top: .9rem; }
.creds h3 { font-family: var(--font-ui); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }
.creds p { margin-top: .5rem; font-size: .96rem; line-height: 1.45; color: var(--ink-soft); }

.voices-strip { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); margin-top: 1.6rem; }
.voices-strip blockquote { border-left: 3px solid var(--line); padding-left: 1rem; }
