:root {
  --ink: #20202a;
  --paper: #fff8e8;
  --white: #ffffff;
  --lime: #c7f43d;
  --peach: #ff866f;
  --blue: #4977f2;
  --aqua: #55d7cf;
  --violet: #a87bf5;
  --yellow: #ffd84a;
  --pink: #f6a6cf;
  --line: 3px solid var(--ink);
  --shadow: 7px 7px 0 var(--ink);
  --round: 26px;
  --sans: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  --plain: "Trebuchet MS", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle, rgba(32, 32, 42, 0.08) 1.2px, transparent 1.3px) 0 0 / 18px 18px,
    var(--paper);
  font-family: var(--plain);
  font-size: 17px;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  border: var(--line);
  background: var(--yellow);
  font-weight: 900;
  transform: translateY(-160%);
}

.skip:focus {
  transform: none;
}

.topbar {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: 250px 1fr 130px;
  align-items: stretch;
  min-height: 110px;
  border-bottom: var(--line);
  background: rgba(255, 248, 232, 0.97);
}

.brand {
  display: grid;
  grid-template-columns: auto 35px auto;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-right: var(--line);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
}

.brand b {
  display: grid;
  width: 32px;
  height: 32px;
  margin: 0 5px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--peach);
  transform: rotate(-8deg);
}

.brand i {
  grid-column: 1 / -1;
  margin-top: 10px;
  font-family: var(--plain);
  font-size: 0.52rem;
  font-style: normal;
  letter-spacing: 0.13em;
}

.topbar nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.topbar nav a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 10px;
  border-right: 2px solid var(--ink);
  text-decoration: none;
}

.topbar nav a:nth-child(1) { background: rgba(199, 244, 61, 0.35); }
.topbar nav a:nth-child(2) { background: rgba(255, 134, 111, 0.35); }
.topbar nav a:nth-child(3) { background: rgba(73, 119, 242, 0.2); }
.topbar nav a:nth-child(4) { background: rgba(85, 215, 207, 0.35); }
.topbar nav a:nth-child(5) { background: rgba(168, 123, 245, 0.3); }
.topbar nav a:nth-child(6) { background: rgba(255, 216, 74, 0.4); }

.topbar nav a b {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.topbar nav a span {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 0.72rem;
  line-height: 1.15;
}

.topbar nav a:hover,
.topbar nav a:focus-visible {
  box-shadow: inset 0 -8px 0 var(--ink);
}

.club {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.65rem;
  text-decoration: none;
}

.club:hover,
.club:focus-visible {
  background: var(--blue);
}

.menu {
  display: none;
  border: 0;
  border-left: var(--line);
  background: var(--yellow);
  font-family: var(--sans);
}

.kicker {
  margin: 0 0 20px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr) 90px;
  min-height: 720px;
  border-bottom: var(--line);
  background: var(--lime);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 8vw, 125px) clamp(28px, 7vw, 110px);
}

.hero h1,
.mission-hero h1,
.info-hero h1,
.lost h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(4.2rem, 8vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 400;
  text-transform: none;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -10px;
  bottom: 2px;
  left: -10px;
  height: 16px;
  background: var(--pink);
  content: "";
  transform: rotate(-1deg);
}

.hero-text {
  max-width: 760px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.35;
}

.start {
  display: inline-flex;
  width: max-content;
  padding: 10px 14px;
  border: var(--line);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--sans);
  font-size: 0.65rem;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.start.big {
  padding: 14px 19px;
  box-shadow: var(--shadow);
  font-size: 0.75rem;
}

.start:hover,
.start:focus-visible {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(4px, 4px);
}

.hero-stats {
  display: flex;
  gap: 14px;
  margin-top: 55px;
}

.hero-stats p {
  display: grid;
  min-width: 110px;
  margin: 0;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--paper);
}

.hero-stats b {
  font-family: var(--sans);
  font-size: 1.8rem;
}

.hero-stats span {
  font-size: 0.63rem;
  font-weight: 700;
}

.hero figure,
.mission-hero figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-left: var(--line);
  border-right: var(--line);
}

.hero figure img,
.mission-hero figure img {
  height: 100%;
  object-fit: cover;
}

