/*
 * The MAX brand, in CSS.
 *
 * These tokens are the same values as src/constants/theme.ts in the portal
 * — the official brand kit (v1, 2026), not eyedropped. If one changes, change
 * both. The rules the kit states outright hold here too: MAX Yellow is a
 * field colour with ink on top and never text on white; accents mark and
 * label in small doses; display type is Archivo Black in caps, flush left,
 * never centred; everything else is Poppins.
 */

:root {
  --paper: #f7f4ec;
  --surface: #ffffff;
  --surface-sunken: #ede8de;
  --ink: #17140f;
  --ink-muted: #5c574f;
  --ink-faint: #8f887d;
  --line: #ded8cc;
  --line-strong: #17140f;

  --accent: #ffd500;
  --accent-deep: #e6c000;
  --accent-soft: #fff2b8;
  --on-accent: #17140f;
  --highlight: #e0157a;
  --on-ink: #f7f4ec;
  --on-ink-accent: #ffd500;

  --success: #1e7a3e;
  --warning: #b8730b;
  --danger: #c4162a;

  --display: 'Archivo', 'Archivo Black', system-ui, sans-serif;
  --body: 'Poppins', system-ui, sans-serif;

  --gutter: 20px;
  --max-width: 1240px;
  --panel-width: 380px;

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #14110f;
    --surface: #211d19;
    --surface-sunken: #0d0b0a;
    --ink: #f7f4ec;
    --ink-muted: #a9a197;
    --ink-faint: #7a736a;
    --line: #332c25;
    --line-strong: #f7f4ec;
    --accent-soft: #4a3f00;
    --highlight: #ff4d9b;
    --on-ink: #17140f;
    --on-ink-accent: #17140f;
    --success: #4ade80;
    --warning: #fbbf24;
    --danger: #f87171;
  }
}

/* ---- Reset, lightly ---------------------------------------------------- */

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

/* A component's own display must never beat the hidden attribute. */
[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 23px;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
  color: inherit;
}

