/* ==========================================================================
   The Blacklist Ball — v1 redesign
   Palette: black ground, signal red, electric cobalt, warm white
   Type:    Archivo (variable width/weight), Instrument Serif italic, Geist Mono
   ========================================================================== */

:root {
  --bg:      #0a0a0b;
  --bg-2:    #121214;
  --bg-3:    #19191c;
  --white:   #f3f0ea;
  --muted:   rgba(243, 240, 234, 0.58);
  --faint:   rgba(243, 240, 234, 0.32);
  --line:    rgba(243, 240, 234, 0.14);
  --line-2:  rgba(243, 240, 234, 0.08);
  --red:     #ff3b2e;
  --red-2:   #ff5c50;
  --blue:    #3a5bff;
  --blue-2:  #2b46d6;
  --blue-deep: #1a2a8a;

  --font-sans:  "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono:  "Geist Mono", "SF Mono", Menlo, monospace;

  --gutter: clamp(20px, 4vw, 64px);
  --max: 1600px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
::selection { background: var(--red); color: var(--bg); }

/* ---------- utilities ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.red   { color: var(--red); }
.blue  { color: var(--blue); }
.muted { color: var(--muted); }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted);
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex: none;
}
.eyebrow--blue::before { background: var(--blue); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); position: relative;
}
.arrow-link .ar { display: inline-block; transition: transform .4s var(--ease); }
.arrow-link:hover .ar { transform: translateX(6px); }

/* pill buttons (Trevor Noah) */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 46px; padding: 0 22px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--white); color: var(--bg); border: 1px solid var(--white);
  cursor: pointer; white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.pill:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-1px); }
.pill--red { background: var(--red); border-color: var(--red); color: var(--white); }
.pill--red:hover { background: var(--white); border-color: var(--white); color: var(--bg); }
.pill--ghost { background: transparent; color: var(--white); border-color: var(--line); }
.pill--ghost:hover { background: var(--white); color: var(--bg); border-color: var(--white); }

/* display type */
.display {
  font-family: var(--font-sans);
  font-weight: 800;
  font-stretch: 112%;
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}
.h-section {
  font-family: var(--font-sans);
  font-weight: 700;
  font-stretch: 100%;
  font-size: clamp(34px, 5.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.h-section .serif { font-weight: 400; font-size: 1.06em; letter-spacing: -0.01em; }
.lede { font-size: clamp(17px, 1.35vw, 21px); line-height: 1.5; color: var(--muted); max-width: 58ch; margin: 0; }
.lede strong { color: var(--white); font-weight: 500; }

/* two-part heading (label + big) */
.head {
  display: grid; gap: 22px;
  padding-top: clamp(64px, 9vw, 140px);
  margin-bottom: clamp(36px, 5vw, 72px);
}
.head__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }

/* hairline dividers */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* reveal on scroll */
html.js .rv { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
html.js .rv.in { opacity: 1; transform: none; }
.rv[data-d="1"] { transition-delay: .08s; }
.rv[data-d="2"] { transition-delay: .16s; }
.rv[data-d="3"] { transition-delay: .24s; }
.rv[data-d="4"] { transition-delay: .32s; }
.rv[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: 68px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 var(--gutter);
  background: linear-gradient(to bottom, rgba(10,10,11,.85), rgba(10,10,11,0));
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav.is-scrolled { background: rgba(10,10,11,.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-2); }
.brand { display: inline-flex; align-items: baseline; gap: 6px; font-weight: 800; font-stretch: 118%; letter-spacing: -0.02em; text-transform: uppercase; font-size: 15px; }
.brand em { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-stretch: 100%; text-transform: none; font-size: 19px; letter-spacing: 0; color: var(--red); }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); transition: color .3s; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--red); transition: right .4s var(--ease); }
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { right: 0; }
.nav__right { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.nav__cta { height: 38px; padding: 0 18px; font-size: 11px; }
.burger { display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--white); transition: transform .4s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 15px; } .burger span:nth-child(2) { top: 20px; } .burger span:nth-child(3) { top: 25px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 40; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; padding: 100px var(--gutter) 40px;
  transform: translateY(-100%); transition: transform .6s var(--ease); visibility: hidden;
}
.menu.is-open { transform: none; visibility: visible; }
.menu > a { font-weight: 800; font-stretch: 112%; text-transform: uppercase; letter-spacing: -0.03em; font-size: clamp(40px, 12vw, 80px); line-height: .95; padding: 6px 0; border-bottom: 1px solid var(--line-2); display: flex; justify-content: space-between; align-items: baseline; }
.menu > a small { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; color: var(--muted); font-weight: 400; font-stretch: 100%; }
.menu__foot { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto 1fr auto; padding-top: 68px; overflow: hidden; }
.hero > * { min-width: 0; }
.hero__top { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px var(--gutter) 0; color: var(--muted); }
.hero__top > * { white-space: nowrap; }
.hero__top .r { display: none; }
.hero__title { padding: clamp(24px, 4vw, 48px) var(--gutter) 0; display: flex; flex-direction: column; justify-content: flex-end; }
.hero__title .display { font-size: clamp(40px, 12.4vw, 232px); }
.hero__title .display .l { display: block; overflow: hidden; }
.hero__title .display .l span { display: block; transform: translateY(110%); animation: rise 1.1s var(--ease) forwards; }
.hero__title .display .l:nth-child(2) span { animation-delay: .12s; color: var(--red); }
@keyframes rise { to { transform: none; } }
.hero__meta {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px;
  padding: clamp(28px, 4vw, 56px) var(--gutter) clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--line); margin-top: clamp(28px, 4vw, 56px);
  align-items: end;
}
.hero__meta .cell { grid-column: span 2; display: grid; gap: 10px; }
.hero__meta .cell .k { color: var(--faint); }
.hero__meta .cell .v { font-weight: 600; font-size: 17px; letter-spacing: -0.01em; line-height: 1.15; }
.hero__meta .lede-cell { grid-column: 8 / span 5; }
.hero__meta .lede-cell .serif { font-size: clamp(22px, 2.1vw, 34px); line-height: 1.15; color: var(--white); margin: 0 0 18px; }
.hero__art { position: relative; margin: 0 var(--gutter) 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 21 / 8; background: var(--bg-2); }
.hero__art img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.04); transition: transform 1.4s var(--ease); }
.hero__art:hover img { transform: scale(1); }
.hero__art .tag {
  position: absolute; left: 18px; bottom: 18px; display: inline-flex; gap: 10px; align-items: center;
  background: rgba(10,10,11,.7); backdrop-filter: blur(10px); padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line);
}