.hero figcaption,
.mission-hero figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  gap: 5px;
  padding: 12px 15px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: rgba(255, 248, 232, 0.94);
  font-size: 0.65rem;
}

.hero aside {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background: var(--blue);
  color: var(--white);
}

.hero aside span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.rule-tape {
  display: flex;
  overflow: hidden;
  justify-content: space-around;
  gap: 45px;
  padding: 14px 20px;
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}

.rule-tape span {
  font-family: var(--sans);
  font-size: 0.65rem;
}

.rule-tape span::before {
  margin-right: 45px;
  color: var(--yellow);
  content: "✦";
}

.hello {
  display: grid;
  grid-template-columns: 0.45fr 1.3fr 0.7fr;
  gap: 45px;
  padding: clamp(90px, 12vw, 180px) clamp(25px, 8vw, 130px);
  border-bottom: var(--line);
}

.hello h2,
.mission-list > header h2,
.quick-deck > header h2,
.badge-locker > header h2,
.family-pact h2,
.home-end h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(3.2rem, 6vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hello > div {
  padding: 25px;
  border: 2px dashed var(--ink);
  border-radius: var(--round);
  background: var(--pink);
  transform: rotate(1deg);
}

.hello > div p:first-child {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.hello > div p:last-child {
  margin-bottom: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.mission-list {
  padding: clamp(80px, 10vw, 150px) clamp(22px, 6vw, 100px);
  border-bottom: var(--line);
  background: var(--white);
}

.mission-list > header,
.quick-deck > header,
.badge-locker > header {
  display: grid;
  grid-template-columns: 0.45fr 1.5fr;
  gap: 40px;
  margin-bottom: 70px;
}

.mission-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 470px;
  margin: 0 0 38px;
  border: var(--line);
  border-radius: var(--round);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mission-card:nth-of-type(even) {
  grid-template-columns: 1.1fr 0.9fr;
}

.mission-card:nth-of-type(even) .photo {
  grid-column: 2;
}

.mission-card:nth-of-type(even) > div {
  grid-column: 1;
  grid-row: 1;
  border-right: var(--line);
  border-left: 0;
}

.lime { background: var(--lime); }
.peach { background: var(--peach); }
.blue { background: var(--blue); color: var(--white); }
.aqua { background: var(--aqua); }
.violet { background: var(--violet); }
.yellow { background: var(--yellow); }

.photo {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.mission-card:hover .photo img {
  transform: scale(1.035);
}

.photo span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.62rem;
}

.mission-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 6vw, 85px);
  border-left: var(--line);
}

.mission-card h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(2.7rem, 4.6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.mission-card h2 a {
  text-decoration: none;
}

.mission-card .facts {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-card > div > p:not(.kicker, .facts) {
  max-width: 620px;
  font-family: var(--serif);
  font-size: 1rem;
}

.mission-card .start {
  margin-top: 16px;
  color: var(--ink);
}

.quick-deck {
  padding: clamp(80px, 11vw, 165px) clamp(22px, 6vw, 100px);
  border-bottom: var(--line);
  background: var(--blue);
  color: var(--white);
}

.quick-deck > header {
  grid-template-columns: 0.4fr 1.2fr 0.5fr;
}

.quick-deck > header > p:last-child {
  margin: 0;
  padding-left: 24px;
  border-left: 5px solid var(--yellow);
  font-family: var(--serif);
}

.quick-deck > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-deck article {
  position: relative;
  min-height: 260px;
  padding: 22px;
  border: var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.quick-deck article:nth-child(8n + 2),
.quick-deck article:nth-child(8n + 7) { background: var(--lime); transform: rotate(1deg); }
.quick-deck article:nth-child(8n + 4),
.quick-deck article:nth-child(8n + 5) { background: var(--peach); transform: rotate(-1deg); }

.quick-deck article span,
.quick-deck article > b {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.quick-deck article > b {
  float: right;
  padding: 3px 7px;
  border: 2px solid;
  border-radius: 999px;
}

.quick-deck article h3 {
  margin: 50px 0 12px;
  font-family: var(--sans);
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.quick-deck article p {
  position: absolute;
  bottom: 16px;
  left: 22px;
  font-size: 0.55rem;
  font-weight: 900;
}

.badge-locker {
  padding: clamp(80px, 11vw, 165px) clamp(22px, 7vw, 120px);
  border-bottom: var(--line);
  background: var(--yellow);
}

.badge-locker > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--line);
  border-left: var(--line);
}

.badge-locker article {
  min-height: 280px;
  padding: 24px;
  border-right: var(--line);
  border-bottom: var(--line);
  text-align: center;
}

.badge-locker article:nth-child(4n + 2) { background: var(--aqua); }
.badge-locker article:nth-child(4n + 3) { background: var(--pink); }

.badge-locker article span {
  float: left;
  font-family: var(--sans);
  font-size: 0.6rem;
}

.badge-locker article i {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 20px auto;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--sans);
  font-size: 2rem;
  font-style: normal;
}

.badge-locker article h3 {
  margin: 10px 0 6px;
  font-family: var(--sans);
  font-size: 1.1rem;
}

.badge-locker article p {
  font-family: var(--serif);
  font-size: 0.82rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
}

.gallery-strip figure {
  position: relative;
  height: 390px;
  margin: 0;
  overflow: hidden;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
}

.gallery-strip img {
  height: 100%;
  object-fit: cover;
}

.gallery-strip figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: flex;
  justify-content: space-between;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 0.58rem;
}

.family-pact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding: clamp(90px, 12vw, 180px) clamp(25px, 9vw, 150px);
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--aqua);
}