a {
  color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

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

/* ---- Type scale (theme.ts `Type`) --------------------------------------- */

.t-hero,
.t-display,
.t-title,
.t-heading {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
}

.t-hero {
  font-size: 52px;
  line-height: 50px;
  letter-spacing: -2px;
}

.t-display {
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -1.4px;
}

.t-title {
  font-size: 30px;
  line-height: 31px;
  letter-spacing: -0.9px;
}

.t-heading {
  font-size: 19px;
  line-height: 23px;
  letter-spacing: -0.3px;
}

.t-subheading {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.1px;
  margin: 0;
}

.t-body {
  font-size: 15px;
  line-height: 23px;
  margin: 0;
}

.t-small {
  font-size: 13px;
  line-height: 19px;
  margin: 0;
}

.t-eyebrow {
  font-weight: 600;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0;
}

.tone-muted {
  color: var(--ink-muted);
}

.tone-faint {
  color: var(--ink-faint);
}

.tone-highlight {
  color: var(--highlight);
}

/* ---- Page frame --------------------------------------------------------- */

.constrain {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.site-header {
  border-bottom: 2px solid var(--line-strong);
}

.site-header .constrain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand__mark {
  width: 44px;
  height: 44px;
  color: var(--ink);
}

.brand__word {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.2px;
  text-transform: lowercase;
}

.site-header__link {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-header__link:hover {
  text-decoration: underline;
}

/* The entrance sign: MAX Yellow with ink on it. */
.masthead {
  background: var(--accent);
  color: var(--on-accent);
  padding: 48px 0 40px;
}

.masthead .t-eyebrow {
  color: var(--on-accent);
  margin-bottom: 12px;
}

.masthead .t-hero {
  color: var(--on-accent);
  max-width: 14ch;
}

.masthead__intro {
  color: var(--on-accent);
  max-width: 62ch;
  margin-top: 16px;
  font-size: 16px;
  line-height: 25px;
}

/* ---- The plan ----------------------------------------------------------- */

.plan {
  padding: 32px 0 48px;
}

.plan__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--line-strong);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.plan__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

@media (min-width: 960px) {
  .plan__body {
    grid-template-columns: minmax(0, 1fr) var(--panel-width);
  }
}

.plan__map {
  min-width: 0;
}

.plan__status {
  min-height: 19px;
  margin-bottom: 8px;
}

/*
 * The floor plan keeps the printed sheet's colours in both themes: it is a
 * drawing of the building, and a studio is pink on the plan whatever the
 * visitor's system is set to. These are sampled from the sheet itself and
 * are not brand colours, so they sit apart from the tokens above and no
 * dark-mode block redefines them.
 */
:root {
  --plan-paper: #ffffff;
  --plan-wall: #1c1a17;
  --plan-ink: #17140f;
  --plan-ink-faint: #6f6a62;
  --plan-glass: #e4e7e7;
  --plan-yellow: #efdb8b;
  --plan-green: #c1cba6;
  --plan-orange: #e0a970;
  --plan-blue: #b3c6d4;
  --plan-pink: #d497a9;
  /* The sheet left these two rooms white; picked to sit with the five above. */
  --plan-lavender: #c6b7da;
  --plan-mint: #a5d2c6;
  --plan-sand: #ece0c8;
  --plan-white: #ffffff;
}

.floorplan {
  display: block;
  width: 100%;
  height: auto;
  background: var(--plan-paper);
  border: 2px solid var(--line-strong);
  touch-action: manipulation;
}

.floorplan .tone-yellow { fill: var(--plan-yellow); stroke: var(--plan-yellow); }
.floorplan .tone-green { fill: var(--plan-green); stroke: var(--plan-green); }
.floorplan .tone-orange { fill: var(--plan-orange); stroke: var(--plan-orange); }
.floorplan .tone-blue { fill: var(--plan-blue); stroke: var(--plan-blue); }
.floorplan .tone-pink { fill: var(--plan-pink); stroke: var(--plan-pink); }
.floorplan .tone-lavender { fill: var(--plan-lavender); stroke: var(--plan-lavender); }
.floorplan .tone-mint { fill: var(--plan-mint); stroke: var(--plan-mint); }
.floorplan .tone-sand { fill: var(--plan-sand); stroke: var(--plan-sand); }
.floorplan .tone-white { fill: var(--plan-white); stroke: var(--plan-white); }

.floorplan .plan-fill {
  stroke: none;
  transition: filter 80ms linear;
}

.floorplan .plan-property {
  fill: none;
  stroke: var(--plan-ink);
  stroke-width: 9;
  stroke-dasharray: 9 10;
}

.floorplan .plan-walls,
.floorplan .plan-labels,
.floorplan .plan-ring {
  pointer-events: none;
}

.floorplan .plan-wall {
  fill: none;
  stroke: var(--plan-wall);
  stroke-width: 7;
  stroke-linejoin: miter;
}

.floorplan .plan-wall--outside {
  stroke-width: 15;
}

/* The opening in a wall shows the floor on the far side of it. */
.floorplan .plan-gap {
  fill: none;
  stroke-width: 10;
  stroke-linecap: butt;
}

.floorplan .plan-gap--outside {
  stroke-width: 18;
}

.floorplan .plan-glass {
  stroke: var(--plan-glass);
  stroke-width: 17;
}

.floorplan .plan-pane,
.floorplan .plan-door,
.floorplan .plan-swing {
  fill: none;
  stroke: var(--plan-wall);
  stroke-width: 2.5;
}

.floorplan .plan-door {
  stroke-width: 4;
}

.floorplan .plan-hatch {
  stroke: var(--plan-ink);
  opacity: 0.4;
}

.floorplan .room {
  cursor: pointer;
  outline: none;
}

.floorplan .room.is-inert {
  cursor: default;
}

.floorplan .room:not(.is-inert):hover .plan-fill {
  filter: brightness(0.9);
}

.floorplan .plan-label {
  fill: var(--plan-ink);
  stroke: none;
  font-family: var(--body);
  font-weight: 600;
  text-anchor: middle;
  dominant-baseline: central;
  user-select: none;
}

.floorplan .plan-label__sub {
  font-weight: 400;
}

/* Over hatching the name keeps a collar of its room's own colour. */
.floorplan .plan-label[data-status='reserved'],
.floorplan .plan-label[data-status='named'] {
  stroke-width: 10;
  stroke-linejoin: round;
  paint-order: stroke;
}

.floorplan .plan-label.tone-yellow[data-status] { stroke: var(--plan-yellow); }
.floorplan .plan-label.tone-green[data-status] { stroke: var(--plan-green); }
.floorplan .plan-label.tone-orange[data-status] { stroke: var(--plan-orange); }
.floorplan .plan-label.tone-blue[data-status] { stroke: var(--plan-blue); }
.floorplan .plan-label.tone-pink[data-status] { stroke: var(--plan-pink); }
.floorplan .plan-label.tone-lavender[data-status] { stroke: var(--plan-lavender); }
.floorplan .plan-label.tone-mint[data-status] { stroke: var(--plan-mint); }
.floorplan .plan-label.tone-sand[data-status] { stroke: var(--plan-sand); }
.floorplan .plan-label.tone-white[data-status] { stroke: var(--plan-white); }

.floorplan .plan-label[data-status='available'],
.floorplan .plan-label[data-status='not_offered'] {
  stroke: none;
}

.floorplan .plan-label[data-status='named'] {
  font-weight: 700;
}

.floorplan .plan-label[data-status='not_offered'] {
  fill: var(--plan-ink-faint);
  font-weight: 500;
}

/* Selected: an ink border with MAX Yellow inside it, like the entrance sign. */
.floorplan .plan-ring polygon {
  fill: none;
  stroke-linejoin: miter;
}

.floorplan .plan-ring--selected .plan-ring__outer {
  stroke: var(--plan-ink);
  stroke-width: 22;
}

.floorplan .plan-ring--selected .plan-ring__inner {
  stroke: var(--accent);
  stroke-width: 9;
}

.floorplan .plan-ring--focus .plan-ring__outer {
  stroke: var(--plan-paper);
  stroke-width: 20;
}

.floorplan .plan-ring--focus .plan-ring__inner {
  stroke: var(--highlight);
  stroke-width: 10;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 19px;
  color: var(--ink-muted);
}

.legend__swatch {
  width: 22px;
  height: 16px;
  border: 2px solid var(--ink);
  background: var(--plan-white);
  flex: none;
}

.legend__swatch--reserved {
  background: repeating-linear-gradient(45deg, var(--plan-white) 0 4px, var(--plan-ink-faint) 4px 5px);
}

.legend__swatch--named {
  background: repeating-linear-gradient(45deg, var(--plan-white) 0 2px, var(--plan-ink) 2px 4px);
}

.legend__swatch--not_offered {
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: var(--plan-ink-faint);
}

.legend__swatch--not_offered::before {
  content: 'Aa';
}

/* ---- The side panel ----------------------------------------------------- */

.panel {
  background: var(--surface);
  border: 2px solid var(--line-strong);
  padding: 20px;
  position: relative;
}

.panel[hidden] {
  display: none;
}

.panel__empty {
  border-style: dashed;
  border-color: var(--line);
  background: transparent;
  color: var(--ink-muted);
}

.panel__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.panel__close:hover {
  background: var(--surface-sunken);
}

.panel__eyebrow {
  margin-bottom: 8px;
  padding-right: 44px;
}

.panel__title {
  padding-right: 44px;
  overflow-wrap: anywhere;
}

.panel__was {
  margin-top: 4px;
}

.panel__meta {
  margin-top: 8px;
}

.panel__description {
  margin-top: 16px;
}

.panel__sponsorship {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.panel__row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.panel__price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  line-height: 31px;
  letter-spacing: -0.9px;
}

.panel__plan {
  margin-top: 6px;
}

.panel__section {
  margin-top: 16px;
}

.panel__section .t-eyebrow {
  margin-bottom: 4px;
}

.panel__credit {
  margin-top: 12px;
}

/* ---- The artist working in the room ------------------------------------ */

.resident {
  margin-top: 20px;
  padding: 16px;
  border: 2px solid var(--line-strong);
  background: var(--surface);
}

.resident__eyebrow {
  margin-bottom: 12px;
}

.resident__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.resident__photo {
  width: 72px;
  height: 72px;
  flex: none;
  object-fit: cover;
  border-radius: 50%;
  background: var(--surface-sunken);
}

.resident__photo--initials {
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  color: var(--on-accent);
  background: var(--accent);
}

.resident__bio {
  margin-top: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.resident__bio.is-open {
  display: block;
}

.resident__more {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  cursor: pointer;
}

.resident__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-top: 8px;
}

.resident__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-weight: 600;
}

.panel__dedication {
  margin-top: 4px;
  font-style: italic;
}

.panel__cta {
  margin-top: 20px;
}

/* Status chips carry their label — never colour alone. */
.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  font-weight: 600;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: var(--surface-sunken);
  color: var(--ink-muted);
  white-space: nowrap;
}

