:root {
  --ink: #080b10;
  --ink-soft: #0d121a;
  --charcoal: #141920;
  --steel: #1b2430;
  --line: #303944;
  --muted: #9ba5b2;
  --paper: #eef1f4;
  --white: #fff;
  --red: #c5122d;
  --red-bright: #e11c3c;
  --blue: #101b2b;
  --header-h: 68px;
  --content: 1180px;
  --wide: 1440px;
  --pad: clamp(20px, 4vw, 64px);
  --section-y: clamp(76px, 10vw, 148px);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, "Helvetica Neue", Arial, "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", sans-serif;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 22px);
}

body {
  margin: 0;
  min-width: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 5%, rgba(38, 57, 79, .18), transparent 32rem),
    var(--ink);
  font-family: var(--sans);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.85;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--red);
}

::selection {
  color: var(--white);
  background: var(--red);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-h);
  padding: 10px max(18px, 3vw);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(to bottom, rgba(2, 4, 8, .78), rgba(2, 4, 8, .36));
  backdrop-filter: blur(12px);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(5, 7, 11, .96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  text-decoration: none;
}

.brand-mark {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: .045em;
}

.brand-mark span,
.footer-brand span {
  color: var(--red-bright);
}

.brand small {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.75vw, 28px);
}

.header-nav a {
  position: relative;
  display: grid;
  min-height: 44px;
  place-items: center;
  color: #d7dce2;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  letter-spacing: .04em;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.header-nav a:hover::after,
.header-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(8, 11, 16, .75);
  cursor: pointer;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: min(900px, 100svh);
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
  background: #0c1118;
}

.no-js [data-hero-media] {
  display: none;
}

.hero-media img {
  max-width: none;
  object-fit: cover;
  object-position: 62% 48%;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.025);
  will-change: transform;
  animation: hero-enter 1.8s cubic-bezier(.2, .75, .24, 1) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 6, 11, .96) 0%, rgba(3, 7, 13, .83) 27%, rgba(3, 7, 13, .44) 50%, rgba(3, 7, 13, .08) 72%),
    linear-gradient(0deg, rgba(4, 7, 11, .82) 0%, transparent 35%, rgba(4, 7, 11, .15) 70%);
}

html[data-hero-variant="studio"] .hero-media {
  background: #d8dadd;
}

html[data-hero-variant="studio"] .hero-media img {
  object-position: 50% 0;
}

html[data-hero-variant="studio"] .hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 6, 11, .98) 0%, rgba(3, 7, 13, .9) 22%, rgba(3, 7, 13, .62) 36%, rgba(3, 7, 13, .24) 50%, rgba(3, 7, 13, .08) 72%),
    linear-gradient(0deg, rgba(4, 7, 11, .88) 0%, rgba(4, 7, 11, .48) 25%, rgba(4, 7, 11, .08) 55%, rgba(4, 7, 11, .1) 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .11;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, .12) 3px 4px);
  mix-blend-mode: overlay;
}

.hero-content {
  width: 100%;
  max-width: min(42vw, 680px);
  min-width: 0;
  margin-left: max(22px, calc((100vw - var(--content)) / 2));
  padding: calc(var(--header-h) + 36px) 0 90px;
  animation: copy-enter 1s .2s ease both;
}

.hero-kicker {
  margin: 0 0 18px;
  color: #cad0d7;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .24em;
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(78px, 9vw, 142px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.045em;
  text-shadow: 0 8px 38px rgba(0, 0, 0, .46);
}

.hero-title-word {
  display: block;
  max-width: 100%;
  color: var(--white);
  white-space: nowrap;
}

.hero h1 .hero-title-accent {
  color: var(--red-bright);
}

.hero h1 .hero-title-context {
  display: block;
  margin-top: 20px;
  color: #d8dde3;
  font-family: var(--sans);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .08em;
  white-space: normal;
  text-shadow: 0 3px 20px rgba(0, 0, 0, .72);
}

.hero-lead {
  max-width: 620px;
  margin: clamp(22px, 3vw, 36px) 0 0;
  color: #e1e5ea;
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 650;
  line-height: 1.9;
}

.hero-actions,
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 26px rgba(197, 18, 45, .22);
}

.button-primary:hover {
  background: var(--red-bright);
}

