:root {
  --ink: #171715;
  --coal: #242422;
  --deep: #0d0e0e;
  --paper: #e7dfcf;
  --paper-light: #f3eee3;
  --paper-dark: #c9bda8;
  --rust: #8e3d27;
  --orange: #bd6337;
  --blue: #71818b;
  --wood: #5f4535;
  --muted: #746c61;
  --line: rgba(36, 29, 23, .24);
  --shadow: 0 22px 58px rgba(8, 8, 7, .24);
  --sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --serif: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  --mono: "Courier New", "Yu Gothic", monospace;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark light;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background: var(--deep);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ZIP内のindex.htmlだけを直接開いた場合に表示する案内。
   CSSが正常に読み込まれた通常表示では隠す。 */
.zip-open-warning {
  display: none !important;
}

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

a {
  color: inherit;
  text-underline-offset: .2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

:focus-visible {
  outline: 3px solid #e58a54;
  outline-offset: 4px;
}

::selection {
  background: var(--rust);
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: .75rem 1rem;
  background: #fff;
  color: #111;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

.section-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.paper-section {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(79, 51, 32, .04) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(rgba(79, 51, 32, .035) 1px, transparent 1px) 0 0 / 52px 52px,
    var(--paper);
}

.paper-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 15%, rgba(112, 76, 42, .08), transparent 26%),
    radial-gradient(circle at 86% 78%, rgba(69, 89, 98, .08), transparent 24%);
  mix-blend-mode: multiply;
}

.dark-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(71, 80, 84, .2), transparent 42%),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, .012) 3px 4px),
    var(--coal);
  color: #ebe4d7;
}

.dark-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image: url("../images/textures/film-grain.webp");
  background-size: 420px 420px;
  opacity: .045;
}

.section-code {
  margin: 0 0 1rem;
  color: var(--rust);
  font: 700 .74rem/1.2 var(--mono);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-code.light {
  color: #d88759;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 3.5rem;
}

.section-heading h2,
.section-copy h2,
.story-copy h2,
.making-copy h2,
.connection-copy h2,
.writing-copy h2 {
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 4rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.035em;
}

.section-heading > p:last-child,
.section-lead {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.2rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: transparent;
  color: inherit;
  font: 800 .78rem/1.3 var(--sans);
  letter-spacing: .08em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  border-color: var(--rust);
  background: var(--rust);
  color: #fff;
}

.btn.primary:hover {
  background: #6f2e1d;
}

.btn.secondary {
  border-color: rgba(255, 255, 255, .58);
  color: #f4eee2;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, .12);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(920px, 100svh);
  overflow: hidden;
  background: #111;
  color: #f3ecdf;
}

.hero-backdrop {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, .97) 0%, rgba(8, 8, 7, .78) 39%, rgba(8, 8, 7, .28) 68%, rgba(8, 8, 7, .56) 100%),
    linear-gradient(0deg, rgba(8, 8, 7, .95), transparent 46%);
  filter: contrast(1.04) sepia(.14);
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 77% 43%, transparent 0 22%, rgba(0, 0, 0, .17) 54%),
    linear-gradient(105deg, rgba(111, 62, 37, .1), transparent 50%, rgba(69, 85, 96, .1));
}

.film-grain {
  position: absolute;
  z-index: 2;
  inset: -20%;
  pointer-events: none;
  background: url("../images/textures/film-grain.webp") repeat;
  background-size: 320px;
  mix-blend-mode: overlay;
  opacity: .09;
  animation: grain-shift .7s steps(2) infinite;
}

.vhs-line {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 68%;
  height: 1px;
  pointer-events: none;
  background: rgba(205, 222, 226, .25);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .38);
  opacity: .38;
  animation: tracking 10s ease-in-out infinite;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(calc(100% - 48px), 1320px);
  min-height: 88px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .19);
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  text-decoration: none;
}

.site-brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.site-brand span {
  margin-top: .25rem;
  color: #bcb6aa;
  font: 700 .61rem/1.1 var(--mono);
  letter-spacing: .13em;
}

.global-nav {
  display: flex;
  gap: 1.7rem;
  align-items: center;
}

.global-nav a {
  position: relative;
  color: #e9e3d8;
  font: 700 .7rem/1 var(--sans);
  letter-spacing: .13em;
  text-decoration: none;
}

.global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.6rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--orange);
  transform-origin: left;
  transition: transform .2s ease;
}

