@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --paper: #f4f6fa;
  --ice: #fbfcfe;
  --snow: #ffffff;
  --ink: #121a2b;
  --mute: #5a6578;
  --faint: #8b95a7;
  --rule: #d5dbe6;
  --flag: #d72638;
  --flag-deep: #b01d2d;
  --navy: #1e3554;
  --mist: #e8edf4;
  --serif: "Libre Baskerville", "Iowan Old Style", Georgia, serif;
  --sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.18;
  margin: 0 0 0.45em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.55rem, 6.4vw, 5.15rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0 0 1em;
  color: var(--mute);
}

p:last-child {
  margin-bottom: 0;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--flag);
  color: #fff;
  padding: 0.55rem 0.9rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
}

.skip:focus {
  top: 0.7rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--flag);
  outline-offset: 3px;
}

/* ----- Actions ----- */
.act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 650;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  color: #fff;
  background: var(--flag);
  padding: 0.95rem 1.55rem;
  clip-path: polygon(
    0 0,
    calc(100% - 11px) 0,
    100% 11px,
    100% 100%,
    11px 100%,
    0 calc(100% - 11px)
  );
}

.act:hover {
  background: var(--flag-deep);
}

.act-line {
  background: transparent;
  color: var(--ink);
  clip-path: none;
  padding: 0.4rem 0.05rem;
  border-radius: 0;
  border-bottom: 2px solid var(--ink);
  font-weight: 650;
}

.act-line:hover {
  background: transparent;
  color: var(--flag);
  border-bottom-color: var(--flag);
}

.act-ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55);
}

.act-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.act-wide {
  width: 100%;
}

.acts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem 1.6rem;
}

/* ----- Top rail + masthead ----- */
.rail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 8vw;
  background: var(--ink);
  color: #dfe4ee;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.rail a {
  color: #fff;
  text-decoration: none;
}

.rail a:hover {
  color: #ffd2d6;
}

.rail b {
  color: var(--flag);
  font-weight: 700;
}

.mast {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 8vw;
  background: var(--ice);
  border-bottom: 1px solid var(--rule);
}

.mast-arm {
  display: flex;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.mast-arm a {
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--mute);
}

.mast-arm a:hover,
.mast-arm a[aria-current="page"] {
  color: var(--ink);
}

.mast-arm-right {
  justify-content: flex-end;
}

.sign {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.sign img,
.sign svg {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 12px;
}

.sign strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.sign em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--faint);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.burger {
  display: none;
  justify-self: end;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 0.55rem 0.9rem;
  font-weight: 650;
  font-size: 0.82rem;
  cursor: pointer;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 10vw;
}

.overlay[hidden] {
  display: none;
}

.overlay-close {
  position: absolute;
  top: 1.2rem;
  right: 8vw;
  background: none;
  border: 0;
  font-weight: 650;
  cursor: pointer;
  color: var(--ink);
}

.overlay nav a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  text-decoration: none;
  padding: 0.28rem 0;
  color: var(--ink);
}

.overlay nav a:hover {
  color: var(--flag);
}

/* ----- Kickoff hero (stacked, not split) ----- */
.kickoff {
  position: relative;
  overflow: hidden;
  padding: 5.2rem 8vw 4.2rem 10vw;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(1200px 420px at 88% 18%, rgba(215, 38, 56, 0.08), transparent 55%),
    var(--paper);
}

.kickoff::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 78px;
  background: var(--flag);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.kickoff-place {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flag);
  margin: 0 0 1.15rem;
}

.kickoff h1 em {
  font-style: italic;
  color: var(--navy);
}

.kickoff-lead {
  max-width: 36rem;
  font-size: 1.12rem;
  margin-bottom: 1.7rem;
}

.meter {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3.1rem;
  max-width: 42rem;
}

.meter li {
  flex: 1 1 9rem;
  padding: 0.85rem 1.15rem 0 0;
  margin-right: 1.4rem;
  border-top: 2px solid var(--ink);
}

.meter b {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--ink);
}

.meter span {
  font-size: 0.78rem;
  color: var(--faint);
  font-weight: 600;
}

.ghost-time {
  position: absolute;
  right: -1.5vw;
  bottom: -1.8rem;
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(7rem, 24vw, 17rem);
  line-height: 0.75;
  color: rgba(18, 26, 43, 0.055);
  pointer-events: none;
  user-select: none;
}