.button-ghost {
  border-color: #818995;
  color: var(--white);
  background: rgba(7, 10, 15, .34);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.road-line {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 20vh;
  background: linear-gradient(to bottom, transparent, rgba(197, 18, 45, .65));
  transform: rotate(18deg);
  transform-origin: bottom;
}

.road-line span {
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 5px;
  height: 48%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(197, 18, 45, .5);
}

.scroll-cue {
  position: absolute;
  right: max(20px, 3vw);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: #bec5cc;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .24em;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, .28);
}

.scroll-cue i::after {
  position: absolute;
  top: -50%;
  left: 0;
  width: 1px;
  height: 50%;
  content: "";
  background: var(--red-bright);
  animation: scroll-line 1.8s ease-in-out infinite;
}

.breadcrumb {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #070a0e;
}

.breadcrumb ol {
  display: flex;
  width: min(calc(100% - (var(--pad) * 2)), var(--content));
  min-height: 54px;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  gap: 10px;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 10px;
  content: "/";
  color: #505865;
}

.breadcrumb a {
  min-height: 44px;
  text-decoration: none;
}

.section {
  position: relative;
  padding: var(--section-y) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.section-inner {
  width: min(calc(100% - (var(--pad) * 2)), var(--content));
  margin: 0 auto;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(25, 32, 42, .66), transparent 36%),
    #090c11;
}

.section-blue {
  background:
    radial-gradient(circle at 90% 10%, rgba(54, 78, 110, .18), transparent 32rem),
    linear-gradient(135deg, #0a1019, #101a27 62%, #0b1018);
}

.section-concrete {
  background-color: #11151a;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, .025), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 7px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.section-heading.compact {
  margin-bottom: clamp(34px, 4.5vw, 54px);
}

.section-label {
  margin: 0 0 14px;
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .23em;
}

.section-heading h2,
.guide-summary h2,
.toc h2,
.share-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: .005em;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.heading-line {
  display: inline;
}

.section-heading > p:not(.section-label) {
  max-width: 660px;
  margin: 22px 0 0;
  color: #c5cbd2;
  font-weight: 650;
}

.guide {
  background:
    linear-gradient(90deg, rgba(197, 18, 45, .06) 0 1px, transparent 1px),
    #0d1117;
  background-size: 8.33% 100%;
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.guide-summary {
  padding-left: clamp(0px, 2vw, 28px);
  border-left: 4px solid var(--red);
}

.guide-summary h2 {
  font-size: clamp(44px, 6vw, 74px);
}

.large-copy {
  max-width: 750px;
  margin: 28px 0;
  color: var(--white);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 760;
  line-height: 1.65;
}

.key-points {
  display: grid;
  gap: 12px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.key-points li {
  position: relative;
  padding-left: 24px;
  color: #c7cdd4;
}

.key-points li::before {
  position: absolute;
  top: .78em;
  left: 0;
  width: 9px;
  height: 2px;
  content: "";
  background: var(--red-bright);
}

.document-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 42px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  gap: 20px;
}

.document-meta div {
  min-width: 0;
}

.document-meta dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.document-meta dd {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.toc {
  position: sticky;
  top: calc(var(--header-h) + 26px);
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(7, 10, 15, .78);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, .18);
}

.toc h2 {
  padding-bottom: 16px;
  border-bottom: 3px solid var(--red);
  font-size: 34px;
  letter-spacing: .08em;
}

.toc ol {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.toc li {
  counter-increment: toc;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.toc a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  min-height: 45px;
  align-items: center;
  color: #b8c0c8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: #66707b;
  font-family: var(--display);
}

.toc a:hover,
.toc a[aria-current="location"] {
  color: var(--white);
  background: rgba(197, 18, 45, .08);
}

.toc a[aria-current="location"]::before {
  color: var(--red-bright);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.25fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.two-column .section-heading {
  position: sticky;
  top: calc(var(--header-h) + 36px);
  margin: 0;
}

.prose {
  color: #cbd1d7;
}

.prose p {
  margin: 0 0 1.5em;
}

.prose p:first-child {
  color: var(--white);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 650;
}

.prose h3 {
  margin: 2.3em 0 .7em;
  color: var(--white);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.45;
}

.prose h3:first-child {
  margin-top: 0;
}

.editorial-photo {
  position: relative;
  margin: clamp(28px, 4vw, 48px) 0;
  overflow: hidden;
  border: 1px solid #3a424c;
  background: #070a0e;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

.editorial-photo::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 74px;
  height: 3px;
  content: "";
  background: var(--red-bright);
}

.editorial-photo img {
  display: block;
  width: 100%;
  height: auto;
  background: #11161c;
}

.editorial-photo figcaption {
  display: flex;
  min-height: 46px;
  padding: 11px 14px;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: #aeb6bf;
  background: linear-gradient(90deg, #0a0e13, #111720);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .04em;
}

.editorial-photo figcaption span {
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
}

.editorial-photo--street {
  width: min(100%, 480px);
  margin-left: auto;
}

.themes-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(40px, 7vw, 96px);
  margin-bottom: clamp(52px, 7vw, 88px);
  align-items: end;
}

.themes-heading-grid .section-heading,
.themes-heading-grid .editorial-photo {
  margin-bottom: 0;
}

.editorial-photo--resolve {
  width: 100%;
  margin-top: 0;
  justify-self: end;
}

.editorial-photo--detroit {
  width: 100%;
}

.editorial-photo--portrait {
  width: min(100%, 960px);
  margin: 0 auto clamp(46px, 7vw, 84px);
}

.facts {
  background: #e7eaed;
  color: #10141a;
}

.facts .section-label {
  color: #b20f27;
}

.facts .section-heading > p {
  color: #444b53;
}

.album-artwork {
  display: grid;
  grid-template-columns: minmax(300px, 1.08fr) minmax(0, .92fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: start;
  margin: 0 0 clamp(68px, 9vw, 118px);
  padding-bottom: clamp(48px, 7vw, 88px);
  border-bottom: 1px solid #aeb4ba;
}

.album-cover {
  min-width: 0;
  margin: 0;
}

.album-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #d8dde1;
  box-shadow: 0 26px 70px rgba(12, 19, 27, .2);
}

.album-cover figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0 0;
  color: #414951;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.55;
}

.album-cover figcaption span {
  flex: 0 0 auto;
  color: #aa1026;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .16em;
}

.artwork-copy {
  min-width: 0;
  padding-top: clamp(2px, 2vw, 24px);
}

.artwork-label {
  margin: 0 0 18px !important;
  color: #aa1026 !important;
  font-size: 10px !important;
  font-weight: 950;
  letter-spacing: .17em;
}

.artwork-copy h3 {
  margin: 0 0 24px;
  color: #11161c;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.25;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.artwork-copy > p {
  margin: 0 0 24px;
  color: #3f474f;
  font-size: 15px;
  line-height: 1.9;
}

.album-cover--alternate {
  width: min(78%, 410px);
  margin: clamp(32px, 5vw, 54px) 0 28px auto;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 2px solid #11161c;
  border-left: 1px solid #abb1b7;
}

.fact-grid div {
  min-height: 156px;
  padding: clamp(20px, 2.4vw, 34px);
  border-right: 1px solid #abb1b7;
  border-bottom: 1px solid #abb1b7;
}

.fact-grid dt {
  margin-bottom: 15px;
  color: #a40e25;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.fact-grid dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 850;
  line-height: 1.45;
}

.fact-grid small {
  color: #515961;
  font-size: .7em;
  font-weight: 650;
}

.ad-section {
  width: min(calc(100% - (var(--pad) * 2)), 1060px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px) 0;
  text-align: center;
}

.ad-section.is-unfilled {
  display: none;
}

.ad-label {
  margin: 0 0 8px;
  color: #68717c;
  font-size: 9px;
  letter-spacing: .16em;
}

.ad-placeholder {
  display: grid;
  width: 100%;
  min-height: clamp(100px, 12vw, 160px);
  border: 1px solid rgba(255, 255, 255, .06);
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .012), transparent),
    #0a0d12;
  overflow: hidden;
}

.adsbygoogle {
  width: 100%;
  min-height: inherit;
}

.comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  border-top: 1px solid #3a424b;
}

.comparison-head {
  padding: clamp(26px, 4vw, 54px);
  border-bottom: 1px solid #3a424b;
}

.comparison-head span,
.comparison-head small {
  display: block;
}

.comparison-head span {
  color: var(--muted);
  font-family: var(--display);
  letter-spacing: .12em;
}

.comparison-head strong {
  display: block;
  margin: 4px 0;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: .035em;
}

.comparison-head small {
  color: #b5bdc5;
  font-weight: 700;
}

.relapse-side {
  opacity: .76;
}

.recovery-side strong {
  color: var(--white);
}

.recovery-side {
  border-top: 4px solid var(--red);
}

.comparison-road {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 7;
  border-right: 1px solid #3a424b;
  border-left: 1px solid #3a424b;
  background: #0a0d11;
}

.comparison-road i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--red) 0 48px, transparent 48px 92px);
  transform: translateX(-50%);
}