.chip--available {
  background: transparent;
  color: var(--success);
  border-color: var(--success);
}

.chip--reserved {
  background: transparent;
  color: var(--warning);
  border-color: var(--warning);
}

.chip--named {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--ink);
}

/* ---- Buttons (button.tsx) ---------------------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--accent-deep);
}

.button--block {
  width: 100%;
}

.button--outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.button--outline:hover {
  background: var(--surface-sunken);
}

/* ---- The list under the map -------------------------------------------- */

.rooms {
  padding: 8px 0 64px;
}

.rooms__zone {
  margin-top: 32px;
}

.rooms__zone .t-eyebrow {
  border-bottom: 2px solid var(--line-strong);
  padding-bottom: 8px;
}

.rooms__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rooms__item {
  border-bottom: 1px solid var(--line);
}

.rooms__button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.rooms__button:hover {
  background: var(--surface);
}

.rooms__button[aria-current='true'] {
  background: var(--surface);
}

.rooms__name {
  flex: 1;
  min-width: 0;
}

.rooms__name .t-small {
  margin-top: 2px;
}

.rooms__chev {
  color: var(--ink-faint);
  flex: none;
}

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

.site-footer {
  background: var(--ink);
  color: var(--on-ink);
  padding: 32px 0;
}

.site-footer .t-eyebrow {
  color: var(--on-ink-accent);
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--on-ink);
}

.site-footer a {
  color: var(--on-ink);
}

/* ---- Phones: the panel becomes a sheet ---------------------------------- */

@media (max-width: 959px) {
  .masthead {
    padding: 32px 0 28px;
  }

  .masthead .t-hero {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1.4px;
  }

  .panel:not(.panel__empty) {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    max-height: 72vh;
    overflow-y: auto;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    box-shadow: 0 -12px 32px rgba(23, 20, 15, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

/* ---- The naming overlay -------------------------------------------------- */

html.has-detail {
  overflow: hidden;
}

.detail {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
}

.detail[open] {
  display: flex;
  flex-direction: column;
}

.detail::backdrop {
  background: rgba(23, 20, 15, 0.72);
}

@media (min-width: 960px) {
  .detail {
    width: min(1200px, calc(100% - 48px));
    height: calc(100% - 48px);
    margin: auto;
    border: 2px solid var(--line-strong);
  }
}

.detail__bar {
  flex: none;
  background: var(--paper);
  border-bottom: 2px solid var(--line-strong);
}

.detail__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--gutter);
}

.detail__bar .t-title {
  margin-top: 2px;
}

.detail__close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 2px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
}

.detail__close:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.detail__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.detail__section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px var(--gutter);
  border-bottom: 1px solid var(--line);
}

.detail__section-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.detail__section-head .t-title {
  margin: 4px 0 10px;
}

/* The space, enlarged, beside its tour */

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