/* ----- Tonight strip ----- */
.tonight {
  background: var(--ink);
  color: #eef1f6;
  display: grid;
  grid-template-columns: 12.5rem 1fr;
}

.tonight-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.6rem;
  border-right: 1px solid rgba(244, 246, 250, 0.12);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.3;
}

.tonight-label span {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.tonight ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tonight li {
  padding: 1.35rem 1.3rem 1.45rem;
  border-left: 1px solid rgba(244, 246, 250, 0.1);
}

.tonight time {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: #ff5a68;
  margin-bottom: 0.35rem;
}

.tonight strong {
  display: block;
  font-weight: 650;
  font-size: 0.95rem;
  color: #fff;
}

.tonight small {
  display: block;
  margin-top: 0.25rem;
  color: var(--faint);
  font-size: 0.78rem;
}

/* ----- Pitch / offer (heading column + mosaic) ----- */
.pitch {
  display: grid;
  grid-template-columns: minmax(15rem, 21rem) minmax(0, 1fr);
  gap: 3.4rem 3rem;
  padding: 6.4rem 8vw 5.6rem;
  align-items: start;
}

.kicker {
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--flag);
}

.pitch-intro .lead {
  font-size: 1.02rem;
}

.lanes {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 1.1rem;
}

.lane {
  background: var(--snow);
  border: 1px solid var(--rule);
  padding: 1.7rem 1.55rem 1.6rem;
}

.lane-broadcast {
  grid-row: 1 / span 2;
  background: var(--navy);
  border-color: var(--navy);
  color: #eef2f8;
  padding: 2.15rem 1.85rem;
}

.lane-broadcast h3,
.lane-broadcast p,
.lane-broadcast li {
  color: #d5deea;
}

.lane-broadcast h3 {
  color: #fff;
  font-size: 1.7rem;
}

.lane h3 {
  margin-bottom: 0.4em;
}

.lane ul {
  margin-top: 1rem;
}

.lane li {
  padding: 0.28rem 0 0.28rem 1rem;
  position: relative;
  color: var(--mute);
  font-size: 0.95rem;
}

.lane li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--flag);
}

.lane-broadcast li::before {
  background: #ff5a68;
}

.lane-kitchen {
  border-top: 5px solid var(--flag);
}

/* ----- Week mosaic ----- */
.week {
  padding: 0 8vw 6.2rem;
}

.week-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.week-head .lead {
  max-width: 26rem;
  text-align: right;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: minmax(8.5rem, auto);
  gap: 0.85rem;
}

.slot {
  background: var(--snow);
  border: 1px solid var(--rule);
  padding: 1.55rem 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 10.5rem;
}

.slot time {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flag);
}

.slot h3 {
  margin: 0.7rem 0 0.4rem;
}

.slot p {
  font-size: 0.92rem;
}

.slot-lead {
  grid-row: 1 / span 2;
  background: var(--flag);
  border-color: var(--flag);
  color: #fff;
  min-height: 22rem;
  padding: 2rem 1.7rem;
}

.slot-lead time,
.slot-lead h3,
.slot-lead p {
  color: #fff;
}

.slot-lead time {
  color: rgba(255, 255, 255, 0.78);
}

.slot-wide {
  grid-column: 2 / span 2;
  background: var(--mist);
}

/* ----- Karta / menu ----- */
.karta {
  display: grid;
  grid-template-columns: 3rem 1.35fr 1fr;
  gap: 2.4rem 2.8rem;
  padding: 5.2rem 8vw 6rem;
  background: var(--snow);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.karta-spine {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--flag);
  align-self: start;
  padding-top: 0.25rem;
}

.karta-col h3 {
  margin-bottom: 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--ink);
}

.fare li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem 1.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px dotted var(--rule);
  align-items: start;
}

.fare .name {
  color: var(--ink);
  font-weight: 600;
}

.fare small {
  display: block;
  font-weight: 400;
  color: var(--faint);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.fare .price {
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy);
  white-space: nowrap;
}

.karta-note {
  grid-column: 2 / -1;
  font-size: 0.88rem;
  color: var(--faint);
}

/* ----- Story / about band ----- */
.story {
  background: var(--ink);
  color: #e8edf4;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.2rem;
  padding: 6.2rem 10vw;
  align-items: center;
}

.story blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.38;
  color: #fff;
}

.story .kicker {
  color: #ff5a68;
}

.story h2,
.story p {
  color: #c9d2e0;
}

.story h2 {
  color: #fff;
}