.comparison-row {
  display: contents;
}

.comparison-row span {
  padding: 23px clamp(18px, 3.4vw, 48px);
  border-bottom: 1px solid #3a424b;
  color: #c4cbd2;
  font-weight: 720;
}

.comparison-row span:first-child {
  grid-column: 1;
}

.comparison-row span:last-child {
  grid-column: 3;
  color: var(--white);
}

.comparison-row b {
  display: none;
}

.transition-note {
  max-width: 900px;
  margin: 54px 0 24px;
  padding-left: 24px;
  border-left: 3px solid var(--red);
  color: #c8ced4;
}

.text-link,
.official-source,
.track-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  text-decoration-color: var(--red);
}

.text-link span,
.official-source span,
.track-link:not(.track-row) > span[aria-hidden="true"] {
  color: var(--red-bright);
}

.theme-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-flow::before {
  position: absolute;
  top: 35px;
  right: 8%;
  left: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #4a535d, var(--red), #4a535d);
}

.theme-flow li {
  position: relative;
  padding: 0 clamp(14px, 2vw, 30px);
}

.theme-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  border: 1px solid #49525d;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  box-shadow: 0 0 0 10px var(--ink);
}

.theme-flow li:nth-child(2) .theme-number,
.theme-flow li:nth-child(3) .theme-number {
  border-color: var(--red);
  color: var(--red-bright);
}

.theme-flow h3 {
  margin: 0 0 12px;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.45;
}

.theme-flow p {
  margin: 0;
  color: #aeb6bf;
  font-size: 14px;
}

blockquote {
  margin: 40px 0 0;
  padding: 22px 0 0 22px;
  border-top: 1px solid #3a4451;
  border-left: 3px solid var(--red);
}

blockquote p {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 720;
  line-height: 1.75;
}