@media (min-width: 760px) {
  .detail__views {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.detail__view {
  margin: 0;
}

.detail__view figcaption {
  margin-top: 6px;
}

.detail__plan,
.detail__tour {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid var(--line-strong);
  background: var(--plan-paper);
}

.detail__plan .floorplan {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.floorplan--focus .room:not(.is-focus) .plan-fill {
  opacity: 0.4;
}

.floorplan--focus .plan-label:not(.is-focus) {
  opacity: 0.45;
}

.detail__tour iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.detail__tour-empty {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 6px;
  height: 100%;
  padding: 16px;
  text-align: center;
  background: repeating-linear-gradient(45deg, var(--surface) 0 14px, var(--surface-sunken) 14px 28px);
}

.detail__tour-icon {
  margin-bottom: 4px;
}

.detail__facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-top: 28px;
}

@media (min-width: 900px) {
  .detail__facts {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
  }
}

.detail__facts-main .panel__description {
  font-size: 17px;
  line-height: 26px;
}

.detail__gift {
  padding: 18px;
  border: 2px solid var(--line-strong);
  background: var(--surface);
}

.detail__gift .panel__sponsorship {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/* The placard */

.placard-studio {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

@media (min-width: 900px) {
  .placard-studio {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
  }
}

.placard-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.placard-stage {
  display: grid;
  place-items: center;
  padding: 40px 20px;
  border: 2px solid var(--line-strong);
  background: var(--surface-sunken);
}

/*
 * Brushed aluminum with four polished standoffs, after the placard on
 * Studio 1. A picture of a real object, so its colors are its own.
 */
.placard {
  --placard-ink: #161616;
  container-type: inline-size;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 480px);
  aspect-ratio: 1.08;
  padding: 0 9%;
  border-radius: 20px;
  color: var(--placard-ink);
  text-align: center;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, rgba(0, 0, 0, 0.035) 1px 2px),
    linear-gradient(125deg, #dcdddf 0%, #c2c4c6 24%, #e8e9ea 46%, #b8babc 72%, #d3d4d6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 22px 34px -14px rgba(0, 0, 0, 0.5);
}

.placard__screw {
  position: absolute;
  width: 8cqw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #ffffff 0 16%, #d2d3d5 44%, #8f9193 100%);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.placard__screw--tl { top: 5%; left: 5%; }
.placard__screw--tr { top: 5%; right: 5%; }
.placard__screw--bl { bottom: 5%; left: 5%; }
.placard__screw--br { bottom: 5%; right: 5%; }

.placard__room,
.placard__by,
.placard__name {
  margin: 0;
  font-family: 'Josefin Sans', var(--body);
  text-transform: uppercase;
}

.placard__room {
  width: 100%;
  margin-top: 20%;
  overflow: hidden;
  font-size: 14cqw;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.placard__by {
  margin-top: 8%;
  font-size: 3.2cqw;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.placard__sponsor {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 30%;
  margin-top: 6%;
}

.placard__name {
  width: 100%;
  font-size: 7.5cqw;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
}

.placard__name.is-placeholder {
  color: rgba(22, 22, 22, 0.32);
}

.placard__logo {
  max-width: 76%;
  max-height: 100%;
  object-fit: contain;
}

/* Why MAX */

.impact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
}

.impact__item {
  padding: 18px;
  border-top: 5px solid var(--accent);
  background: var(--surface);
}

.impact__item .t-heading {
  margin: 0 0 8px;
}

.impact__kicker {
  margin: 0 0 6px;
  color: var(--highlight);
  font-size: 11px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* Where the name is seen */

.seen {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: seen;
}

.seen__item {
  counter-increment: seen;
  padding: 18px;
  border: 2px solid var(--line-strong);
  background: var(--surface);
}

.seen__item::before {
  content: counter(seen, decimal-leading-zero);
  display: block;
  margin-bottom: 10px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
}

.seen__item .t-heading {
  margin-bottom: 6px;
}

/* Fields, and the call */

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__input {
  min-height: 48px;
  padding: 10px 12px;
  border: 2px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.field__input:focus-visible,
.detail__close:focus-visible,
.detail .button:focus-visible {
  outline: 3px solid var(--highlight);
  outline-offset: 2px;
}

.field__input--file {
  font-size: 14px;
}

.field__input--area {
  min-height: 100px;
  resize: vertical;
}

.detail__call {
  border-bottom: 0;
  padding-bottom: 64px;
}

.call-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: 820px;
  margin-bottom: 10px;
}

@media (min-width: 700px) {
  .call-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.call-form__wide {
  grid-column: 1 / -1;
}

.call-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.call-form__status {
  min-height: 23px;
  margin-top: 12px;
}

.call-form__status.is-good {
  color: var(--success);
  font-weight: 600;
}

.call-form__status.is-bad {
  color: var(--danger);
  font-weight: 600;
}

.call-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 8px;
}

.call-form__email {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
}

/* What you receive */

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits__item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.benefits__item .t-subheading {
  margin-bottom: 2px;
}

.benefits__tick {
  display: grid;
  place-items: center;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  font-size: 15px;
}

.benefits-compare {
  margin-top: 24px;
  border: 2px solid var(--line-strong);
  background: var(--surface);
}

.benefits-compare summary {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
}

.benefits-compare summary:focus-visible {
  outline: 3px solid var(--highlight);
  outline-offset: 2px;
}

.benefits-compare__scroll {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.benefits-compare__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 20px;
}

.benefits-compare__table th,
.benefits-compare__table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.benefits-compare__table td {
  width: 18%;
  text-align: center;
  font-weight: 600;
}

.benefits-compare__table thead th {
  vertical-align: bottom;
}

.benefits-compare__table tbody th {
  font-weight: 500;
}

.benefits-compare__table .is-current {
  background: var(--accent-soft);
}

.benefits-compare__price {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}

.benefits-compare__examples {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--ink-muted);
  text-align: center;
}

/* ==========================================================================
   The site around the plan: navigation, the landing page, and the
   sponsorship and Conductor's Club pages.
   ========================================================================== */

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

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 4px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-bottom: 3px solid transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav__link:hover {
  border-bottom-color: var(--line-strong);
}

.site-nav__link[aria-current='page'] {
  border-bottom-color: var(--accent);
}

@media (max-width: 720px) {
  .site-header .constrain {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 12px;
    padding-bottom: 4px;
  }

  .site-nav {
    justify-content: flex-start;
    margin-left: -12px;
  }

  .site-nav__link {
    padding: 0 10px;
    font-size: 12px;
  }
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px 40px;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: 15px;
}

/* ---- Shared page pieces ------------------------------------------------- */

.masthead__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin: 24px 0 0;
}

.masthead__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--on-accent);
  font-weight: 600;
}

.button--ink {
  background: var(--ink);
  color: var(--on-ink);
}

.button--outline-light {
  background: transparent;
  color: var(--on-ink);
  border: 2px solid var(--on-ink);
}

.page-section {
  padding: 56px 0;
}

.page-section--sunken {
  background: var(--surface-sunken);
}

.page-section--ink {
  background: var(--ink);
  color: var(--on-ink);
}

.page-section--ink .t-title,
.page-section--ink .t-heading,
.page-section--ink .t-body,
.page-section--ink .t-small,
.page-section--ink .t-eyebrow {
  color: var(--on-ink);
}

.page-section--ink .t-eyebrow:first-child {
  color: var(--on-ink-accent);
}

.page-section--ink a:not(.button) {
  color: var(--on-ink);
}

.page-section--ink .field__input {
  background: transparent;
  color: var(--on-ink);
  border-color: var(--on-ink);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head .t-title {
  margin: 4px 0 10px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px 48px;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
}

.split .t-title {
  margin-top: 4px;
}

.split__body {
  display: grid;
  gap: 14px;
  max-width: 680px;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.checklist__item {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  line-height: 23px;
}

.checklist__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 13px;
  font-weight: 700;
}

/* ---- The landing page --------------------------------------------------- */

.paths {
  padding: 40px 0 16px;
}

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

@media (min-width: 900px) {
  .paths__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.path {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  padding: 24px;
  border: 2px solid var(--line-strong);
  color: var(--ink);
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.path:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 var(--line-strong);
}

.path:focus-visible {
  outline: 3px solid var(--highlight);
  outline-offset: 3px;
}

.path--naming {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--on-accent);
}

.path--sponsorship {
  background: var(--ink);
  color: var(--on-ink);
}

.path--club {
  background: var(--surface);
}

.path__art {
  display: block;
  width: 96px;
  margin-bottom: 8px;
}

.path__eyebrow {
  font-size: 11px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.path--sponsorship .path__eyebrow {
  color: var(--on-ink-accent);
}

.path--club .path__eyebrow {
  color: var(--highlight);
}

.path__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  line-height: 31px;
  letter-spacing: -0.9px;
  text-transform: uppercase;
}

.path__body {
  font-size: 15px;
  line-height: 23px;
  flex: 1;
}

.path__price {
  margin-top: 8px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  line-height: 26px;
}

.path__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* ---- Sponsorship: levels ------------------------------------------------ */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .tiers {
    grid-template-columns: minmax(0, 1fr);
  }
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 44px;
  padding: 16px 18px;
  border: 2px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.tier:hover {
  box-shadow: 0 4px 0 var(--line-strong);
}

.tier[aria-checked='true'] {
  background: var(--ink);
  color: var(--on-ink);
  box-shadow: 0 4px 0 var(--accent);
}

.tier:focus-visible {
  outline: 3px solid var(--highlight);
  outline-offset: 3px;
}

.tier__name {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.tier__price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 34px;
  line-height: 38px;
}

.tier__tickets {
  font-size: 13px;
  opacity: 0.8;
}

.tier__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tier-studio {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

@media (min-width: 960px) {
  .tier-studio {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }
}

.tier-benefits {
  padding: 22px;
  border: 2px solid var(--line-strong);
  background: var(--surface);
}

.tier-benefits .t-heading {
  margin: 4px 0 6px;
}

.tier-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  border: 2px solid var(--line-strong);
  background: var(--surface);
}

@media (min-width: 720px) {
  .tier-preview {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

.tier-preview__controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tier-preview__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mock__caption {
  max-width: 40ch;
  text-align: center;
}

/* The poster: Presenting and Community */

.mock {
  position: relative;
  width: min(100%, 320px);
}

.poster {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  aspect-ratio: 4 / 5.2;
  /* Percentages, not cqw: a container's own box cannot be measured in its units. */
  padding: 9% 8% 7%;
  background: var(--ink);
  color: var(--on-ink);
  box-shadow: 0 18px 30px -14px rgba(0, 0, 0, 0.55);
}

.poster__org {
  margin: 0;
  font-size: 4.2cqw;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-ink);
}

.poster__event {
  margin: 4cqw 0 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 15cqw;
  line-height: 0.95;
  text-transform: uppercase;
  color: #ffd500;
  overflow-wrap: anywhere;
}

.poster__where {
  margin: 3cqw 0 0;
  font-size: 4.2cqw;
  color: var(--on-ink);
  opacity: 0.8;
}

.poster__presented,
.poster__strip {
  margin-top: auto;
}

.poster__by {
  margin: 0 0 3cqw;
  font-size: 3.8cqw;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-ink);
}

.poster__presented .sponsor-mark {
  display: grid;
  place-items: center;
  min-height: 30cqw;
  padding: 4cqw;
  border-radius: 2cqw;
  background: #ffffff;
  color: #17140f;
}

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

.poster__logo {
  display: grid;
  place-items: center;
  min-height: 16cqw;
  border-radius: 1.5cqw;
  background: rgba(255, 255, 255, 0.16);
}

.poster__logo.is-you {
  padding: 2cqw;
  background: #ffffff;
  color: #17140f;
  box-shadow: 0 0 0 0.8cqw #ffd500;
}

/* The sponsor board: Supporting */

.board {
  container-type: inline-size;
  position: relative;
  z-index: 1;
  padding: 8% 7%;
  aspect-ratio: 4 / 3.4;
  border: 10px solid #3b3025;
  background: #fbfaf6;
  color: #17140f;
  box-shadow: 0 18px 30px -14px rgba(0, 0, 0, 0.45);
}

.board__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: 7cqw;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.board__event {
  margin: 2cqw 0 5cqw;
  font-size: 4cqw;
  text-align: center;
  color: #5c574f;
}

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

.board__tile {
  display: grid;
  place-items: center;
  min-height: 15cqw;
  padding: 2cqw;
  border: 1px solid #ded8cc;
  border-radius: 1cqw;
}

.board__tile.is-you {
  border: 0.8cqw solid #ffd500;
}

.board__bar {
  width: 70%;
  height: 2.4cqw;
  border-radius: 99px;
  background: #ded8cc;
}

.board__leg {
  position: absolute;
  bottom: -26px;
  width: 8px;
  height: 40px;
  background: #3b3025;
}

.board__leg--left {
  left: 22%;
  transform: rotate(8deg);
}

.board__leg--right {
  right: 22%;
  transform: rotate(-8deg);
}

.mock--supporting {
  margin-bottom: 26px;
}

/* The sponsor's name or logo, wherever it is shown */

.sponsor-mark {
  width: 100%;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
}

.sponsor-mark img {
  display: block;
  max-width: 100%;
  max-height: 22cqw;
  margin: 0 auto;
  object-fit: contain;
}

.sponsor-mark--hero {
  font-family: var(--display);
  font-weight: 900;
  font-size: 9cqw;
  text-transform: uppercase;
}

.sponsor-mark--small {
  font-size: 3.4cqw;
}

.sponsor-mark--small img {
  max-height: 11cqw;
}

.sponsor-mark.is-placeholder {
  opacity: 0.45;
}

/* The big "Presented by" tile keeps its white ground; only the words fade. */
.poster__presented .sponsor-mark.is-placeholder {
  opacity: 1;
  color: rgba(23, 20, 15, 0.4);
}

/* A stand-in for the artwork every MAX poster carries. */
.poster__art {
  position: relative;
  display: block;
  height: 30cqw;
  margin: 6cqw 0 5cqw;
}

.poster__art::before,
.poster__art::after {
  content: '';
  position: absolute;
}

.poster__art::before {
  left: 4cqw;
  top: 2cqw;
  width: 26cqw;
  height: 26cqw;
  border-radius: 50%;
  background: #d497a9;
}

.poster__art::after {
  left: 20cqw;
  top: 8cqw;
  width: 44cqw;
  height: 20cqw;
  background: #b3c6d4;
  mix-blend-mode: screen;
}

/* Tickets */

.tickets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.ticket-stub {
  width: 34px;
  color: var(--ink);
  animation: stub-in 260ms ease both;
}

.tickets__label {
  flex-basis: 100%;
  text-align: center;
}

@keyframes stub-in {
  from {
    opacity: 0;
    transform: translateY(6px) rotate(-6deg);
  }
}

/* ---- Sponsorship: at a glance ------------------------------------------- */

.glance__scroll {
  overflow-x: auto;
  border: 2px solid var(--line-strong);
  background: var(--surface);
}

.glance__table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 21px;
}

.glance__table th,
.glance__table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.glance__table td {
  width: 20%;
  text-align: center;
  font-weight: 600;
}

.glance__table tbody th {
  font-weight: 500;
}

.glance__table thead th {
  padding: 8px;
  vertical-align: bottom;
}

.glance__table .is-current {
  background: var(--accent-soft);
}

.glance__pick {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 6px;
  border: 2px solid transparent;
  border-radius: 4px;
  background: none;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.glance__pick:hover {
  border-color: var(--line-strong);
}

.glance__pick[aria-pressed='true'] {
  border-color: var(--line-strong);
}

.glance__price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
}

.glance__name {
  font-size: 12px;
  color: var(--ink-muted);
}

/* ---- Sponsorship: in-kind ----------------------------------------------- */

.inkind {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}

.inkind__item {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 4px 12px;
  min-height: 44px;
  padding: 16px;
  border: 2px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.inkind__item:hover {
  box-shadow: 0 4px 0 var(--line-strong);
}

.inkind__item:focus-visible {
  outline: 3px solid var(--highlight);
  outline-offset: 3px;
}

.inkind__item[aria-pressed='true'] {
  background: var(--accent);
  color: var(--on-accent);
}

.inkind__check {
  grid-row: span 2;
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.inkind__item[aria-pressed='true'] .inkind__check {
  background: var(--ink);
  box-shadow: inset 0 0 0 4px var(--accent);
}

.inkind__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}

.inkind__examples {
  font-size: 13px;
  line-height: 19px;
  opacity: 0.8;
}

.inkind__note {
  max-width: 760px;
  margin-top: 20px;
}

/* ---- The "let's talk" sections ------------------------------------------ */

.become {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px 56px;
}

@media (min-width: 960px) {
  .become {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }
}

.become__intro .t-title {
  margin: 4px 0 12px;
}

.become__cta {
  margin: 20px 0 16px;
}

.contact-card {
  margin-top: 24px;
  padding: 20px;
  border-left: 6px solid var(--accent);
  background: var(--surface-sunken);
}

.contact-card p {
  margin: 0;
}

.contact-card .t-body {
  margin-top: 8px;
}

.contact-card a {
  color: var(--ink);
  font-weight: 600;
}

.become__summary {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 2px dashed var(--line-strong);
}

.become__pick {
  font-weight: 600;
}

.become__form-lede {
  margin: 4px 0 16px;
}

.become__optional {
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
}

/* ---- The Conductor's Club: the line ------------------------------------- */

.route {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
  border: 2px solid var(--line-strong);
  background: var(--surface);
}

.route__line {
  --progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

/* The track, and how far along it the chosen stop is. */
.route__line::before,
.route__line::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 12.5%;
  height: 6px;
  border-radius: 99px;
}

.route__line::before {
  right: 12.5%;
  background: var(--line);
}

.route__line::after {
  width: calc(75% * var(--progress));
  background: var(--accent);
  transition: width 280ms ease;
}

.route__item {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.route__stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 44px;
  padding: 6px;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.route__stop:focus-visible {
  outline: 3px solid var(--highlight);
  outline-offset: 2px;
  border-radius: 6px;
}

.route__dot {
  width: 36px;
  height: 36px;
  border: 5px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  transition: background 200ms ease, transform 200ms ease;
}

.route__item.is-passed .route__dot {
  background: var(--accent);
}

.route__stop[aria-selected='true'] .route__dot {
  background: var(--ink);
  box-shadow: 0 0 0 5px var(--accent);
  transform: scale(1.08);
}

.route__name {
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.3px;
  text-align: center;
  text-transform: uppercase;
}

.route__panel {
  max-width: 640px;
  min-height: 118px;
  margin: 0 auto;
  text-align: center;
}

.route__panel .t-heading {
  margin: 4px 0 8px;
}

@media (max-width: 560px) {
  .route {
    padding: 18px 10px;
  }

  .route__name {
    font-size: 11px;
  }
}

/* ---- The Conductor's Club: the ticket ----------------------------------- */

.ticket-studio {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px 48px;
  align-items: center;
}

@media (min-width: 960px) {
  .ticket-studio {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
}

.ticket-studio .t-title {
  margin: 4px 0 10px;
}

.ticket-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin: 20px 0 10px;
}

.ticket-form .field {
  flex: 1 1 220px;
}

.ticket-next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 20px;
  animation: stub-in 300ms ease both;
}

.ticket-stage {
  display: grid;
  place-items: center;
  padding: 24px 0;
}

/* A railway ticket, in MAX's colors: ink card, yellow stub. Fixed colors — it
   is a picture of an object, and reads the same in either theme. */
.ticket {
  container-type: inline-size;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  width: min(100%, 560px);
  aspect-ratio: 2.1;
  color: #f7f4ec;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.35));
  transform: rotate(-2deg);
}

.ticket__main,
.ticket__stub {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 5.5cqw 5cqw;
}

.ticket__main {
  background: #17140f;
  border-radius: 3cqw 0 0 3cqw;
  -webkit-mask: radial-gradient(circle at 100% 0, transparent 2.2cqw, #000 2.3cqw) top / 100% 51% no-repeat,
    radial-gradient(circle at 100% 100%, transparent 2.2cqw, #000 2.3cqw) bottom / 100% 51% no-repeat;
  mask: radial-gradient(circle at 100% 0, transparent 2.2cqw, #000 2.3cqw) top / 100% 51% no-repeat,
    radial-gradient(circle at 100% 100%, transparent 2.2cqw, #000 2.3cqw) bottom / 100% 51% no-repeat;
}

.ticket__stub {
  background: #ffd500;
  color: #17140f;
  border-left: 0.5cqw dashed rgba(23, 20, 15, 0.55);
  border-radius: 0 3cqw 3cqw 0;
  -webkit-mask: radial-gradient(circle at 0 0, transparent 2.2cqw, #000 2.3cqw) top / 100% 51% no-repeat,
    radial-gradient(circle at 0 100%, transparent 2.2cqw, #000 2.3cqw) bottom / 100% 51% no-repeat;
  mask: radial-gradient(circle at 0 0, transparent 2.2cqw, #000 2.3cqw) top / 100% 51% no-repeat,
    radial-gradient(circle at 0 100%, transparent 2.2cqw, #000 2.3cqw) bottom / 100% 51% no-repeat;
  transform-origin: left center;
}

.ticket p {
  margin: 0;
}

.ticket__line {
  font-size: 2.5cqw;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd500;
}

.ticket__club {
  margin-top: 1.5cqw !important;
  font-family: var(--display);
  font-weight: 900;
  font-size: 6.4cqw;
  line-height: 1;
  text-transform: uppercase;
}

.ticket__rows {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.6cqw 3cqw;
  margin-top: auto;
}

.ticket__label {
  font-size: 1.9cqw;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.ticket__value {
  margin-top: 0.4cqw !important;
  font-family: 'Josefin Sans', var(--body);
  font-weight: 600;
  font-size: 3.2cqw;
  line-height: 1.1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.ticket__passenger {
  font-size: 3.8cqw;
}

.ticket__passenger.is-placeholder {
  opacity: 0.45;
}

.ticket__admit {
  margin: 0.6cqw 0 2.4cqw !important;
  font-family: var(--display);
  font-weight: 900;
  font-size: 4.2cqw;
  line-height: 1;
  text-transform: uppercase;
}

.ticket__punch {
  position: absolute;
  right: 4cqw;
  bottom: 4.5cqw;
  width: 5.5cqw;
  height: 5.5cqw;
  border-radius: 50%;
  background: var(--surface-sunken);
  box-shadow: inset 0 0.5cqw 0.8cqw rgba(0, 0, 0, 0.35);
  transform: scale(0);
}

.ticket.is-punched .ticket__punch {
  animation: punch 360ms cubic-bezier(0.2, 1.6, 0.4, 1) forwards;
}

.ticket.is-punched .ticket__stub {
  animation: stub-tilt 520ms ease 180ms both;
}

@keyframes punch {
  to {
    transform: scale(1);
  }
}

@keyframes stub-tilt {
  40% {
    transform: rotate(4deg);
  }
  to {
    transform: rotate(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticket.is-punched .ticket__punch {
    animation: none;
    transform: scale(1);
  }

  .ticket.is-punched .ticket__stub,
  .ticket-stub,
  .ticket-next,
  .path {
    animation: none;
    transition: none;
  }
}

/* ==========================================================================
   Learn about MAX
   ========================================================================== */

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.jump a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 2px solid var(--on-accent);
  border-radius: 999px;
  color: var(--on-accent);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.jump a:hover,
.jump a:focus-visible {
  background: var(--on-accent);
  color: var(--accent);
}

[id] {
  scroll-margin-top: 16px;
}

/* ---- The timeline ------------------------------------------------------- */

.timeline {
  border: 2px solid var(--line-strong);
  background: var(--surface);
}

.timeline__track {
  --progress: 0;
  position: relative;
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 28px 24px 18px;
  scrollbar-width: thin;
}

.timeline__track::before,
.timeline__track::after {
  content: '';
  position: absolute;
  top: 45px;
  left: 60px;
  height: 6px;
  border-radius: 99px;
  pointer-events: none;
}

.timeline__track::before {
  right: 60px;
  background: var(--line);
}

.timeline__track::after {
  width: calc((100% - 120px) * var(--progress));
  background: var(--accent);
  transition: width 300ms ease;
}

.timeline__stop {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 0 96px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 4px;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.timeline__stop:focus-visible {
  outline: 3px solid var(--highlight);
  outline-offset: 2px;
  border-radius: 6px;
}

.timeline__dot {
  width: 34px;
  height: 34px;
  border: 5px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  transition: transform 200ms ease;
}

.timeline__stop.is-past .timeline__dot {
  background: var(--accent);
}

.timeline__stop[aria-selected='true'] .timeline__dot {
  background: var(--ink);
  box-shadow: 0 0 0 5px var(--accent);
  transform: scale(1.1);
}

.timeline__when {
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.timeline__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px 32px;
  align-items: center;
  padding: 24px;
  border-top: 1px solid var(--line);
}

@media (min-width: 760px) {
  .timeline__panel {
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
    padding: 32px 40px;
  }
}

.timeline__big {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--accent-deep);
  -webkit-text-stroke: 2px var(--ink);
  overflow-wrap: anywhere;
}

.timeline__copy .t-heading {
  margin-bottom: 8px;
}

.timeline__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.timeline__step {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
}

.timeline__step:hover {
  background: var(--accent);
  color: var(--on-accent);
}

/* ---- The year in numbers ------------------------------------------------ */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: 44px;
  padding: 20px 18px;
  border: 2px solid rgba(247, 244, 236, 0.35);
  border-radius: 4px;
  background: transparent;
  color: var(--on-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease;
}

.stat:hover {
  border-color: var(--on-ink-accent);
}

.stat[aria-expanded='true'] {
  background: #ffd500;
  border-color: #ffd500;
  color: #17140f;
}

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

.stat__value {
  font-family: var(--display);
  font-weight: 900;
  font-size: 46px;
  line-height: 46px;
  letter-spacing: -1.4px;
  font-variant-numeric: tabular-nums;
}

.stat__label {
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
}

.stat-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px 40px;
  margin-top: 16px;
  padding: 24px;
  border-radius: 4px;
  background: #f7f4ec;
  color: #17140f;
  animation: stub-in 240ms ease both;
}

@media (min-width: 860px) {
  .stat-detail {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
}

.page-section--ink .stat-detail .t-heading,
.page-section--ink .stat-detail .t-body {
  color: #17140f;
}

.stat-detail__copy .t-heading {
  margin-bottom: 8px;
}

.stat-detail__bars {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stat-detail__bar {
  display: grid;
  grid-template-columns: minmax(110px, 190px) minmax(0, 1fr) 52px;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.stat-detail__track {
  height: 14px;
  border-radius: 99px;
  background: #ede8de;
  overflow: hidden;
}

.stat-detail__fill {
  display: block;
  width: calc(var(--share) * 100%);
  height: 100%;
  border-radius: 99px;
  background: #17140f;
  animation: grow 500ms ease both;
  transform-origin: left center;
}

@keyframes grow {
  from {
    transform: scaleX(0);
  }
}

.stat-detail__value {
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ---- The team ----------------------------------------------------------- */

.portrait {
  display: block;
  flex: none;
  object-fit: cover;
  background: var(--surface-sunken);
}

.portrait--initials {
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--display);
  font-weight: 900;
}

.portrait--feature {
  width: 140px;
  aspect-ratio: 1;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  font-size: 44px;
}

.portrait--tall {
  width: 100%;
  aspect-ratio: 4 / 5;
  font-size: 56px;
}

.portrait--wide {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  font-size: 28px;
}

.portrait--small {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 18px;
}

.portrait--large {
  width: 100%;
  aspect-ratio: 1;
  font-size: 72px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px 40px;
  align-items: center;
}

@media (min-width: 760px) {
  .feature {
    grid-template-columns: 140px minmax(0, 1fr);
  }
}

.feature__name {
  margin: 4px 0 12px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.feature__text .t-body {
  max-width: 60ch;
  margin-bottom: 12px;
}

.person-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin: 8px 0 12px;
}

.person-links a,
.feature a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-weight: 600;
}

/* ---- Calendar of programs ----------------------------------------------- */

.calendar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.calendar__chip {
  min-height: 40px;
  padding: 0 14px;
  border: 2px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.calendar__chip[aria-pressed='true'] {
  background: var(--ink);
  color: var(--on-ink);
}

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

.calendar__scroll {
  overflow-x: auto;
  border: 2px solid var(--line-strong);
  background: var(--surface);
}

.calendar__grid {
  min-width: 720px;
  padding: 8px 0;
}

.calendar__row {
  display: grid;
  grid-template-columns: 160px repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  transition: opacity 180ms ease;
}

.calendar__row:last-child {
  border-bottom: 0;
}

.calendar__row.is-dim {
  opacity: 0.18;
}

.calendar__row--head {
  min-height: 36px;
}

.calendar__name {
  font-weight: 600;
  font-size: 14px;
}

.calendar__month {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.calendar__cell {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 4px;
}

.calendar__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  animation: stub-in 260ms ease both;
}

.calendar__dot--exhibitions { background: #d497a9; }
.calendar__dot--classes { background: #b3c6d4; }
.calendar__dot--lectures { background: #c6b7da; }
.calendar__dot--affiliate { background: #c1cba6; }
.calendar__dot--fundraisers { background: #ffd500; }
.calendar__dot--outside { background: #e0a970; }

.calendar__total {
  margin-top: 14px;
  font-weight: 600;
}

/* ---- The people --------------------------------------------------------- */

.split--residents {
  margin-bottom: 28px;
}

.people {
  display: grid;
  gap: 16px;
}

.people--residents {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.people--officers {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-bottom: 28px;
}

.people--directors {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.people-heading {
  margin: 0 0 12px;
}

.card {
  position: relative;
  display: flex;
  min-height: 44px;
  border: 2px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.card--open {
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.card--open:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 0 var(--line-strong);
}

.card--open:focus-visible {
  outline: 3px solid var(--highlight);
  outline-offset: 3px;
}

.card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.card__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
}

.card__title {
  font-size: 13px;
  line-height: 18px;
  color: var(--ink-muted);
}

.card__more {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: underline;
}

.card--tall {
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.card--tall .card__text {
  padding: 12px 14px 4px;
}

.card--tall .card__more {
  padding: 0 14px 14px;
}

.card--tall .portrait {
  border-bottom: 2px solid var(--line-strong);
}

.card--tall:not(.card--open) .card__text {
  padding-bottom: 14px;
}

.card--wide {
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.card--wide .card__title {
  color: var(--highlight);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 12px;
}

.card--wide .card__more {
  position: absolute;
  right: 14px;
  bottom: 10px;
}

.card--small {
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-width: 1px;
}

.card--small .card__more {
  display: none;
}

/* Directors' cards are small; the arrow says they open. */
.card--small.card--open::after {
  content: '→';
  margin-left: auto;
  font-weight: 700;
}

/* ---- One person, up close ----------------------------------------------- */

.person {
  width: min(820px, calc(100% - 32px));
  max-height: calc(100% - 48px);
  margin: auto;
  padding: 0;
  border: 2px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
}

.person::backdrop {
  background: rgba(23, 20, 15, 0.72);
}

.person__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.person__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 700px) {
  .person__body {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
}

.person__text {
  padding: 28px;
}

.person__text .t-title {
  margin: 4px 0 14px;
}

.person__bio {
  white-space: pre-line;
  margin-bottom: 8px;
}

/* ---- Affiliate growth --------------------------------------------------- */

.growth {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px 56px;
  align-items: center;
}

@media (min-width: 900px) {
  .growth {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  }
}

.growth .t-title {
  margin: 4px 0 12px;
}

.quote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 6px solid var(--accent);
  background: var(--surface);
}

.quote blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
}

.quote figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-muted);
}

.chart {
  padding: 24px;
  border: 2px solid var(--line-strong);
  background: var(--surface);
}

.chart__readout {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
  min-height: 58px;
  margin: 0 0 16px;
}

.chart__readout-value {
  font-family: var(--display);
  font-weight: 900;
  font-size: 52px;
  line-height: 52px;
}

.chart__readout-label {
  font-size: 14px;
  color: var(--ink-muted);
}

.chart__bars {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  height: 220px;
}

.chart__bar {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: calc(var(--h) * 100%);
  min-height: 44px;
  padding: 0 0 6px;
  border: 0;
  border-radius: 4px 4px 0 0;
  background: var(--line);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: background 120ms ease;
  animation: rise 600ms ease both;
  transform-origin: bottom center;
}

.chart__bar:hover,
.chart__bar[aria-pressed='true'] {
  background: var(--accent);
}

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

@keyframes rise {
  from {
    transform: scaleY(0);
  }
}

.chart__month {
  font-size: 11px;
  font-weight: 700;
}

/* ---- What's next -------------------------------------------------------- */

.next-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.next-path {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 2px solid rgba(247, 244, 236, 0.4);
  border-radius: 4px;
  color: var(--on-ink);
  text-decoration: none;
}

.next-path:hover {
  background: #ffd500;
  border-color: #ffd500;
  color: #17140f;
}

.next-path:hover .t-eyebrow {
  color: #17140f;
}

.next-path__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  line-height: 26px;
  text-transform: uppercase;
}

.next-path__go {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .chart__bar,
  .stat-detail__fill,
  .calendar__dot,
  .stat-detail {
    animation: none;
  }
}
