:root {
  --bg: #fff6df;
  --ink: #121212;
  --blue: #49a8ff;
  --yellow: #ffd43b;
  --orange: #ff7a2f;
  --shadow: rgba(18, 18, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  padding: 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 900;
}

.brand,
.nav-links a,
.button {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fffdf6;
  box-shadow: 5px 5px 0 var(--ink);
}

.brand,
.nav-links a {
  min-height: 44px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.86fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.copy {
  padding: 46px 0;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

h1 {
  margin: 0;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: clamp(82px, 14vw, 190px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 7px 7px 0 var(--yellow);
}

.line {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.subline {
  margin: 14px 0 0;
  font-size: clamp(20px, 2.5vw, 31px);
  font-weight: 900;
  color: var(--orange);
}

.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  min-height: 58px;
  max-width: 100%;
  padding: 14px 20px;
  cursor: pointer;
  font: 900 clamp(17px, 2vw, 24px) Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.primary {
  background: var(--orange);
}

.secondary {
  background: #fffdf6;
  overflow-wrap: anywhere;
}

.mascot-card {
  position: relative;
  margin: 0;
  justify-self: center;
  width: min(500px, 100%);
  aspect-ratio: 1;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: #fffdf6;
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(2deg);
}

.mascot-card::before {
  content: "?";
  position: absolute;
  top: -24px;
  right: -20px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  z-index: 1;
}

.mascot-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.strip {
  width: min(1180px, 100%);
  margin: 22px auto 0;
  padding: 14px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.strip span {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 850px) {
  .page {
    min-height: auto;
    overflow: visible;
  }

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

  .copy {
    padding-bottom: 10px;
  }

  .mascot-card {
    width: min(430px, 100%);
  }

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

@media (max-width: 560px) {
  .page {
    padding: 14px;
  }

  .topbar {
    align-items: flex-start;
  }

  .nav-links {
    gap: 8px;
  }

  .brand,
  .nav-links a {
    min-height: 38px;
    padding: 8px 10px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .mascot-card::before {
    width: 54px;
    height: 54px;
    font-size: 34px;
  }
}