blockquote cite {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.tracklist {
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(197, 18, 45, .13) 49.85% 50%, transparent 50%),
    #0b0f14;
}

.tracklist-layout {
  display: grid;
  grid-template-columns: minmax(270px, .75fr) minmax(0, 1.25fr);
  gap: 0 clamp(42px, 8vw, 120px);
  align-items: start;
}

.tracklist .section-heading {
  position: sticky;
  top: calc(var(--header-h) + 38px);
}

.tracklist-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}

.tracks {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--white);
  list-style: none;
}

.tracks li {
  border-bottom: 1px solid #313943;
}

.track-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  width: 100%;
  min-height: 70px;
  padding: 11px 8px 11px 4px;
  align-items: center;
  gap: 18px;
  color: var(--white);
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.track-row:hover,
.track-row:focus-visible {
  background: rgba(255, 255, 255, .055);
}

.track-number {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: .06em;
}

.track-copy {
  min-width: 0;
}

.tracks strong,
.bonus-tracks .track-copy strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.35;
}

.tracks small,
.bonus-tracks .track-copy small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.track-youtube {
  display: inline-flex;
  min-width: 104px;
  min-height: 44px;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #aeb7c0;
  font-size: 13px;
  font-weight: 900;
}

.track-youtube span {
  color: inherit;
  font-size: 9px;
  letter-spacing: .15em;
}

.track-row:hover .track-youtube,
.track-row:focus-visible .track-youtube {
  color: var(--red-bright);
}

.bonus-tracks {
  grid-column: 2;
  margin-top: 38px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid #3a434e;
  background: #10161e;
}

.bonus-tracks h3 {
  margin: 0;
  font-size: clamp(19px, 2vw, 26px);
}

.bonus-tracks p {
  color: #aeb6bf;
  font-size: 14px;
}

.bonus-tracks ol {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.bonus-tracks li {
  display: block;
  border-top: 1px solid #313943;
}

.bonus-tracks .track-row {
  padding-right: 0;
  padding-left: 0;
}

.feature-list {
  display: grid;
  gap: clamp(64px, 9vw, 126px);
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.feature-card.reverse {
  grid-template-columns: minmax(0, 1.38fr) minmax(260px, .62fr);
}

.feature-card.reverse img {
  grid-column: 2;
}

.feature-card.reverse .feature-copy {
  grid-column: 1;
  grid-row: 1;
}

.feature-card img {
  width: 100%;
  max-height: 620px;
  border: 1px solid #323943;
  object-fit: cover;
  filter: saturate(.86) contrast(1.04);
  box-shadow: 24px 24px 0 rgba(197, 18, 45, .06);
}

#not-afraid > img {
  filter: saturate(.88) contrast(1.03) brightness(1.06);
}

#love-the-way-you-lie > img {
  filter: saturate(1.02) contrast(1.06) sepia(.08);
}

.feature-copy {
  padding: clamp(10px, 2vw, 28px) 0;
}

.feature-index {
  margin: 0 0 8px;
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}

.feature-copy h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: .01em;
}

.feature-lead {
  margin: 22px 0 14px;
  color: var(--white);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 780;
}

.feature-copy > p:not(.feature-index):not(.feature-lead) {
  color: #b9c1c9;
}

.feature-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(52px, 7vw, 88px);
}

.feature-compact-card {
  display: flex;
  min-width: 0;
  border: 1px solid #303943;
  border-top: 3px solid var(--red);
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 55%), #0b0f14;
  flex-direction: column;
}

.feature-compact-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #303943;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

#no-love > img {
  object-position: center 48%;
  filter: saturate(.55) contrast(1.08) brightness(1.04);
}

#going-through-changes > img {
  object-position: center 58%;
  filter: saturate(.52) contrast(1.06) brightness(.78);
}

#youre-never-over > img {
  object-position: center 50%;
  filter: grayscale(.78) contrast(1.08) brightness(.88);
}

.feature-compact-card .feature-copy {
  display: flex;
  padding: clamp(22px, 2.4vw, 30px);
  flex: 1;
  flex-direction: column;
}

.feature-compact-card .feature-copy h3 {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.04;
}

.feature-credit {
  margin: 10px 0 0;
  color: #8f99a5 !important;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.45;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.feature-compact-card .feature-lead {
  margin: 18px 0 10px;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.5;
}

.feature-compact-card .feature-copy > p:not(.feature-index):not(.feature-lead):not(.feature-credit) {
  margin-top: 0;
  color: #b9c1c9;
  font-size: 14px;
  line-height: 1.78;
}

.feature-compact-card .track-link {
  margin-top: auto;
  padding-top: 12px;
}

.deep-cuts {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 7vw, 94px);
  margin-top: clamp(74px, 11vw, 148px);
  padding: clamp(34px, 5vw, 68px) 0;
  border-top: 1px solid #46505b;
  border-bottom: 1px solid #252c34;
  align-items: start;
}

.deep-cuts header {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.deep-cuts h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
}

.deep-cuts h3 span {
  display: block;
}

.deep-cuts header > p:last-child {
  margin: 24px 0 0;
  color: #aeb7c0;
  font-size: 14px;
}

