:root {
  --black: #11120f;
  --cream: #f1eee3;
  --lime: #d7ff36;
  --orange: #ff4a22;
  --grey: #9b9c92;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
}
.hero {
  min-height: 100vh;
  padding: 24px clamp(20px, 5vw, 76px) 40px;
  display: flex;
  flex-direction: column;
  border-bottom: 5px solid var(--black);
  background: linear-gradient(
    110deg,
    transparent 0 67%,
    rgba(215, 255, 54, 0.5) 67% 100%
  );
}
nav,
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid;
  padding-bottom: 16px;
  font: 700 11px monospace;
  letter-spacing: 0.14em;
}
.brand {
  font: 32px/1 "Bebas Neue";
  letter-spacing: 0.06em;
  color: inherit;
  text-decoration: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 5vw;
  align-items: end;
  margin: auto 0;
}
.kicker,
.section-label {
  font: 700 11px/1.4 monospace;
  letter-spacing: 0.16em;
  color: #254900;
}
.hero h1 {
  font-size: clamp(58px, 9vw, 140px);
  line-height: 0.91;
  letter-spacing: -0.055em;
  margin: 24px 0;
  font-weight: 900;
}
.hero h1 em {
  font: 400 1.22em/0.7 "Bebas Neue";
  color: var(--orange);
}
.hero aside {
  border-left: 2px solid;
  padding: 0 0 0 22px;
  font-weight: 700;
  line-height: 1.8;
}
.hero dl {
  display: flex;
  margin-top: 34px;
}
.hero dl div {
  min-width: 110px;
}
.hero dt {
  font: 9px monospace;
}
.hero dd {
  font: 54px/1 "Bebas Neue";
  margin: 5px 0;
}
.scroll {
  color: inherit;
  text-decoration: none;
  font: 700 10px monospace;
  letter-spacing: 0.1em;
}
.intro,
.takeaways {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 34px;
  padding: 100px clamp(20px, 5vw, 76px);
  border-bottom: 2px solid;
}
.big-num,
.collection-head > span {
  font: 70px/1 "Bebas Neue";
  color: var(--orange);
}
h2 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 10px 0;
}
.intro-copy {
  font-size: 17px;
  line-height: 2;
  margin: 32px 0;
}
.collection {
  padding: 80px clamp(20px, 5vw, 76px) 110px;
}
.collection-head {
  display: grid;
  grid-template-columns: 90px 1fr;
  margin-bottom: 50px;
}
.collection-head p:last-child {
  max-width: 600px;
  line-height: 1.8;
}
.list {
  border-top: 3px solid;
}
.pick {
  display: grid;
  grid-template-columns: 75px minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid;
}
.pick-no {
  font: 54px/1 "Bebas Neue";
  color: var(--orange);
}
.tag {
  font: 700 9px monospace;
  letter-spacing: 0.14em;
  color: #254900;
  margin: 0 0 8px;
}
.pick h3 {
  font-size: 25px;
  line-height: 1.2;
  margin: 0;
}
.summary,
.pick-note p {
  line-height: 1.8;
  font-size: 14px;
}
.pick-note {
  border-left: 3px solid var(--lime);
  padding-left: 20px;
}
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.links a,
.about a {
  font: 700 10px monospace;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid;
}
.inverse {
  background: var(--black);
  color: var(--cream);
}
.inverse .section-label,
.inverse .tag {
  color: var(--lime);
}
.inverse .pick-note {
  border-color: var(--orange);
}
.takeaways ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.takeaways li {
  border-top: 1px solid;
  padding: 20px 0;
}
.takeaways strong {
  font-size: 22px;
}
.takeaways p {
  margin: 8px 0;
  line-height: 1.7;
}
.about {
  margin: 80px clamp(20px, 5vw, 76px);
  padding: 38px;
  border: 2px solid;
  max-width: 850px;
}
.about p {
  line-height: 1.9;
  font-size: 13px;
}
footer {
  padding: 34px clamp(20px, 5vw, 76px);
  border-top: 5px solid;
  border-bottom: 0;
}
footer p {
  text-align: right;
  font: 11px/1.5 monospace;
}
@media (max-width: 760px) {
  .hero {
    min-height: auto;
    background: linear-gradient(
      160deg,
      transparent 0 80%,
      rgba(215, 255, 54, 0.55) 80%
    );
    padding-bottom: 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    margin: 80px 0 50px;
  }
  .hero aside {
    margin-top: 25px;
  }
  .intro,
  .takeaways {
    grid-template-columns: 45px 1fr;
    padding-block: 65px;
  }
  .intro-copy,
  .takeaways ol {
    grid-column: 2;
  }
  .collection {
    padding-block: 60px;
  }
  .collection-head {
    grid-template-columns: 45px 1fr;
  }
  .collection-head > span,
  .big-num {
    font-size: 42px;
  }
  .pick {
    grid-template-columns: 42px 1fr;
  }
  .pick-note {
    grid-column: 2;
  }
  .hero h1 {
    font-size: 46px;
    line-height: 1.15;
  }
  .hero h1 .desktop-break {
    display: none;
  }
  h2 {
    font-size: 42px;
  }
  .about {
    margin: 50px 20px;
    padding: 24px;
  }
  footer {
    align-items: flex-end;
  }
  footer p {
    font-size: 8px;
  }
}