.story .act-line {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
  margin-top: 0.4rem;
}

.story .act-line:hover {
  border-bottom-color: #ff5a68;
  color: #ff5a68;
}

/* ----- Desk / visit ----- */
.visit-hours {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.visit-hours li {
  padding: 1rem 0.7rem 1.1rem;
  text-align: center;
  border-left: 1px solid var(--rule);
  font-size: 0.82rem;
}

.visit-hours li:first-child {
  border-left: 0;
}

.visit-hours b {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.visit-hours .is-today {
  background: var(--ink);
  color: #fff;
}

.visit-hours .is-today b {
  color: #ff5a68;
}

.desk {
  position: relative;
  padding: 4.8rem 8vw 9rem;
}

.desk-copy {
  max-width: 40rem;
  padding: 4.2rem 8vw 1.4rem;
}

.sheet-hint {
  margin-top: 0.9rem;
}

.desk-map {
  height: 26.5rem;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: var(--mist);
}

.desk-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.85) contrast(1.05);
}

.desk-sheet {
  position: absolute;
  right: 10vw;
  bottom: 4.2rem;
  width: min(25.5rem, 88vw);
  background: var(--snow);
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
  padding: 1.7rem 1.55rem 1.45rem;
}

.desk-sheet h3 {
  margin-bottom: 0.25rem;
}

.desk-meta {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.desk-meta a {
  color: var(--flag);
  font-weight: 650;
  text-decoration: none;
}

/* ----- Notice pins ----- */
.pins {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  padding: 1rem 12vw 6.5rem;
  align-items: start;
}

.pin {
  background: var(--snow);
  border: 1px solid var(--ink);
  padding: 1.8rem 1.6rem 1.55rem;
}

.pin:first-child {
  margin-top: 2.6rem;
  transform: rotate(-1.1deg);
}

.pin:last-child {
  margin-left: 7%;
  box-shadow: 10px 10px 0 var(--flag);
  transform: rotate(0.8deg);
}

.pin h3 {
  font-size: 1.45rem;
}

/* ----- Colophon ----- */
.colophon {
  text-align: center;
  padding: 3.2rem 8vw 2.2rem;
  border-top: 1px solid var(--rule);
  background: var(--ice);
}

.colophon .sign {
  justify-content: center;
  margin-bottom: 1.15rem;
}

.colophon-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 1.6rem;
  margin: 0 0 1.3rem;
}

.colophon-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mute);
}

.colophon-links a:hover {
  color: var(--flag);
}

.colophon-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
  font-size: 0.78rem;
  color: var(--faint);
}

.colophon-legal a {
  color: var(--faint);
  text-decoration: none;
}

.colophon-legal a:hover {
  color: var(--ink);
}

.to-top {
  margin: 1.3rem auto 0;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-weight: 650;
  font-size: 0.82rem;
  padding: 0.15rem 0;
}

/* ----- Forms ----- */
.field {
  margin-bottom: 0.95rem;
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.15rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding: 0.45rem 0 0.55rem;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--flag);
}

.field textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.form-note {
  display: none;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--navy);
}

.form-note.is-visible {
  display: block;
}

.check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--mute);
  margin: 0.4rem 0 1rem;
}

.check a {
  color: var(--flag);
}

/* ----- Drawer dialog ----- */
dialog.drawer {
  width: min(28rem, 100%);
  height: 100%;
  max-height: 100vh;
  margin: 0 0 0 auto;
  border: 0;
  padding: 2.1rem 1.7rem 1.8rem;
  background: var(--snow);
}

dialog.drawer::backdrop {
  background: rgba(18, 26, 43, 0.5);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}

.drawer-x {
  background: none;
  border: 0;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--mute);
}

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: var(--snow);
  border-top: 3px solid var(--flag);
  padding: 1.05rem 8vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  box-shadow: 0 -8px 30px rgba(18, 26, 43, 0.08);
}

.consent.is-visible {
  display: flex;
}

.consent p {
  margin: 0;
  font-size: 0.88rem;
  max-width: 46rem;
}

.consent a {
  color: var(--flag);
}

.consent-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  flex: none;
}

.switch-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}

.switch-row h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.switch-row p {
  font-size: 0.8rem;
  margin: 0;
}

/* ----- Inner pages ----- */
.crumb {
  font-size: 0.8rem;
  color: var(--faint);
  margin: 0 0 1.1rem;
}

.crumb a {
  color: var(--mute);
  text-decoration: none;
}