/* ---------- marquee ---------- */
.marquee { overflow: hidden; background: var(--red); color: var(--bg); border-top: 1px solid var(--red); border-bottom: 1px solid var(--red); }
.marquee--blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.marquee--ghost { background: transparent; color: var(--white); border-color: var(--line); }
.marquee__track { display: flex; width: max-content; animation: scroll 38s linear infinite; }

.marquee__item { display: inline-flex; align-items: center; gap: 28px; padding: 16px 28px 16px 0; font-weight: 700; font-stretch: 108%; text-transform: uppercase; letter-spacing: -0.01em; font-size: clamp(16px, 1.5vw, 22px); white-space: nowrap; }
.marquee__item i { font-style: normal; width: 8px; height: 8px; border-radius: 50%; background: currentColor; display: inline-block; opacity: .9; }
.marquee--big .marquee__item { font-size: clamp(48px, 9vw, 150px); font-weight: 800; font-stretch: 112%; letter-spacing: -0.03em; padding: 10px 40px 22px 0; line-height: 1.08; }
.marquee--big .marquee__item .serif { text-transform: none; font-weight: 400; letter-spacing: -0.01em; }
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- manifesto ---------- */
.manifesto { padding-bottom: clamp(64px, 9vw, 140px); }
.manifesto .statement { font-size: clamp(30px, 4.6vw, 76px); max-width: 16ch; }
.manifesto__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; margin-top: clamp(36px, 5vw, 72px); }
.manifesto__grid .a { grid-column: 1 / span 5; }
.manifesto__grid .b { grid-column: 7 / span 6; }
.pull { font-family: var(--font-serif); font-style: italic; font-size: clamp(30px, 3.6vw, 58px); line-height: 1.05; color: var(--red); margin: 0 0 22px; letter-spacing: -0.01em; }
.para { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.55; color: var(--muted); margin: 0 0 18px; }
.para strong { color: var(--white); font-weight: 500; }

/* ---------- event / spec sheet ---------- */
.event { padding-bottom: clamp(64px, 9vw, 140px); }
.event__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; }
.event__copy { grid-column: 1 / span 6; }
.event__sheet { grid-column: 8 / span 5; align-self: start; border-top: 1px solid var(--white); }
.sheet-row { display: grid; grid-template-columns: 44px 1fr auto; align-items: baseline; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); transition: padding-left .4s var(--ease); }
.sheet-row:hover { padding-left: 6px; }
.sheet-row .n { color: var(--faint); }
.sheet-row .k { color: var(--muted); }
.sheet-row .v { font-weight: 700; font-stretch: 108%; text-transform: uppercase; letter-spacing: -0.01em; font-size: clamp(16px, 1.4vw, 22px); text-align: right; }
.sheet-row .v.red { color: var(--red); }