.field-kit {
  padding: clamp(85px, 11vw, 170px) clamp(24px, 7vw, 120px);
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--paper);
}

.field-kit > header {
  display: grid;
  grid-template-columns: 0.42fr 1.2fr 0.55fr;
  gap: 40px;
  margin-bottom: 65px;
}

.field-kit > header h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(3.2rem, 6vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.field-kit > header > p:last-child {
  margin: 0;
  padding: 22px;
  border: 2px dashed var(--ink);
  border-radius: 18px;
  background: var(--lime);
  font-family: var(--serif);
}

.field-kit > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.field-kit article {
  position: relative;
  min-height: 245px;
  padding: 22px;
  border: var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
}

.field-kit article:nth-child(8n + 2),
.field-kit article:nth-child(8n + 7) {
  background: var(--aqua);
}

.field-kit article:nth-child(8n + 4),
.field-kit article:nth-child(8n + 5) {
  background: var(--yellow);
}

.field-kit article span {
  font-family: var(--sans);
  font-size: 0.64rem;
}

.field-kit article h3 {
  margin: 38px 0 9px;
  font-family: var(--sans);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.field-kit article p {
  font-family: var(--serif);
  font-size: 0.84rem;
}

.field-kit article b {
  position: absolute;
  bottom: 16px;
  left: 22px;
  font-family: var(--sans);
  font-size: 0.48rem;
}

.family-pact ol {
  margin: 0;
  padding: 0;
  border-top: var(--line);
  list-style: none;
  counter-reset: pact;
}

.family-pact li {
  position: relative;
  min-height: 72px;
  padding: 20px 20px 20px 78px;
  border-right: var(--line);
  border-bottom: var(--line);
  border-left: var(--line);
  background: var(--paper);
  counter-increment: pact;
  font-family: var(--serif);
}

.family-pact li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: 56px;
  place-items: center;
  border-right: var(--line);
  background: var(--peach);
  content: counter(pact, decimal-leading-zero);
  font-family: var(--sans);
}

.home-end {
  padding: clamp(100px, 15vw, 230px) clamp(25px, 12vw, 200px);
  background: var(--violet);
  text-align: center;
}

.home-end h2 {
  max-width: 1000px;
  margin: 0 auto 55px;
}

.mission-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  min-height: 680px;
  border-bottom: var(--line);
}

.mission-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 8vw, 125px);
}

.mission-hero h1 {
  font-size: clamp(4rem, 7.3vw, 8rem);
}

.mission-hero dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 780px;
  margin: 20px 0 0;
  border: var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.mission-hero dl div {
  padding: 14px;
  border-right: 2px solid var(--ink);
}

.mission-hero dl div:last-child {
  border: 0;
}

