/* =========================================================
   Concrete Canoe at the University of Washington
   Editorial layout system. Left-aligned, asymmetric, photo-led.

   House rules (keep these when editing):
   - No three-across card rows. Use asymmetric spreads instead.
   - Type is either very large or very small. Avoid the middle.
   - Almost nothing is centered.
   - Purple is an accent, not a surface. It appears rarely.
   ========================================================= */

/* ---------- Tokens ---------- */

:root {
  --paper:      #FAFAF8;
  --ink:        #111111;
  --ink-muted:  #57574F;
  --rule:       #DCDCD5;
  --field:      #E9E9E4;   /* image placeholder fill */
  --field-ink:  #97978E;
  --black:      #0C0C0C;
  --purple:     #4B2E83;   /* UW purple */

  --f-head: "Saira", system-ui, -apple-system, sans-serif;
  --f-body: "Text Me One", system-ui, -apple-system, sans-serif;

  /* Type scale: extremes only */
  --t-hero:  clamp(3.4rem, 13vw, 11rem);
  --t-xl:    clamp(2.6rem, 8vw, 6rem);
  --t-lg:    clamp(2rem, 4.6vw, 3.4rem);
  --t-md:    clamp(1.4rem, 2.4vw, 2rem);
  --t-num:   clamp(3rem, 7.5vw, 6.5rem);
  --t-body:  clamp(1.03rem, 0.95rem + 0.3vw, 1.16rem);
  --t-label: 0.72rem;

  --pad:     clamp(1.25rem, 5vw, 5rem);
  --gap-sec: clamp(5rem, 11vw, 10rem);
  --measure: 62ch;

  --nav-h: 5.5rem;
}

/* ---------- Reset ---------- */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Type ---------- */

h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.94;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

/* Small uppercase eyebrow. The only "small" text in the system. */
.label {
  font-family: var(--f-head);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--ink-muted);
  margin: 0;
}

.label--accent { color: var(--purple); }

/* Body copy is one size everywhere: --t-body. There is deliberately no
   larger "lede" variant — size hierarchy belongs to the Saira headings. */

/* Inline emphasis has to be Saira: Text Me One ships one weight only. */
strong, .em {
  font-family: var(--f-head);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Waterline. The single water motif on the site. */
.waterline {
  border: 0;
  height: 1px;
  background: var(--purple);
  margin: 0;
  opacity: 0.55;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  z-index: 200;
}
.skip:focus { left: 0; }

/* ---------- Shell ---------- */

.wrap { padding-inline: var(--pad); }

.section { padding-block: var(--gap-sec); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* Asymmetric spread: section heading far left, prose offset right. */
.spread {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.spread__head { grid-column: 1 / span 4; font-size: var(--t-lg); }
.spread__body { grid-column: 6 / span 7; }
.spread__body--wide { grid-column: 6 / span 7; }

@media (max-width: 800px) {
  .spread__head,
  .spread__body,
  .spread__body--wide { grid-column: 1 / -1; }
}

/* Standalone section heading, for sections with no facing prose. */
.section-head {
  font-size: var(--t-lg);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--nav-h);
  padding-inline: var(--pad);
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease,
              border-color 0.3s ease, height 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* Every page opens on a full-bleed image, so the bar starts transparent
   over white type and turns to paper once you scroll past it. */
.nav.is-scrolled {
  background: var(--paper);
  color: var(--ink);
  border-bottom-color: var(--rule);
  height: 4.25rem;
}

/* Logo: images/logo.svg. Sizes are whole pixels on purpose — a fractional
   box made the mark's right edge land mid-pixel and read as clipped.
   Never set `background` shorthand in a state rule here; it drops the
   image. Only ever touch background-color or opacity. */
.logo {
  width: 3.75rem;   /* 60px */
  height: 3.75rem;
  flex: none;
  display: block;
  background-image: url('../../images/logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.25s ease, width 0.3s ease, height 0.3s ease;
}
.logo:hover { opacity: 0.7; }
.nav.is-scrolled .logo { width: 3rem; height: 3rem; }  /* 48px */

.nav__links {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2.25rem);
  align-items: center;
}

.nav__links a {
  font-family: var(--f-head);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  transition: border-color 0.2s ease;
}
.nav__links a:hover { border-bottom-color: currentColor; }
.nav__links a[aria-current="page"] { border-bottom-color: var(--purple); }
.nav.is-scrolled .nav__links a[aria-current="page"] { color: var(--purple); }

.nav__toggle {
  display: none;
  font-family: var(--f-head);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}

/* Full-screen menu (small screens) */

.menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--paper);
  color: var(--ink);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}
.menu[hidden] { display: none; }

.menu a {
  font-family: var(--f-head);
  font-size: clamp(2rem, 9vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
  line-height: 1.15;
  width: fit-content;
}
.menu a[aria-current="page"] { color: var(--purple); }

.menu__close {
  position: absolute;
  top: 0;
  right: var(--pad);
  height: var(--nav-h);
  font-family: var(--f-head);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.menu-open { overflow: hidden; }

/* ---------- Media + image placeholders ----------
   Photos are real <img> elements layered over a grey placeholder:
     <div class="media ratio-16x9">
       <img class="media__img" src="images/foo.jpg" alt="">
       <p class="media__hint">images/foo.jpg <span>2400 × 1350</span></p>
     </div>
   The image covers the placeholder once the file exists. If the file is
   missing, site.js tags the <img> .is-missing and hides it, so the grey
   field and its filename hint show through instead of a broken icon.

   Do NOT go back to a --img custom property with a url() in it: url()
   inside a custom property resolves against this stylesheet, not the HTML
   file, so every path silently 404s under assets/css/.
   -------------------------------------------------------------- */

.media {
  position: relative;
  background: var(--field);
  overflow: hidden;
}

.media__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, center);
}

.media__img.is-missing { display: none; }

.media__hint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  padding: 1rem;
  text-align: center;
  font-family: var(--f-head);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--field-ink);
}
.media__hint span { letter-spacing: 0.24em; opacity: 0.75; }