.deep-cuts ol {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--white);
  list-style: none;
}

.deep-cuts li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid #303842;
}

.deep-cuts li > span {
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
}

.deep-cuts h4 {
  margin: 0 0 10px;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.3;
}

.deep-cuts li p {
  margin: 0;
  color: #b7bfc8;
  font-size: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(50px, 8vw, 100px);
  border-top: 1px solid #4a535d;
  border-bottom: 1px solid #4a535d;
}

.stat {
  min-width: 0;
  padding: clamp(26px, 4vw, 52px) clamp(14px, 2vw, 30px);
  border-right: 1px solid #4a535d;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: flex;
  align-items: flex-start;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(50px, 7vw, 94px);
  line-height: .9;
  letter-spacing: .02em;
}

.stat sup {
  margin: .15em 0 0 .1em;
  color: var(--red-bright);
  font-family: var(--sans);
  font-size: .26em;
}

.stat small {
  display: block;
  margin-top: 15px;
  color: #aeb6bf;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: .07em;
}

.impact-records {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 clamp(42px, 6vw, 72px);
  border: 1px solid #38424d;
  background: #38424d;
}

.impact-records article {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(145deg, rgba(25, 39, 55, .72), rgba(9, 13, 19, .98) 72%),
    #0c1118;
}

.impact-records small {
  display: block;
  margin-bottom: 13px;
  color: #c71731;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
}

.impact-records strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: .98;
  letter-spacing: .015em;
}

.impact-records p {
  margin: 18px 0 0;
  color: #b7c0c8;
  font-size: 13px;
  line-height: 1.75;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #313943;
  background: #313943;
}

.impact-grid article {
  padding: clamp(26px, 4vw, 52px);
  background: #0d1218;
}

.impact-grid h3 {
  margin: 0 0 16px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.45;
}

.impact-grid p {
  margin: 0;
  color: #b6bec6;
  font-size: 15px;
}

.impact-retrospective {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 96px);
  margin-top: clamp(54px, 8vw, 96px);
  padding: clamp(34px, 5vw, 64px);
  border-top: 1px solid #46515d;
  border-bottom: 1px solid #313a44;
  background:
    linear-gradient(120deg, rgba(23, 35, 50, .84), rgba(8, 11, 16, .97) 58%),
    #0c1118;
}

.impact-retrospective h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
}

.impact-retrospective h3 span {
  display: block;
}

.retrospective-lead {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 780;
  line-height: 1.65;
}

.retrospective-copy > p {
  margin: 0 0 18px;
  color: #bec6ce;
  font-size: 15px;
}

.retrospective-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #39434e;
}

.retrospective-sources a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  text-decoration-color: var(--red);
}

.retrospective-sources span {
  color: var(--red-bright);
}

.source-note {
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid #435064;
  border-left: 4px solid var(--red);
  background: rgba(4, 7, 12, .28);
}

.source-note strong {
  color: var(--white);
}

.source-note p {
  margin: 8px 0 0;
  color: #aeb7c0;
  font-size: 13px;
}

.listen {
  background:
    linear-gradient(rgba(8, 11, 16, .92), rgba(8, 11, 16, .97)),
    url("../images/recovery-hero-1280.webp") center 44% / cover no-repeat;
}

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

.store-link {
  position: relative;
  display: flex;
  min-height: 220px;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid #4a535e;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  text-decoration: none;
  background: rgba(8, 11, 16, .88);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.store-link::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--red);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .25s ease;
}

.store-link:hover {
  border-color: #8d98a5;
  background: rgba(16, 22, 30, .96);
  transform: translateY(-3px);
}

.store-link:hover::before {
  transform: scaleX(1);
}

.store-link small {
  margin-bottom: auto;
  color: #8f99a4;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}

.store-link strong {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1;
}

.store-link span {
  margin-top: 18px;
  color: #c7cdd3;
  font-size: 12px;
  font-weight: 800;
}

.affiliate-notice {
  margin: 24px 0 0;
  color: #959faa;
  font-size: 12px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  gap: clamp(42px, 9vw, 140px);
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: calc(var(--header-h) + 38px);
}

.faq-list {
  border-top: 2px solid var(--white);
}

.faq-list details {
  border-bottom: 1px solid #38404a;
}

.faq-list summary {
  position: relative;
  min-height: 74px;
  padding: 23px 58px 23px 0;
  color: var(--white);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 780;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 36px;
  right: 16px;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--red-bright);
  transition: transform .2s ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: 0;
  padding: 0 58px 28px 0;
  color: #b5bdc5;
}

.related-guides {
  border-top: 1px solid #2c333c;
  background:
    linear-gradient(115deg, rgba(198, 12, 42, .08), transparent 34%),
    #0d1218;
}

.related-guides .section-heading > p:not(.section-label) {
  max-width: 760px;
  color: #aeb6bf;
}

.related-guide-list {
  border-top: 2px solid #eef1f4;
}