/* ---------- experience grid ---------- */
.exp { padding-bottom: clamp(64px, 9vw, 140px); }
.exp__grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.tile { position: relative; padding: 28px 26px 34px; min-height: 260px; display: grid; grid-template-rows: auto 1fr auto; gap: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); transition: background .5s var(--ease), color .5s var(--ease); overflow: hidden; }
.tile:nth-child(3n) { border-right: 0; }
.tile:nth-last-child(-n+3) { border-bottom: 0; }
.tile .n { color: var(--faint); display: flex; justify-content: space-between; transition: color .4s; }
.tile h3 { margin: 0; font-weight: 700; font-stretch: 108%; text-transform: uppercase; letter-spacing: -0.02em; font-size: clamp(22px, 2vw, 32px); line-height: .95; align-self: end; }
.tile p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; max-width: 34ch; transition: color .4s; }
.tile::after { content: ""; position: absolute; inset: 0; background: var(--blue); transform: translateY(101%); transition: transform .55s var(--ease); z-index: 0; }
.tile > * { position: relative; z-index: 1; }
.tile:hover::after { transform: none; }
.tile:hover .n, .tile:hover p { color: rgba(243,240,234,.85); }
.tile--red::after { background: var(--red); }

/* ---------- lineup ---------- */
.lineup { padding-bottom: clamp(64px, 9vw, 140px); }
.list { border-top: 1px solid var(--white); }
.list-row { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 24px; padding: clamp(22px, 2.6vw, 38px) 0; border-bottom: 1px solid var(--line); transition: padding-left .45s var(--ease); }
.list-row:hover { padding-left: 10px; }
.list-row .n { color: var(--faint); }
.list-row .name { margin: 0; font-weight: 800; font-stretch: 112%; text-transform: uppercase; letter-spacing: -0.03em; font-size: clamp(30px, 5vw, 84px); line-height: .92; }
.list-row .name.tba { color: var(--faint); -webkit-text-stroke: 1px var(--line); color: transparent; }
.list-row .role { display: grid; gap: 8px; text-align: right; color: var(--muted); }
.list-row .role b { color: var(--white); font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.list-row .role .tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); justify-self: end; }
.list-row .role .tag--red { border-color: var(--red); color: var(--red); }

/* ---------- schedule ---------- */
.schedule { padding-bottom: clamp(64px, 9vw, 140px); }
.sched { border-top: 1px solid var(--white); }
.sched-row { display: grid; grid-template-columns: 64px 1fr 1fr; gap: 24px; align-items: center; padding: clamp(26px, 3vw, 44px) 0; border-bottom: 1px solid var(--line); }
.sched-row .n { color: var(--faint); }
.sched-row .what h3 { margin: 0 0 10px; font-weight: 700; font-stretch: 108%; text-transform: uppercase; letter-spacing: -0.02em; font-size: clamp(24px, 2.6vw, 40px); line-height: .95; }
.sched-row .what p { margin: 0; color: var(--muted); font-size: 15px; }
.sched-row .when { text-align: right; font-weight: 800; font-stretch: 112%; letter-spacing: -0.03em; font-size: clamp(30px, 5vw, 84px); line-height: .9; }
.sched-row .when small { display: block; margin-top: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 400; font-stretch: 100%; }
.sched-row .when .to { color: var(--faint); font-weight: 400; margin: 0 .1em; }