.mission-hero dt {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.mission-hero dd {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 0.95rem;
}

.mission-body {
  display: grid;
  grid-template-columns: 275px minmax(0, 1fr);
  max-width: 1550px;
  margin: 0 auto;
}

.mission-body > aside {
  position: sticky;
  top: 20px;
  align-self: start;
  margin: 65px 0;
  padding: 22px;
  border: var(--line);
  border-radius: 20px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.mission-body > aside > p {
  color: var(--yellow);
  font-family: var(--sans);
  font-size: 0.6rem;
}

.mission-body > aside a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  text-decoration: none;
}

.mission-body > aside a b {
  color: var(--peach);
  font-family: var(--sans);
}

.mission-body > aside a:hover span {
  color: var(--lime);
}

.mission-copy {
  max-width: 980px;
  padding: 75px clamp(30px, 7vw, 110px) 130px;
}

.standfirst {
  margin: 0 0 85px;
  padding-bottom: 45px;
  border-bottom: var(--line);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.35;
}

.round {
  padding: 80px 0;
  border-bottom: var(--line);
  scroll-margin-top: 20px;
}

.round header {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 24px;
}

.round h2,
.mission-card-sheet h2,
.grown-up h2,
.info-copy h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.round-lead {
  max-width: 730px;
  margin: 38px 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.play-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--line);
  border-left: var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.play-grid article {
  min-height: 200px;
  padding: 22px;
  border-right: var(--line);
  border-bottom: var(--line);
  background: var(--white);
}

.play-grid article:nth-child(2),
.play-grid article:nth-child(3) {
  background: var(--yellow);
}

.play-grid span {
  padding: 4px 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--peach);
  font-family: var(--sans);
  font-size: 0.55rem;
}

.play-grid h3 {
  margin: 35px 0 6px;
  font-family: var(--sans);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.play-grid p {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 0.88rem;
}

.round blockquote {
  margin: 34px 0;
  padding: 26px 30px;
  border: var(--line);
  border-radius: var(--round);
  background: var(--aqua);
  box-shadow: var(--shadow);
  transform: rotate(-0.5deg);
}

.round blockquote b {
  font-family: var(--sans);
  font-size: 0.6rem;
}

.round blockquote p {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.scoreline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.scoreline p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 12px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--sans);
  font-size: 0.57rem;
}

.scoreline span {
  font-size: 1rem;
}

.mission-card-sheet,
.grown-up {
  padding: 85px 0;
  border-bottom: var(--line);
  scroll-margin-top: 20px;
}

.mission-card-sheet > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 45px;
  border-top: var(--line);
  border-left: var(--line);
}

.mission-card-sheet article {
  min-height: 175px;
  padding: 22px;
  border-right: var(--line);
  border-bottom: var(--line);
}

.mission-card-sheet article:nth-child(3n + 1) {
  background: var(--pink);
}

.mission-card-sheet article span {
  font-family: var(--sans);
  font-size: 1.6rem;
}