.global-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .25);
  color: #fff;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  width: min(calc(100% - 48px), 1320px);
  min-height: calc(min(920px, 100svh) - 132px);
  margin-inline: auto;
  padding: clamp(72px, 11vh, 124px) 0 116px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .78fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .48);
}

.archive-stamp {
  display: inline-flex;
  margin: 0 0 1.4rem;
  padding: .38rem .52rem;
  border: 1px solid rgba(200, 99, 57, .86);
  transform: rotate(-1.4deg);
  color: #e1c9af;
  font: 700 .65rem/1 var(--mono);
  letter-spacing: .15em;
}

.archive-stamp span {
  margin-left: .55rem;
  color: #e17848;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: #c3b7a5;
  font: 700 .72rem/1.3 var(--mono);
  letter-spacing: .2em;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font: 900 clamp(2.55rem, 6.25vw, 6.55rem)/.9 var(--sans);
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero h1 span:first-child {
  color: #efe8dc;
}

.hero h1 span:last-child {
  color: #b95836;
}

.hero-jp {
  margin: 1rem 0 0;
  color: #d4cbbc;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.lead {
  margin: 1.7rem 0 2rem;
  color: #eee7da;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-photo {
  position: relative;
  align-self: center;
  margin: 0;
  transform: rotate(1.2deg);
  border: 10px solid rgba(229, 219, 202, .87);
  border-bottom-width: 54px;
  background: #d9d0c1;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .55);
}

.hero-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(65, 45, 31, .22);
  pointer-events: none;
  box-shadow: inset 0 0 42px rgba(61, 39, 23, .2);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 48%;
  filter: grayscale(1) contrast(1.05) sepia(.08);
}

.hero-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: -40px;
  left: 10px;
  display: flex;
  justify-content: space-between;
  color: #473c31;
  font: 700 .63rem/1 var(--mono);
  letter-spacing: .08em;
}

.hero-photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -27px;
  left: 42%;
  width: 95px;
  height: 42px;
  transform: rotate(-5deg);
  background: rgba(202, 188, 156, .65);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .22);
}

.year-reel {
  position: absolute;
  z-index: 6;
  right: max(24px, calc((100% - 1320px) / 2));
  bottom: 32px;
  display: grid;
  min-width: 238px;
  padding: .75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, .26);
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: end;
  background: rgba(10, 10, 9, .45);
  backdrop-filter: blur(4px);
}

.year-reel > span {
  color: #bdb5aa;
  font: 700 .58rem/1 var(--mono);
  letter-spacing: .18em;
}

.year-reel strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  justify-self: end;
  color: #dc7448;
  font: 800 2.5rem/.8 var(--mono);
  font-variant-numeric: tabular-nums;
}

.year-reel small {
  color: #817d75;
  font: 700 .51rem/1 var(--mono);
  letter-spacing: .1em;
}

.scroll-hint {
  position: absolute;
  z-index: 7;
  bottom: 31px;
  left: max(24px, calc((100% - 1320px) / 2));
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #c8c0b3;
  font: 700 .59rem/1 var(--mono);
  letter-spacing: .16em;
  text-decoration: none;
}

.scroll-hint i {
  width: 54px;
  height: 1px;
  background: currentColor;
}

.scroll-hint i::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-left: auto;
  transform: rotate(45deg) translate(-3px, -1px);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

/* Breadcrumb */
.breadcrumb {
  background: #121312;
  color: #b4aea4;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.breadcrumb ol {
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  min-height: 50px;
  margin: 0 auto;
  padding: .5rem 0;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem;
  list-style: none;
  font-size: .72rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: .45rem;
  color: #605d58;
}

.breadcrumb a {
  color: #d1c9bc;
}

/* Overview */
.overview-section {
  padding: clamp(78px, 10vw, 132px) 0;
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: clamp(48px, 8vw, 106px);
  align-items: start;
}

.section-copy > p:not(.section-code) {
  max-width: 760px;
  margin: 0 0 1.25rem;
}

.fact-file {
  position: relative;
  padding: 2rem;
  transform: rotate(.5deg);
  border: 1px solid rgba(59, 41, 28, .28);
  background:
    linear-gradient(rgba(73, 48, 30, .055) 1px, transparent 1px) 0 2.25rem / 100% 1.85rem,
    #ded2bd;
  box-shadow: var(--shadow);
}