/* Scrim so overlaid type stays legible on any photo. */
.media--scrim::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.34) 34%,
    rgba(0, 0, 0, 0.05) 62%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

.media__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--pad);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
}

.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-4x3  { aspect-ratio: 4 / 3; }
.ratio-3x2  { aspect-ratio: 3 / 2; }
.ratio-4x5  { aspect-ratio: 4 / 5; }
.ratio-1x1  { aspect-ratio: 1 / 1; }

/* ---------- Home hero ---------- */

.hero {
  height: 100svh;
  min-height: 34rem;
}

.hero__word {
  font-size: var(--t-hero);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.85;
  margin: 0;
  text-transform: uppercase;
}

.hero__sub {
  font-family: var(--f-head);
  font-size: clamp(0.8rem, 1.5vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: clamp(1rem, 2vw, 1.6rem) 0 0;
  max-width: none;
}

/* ---------- Interior page header ---------- */

.pagehead { height: clamp(24rem, 62vh, 40rem); }

.pagehead__title {
  font-size: var(--t-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  margin: 0;
}

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}

.stat {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem)
           clamp(1.5rem, 3vw, 2.5rem) 0;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; }
.stat:not(:first-child) { padding-left: clamp(1rem, 2vw, 2rem); }

.stat__value {
  font-family: var(--f-head);
  font-size: var(--t-num);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0.5rem 0 0;
  color: var(--ink);
}
.stat__value[data-placeholder] { color: var(--field-ink); }

@media (max-width: 780px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid var(--rule); }
  .stat:nth-child(odd) { padding-left: 0; }
}

/* ---------- Canoe record ---------- */

.record { border-top: 1px solid var(--rule); }

.record__row {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline;
  padding-block: clamp(1.4rem, 2.6vw, 2.2rem);
  border-bottom: 1px solid var(--rule);
}

.record__year {
  font-family: var(--f-head);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Canoe name plus its description, stacked in the row's middle column. */
.record__canoe {
  display: grid;
  gap: 0.5rem;
}

.record__name {
  font-family: var(--f-head);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink-muted);
  margin: 0;
}

.record__desc {
  color: var(--ink-muted);
  margin: 0;
  max-width: 48ch;
}

/* Wrapper for a row's placements — regionals, nationals, and so on —
   stacked in the row's third grid column instead of each being its own
   grid item (which pushed extras onto a new implicit row). */
.record__places {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.record__place {
  font-family: var(--f-head);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: right;
}
.record__place--win { color: var(--purple); }

@media (max-width: 700px) {
  .record__row { grid-template-columns: 5rem minmax(0, 1fr); }
  .record__places { grid-column: 2; align-items: flex-start; }
  .record__place { text-align: left; }
}

/* ---------- Black punctuation section ---------- */

.slab {
  background: var(--black);
  color: var(--paper);
}
.slab .label { color: rgba(250, 250, 248, 0.6); }
.slab .waterline { opacity: 0.8; }


.arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-head);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.35rem;
  width: fit-content;
  transition: gap 0.2s ease;
}
.arrow:hover { gap: 1.1rem; }

/* ---------- Numbered process steps ---------- */

.steps { border-top: 1px solid var(--rule); }