/* ---------- tickets (blue block) ---------- */
.tickets { padding: clamp(28px, 4vw, 64px) var(--gutter) clamp(64px, 9vw, 140px); }
.tickets__box {
  position: relative; background: var(--blue); color: var(--white);
  border-radius: 20px; padding: clamp(32px, 5vw, 80px);
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 40px; overflow: hidden;
}
.tickets__box::before { content: ""; position: absolute; inset: 0; background: url("../images/bg-6ad4036f.png") center/cover; mix-blend-mode: soft-light; opacity: .45; pointer-events: none; }
.tickets__box > * { position: relative; }
.tickets__copy { grid-column: 1 / span 6; display: grid; gap: 22px; align-content: start; min-width: 0; }
.tickets__copy .h-section { color: var(--white); }
.tickets__copy .lede { color: rgba(243,240,234,.78); }
.tickets__copy .eyebrow { color: rgba(243,240,234,.7); }
.tickets__copy .eyebrow::before { background: var(--white); }
.tickets__copy .note { display: flex; gap: 12px; align-items: center; color: rgba(243,240,234,.85); }
.tickets__form { grid-column: 8 / span 5; display: grid; gap: 14px; align-content: start; min-width: 0; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(243,240,234,.7); padding-left: 18px; }
.field input {
  height: 54px; border-radius: 999px; padding: 0 20px; width: 100%;
  background: rgba(10,10,11,.28); border: 1px solid rgba(243,240,234,.28); color: var(--white); outline: none;
  transition: border-color .3s, background .3s;
}
.field input::placeholder { color: rgba(243,240,234,.45); }
.field input:focus { border-color: var(--white); background: rgba(10,10,11,.42); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tickets__form .pill { height: 56px; margin-top: 6px; width: 100%; font-size: 12px; }
.form-msg { display: none; padding: 18px 20px; border-radius: 14px; background: rgba(10,10,11,.4); border: 1px solid rgba(243,240,234,.25); font-size: 15px; }
.form-msg.show { display: block; }
.form-msg.err { border-color: var(--red); }

/* ---------- closing ---------- */
.closing { padding: clamp(40px, 6vw, 100px) 0 clamp(64px, 9vw, 140px); }
.closing .display { font-size: clamp(40px, 8.2vw, 150px); }
.closing .display .serif { text-transform: none; font-weight: 400; letter-spacing: -0.01em; color: var(--red); }
.closing__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-top: clamp(28px, 4vw, 56px); flex-wrap: wrap; }
.closing__row .ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding-top: clamp(40px, 5vw, 72px); overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px; }
.footer__col { display: grid; gap: 14px; align-content: start; }
.footer__col .k { color: var(--faint); margin-bottom: 6px; }
.footer__col a, .footer__col span { font-size: 15px; color: var(--muted); transition: color .3s; }
.footer__col a:hover { color: var(--white); }
.footer__col:nth-child(1) { grid-column: 1 / span 4; }
.footer__col:nth-child(2) { grid-column: 5 / span 3; }
.footer__col:nth-child(3) { grid-column: 8 / span 2; }
.footer__col:nth-child(4) { grid-column: 10 / span 3; }
.footer__statement { font-family: var(--font-serif); font-style: italic; font-size: clamp(22px, 2.2vw, 34px); line-height: 1.15; color: var(--white); margin: 0; max-width: 22ch; }
.footer__giant { margin-top: clamp(40px, 6vw, 96px); line-height: .8; font-size: 100px; color: var(--white); white-space: nowrap; transform: translateY(12%); }
.footer__giant .serif { color: var(--red); text-transform: none; font-weight: 400; }
.footer__bar { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 0 26px; border-top: 1px solid var(--line-2); color: var(--faint); }
.footer__bar a { color: var(--muted); }
.footer__bar a:hover { color: var(--white); }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .hero__meta .cell { grid-column: span 3; }
  .hero__meta .lede-cell { grid-column: 1 / -1; order: -1; }
  .manifesto__grid .a { grid-column: 1 / span 6; }
  .manifesto__grid .b { grid-column: 7 / span 6; }
  .event__copy { grid-column: 1 / -1; }
  .event__sheet { grid-column: 1 / -1; }
  .tickets__copy { grid-column: 1 / -1; }
  .tickets__form { grid-column: 1 / -1; }
  .footer__col:nth-child(1) { grid-column: 1 / -1; }
  .footer__col:nth-child(2) { grid-column: 1 / span 4; }
  .footer__col:nth-child(3) { grid-column: 5 / span 4; }
  .footer__col:nth-child(4) { grid-column: 9 / span 4; }
}
@media (max-width: 820px) {
  .tickets__box, .manifesto__grid, .event__grid, .hero__meta { grid-template-columns: 1fr; }
  .tickets__box { gap: 28px; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .footer__col:nth-child(1), .footer__col:nth-child(4) { grid-column: 1 / -1; }
  .footer__col:nth-child(2), .footer__col:nth-child(3) { grid-column: auto; }
  .nav { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .burger { display: block; }
  .nav__cta { display: none; }
  .hero__top .r { display: block; }
  .hero__top .cap { display: none; }
  .hero__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .hero__meta .cell { grid-column: span 1; }
  .hero__meta .lede-cell { grid-column: 1 / -1; }
  .hero__art { aspect-ratio: 4 / 3; }
  .manifesto__grid { gap: 20px; }
  .manifesto__grid .a, .manifesto__grid .b { grid-column: 1 / -1; }
  .exp__grid { grid-template-columns: 1fr; }
  .tile { border-right: 0; min-height: 0; gap: 26px; }
  .tile:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .tile:last-child { border-bottom: 0; }
  .list-row { grid-template-columns: 40px 1fr; }
  .list-row .role { grid-column: 2; text-align: left; }
  .list-row .role .tag { justify-self: start; }
  .sched-row { grid-template-columns: 40px 1fr; }
  .sched-row .when { grid-column: 2; text-align: left; }
  .sheet-row { grid-template-columns: 32px 1fr auto; }
  .field-row { grid-template-columns: 1fr; }
}