.related-article-link {
  display: grid;
  grid-template-columns: minmax(130px, .34fr) minmax(0, 1.4fr) 56px;
  min-height: 132px;
  padding: 26px 8px;
  align-items: center;
  gap: clamp(20px, 4vw, 58px);
  border-bottom: 1px solid #39414b;
  color: #eef1f4;
  text-decoration: none;
  transition: background .2s ease, padding .2s ease;
}

.related-article-link:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, .035);
}

.related-index {
  color: #e2233f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.related-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.related-copy strong {
  font-size: clamp(21px, 2.2vw, 31px);
  line-height: 1.3;
}

.related-copy small {
  color: #aeb6bf;
  font-size: 14px;
  line-height: 1.8;
}

.related-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid #59636e;
  border-radius: 50%;
  place-items: center;
  color: #eef1f4;
  font-size: 20px;
}

.references {
  background: #e4e7e9;
  color: #11151a;
}

.references .section-label {
  color: #ab1026;
}

.references .section-heading > p:not(.section-label) {
  color: #4e555d;
}

.reference-list {
  columns: 2;
  column-gap: 56px;
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.reference-list li {
  padding: 14px 0;
  border-bottom: 1px solid #b3b8bd;
  break-inside: avoid;
  color: #4b535b;
  font-size: 13px;
}

.reference-list a {
  color: #11151a;
  font-weight: 800;
}

.album-navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(calc(100% - (var(--pad) * 2)), var(--wide));
  margin: clamp(60px, 9vw, 130px) auto;
  border: 1px solid #38414b;
}

.album-link,
.album-current {
  display: flex;
  min-height: 180px;
  padding: clamp(22px, 3vw, 42px);
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  background: #0d1218;
}

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

.album-link:hover {
  background: #141b24;
}

.album-current {
  border-right: 1px solid #38414b;
  border-left: 1px solid #38414b;
  text-align: center;
  align-items: center;
  background: #151b23;
}

.album-link.next {
  text-align: right;
  align-items: flex-end;
}

.album-link span,
.album-current span {
  color: var(--red-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.album-link strong,
.album-current strong {
  margin: 7px 0;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1;
}

.album-link small,
.album-current small {
  color: #88929d;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
}

.share-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(calc(100% - (var(--pad) * 2)), var(--content));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 74px);
  border-top: 1px solid #3b444e;
  border-bottom: 1px solid #3b444e;
  align-items: center;
  gap: 34px;
  background: linear-gradient(90deg, #11161d, #0a0e13);
}

.share-section h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.share-actions {
  margin: 0;
}

.copy-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: #b9c2ca;
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(calc(100% - (var(--pad) * 2)), var(--content));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0 34px;
  align-items: start;
  gap: 42px;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1;
  letter-spacing: .03em;
}

.footer-brand p {
  margin: 15px 0 0;
  color: #8f99a4;
  font-size: 13px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 26px;
}

.site-footer nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: #b8c0c8;
  font-size: 12px;
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  margin: 44px 0 0;
  padding-top: 24px;
  border-top: 1px solid #292f37;
  color: #666f79;
  font-size: 10px;
}

.to-top {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid #5b6570;
  place-items: center;
  color: var(--white);
  background: rgba(7, 10, 15, .9);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.to-top:hover {
  background: var(--red);
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.noscript-note {
  position: fixed;
  z-index: 2000;
  right: 10px;
  bottom: 10px;
  left: 10px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid #555f6a;
  color: var(--white);
  background: #0b0f14;
  font-size: 12px;
  text-align: center;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .68, .26, 1);
}

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

@keyframes hero-enter {
  from { opacity: .45; transform: translate3d(0, 0, 0) scale(1.09); }
  to { opacity: 1; transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.025); }
}

@keyframes copy-enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(300%); }
}

@media (min-width: 769px) {
  html[data-hero-variant="studio"] .hero-media img {
    top: 0;
    right: -160px;
    bottom: auto;
    left: auto;
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: right top;
  }

  html[data-hero-variant="studio"] .hero-content {
    max-width: min(36vw, 520px);
  }

  html[data-hero-variant="studio"] .hero h1 {
    font-size: clamp(68px, 8vw, 128px);
  }
}