.fact-file::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 38%;
  width: 108px;
  height: 32px;
  transform: rotate(-3deg);
  background: rgba(236, 221, 186, .8);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .17);
}

.file-label {
  margin: 0 0 1.1rem;
  color: var(--rust);
  font: 800 .67rem/1 var(--mono);
  letter-spacing: .14em;
}

.fact-file dl {
  margin: 0;
}

.fact-file dl > div {
  display: grid;
  padding: .68rem 0;
  border-bottom: 1px dashed rgba(55, 38, 25, .24);
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 1rem;
}

.fact-file dt {
  color: #66584a;
  font: 700 .69rem/1.4 var(--mono);
}

.fact-file dd {
  margin: 0;
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.55;
}

/* Why */
.why-section {
  padding: clamp(82px, 11vw, 146px) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.archive-card {
  position: relative;
  min-height: 280px;
  padding: 2rem;
  border: 1px solid rgba(226, 215, 196, .17);
  background: rgba(11, 12, 12, .36);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .28);
}

.archive-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 17px;
  width: 58px;
  height: 22px;
  border: 1px solid rgba(188, 95, 55, .44);
  transform: rotate(-4deg);
}

.archive-card > span {
  color: #d1774d;
  font: 700 .64rem/1 var(--mono);
  letter-spacing: .13em;
}

.archive-card h3 {
  margin: 1.05rem 0 .8rem;
  color: #f0e8da;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 500;
}

.archive-card p {
  margin: 0;
  color: #cfc7ba;
}

/* Timeline */
.timeline-section {
  padding: clamp(82px, 11vw, 145px) 0;
}

.board-visual {
  position: relative;
  margin: 0 0 -6.5rem;
  border: 12px solid #553f31;
  background: #604736;
  box-shadow: var(--shadow);
}

.board-visual img {
  width: 100%;
  max-height: 570px;
  object-fit: cover;
  filter: sepia(.12) saturate(.82) contrast(1.04);
}

.board-visual::after {
  content: "ARCHIVE / DO NOT DISCARD";
  position: absolute;
  right: 22px;
  bottom: 18px;
  padding: .45rem .6rem;
  border: 1px solid rgba(89, 33, 19, .66);
  transform: rotate(-2deg);
  background: rgba(223, 207, 175, .85);
  color: #743520;
  font: 700 .58rem/1 var(--mono);
  letter-spacing: .11em;
}

.comparison-board {
  position: relative;
  display: grid;
  width: min(94%, 1050px);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.compare-note {
  position: relative;
  padding: 2.2rem;
  background: #eee5d3;
  box-shadow: 0 16px 36px rgba(26, 17, 10, .24);
}

.compare-note.past {
  transform: rotate(-1.2deg);
}

.compare-note.present {
  transform: rotate(1deg);
  background: #d8d7cf;
}

.note-year {
  margin: 0;
  color: var(--rust);
  font: 900 1.35rem/1 var(--mono);
  letter-spacing: .08em;
}

.compare-note h3 {
  margin: .9rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.compare-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-note li {
  padding: .65rem 0;
  border-top: 1px dashed rgba(39, 32, 27, .24);
  font-size: .91rem;
}

.compare-note li strong {
  display: inline-block;
  width: 4.4em;
  color: #6c5b4e;
  font-size: .78rem;
}

.time-thread {
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-thread::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: #8d3e27;
}

.time-thread span {
  z-index: 1;
  padding: .55rem .2rem;
  transform: rotate(90deg);
  background: var(--paper);
  color: var(--rust);
  font: 800 .58rem/1 var(--mono);
  letter-spacing: .12em;
  white-space: nowrap;
}

.interpretation {
  max-width: 900px;
  margin: 3.4rem auto 0;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--rust);
  background: rgba(255, 255, 255, .3);
  font-size: .92rem;
}

/* Making */
.making-section {
  padding: clamp(84px, 11vw, 148px) 0;
}

.making-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .83fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.making-copy p:not(.section-code) {
  color: #d2cabe;
}

.making-assets {
  position: relative;
  min-height: 650px;
}

.making-assets figure {
  margin: 0;
}

.photo-polaroid {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 78%;
  padding: 9px 9px 42px;
  transform: rotate(-3deg);
  background: #e6dccb;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .48);
}

.photo-polaroid img {
  width: 100%;
  aspect-ratio: 740 / 414;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.photo-polaroid figcaption,
.cassette-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 13px;
  left: 12px;
  color: #4e4238;
  font: 700 .57rem/1 var(--mono);
  letter-spacing: .08em;
}

.cassette-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 83%;
  padding: 8px 8px 42px;
  transform: rotate(3deg);
  background: #c8bdab;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .5);
}