.step {
  display: grid;
  grid-template-columns: 5rem 5rem minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  padding-block: clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

/* Icon slot per step — blueprint, mixer, and so on. Placeholder until the
   files land at images/icons/step-01.svg .. step-06.svg. */
.step__icon {
  width: 5rem;
  height: 5rem;
}
.step__icon .media__hint {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  padding: 0.25rem;
}

.step__num {
  font-family: var(--f-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: var(--purple);
}

.step__title {
  font-size: var(--t-md);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

@media (max-width: 700px) {
  /* Number and icon share a row, text drops beneath them. */
  .step { grid-template-columns: 4rem 4rem; gap: 1rem; }
  .step > div:last-child { grid-column: 1 / -1; }
  .step__icon { width: 4rem; height: 4rem; }
}

/* ---------- Subteam rows (alternating) ---------- */

.teamrow {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--rule);
}

.teamrow__media { grid-column: 1 / span 6; }
.teamrow__text  { grid-column: 8 / span 5; }

/* nth-of-type, not nth-child: a sibling <hr class="waterline"> would
   otherwise shift the count and flip the whole sequence. */
.teamrow:nth-of-type(even) .teamrow__media { grid-column: 7 / span 6; grid-row: 1; }
.teamrow:nth-of-type(even) .teamrow__text  { grid-column: 1 / span 5; grid-row: 1; }

.teamrow__name {
  font-size: var(--t-lg);
  font-weight: 600;
  margin: 0 0 1rem;
}

@media (max-width: 860px) {
  .teamrow,
  .teamrow:nth-of-type(even) {
    grid-template-columns: 1fr;
  }
  .teamrow__media,
  .teamrow__text,
  .teamrow:nth-of-type(even) .teamrow__media,
  .teamrow:nth-of-type(even) .teamrow__text {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

/* ---------- Leads ---------- */

.leadgroup { border-top: 1px solid var(--rule); padding-block: clamp(2.5rem, 5vw, 4rem); }

.leadgroup__title {
  font-size: var(--t-lg);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

/* Co-captains sit larger than everyone else. */
.people--feature {
  grid-template-columns: repeat(auto-fit, minmax(min(22rem, 100%), 1fr));
  max-width: 62rem;
}

.person__name {
  font-family: var(--f-head);
  font-size: var(--t-md);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 1rem 0 0.25rem;
  line-height: 1.1;
}

.person__role {
  font-family: var(--f-head);
  font-size: var(--t-label);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

/* ---------- Contact ---------- */

.contact {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact__cta   { grid-column: 1 / span 6; }
.contact__facts { grid-column: 8 / span 5; }

@media (max-width: 860px) {
  .contact__cta, .contact__facts { grid-column: 1 / -1; }
}

.btn {
  display: inline-block;
  font-family: var(--f-head);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  padding: 1.1rem 2.25rem;
  transition: background-color 0.2s ease;
}
.btn:hover { background: var(--purple); }

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

.facts > div {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--rule);
}

.facts dt {
  font-family: var(--f-head);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 0.25rem;
}

.facts dd { margin: 0; }

.facts a {
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.facts a:hover { color: var(--purple); border-bottom-color: var(--purple); }

/* ---------- Sponsors ---------- */

/* auto-fill keeps the grid honest at 3 logos or at 20. */
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(13rem, 100%), 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.logo-cell {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  aspect-ratio: 3 / 2;
  position: relative;
  background: var(--paper);
}

.logo-cell .media {
  position: absolute;
  inset: 12%;
  background: transparent;
}
.logo-cell .media__img {
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.logo-cell:hover .media__img { filter: grayscale(0); opacity: 1; }
.logo-cell .media__hint { letter-spacing: 0.12em; font-size: 0.62rem; }

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1.2vw, 1rem);
}

.gallery button {
  padding: 0;
  display: block;
  width: 100%;
  overflow: hidden;
}

/* Aspect ratios set the row height; height:100% then fills any tile that
   came out shorter than its row, so no paper shows through the grid. */
.gallery .media { width: 100%; height: 100%; transition: transform 0.5s ease; }
.gallery button:hover .media { transform: scale(1.03); }

/* Wide tiles on an 8-beat, offset so the rhythm never settles into
   a repeating wide-small-small card deck. */
.gallery > *:nth-child(8n + 1),
.gallery > *:nth-child(8n + 6) { grid-column: span 2; }
.gallery > *:nth-child(8n + 1) .media,
.gallery > *:nth-child(8n + 6) .media { aspect-ratio: 16 / 9; }

@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery > *:nth-child(8n + 1),
  .gallery > *:nth-child(8n + 6) { grid-column: span 2; }
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(8, 8, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}
.lightbox[hidden] { display: none; }

.lightbox__frame {
  width: min(100%, 78rem);
  max-height: 100%;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  color: #fff;
  font-family: var(--f-head);
  font-size: var(--t-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--black);
  color: var(--paper);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.footer a { text-decoration: none; }

.footer__top {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.footer__mark { grid-column: 1 / span 5; }
.footer__nav  { grid-column: 7 / span 3; }
.footer__meta { grid-column: 10 / span 3; }

.footer__name {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
  margin: 1.25rem 0 0;
  max-width: 14ch;
}


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

.footer__list a {
  font-family: var(--f-head);
  font-size: var(--t-label);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.72);
  transition: color 0.2s ease;
}
.footer__list a:hover { color: var(--paper); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  justify-content: space-between;
  align-items: baseline;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 250, 248, 0.16);
  font-family: var(--f-head);
  font-size: var(--t-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.55);
}

/* The RSO disclaimer is a sentence, not a tag — give it room to breathe
   and keep it off the meeting time. */
.footer__bottom > span:first-child {
  max-width: 46ch;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

@media (max-width: 860px) {
  .footer__mark { grid-column: 1 / -1; }
  .footer__nav  { grid-column: 1 / span 6; }
  .footer__meta { grid-column: 7 / span 6; }
}