@media (max-width: 1120px) {
  :root {
    --header-h: 64px;
  }

  .header-nav {
    gap: 13px;
  }

  .header-nav a {
    font-size: 11px;
  }

  .brand small {
    display: none;
  }

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

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

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .js .header-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    background: rgba(5, 7, 11, .98);
    transition: max-height .25s ease, visibility .25s ease;
  }

  .js .header-nav.is-open {
    max-height: 430px;
    visibility: visible;
    border-bottom: 1px solid #333b45;
  }

  .header-nav a {
    min-height: 54px;
    padding: 12px 20px;
    border-top: 1px solid #242a31;
    border-right: 1px solid #242a31;
  }

  .header-nav a::after {
    bottom: 0;
  }

  .no-js .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .no-js .header-nav {
    display: flex;
    width: 100%;
    overflow-x: auto;
  }

  .hero-content {
    width: min(620px, 68vw);
    max-width: min(58vw, 620px);
    margin-left: var(--pad);
  }

  .hero h1 {
    font-size: clamp(72px, 10vw, 108px);
  }

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

  .guide-grid,
  .two-column,
  .tracklist-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .toc,
  .two-column .section-heading,
  .tracklist .section-heading,
  .faq-layout .section-heading {
    position: static;
  }

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

  .two-column,
  .tracklist-layout,
  .faq-layout {
    gap: 46px;
  }

  .themes-heading-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .editorial-photo--resolve {
    width: min(100%, 480px);
  }

  .bonus-tracks {
    grid-column: 1;
  }

  .deep-cuts,
  .impact-retrospective {
    grid-template-columns: 1fr;
  }

  .deep-cuts header {
    position: static;
  }

  .theme-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 0;
  }

  .theme-flow::before {
    display: none;
  }

  .theme-flow li {
    border-left: 1px solid #3a424c;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid #4a535d;
  }

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

  .album-link,
  .album-current {
    min-height: 145px;
  }

  .album-current {
    border: 0;
    border-top: 1px solid #38414b;
    border-bottom: 1px solid #38414b;
  }

  .share-section {
    grid-template-columns: 1fr;
  }

  .share-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --pad: clamp(18px, 5vw, 34px);
    --section-y: clamp(68px, 13vw, 98px);
  }

  body {
    font-size: 16px;
    line-height: 1.78;
  }

  .hero {
    min-height: max(720px, 100svh);
    align-items: end;
  }

  .hero-media img {
    object-position: 69% 45%;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 6, 11, .98) 0%, rgba(3, 6, 11, .9) 23%, rgba(3, 6, 11, .24) 58%, rgba(3, 6, 11, .04) 80%),
      linear-gradient(90deg, rgba(3, 6, 11, .48), transparent 50%);
  }

  html[data-hero-variant="studio"] .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 6, 11, .98) 0%, rgba(3, 6, 11, .92) 28%, rgba(3, 6, 11, .36) 52%, rgba(3, 6, 11, .08) 72%),
      linear-gradient(90deg, rgba(3, 6, 11, .28), transparent 58%);
  }

  .hero-content {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: calc(var(--header-h) + 44px) var(--pad) 84px;
  }

  .hero-kicker {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(68px, 20vw, 118px);
  }

  .hero-lead {
    max-width: 540px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .scroll-cue {
    display: none;
  }

  .road-line {
    left: auto;
    right: 20%;
    height: 16vh;
  }

  .breadcrumb ol {
    width: calc(100% - (var(--pad) * 2));
  }

  .guide-summary {
    padding-left: 18px;
  }

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

  .album-artwork {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .album-cover--main {
    width: min(100%, 680px);
  }

  .artwork-copy {
    max-width: 680px;
    padding-top: 0;
  }

  .album-cover--alternate {
    width: min(76%, 430px);
    margin-left: 0;
  }

  .comparison {
    grid-template-columns: 1fr;
    border: 0;
  }

  .comparison-head {
    padding: 26px 22px;
    border: 1px solid #3a424b;
  }

  .comparison-road {
    display: none;
  }

  .comparison-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
    border-right: 1px solid #3a424b;
    border-left: 1px solid #3a424b;
  }

  .comparison-row span {
    grid-column: auto !important;
    padding: 18px 14px;
    font-size: 13px;
  }

  .comparison-row b {
    display: grid;
    border-bottom: 1px solid #3a424b;
    place-items: center;
    color: var(--red-bright);
    font-weight: 900;
  }

  .editorial-photo {
    box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
  }

  .editorial-photo--street,
  .editorial-photo--resolve {
    margin-right: auto;
    margin-left: 0;
    justify-self: start;
  }

  .theme-flow {
    grid-template-columns: 1fr;
  }

  .theme-flow li {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 0 0 0 12px;
    align-items: start;
    gap: 20px;
  }

  .theme-number {
    width: 58px;
    height: 58px;
    margin: 0;
    box-shadow: none;
  }

  .feature-card,
  .feature-card.reverse {
    grid-template-columns: minmax(150px, .55fr) minmax(0, 1.45fr);
    gap: 28px;
    align-items: start;
  }

  .feature-card.reverse img {
    grid-column: 1;
  }

  .feature-card.reverse .feature-copy {
    grid-column: 2;
  }

  .feature-card img {
    position: sticky;
    top: calc(var(--header-h) + 18px);
    max-height: 500px;
  }

  .feature-copy h3 {
    font-size: clamp(40px, 9vw, 64px);
  }

  .feature-copy > p:not(.feature-index):not(.feature-lead) {
    font-size: 14px;
  }

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

  .impact-records {
    grid-template-columns: 1fr;
  }

  .reference-list {
    columns: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 540px) {
  .brand-mark {
    font-size: 21px;
  }

  .header-nav {
    grid-template-columns: 1fr !important;
  }

  .header-nav a {
    min-height: 50px;
  }

  .hero {
    min-height: max(700px, 100svh);
  }

  .hero-media img {
    object-position: 68.5% 43%;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 6, 11, .99) 0%, rgba(3, 6, 11, .94) 31%, rgba(3, 6, 11, .08) 66%),
      linear-gradient(90deg, rgba(3, 6, 11, .32), transparent 50%);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-bottom: 44px;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(48px, 14vw, 64px);
    letter-spacing: -.045em;
  }

  .hero h1 .hero-title-context {
    max-width: 25em;
    margin-top: 14px;
    font-size: 11px;
    letter-spacing: .06em;
  }

  .hero-kicker {
    margin-bottom: 12px;
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions,
  .share-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
  }

  .document-meta {
    gap: 18px 12px;
  }

  .toc {
    padding: 22px;
    box-shadow: none;
  }

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

  .album-artwork {
    gap: 34px;
    margin-bottom: 54px;
    padding-bottom: 48px;
  }

  .album-cover figcaption {
    display: block;
  }

  .album-cover figcaption span {
    display: block;
    margin-bottom: 5px;
  }

  .album-cover--alternate {
    width: 88%;
    margin-top: 30px;
  }

  .fact-grid div {
    min-height: auto;
    padding: 20px 22px;
  }

  .comparison-head strong {
    font-size: 46px;
  }

  .comparison-row {
    grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr);
  }

  .comparison-row span {
    padding: 15px 10px;
    font-size: 11px;
    line-height: 1.55;
  }

  .tracks li {
    min-width: 0;
  }

  .track-row {
    grid-template-columns: 36px minmax(0, 1fr) 30px;
    padding-right: 2px;
    gap: 12px;
  }

  .track-youtube {
    min-width: 30px;
    justify-content: center;
    font-size: 17px;
  }

  .track-youtube span {
    display: none;
  }

  .section-heading h2,
  .guide-summary h2,
  .share-section h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .heading-line {
    display: block;
  }

  .ad-section {
    padding: 22px 0;
  }

  .ad-placeholder {
    min-height: 100px;
  }

  .feature-card,
  .feature-card.reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-card.reverse img,
  .feature-card.reverse .feature-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .feature-card img {
    position: static;
    width: 100%;
    height: min(118vw, 560px);
    object-position: center;
  }

  .feature-copy {
    padding: 0;
  }

  .feature-copy h3 {
    font-size: clamp(43px, 13vw, 66px);
  }

  .feature-compact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 44px;
  }

  .feature-compact-card .feature-copy h3 {
    font-size: clamp(32px, 10vw, 43px);
  }

  .feature-compact-card .feature-copy {
    padding: 22px;
  }

  .deep-cuts {
    gap: 32px;
    padding: 42px 0;
  }

  .deep-cuts h3,
  .impact-retrospective h3 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .impact-retrospective h3 {
    font-size: clamp(38px, 10.5vw, 52px);
  }

  .deep-cuts li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .impact-retrospective {
    gap: 30px;
    padding: 34px 22px;
  }

  .retrospective-sources {
    display: grid;
  }

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

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #4a535d;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .stat {
    display: grid;
    grid-template-columns: minmax(120px, .7fr) 1fr;
    min-height: 130px;
    align-items: center;
  }

  .stat small {
    margin: 0;
  }

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

  .store-link {
    min-height: 170px;
  }

  .faq-list summary {
    padding-right: 48px;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .related-article-link {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 9px 18px;
    padding: 24px 4px;
  }

  .related-article-link:hover {
    padding-right: 10px;
    padding-left: 10px;
  }

  .related-index,
  .related-copy {
    grid-column: 1;
  }

  .related-arrow {
    grid-row: 1 / span 2;
    grid-column: 2;
  }

  .related-copy strong {
    font-size: clamp(20px, 6.4vw, 26px);
  }

  .related-copy small {
    font-size: 13px;
    line-height: 1.7;
  }

  .album-link,
  .album-current {
    min-height: 130px;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .share-section {
    padding: 34px 22px;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 360px) {
  :root {
    --pad: 16px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .document-meta {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .guide-summary h2,
  .share-section h2 {
    font-size: 34px;
  }

  .theme-flow li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .theme-number {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .comparison-row span {
    font-size: 10px;
  }
}

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

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

  .hero-media img {
    transform: none !important;
  }

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

@media print {
  .site-header,
  .hero-actions,
  .scroll-cue,
  .ad-section,
  .to-top,
  .share-section {
    display: none !important;
  }

  body,
  .section,
  .section-dark,
  .section-blue,
  .section-concrete {
    color: #111;
    background: #fff;
  }

  .hero {
    min-height: 430px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .impact-records article {
    background: #fff;
  }

  .impact-records strong {
    color: #111;
  }

  .artwork-copy h3,
  .album-cover figcaption {
    color: #111;
  }

  .prose,
  .section-heading > p,
  .feature-copy > p,
  .impact-records p,
  .impact-grid p {
    color: #222 !important;
  }
}

/* V12 hotfix: 320px comparison overflow */
@media (max-width: 359px) {
  .comparison {
    grid-template-columns: minmax(0, 1fr);
  }

  .comparison-head,
  .comparison-row,
  .comparison-head strong,
  .comparison-row > * {
    min-width: 0;
  }

  .comparison-head strong {
    font-size: clamp(38px, 13vw, 42px);
    letter-spacing: .02em;
  }
}