.cassette-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.72) sepia(.18);
}

/* Ads */
.ad-section {
  width: 100%;
  padding: 28px 20px;
  overflow: hidden;
  background: #e8e1d5;
  text-align: center;
}

.ad-label {
  margin: 0 0 8px;
  color: #777168;
  font-size: .63rem;
}

.ad-placeholder {
  width: min(100%, 970px);
  min-height: 90px;
  margin-inline: auto;
  overflow: hidden;
}

.adsbygoogle {
  max-width: 100%;
}

.ad-mobile {
  display: none;
}

/* Featured */
.featured-section {
  padding: clamp(85px, 11vw, 148px) 0;
}

.track-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.track-card {
  position: relative;
  min-height: 330px;
  padding: 1.6rem 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(51, 38, 28, .2);
  background: rgba(244, 237, 224, .72);
  box-shadow: 0 10px 24px rgba(49, 34, 23, .08);
}

.track-card:nth-child(3n+2) {
  background: rgba(218, 213, 199, .76);
}

.track-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -25px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(142, 61, 39, .2);
  border-radius: 50%;
}

.track-no {
  color: var(--rust);
  font: 900 .86rem/1 var(--mono);
}

.track-card h3 {
  margin: 1rem 0 .4rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.12;
}

.track-role {
  margin: 0 0 1rem;
  color: #796b5d;
  font: 700 .58rem/1.3 var(--mono);
  letter-spacing: .1em;
}

.track-card > p:last-child {
  margin: 0;
  font-size: .89rem;
  line-height: 1.75;
}

/* Story sections */
.story-section {
  padding: clamp(88px, 12vw, 160px) 0;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(200px, .45fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.story-number {
  position: sticky;
  top: 30px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, .13);
  color: rgba(224, 115, 71, .82);
  font: 900 clamp(2rem, 4vw, 3.8rem)/1.02 var(--mono);
  text-align: center;
  text-shadow: 5px 5px 0 rgba(0, 0, 0, .3);
}

.story-copy {
  max-width: 780px;
}

.story-copy h3 {
  margin: 2rem 0 .55rem;
  color: #e3b18f;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.story-copy p:not(.section-code) {
  color: #d4ccbf;
}

/* Headlights */
.headlights-section {
  padding: clamp(88px, 12vw, 158px) 0;
}

.headlights-layout {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
}

.memory-photo {
  position: relative;
  margin: 0;
  padding: 10px 10px 52px;
  transform: rotate(-1.5deg);
  background: #d7cbb8;
  box-shadow: var(--shadow);
}

.memory-photo::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 36%;
  width: 108px;
  height: 36px;
  transform: rotate(5deg);
  background: rgba(220, 205, 172, .72);
}

.memory-photo img {
  width: 100%;
  aspect-ratio: 718 / 540;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
}

.memory-photo figcaption {
  position: absolute;
  bottom: 17px;
  left: 18px;
  color: #625346;
  font: 700 .61rem/1 var(--mono);
  letter-spacing: .1em;
}

.headlights-section .story-copy p:not(.section-code) {
  color: var(--ink);
}

.margin-note {
  margin-top: 1.7rem !important;
  padding: .8rem 1rem;
  border-left: 3px solid var(--rust);
  background: rgba(255, 255, 255, .35);
  font-size: .88rem;
}

/* Rap God */
.rapgod-section {
  padding: clamp(88px, 12vw, 156px) 0;
}

.rapgod-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(290px, .65fr);
  gap: clamp(44px, 8vw, 105px);
  align-items: center;
}

.rapgod-copy > p:not(.section-code) {
  color: #d5cdc0;
}

.rap-data {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rap-data div {
  padding: 1.25rem .85rem;
  text-align: center;
}

.rap-data div + div {
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.rap-data strong {
  display: block;
  color: #de7549;
  font: 900 clamp(1.5rem, 3vw, 2.5rem)/1 var(--mono);
}

.rap-data span {
  display: block;
  margin-top: .45rem;
  color: #aaa39a;
  font-size: .68rem;
}

.rapgod-photo {
  position: relative;
  margin: 0;
  padding: 9px 9px 46px;
  transform: rotate(1.8deg);
  background: #d7d1c7;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
}

.rapgod-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
}

.rapgod-photo figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  color: #594d43;
  font: 700 .59rem/1 var(--mono);
  letter-spacing: .1em;
}