.page-intro {
  padding: 3.4rem 10vw 2.4rem;
  max-width: 46rem;
}

.essay {
  max-width: 38rem;
  margin: 0 auto;
  padding: 0 8vw 4rem;
}

.bands {
  display: flex;
  flex-direction: column;
}

.band {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) 1fr;
  gap: 1.5rem 2.5rem;
  padding: 2rem 10vw;
  border-top: 1px solid var(--rule);
  background: var(--snow);
}

.band:nth-child(even) {
  background: var(--mist);
}

.band h3 {
  margin: 0;
}

.roster-title {
  padding: 3.4rem 10vw 0.8rem;
  max-width: none;
}

.roster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 10vw 5rem;
  border-top: 1px solid var(--ink);
}

.roster div {
  padding: 1.4rem 1.3rem 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}

.roster dt {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.roster dd {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
}

.ticket {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem 2rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--rule);
}

.ticket h2 {
  font-size: 1.45rem;
  margin: 0 0 0.2rem;
}

.ticket p {
  margin: 0;
  font-size: 0.9rem;
}

.ticket-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--flag);
  text-align: right;
}

.jobs-wrap {
  padding: 0 10vw 3rem;
}

.apply-panel {
  margin: 1rem 10vw 5.5rem;
  background: var(--navy);
  color: #e8edf4;
  padding: 2.4rem 2rem;
  display: grid;
  grid-template-columns: minmax(12rem, 18rem) 1fr;
  gap: 2rem;
}

.apply-panel h2,
.apply-panel p,
.apply-panel label {
  color: #d5deea;
}

.apply-panel h2 {
  color: #fff;
}

.apply-panel input,
.apply-panel textarea,
.apply-panel select {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

.collab {
  padding-bottom: 4rem;
}

.collab-band {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem 4rem;
  padding: 3.4rem 10vw;
  align-items: start;
}

.collab-band:nth-child(odd) {
  background: var(--snow);
}

.collab-band:nth-child(even) {
  background: var(--ink);
  color: #e8edf4;
}

.collab-band:nth-child(even) h2,
.collab-band:nth-child(even) p {
  color: #d5deea;
}

.collab-band:nth-child(even) h2 {
  color: #fff;
}

.statute {
  padding: 3rem 10vw 5.5rem;
  max-width: 48rem;
}

.jump-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  margin: 0 0 2rem;
  font-size: 0.85rem;
}

.jump-row a {
  color: var(--flag);
  text-decoration: none;
  font-weight: 600;
}

.statute h2 {
  margin-top: 2.1em;
}

.statute ol,
.statute ul {
  padding-left: 1.2rem;
  margin: 0 0 1em;
}

.statute ol {
  list-style: decimal;
}

.statute ul {
  list-style: disc;
}

.statute li {
  margin-bottom: 0.4em;
  color: var(--mute);
}

.updated {
  font-size: 0.82rem;
  color: var(--flag);
  font-weight: 650;
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .mast {
    grid-template-columns: auto 1fr auto;
  }

  .mast-arm {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .sign {
    justify-self: start;
  }

  .tonight,
  .pitch,
  .karta,
  .story,
  .week-head,
  .visit-hours,
  .pins,
  .apply-panel,
  .collab-band,
  .band,
  .roster {
    grid-template-columns: 1fr;
  }

  .tonight ol {
    grid-template-columns: 1fr 1fr;
  }

  .lanes,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .lane-broadcast,
  .slot-lead,
  .slot-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .karta-spine {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .week-head .lead,
  .week-head {
    text-align: left;
    display: block;
  }

  .desk-sheet {
    position: static;
    width: 100%;
    margin-top: 1.2rem;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .desk {
    padding-bottom: 4.5rem;
  }

  .pin:first-child,
  .pin:last-child {
    margin: 0;
    transform: none;
  }

  .ticket {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ticket-meta {
    text-align: left;
  }

  .roster div {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .rail {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.35rem 1rem;
  }

  .kickoff {
    min-height: 0;
    padding: 4.2rem 6vw 3.2rem;
  }

  .tonight ol,
  .visit-hours {
    grid-template-columns: 1fr 1fr;
  }

  .visit-hours li {
    border-top: 1px solid var(--rule);
  }

  .consent {
    flex-direction: column;
    align-items: flex-start;
  }

  .sign em {
    display: none;
  }

  .ghost-time {
    font-size: 6.5rem;
    right: -0.4rem;
  }
}