.mission-card-sheet article h3 {
  margin: 24px 0 8px;
  font-family: var(--sans);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.mission-card-sheet article p {
  font-family: var(--serif);
}

.grown-up ol {
  padding: 0;
  margin: 45px 0 0;
  border-top: var(--line);
  list-style: none;
  counter-reset: check;
}

.grown-up li {
  display: grid;
  grid-template-columns: 60px 0.55fr 1fr;
  gap: 20px;
  align-items: center;
  min-height: 96px;
  border-right: var(--line);
  border-bottom: var(--line);
  border-left: var(--line);
  counter-increment: check;
}

.grown-up li::before {
  display: grid;
  height: 100%;
  place-items: center;
  border-right: var(--line);
  background: var(--lime);
  content: counter(check, decimal-leading-zero);
  font-family: var(--sans);
}

.grown-up li b {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.grown-up li span {
  padding-right: 15px;
  font-family: var(--serif);
}

.more-missions {
  padding: 90px clamp(25px, 7vw, 120px);
  border-top: var(--line);
  background: var(--pink);
}

.more-missions > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.more-missions a {
  min-height: 270px;
  padding: 24px;
  border: var(--line);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
}

.more-missions a b,
.more-missions a span {
  font-family: var(--sans);
  font-size: 0.6rem;
}

.more-missions h3 {
  margin: 55px 0 20px;
  font-family: var(--sans);
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
}

.info-hero,
.lost {
  min-height: 590px;
  padding: clamp(80px, 12vw, 180px) clamp(25px, 11vw, 180px);
  border-bottom: var(--line);
  background: var(--aqua);
}

.info-hero h1,
.lost h1 {
  font-size: clamp(4rem, 8vw, 8.6rem);
}

.info-copy {
  max-width: 980px;
  margin: 0 auto;
  padding: 85px 30px 140px;
}

.info-copy section {
  padding: 65px 0;
  border-bottom: var(--line);
}

.info-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
}

.info-copy section > p:last-child {
  max-width: 760px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.lost {
  background: var(--peach);
}

.lost > p:not(.kicker) {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.lost .start {
  margin-top: 25px;
}

footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 45px;
  padding: 80px clamp(24px, 6vw, 100px) 35px;
  border-top: var(--line);
  background: var(--ink);
  color: var(--white);
}

footer .brand {
  justify-content: start;
  padding: 0;
  border: 0;
}

footer section > p {
  max-width: 290px;
  color: #ccc;
  font-family: var(--serif);
  font-size: 0.82rem;
}

footer section > strong {
  display: block;
  margin-bottom: 16px;
  color: var(--yellow);
  font-family: var(--sans);
  font-size: 0.62rem;
}

footer section > a:not(.brand) {
  display: block;
  margin: 10px 0;
  font-size: 0.72rem;
  text-decoration: none;
}

footer section > a:hover {
  color: var(--lime);
}

.fineprint {
  grid-column: 1 / -1;
  margin-top: 35px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.62rem;
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 220px 1fr 100px;
  }

  .topbar nav a span {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.8fr;
  }

  .hero aside {
    display: none;
  }

  .quick-deck > div {
    grid-template-columns: repeat(3, 1fr);
  }

  .mission-body {
    grid-template-columns: 235px 1fr;
  }
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar .brand {
    justify-content: start;
    border: 0;
  }

  .topbar .club {
    display: none;
  }

  .menu {
    display: block;
    min-width: 100px;
  }

  .topbar nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    border-top: var(--line);
    border-bottom: var(--line);
    background: var(--paper);
  }

  .topbar nav.open {
    display: grid;
  }

  .topbar nav a {
    min-height: 78px;
    border-bottom: 2px solid var(--ink);
  }

  .topbar nav a span {
    display: block;
  }

  .hero,
  .mission-hero {
    grid-template-columns: 1fr;
  }

  .hero figure,
  .mission-hero figure {
    min-height: 540px;
    border: 0;
    border-top: var(--line);
  }

  .hello,
  .mission-list > header,
  .quick-deck > header,
  .badge-locker > header,
  .field-kit > header,
  .family-pact {
    grid-template-columns: 1fr;
  }

  .field-kit > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-body {
    grid-template-columns: 1fr;
  }

  .mission-body > aside {
    position: static;
    margin: 35px 25px 0;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  body {
    font-size: 16px;
  }

  .hero-copy,
  .mission-hero > div {
    padding: 70px 25px;
  }

  .hero h1,
  .mission-hero h1,
  .info-hero h1,
  .lost h1 {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .mission-card,
  .mission-card:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .mission-card .photo,
  .mission-card:nth-of-type(even) .photo {
    grid-column: 1;
    min-height: 330px;
  }

  .mission-card > div,
  .mission-card:nth-of-type(even) > div {
    grid-column: 1;
    grid-row: auto;
    padding: 45px 25px;
    border-top: var(--line);
    border-right: 0;
    border-left: 0;
  }

  .quick-deck > div,
  .badge-locker > div,
  .field-kit > div,
  .gallery-strip,
  .play-grid,
  .mission-card-sheet > div,
  .more-missions > div,
  footer {
    grid-template-columns: 1fr;
  }

  .quick-deck article {
    min-height: 220px;
  }

  .gallery-strip figure {
    height: 330px;
  }

  .mission-hero dl {
    grid-template-columns: 1fr;
  }

  .mission-hero dl div {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .mission-copy {
    padding-right: 25px;
    padding-left: 25px;
  }

  .round header {
    grid-template-columns: 1fr;
  }

  .scoreline {
    grid-template-columns: 1fr 1fr;
  }

  .grown-up li {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .grown-up li span {
    grid-column: 2;
    padding: 0 12px 16px 0;
  }

  footer .fineprint {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