/* Tracklist */
.tracklist-section {
  padding: clamp(84px, 11vw, 150px) 0;
}

.tracklist-head {
  display: grid;
  padding: .65rem 1rem;
  border-bottom: 2px solid #2e2924;
  grid-template-columns: minmax(270px, .8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  color: #74695f;
  font: 700 .62rem/1 var(--mono);
  letter-spacing: .14em;
}

.tracklist {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.tracklist li {
  display: grid;
  min-width: 0;
  padding: 1rem;
  border-bottom: 1px solid rgba(42, 34, 27, .18);
  grid-template-columns: minmax(270px, .8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
}

.tracklist li:nth-child(even) {
  background: rgba(255, 255, 255, .18);
}

.track-title {
  display: grid;
  min-width: 0;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  gap: .65rem;
  align-items: center;
}

.track-title > span {
  color: var(--rust);
  font: 800 .8rem/1 var(--mono);
}

.track-title strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.3;
}

.track-title em {
  padding: .27rem .38rem;
  border: 1px solid var(--rust);
  color: var(--rust);
  font: 800 .52rem/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.track-meta {
  min-width: 0;
  color: #51483f;
  font-size: .82rem;
  line-height: 1.55;
}

.track-meta b {
  margin-right: .25rem;
  color: #79614e;
  font: 700 .58rem/1 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.track-meta small {
  display: block;
  margin-top: .32rem;
  color: #62594f;
  font-size: .78rem;
}

.deluxe-divider {
  display: flex;
  margin-top: 3rem;
  padding: 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #2b2c2b;
  color: #eee7db;
}

.deluxe-divider span {
  font: 700 .64rem/1.3 var(--mono);
  letter-spacing: .12em;
}

.deluxe-divider strong {
  color: #d47b50;
  font: 700 .7rem/1.3 var(--mono);
}

.deluxe-list {
  background: rgba(104, 118, 125, .1);
}

.tracklist-note {
  margin: 1.5rem 0 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--blue);
  background: rgba(255, 255, 255, .26);
  color: #5a5148;
  font-size: .82rem;
}

/* Contributors */
.contributors-section {
  padding: clamp(84px, 11vw, 150px) 0;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.person-card {
  min-height: 235px;
  padding: 1.5rem;
  border-top: 2px solid rgba(205, 111, 69, .58);
  background: rgba(10, 11, 11, .38);
}

.person-card h3 {
  margin: 0;
  color: #eee6d9;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.person-role {
  margin: .5rem 0 1rem;
  color: #d3784e;
  font: 700 .58rem/1.3 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.person-card p:last-child {
  margin: 0;
  color: #c9c1b6;
  font-size: .88rem;
}

.person-note {
  margin: 1.2rem 0 0;
  padding: 1.15rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #c8c0b4;
  font-size: .86rem;
}

/* Reception */
.reception-section {
  padding: clamp(84px, 11vw, 150px) 0;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.result-card {
  min-height: 270px;
  padding: 1.5rem;
  border: 1px solid rgba(52, 39, 29, .21);
  background: rgba(244, 238, 225, .7);
}

.result-card > span {
  display: block;
  min-height: 2.4em;
  color: #76695d;
  font: 700 .61rem/1.3 var(--mono);
  letter-spacing: .1em;
}

.result-card > strong {
  display: block;
  margin: .8rem 0 1.1rem;
  color: var(--rust);
  font: 900 clamp(2.6rem, 5vw, 4.6rem)/.9 var(--mono);
}

.result-card > strong small {
  font-size: .35em;
}

.result-card p {
  margin: 0;
  font-size: .85rem;
}

.reception-copy {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
}

.reception-copy h3 {
  margin: 0 0 .8rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.reception-copy p {
  margin: 0;
  font-size: .91rem;
}

/* Connection */
.connection-section {
  padding: clamp(86px, 12vw, 158px) 0;
}

.connection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .68fr);
  gap: clamp(48px, 8vw, 105px);
  align-items: center;
}

.connection-list {
  margin: 2rem 0 0;
}

.connection-list > div {
  display: grid;
  padding: .9rem 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1rem;
}

.connection-list dt {
  color: #dc7e52;
  font: 700 .72rem/1.6 var(--mono);
}

.connection-list dd {
  margin: 0;
  color: #cfc7bb;
  font-size: .9rem;
}

.connection-photo {
  position: relative;
  margin: 0;
  padding: 8px 8px 58px;
  transform: rotate(1.6deg);
  background: #d9d0c0;
  box-shadow: 0 32px 68px rgba(0, 0, 0, .52);
}

.connection-photo img {
  width: 100%;
  aspect-ratio: 718 / 540;
  object-fit: cover;
  filter: grayscale(1) contrast(1.07);
}

.connection-photo figcaption {
  position: absolute;
  right: 15px;
  bottom: 16px;
  left: 15px;
  color: #5c5045;
  font: 700 .56rem/1.35 var(--mono);
  letter-spacing: .08em;
}

/* Writing */
.writing-section {
  padding: clamp(84px, 11vw, 146px) 0;
}

.writing-layout {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.lyrics-paper {
  position: relative;
  margin: 0;
  padding: 9px 9px 48px;
  transform: rotate(-1.2deg);
  background: #d6c9b4;
  box-shadow: var(--shadow);
}

.lyrics-paper img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.78) sepia(.12);
}

.lyrics-paper figcaption {
  position: absolute;
  bottom: 15px;
  left: 16px;
  color: #675748;
  font: 700 .6rem/1 var(--mono);
  letter-spacing: .1em;
}

.writing-copy p:not(.section-code) {
  margin: 0 0 1.2rem;
}

/* Summary */
.summary-section {
  position: relative;
  padding: clamp(90px, 13vw, 180px) 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 12, 11, .96), rgba(12, 12, 11, .68));
  color: #eee6d9;
}

.summary-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../images/textures/film-grain.webp") repeat;
  opacity: .055;
}

.summary-box {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding-left: clamp(0px, 4vw, 50px);
  border-left: 1px solid rgba(220, 119, 74, .65);
}

.summary-box h2 {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
}

.summary-box > p:last-child {
  margin: 0;
  color: #d5cdc0;
  font-size: 1.02rem;
}

/* Listen */
.listen-section {
  padding: clamp(84px, 11vw, 148px) 0;
}

.streaming-links {
  display: grid;
  margin-bottom: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-link {
  display: grid;
  min-height: 150px;
  padding: 1.4rem;
  border: 1px solid rgba(50, 40, 31, .22);
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  background: #2e2f2e;
  color: #eee7dc;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.service-link:hover {
  transform: translateY(-3px);
  background: #1e1f1e;
}

.service-link > span {
  color: #aaa49b;
  font: 700 .57rem/1 var(--mono);
  letter-spacing: .1em;
}

.service-link strong {
  align-self: end;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.service-link small {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: #d17a4e;
  font-size: .72rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.shop-card {
  padding: 2rem;
  border: 1px solid rgba(50, 40, 31, .22);
  background: rgba(245, 238, 225, .68);
}

.shop-kicker {
  margin: 0 0 .7rem;
  color: #7e7063;
  font: 700 .59rem/1 var(--mono);
  letter-spacing: .12em;
}

.shop-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.shop-card p:not(.shop-kicker) {
  margin: 1rem 0 1.4rem;
  font-size: .9rem;
}

.amazon-btn {
  border-color: #5b4d3f;
  color: #40352c;
}

.rakuten-logo,
.rakuten-btn {
  color: #8b352c;
}

.affiliate-notice {
  margin: 1rem 0 0;
  color: #6c6258;
  font-size: .72rem;
}

/* FAQ */
.faq-section {
  padding: clamp(84px, 11vw, 148px) 0;
}

.faq-section h2 {
  max-width: 820px;
  margin: 0 0 2.5rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
}

.faq-list {
  max-width: 920px;
}

.faq-list details {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.faq-list summary {
  position: relative;
  padding: 1.25rem 3rem 1.25rem 0;
  color: #eee6da;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: .4rem;
  transform: translateY(-50%);
  color: #d77a4e;
  font: 400 1.5rem/1 var(--mono);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 790px;
  margin: -.35rem 0 1.45rem;
  color: #c8c1b6;
}

/* Resources */
.resource-section {
  padding: clamp(84px, 11vw, 148px) 0;
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: start;
}

.resource-layout h2 {
  margin: 0 0 1.7rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 500;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.related-links a {
  display: block;
  min-height: 145px;
  padding: 1.15rem;
  border: 1px solid rgba(48, 37, 28, .2);
  background: rgba(255, 255, 255, .23);
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.related-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .52);
}

.related-links strong {
  display: block;
  margin-bottom: .45rem;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.35;
}

.related-links span {
  display: block;
  color: #665d54;
  font-size: .78rem;
  line-height: 1.6;
}

.references {
  padding: 1.6rem;
  border: 1px solid rgba(49, 38, 29, .22);
  background: rgba(213, 202, 183, .55);
}

.references ol {
  margin: 0;
  padding-left: 1.25rem;
}

.references li {
  margin: .55rem 0;
  color: #594f46;
  font-size: .78rem;
  line-height: 1.5;
}

.references > p:last-child {
  margin: 1.1rem 0 0;
  padding-top: 1rem;
  border-top: 1px dashed rgba(52, 40, 31, .24);
  color: #62584f;
  font-size: .75rem;
}

/* Bottom navigation */
.album-navigation {
  display: grid;
  background: #181918;
  color: #e9e2d7;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.album-link {
  display: flex;
  min-width: 0;
  min-height: 190px;
  padding: 2rem;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
  text-decoration: none;
}

a.album-link {
  transition: background-color .2s ease;
}

a.album-link:hover {
  background: #272926;
}

.album-link.current {
  background: #2d2b27;
}

.album-link > span {
  color: #a7a097;
  font: 700 .58rem/1 var(--mono);
  letter-spacing: .12em;
}

.album-link strong {
  min-width: 0;
  margin: .55rem 0 .45rem;
  overflow-wrap: anywhere;
  color: #f0e9de;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.25;
}

.album-link small {
  color: #ba6a45;
}

.share-section {
  padding: 64px 20px 45px;
  background: #e4dccd;
  text-align: center;
}

.share-section h2 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.share-actions {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.copy-btn,
.x-share {
  min-width: 160px;
  border-color: #4a4037;
  color: #352d27;
}

.copy-status {
  min-height: 1.4em;
  margin: .7rem 0 0;
  color: #6f3a27;
  font-size: .76rem;
}

.home-actions {
  padding: 0 20px 70px;
  background: #e4dccd;
  text-align: center;
}

.site-footer {
  padding: 36px max(20px, calc((100% - var(--max)) / 2));
  background: #0f1010;
  color: #928d85;
  font-size: .72rem;
}

.site-footer > div {
  display: flex;
  margin-bottom: 1.1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  color: #e3dcd2;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
}

.to-top {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .25);
  place-items: center;
  background: rgba(20, 20, 19, .86);
  color: #e9e0d3;
  text-decoration: none;
  backdrop-filter: blur(5px);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes grain-shift {
  0% { transform: translate3d(-1.5%, -1%, 0); }
  33% { transform: translate3d(1%, .5%, 0); }
  66% { transform: translate3d(-.4%, 1.3%, 0); }
  100% { transform: translate3d(1.2%, -.6%, 0); }
}

@keyframes tracking {
  0%, 100% { transform: translateY(-18px); opacity: .15; }
  45% { transform: translateY(25px); opacity: .4; }
  48% { transform: translateY(29px); opacity: .15; }
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(290px, .66fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
  }

  .track-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header,
  .hero-inner {
    width: calc(100% - 32px);
  }

  .site-header {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 12;
  }

  .global-nav {
    position: absolute;
    z-index: 11;
    top: 62px;
    right: 0;
    display: none;
    width: min(310px, calc(100% - 20px));
    padding: .7rem;
    border: 1px solid rgba(255, 255, 255, .18);
    flex-direction: column;
    align-items: stretch;
    background: rgba(15, 16, 15, .98);
    box-shadow: 0 20px 46px rgba(0, 0, 0, .4);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    min-height: 44px;
    padding: .9rem;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, .94), rgba(8, 8, 7, .66)),
      linear-gradient(0deg, rgba(8, 8, 7, .96), transparent 55%);
  }

  .hero-inner {
    min-height: 0;
    padding: 70px 0 136px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(3rem, 10vw, 5.4rem);
  }

  .hero-photo {
    width: min(74%, 500px);
    margin: -15px 0 0 auto;
  }

  .overview-layout,
  .making-layout,
  .headlights-layout,
  .rapgod-layout,
  .connection-layout,
  .writing-layout,
  .resource-layout {
    grid-template-columns: 1fr;
  }

  .fact-file {
    max-width: 620px;
  }

  .board-visual {
    margin-bottom: -3.5rem;
  }

  .comparison-board {
    width: 94%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .time-thread {
    min-height: 52px;
  }

  .time-thread::before {
    top: auto;
    right: 14px;
    bottom: auto;
    left: 14px;
    width: auto;
    height: 1px;
  }

  .time-thread span {
    transform: none;
  }

  .making-assets {
    width: min(100%, 670px);
    min-height: 670px;
    margin-inline: auto;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-number {
    position: static;
    width: min(100%, 380px);
    padding: 1rem;
    font-size: 1.6rem;
  }

  .story-number br {
    display: none;
  }

  .headlights-layout .memory-photo,
  .rapgod-photo,
  .connection-photo,
  .lyrics-paper {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .people-grid,
  .reception-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ad-mobile {
    display: block;
  }

  .ad-desktop {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
    line-height: 1.82;
  }

  .section-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header,
  .hero-inner {
    width: calc(100% - 28px);
  }

  .site-brand strong {
    font-size: .94rem;
  }

  .site-brand span {
    font-size: .53rem;
  }

  .hero-inner {
    padding-top: 56px;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 4.2rem);
    line-height: .94;
    letter-spacing: -.065em;
  }

  .hero-jp {
    font-size: .78rem;
    line-height: 1.6;
  }

  .lead br {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-photo {
    width: 86%;
    margin-inline: auto;
  }

  .hero-photo figcaption {
    font-size: .52rem;
  }

  .year-reel {
    right: 14px;
    bottom: 27px;
    min-width: 176px;
  }

  .year-reel strong {
    font-size: 2rem;
  }

  .scroll-hint {
    left: 14px;
    bottom: 30px;
  }

  .scroll-hint span {
    display: none;
  }

  .breadcrumb ol {
    width: calc(100% - 28px);
    font-size: .66rem;
  }

  .section-heading {
    margin-bottom: 2.3rem;
  }

  .why-grid,
  .track-cards,
  .people-grid,
  .result-grid,
  .reception-copy,
  .streaming-links,
  .shop-grid,
  .related-links {
    grid-template-columns: 1fr;
  }

  .archive-card,
  .track-card,
  .person-card,
  .result-card {
    min-height: 0;
  }

  .fact-file {
    padding: 1.4rem;
  }

  .fact-file dl > div {
    grid-template-columns: 1fr;
    gap: .15rem;
  }

  .board-visual {
    margin-bottom: 1.2rem;
    border-width: 7px;
  }

  .board-visual::after {
    right: 8px;
    bottom: 8px;
  }

  .comparison-board {
    width: 100%;
  }

  .compare-note {
    padding: 1.5rem;
  }

  .making-assets {
    min-height: 500px;
  }

  .photo-polaroid {
    width: 86%;
  }

  .cassette-photo {
    width: 88%;
  }

  .rap-data {
    grid-template-columns: 1fr;
  }

  .rap-data div + div {
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-left: 0;
  }

  .tracklist-head {
    display: none;
  }

  .tracklist li {
    padding: 1.1rem .35rem;
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  .track-title {
    grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  }

  .track-meta {
    padding-left: 2.85rem;
  }

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

  .connection-list > div {
    grid-template-columns: 1fr;
    gap: .3rem;
  }

  .connection-list dt {
    font-size: .68rem;
  }

  .service-link {
    min-height: 130px;
  }

  .album-navigation {
    grid-template-columns: 1fr;
  }

  .album-link {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .site-footer > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(2.28rem, 12.8vw, 3.25rem);
    letter-spacing: -.06em;
  }

  .archive-stamp {
    font-size: .55rem;
  }

  .eyebrow {
    font-size: .6rem;
  }

  .hero-photo {
    width: 94%;
  }

  .track-title {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .track-title em {
    grid-column: 2;
    justify-self: start;
  }

  .track-meta {
    padding-left: 2.55rem;
  }

  .share-actions .btn {
    width: 100%;
  }

  .to-top {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .film-grain,
  .vhs-line {
    animation: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .film-grain,
  .vhs-line,
  .menu-toggle,
  .global-nav,
  .ad-section,
  .share-section,
  .to-top {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .hero,
  .dark-section {
    background: #222 !important;
  }
}
