:root {
  --bg: #181815;
  --surface: #20201b;
  --paper: #f2eadc;
  --ink: #f4ead8;
  --muted: #b9aa95;
  --line: rgba(244, 234, 216, 0.18);
  --accent: #d8c5a5;
  --accent-ink: #171713;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Inter", Arial, sans-serif;
  --radius: 6px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 104px;
  --space-8: 168px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 88px;
}

body::before {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 720px 720px, 100% 3px;
  content: "";
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  position: fixed;
  z-index: 20;
}

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

a,
button,
input {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  background: var(--accent);
  color: var(--accent-ink);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 16px;
  transform: translateY(-260%);
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.is-hidden-for-now {
  display: none !important;
}

.site-header {
  align-items: center;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 220px 1fr 220px;
  left: 0;
  padding: 32px clamp(24px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(24, 24, 21, 0.68);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244, 234, 216, 0.08);
  padding-bottom: 20px;
  padding-top: 20px;
}

.brand {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.32em;
}

.nav-links {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  justify-content: center;
}

.nav-links a,
.header-actions a,
.text-cta,
.eyebrow,
.album-card span,
.album-card p,
.show-list a,
.listen-links,
.signup-form label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a,
.header-actions a {
  color: rgba(244, 234, 216, 0.82);
  transition: color 160ms ease;
}

.nav-links a:hover,
.header-actions a:hover {
  color: var(--ink);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

.menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  gap: 6px;
  padding: 10px 0 10px 10px;
  width: 42px;
}

.menu-button span:not(.sr-only) {
  background: var(--accent);
  display: block;
  height: 1px;
  width: 100%;
}

.mobile-menu {
  background: rgba(24, 24, 21, 0.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: var(--space-3);
  left: 0;
  padding: 96px 24px 32px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 40;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
}

.mobile-menu .mobile-cta {
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-top: var(--space-3);
  text-transform: uppercase;
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 61% center;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 24, 21, 0.86) 0%, rgba(24, 24, 21, 0.34) 43%, rgba(24, 24, 21, 0.17) 100%),
    linear-gradient(0deg, rgba(24, 24, 21, 0.9) 0%, rgba(24, 24, 21, 0.02) 36%, rgba(24, 24, 21, 0.42) 100%);
  inset: 0;
  position: absolute;
}

.film-grain {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.36'/%3E%3C/svg%3E");
  inset: 0;
  mix-blend-mode: soft-light;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
}

.hero-content {
  left: clamp(24px, 4.4vw, 72px);
  max-width: 720px;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
}

.eyebrow {
  color: var(--muted);
  margin: 0 0 var(--space-3);
}

.eyebrow::after {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  margin-top: 14px;
  width: 44px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.94;
}

h1 {
  font-size: clamp(86px, 13vw, 184px);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(48px, 6vw, 86px);
  margin-bottom: var(--space-4);
}

h3 {
  font-size: clamp(34px, 2.8vw, 46px);
  margin-bottom: var(--space-3);
}

em {
  font-style: italic;
}

.text-cta {
  color: var(--ink);
  display: inline-flex;
  padding-bottom: 9px;
  position: relative;
}

.text-cta::after {
  background: var(--accent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: width 180ms ease;
  width: 100%;
}

.text-cta:hover::after {
  width: 64%;
}

.hero-release {
  align-items: center;
  border-top: 1px solid var(--line);
  bottom: 0;
  display: flex;
  justify-content: space-between;
  left: clamp(24px, 4.4vw, 72px);
  padding: var(--space-4) 0;
  position: absolute;
  right: clamp(24px, 4.4vw, 72px);
}

.hero-release p,
.hero-release a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.hero-release a {
  color: var(--ink);
}

.dark-section {
  background:
    radial-gradient(circle at 72% 20%, rgba(216, 197, 165, 0.05), transparent 22%),
    var(--bg);
}

.discography {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(190px, 0.75fr) 4fr;
  padding: var(--space-6) clamp(24px, 4.4vw, 72px) var(--space-7);
}

.section-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.section-intro p:not(.eyebrow) {
  color: var(--ink);
  max-width: 210px;
}

.section-intro .text-cta {
  margin-top: var(--space-4);
}

.album-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.album-card a {
  display: block;
}

.album-card img {
  aspect-ratio: 1;
  filter: saturate(0.82) contrast(0.96);
  height: auto;
  object-fit: cover;
  transition: filter 180ms ease, transform 220ms ease;
  width: 100%;
}

.album-card:hover img {
  filter: saturate(1) contrast(1.04);
  transform: translateY(-6px);
}

.album-card span {
  display: none;
}

.album-card h3 {
  margin-top: var(--space-4);
  max-width: 230px;
}

.album-card p {
  color: var(--ink);
  display: inline-flex;
  margin: 0;
  padding-bottom: 8px;
  position: relative;
}

.album-card p::after {
  background: var(--accent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.story {
  background: var(--surface);
  border-top: 1px solid rgba(244, 234, 216, 0.08);
  display: grid;
  grid-template-columns: 5.25fr 6.75fr;
  height: 580px;
  min-height: 0;
}

.story-image {
  overflow: hidden;
}

.story-image img {
  filter: saturate(0.74) contrast(1.04);
  height: 100%;
  object-fit: cover;
  object-position: 42% 62%;
  width: 100%;
}

.story-copy {
  align-content: center;
  display: grid;
  min-height: 0;
  padding: var(--space-6) clamp(32px, 7vw, 104px);
  position: relative;
}

.story-copy h2 {
  font-size: clamp(44px, 5vw, 74px);
}

.story-copy p:not(.eyebrow) {
  color: rgba(244, 234, 216, 0.82);
  max-width: 560px;
}

.signature {
  bottom: 72px;
  color: rgba(216, 197, 165, 0.16);
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 116px);
  font-style: italic;
  position: absolute;
  right: clamp(28px, 6vw, 92px);
  transform: rotate(-8deg);
}

.tour-news {
  border-top: 1px solid rgba(244, 234, 216, 0.08);
  display: grid;
  grid-template-columns: 4.4fr 3.4fr 4.2fr;
  min-height: 430px;
}

.tour-panel,
.newsletter-panel {
  background: var(--bg);
  padding: var(--space-6) clamp(24px, 4.4vw, 72px);
}

.show-list {
  display: grid;
  list-style: none;
  margin: var(--space-5) 0;
  padding: 0;
}

.empty-shows {
  border-bottom: 1px solid rgba(244, 234, 216, 0.12);
  border-top: 1px solid rgba(244, 234, 216, 0.12);
  margin: var(--space-5) 0;
  padding: var(--space-5) 0;
}

.empty-shows h2 {
  font-size: clamp(38px, 4vw, 58px);
  margin-bottom: var(--space-3);
}

.empty-shows p {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0;
}

.show-list li {
  align-items: center;
  border-bottom: 1px solid rgba(244, 234, 216, 0.12);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 56px 1fr auto;
  padding: var(--space-3) 0;
}

.show-list time {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.show-list time span {
  color: var(--muted);
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.show-list strong,
.show-list div span {
  display: block;
}

.show-list strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.show-list div span {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 18px;
}

.show-list a {
  border-bottom: 1px solid var(--accent);
  color: var(--ink);
  padding-bottom: 6px;
}

.stage-panel {
  margin: 0;
  min-height: 430px;
  overflow: hidden;
}

.stage-panel img {
  filter: saturate(0.82) contrast(1.02) brightness(0.78);
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  width: 100%;
}

.newsletter-panel {
  align-content: center;
  background:
    linear-gradient(rgba(24, 24, 21, 0.68), rgba(24, 24, 21, 0.78)),
    url("ASSETS/Kingston4.jpg") center / cover;
  display: grid;
}

.newsletter-panel h2 {
  font-size: clamp(44px, 4.2vw, 68px);
  max-width: 420px;
}

.signup-form {
  margin-top: var(--space-4);
  max-width: 420px;
}

.signup-form label {
  color: var(--muted);
}

.signup-form div {
  border: 1px solid rgba(244, 234, 216, 0.24);
  display: grid;
  grid-template-columns: 1fr 72px;
  margin-top: var(--space-2);
}

.signup-form input {
  background: rgba(24, 24, 21, 0.42);
  border: 0;
  color: var(--ink);
  min-height: 60px;
  padding: 0 var(--space-3);
}

.signup-form input::placeholder {
  color: rgba(244, 234, 216, 0.62);
}

.signup-form button {
  background: transparent;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  font-weight: 700;
}

.signup-form p {
  color: var(--muted);
  font-size: 13px;
  margin-top: var(--space-3);
}

.button-cta {
  background: var(--bg);
  color: var(--paper);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: var(--space-3);
  padding: 16px 24px;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-cta:hover {
  background: #333025;
  transform: translateY(-2px);
}

.site-footer {
  background: rgba(24, 24, 21, 0.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(244, 234, 216, 0.1);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 60;
}

.player {
  align-items: center;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 64px minmax(160px, 260px) 48px 180px minmax(180px, 400px) 1fr;
  min-height: 88px;
  padding: 12px clamp(18px, 4vw, 56px);
}

.site-audio {
  display: none;
}

.player > img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 160ms ease, transform 180ms ease;
  width: 64px;
}

.player.is-changing .player-cover {
  opacity: 0.48;
  transform: scale(0.96);
}

.track-meta strong,
.track-meta span {
  display: block;
}

.track-meta strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.1;
}

.track-meta span {
  color: var(--muted);
  font-size: 13px;
}

.heart,
.player-controls button {
  background: transparent;
  border: 0;
  color: var(--accent);
  cursor: pointer;
}

.player-controls {
  align-items: center;
  display: flex;
  gap: var(--space-3);
  justify-content: center;
}

.player-controls button {
  font-size: 26px;
  line-height: 1;
  min-height: 44px;
  min-width: 44px;
}

.player-controls .play {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: var(--accent-ink);
  display: inline-flex;
  font-size: 18px;
  justify-content: center;
}

.timeline {
  align-items: center;
  color: var(--muted);
  display: grid;
  font-size: 12px;
  gap: var(--space-3);
  grid-template-columns: auto 1fr auto;
}

.progress-track {
  background: rgba(244, 234, 216, 0.14);
  border: 0;
  cursor: pointer;
  height: 2px;
  padding: 0;
  position: relative;
  width: 100%;
}

.progress-track i {
  background: var(--accent);
  display: block;
  height: 2px;
  width: 0%;
}

.listen-links {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
}

.listen-links a {
  color: var(--ink);
}

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

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

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-page {
  background:
    radial-gradient(circle at 85% 10%, rgba(216, 197, 165, 0.06), transparent 24%),
    var(--bg);
}

.about-hero {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.about-hero > img {
  filter: contrast(1.06) brightness(0.82);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
}

.about-hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 24, 21, 0.9) 0%, rgba(24, 24, 21, 0.62) 42%, rgba(24, 24, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(24, 24, 21, 0.9) 0%, rgba(24, 24, 21, 0.08) 54%, rgba(24, 24, 21, 0.58) 100%);
  inset: 0;
  position: absolute;
}

.about-hero-copy {
  left: clamp(24px, 6vw, 104px);
  max-width: 800px;
  position: absolute;
  top: 41%;
  transform: translateY(-50%);
}

.about-hero-copy h1 {
  font-size: clamp(76px, 10vw, 150px);
  max-width: 880px;
}

.about-hero-copy p:not(.eyebrow) {
  color: rgba(244, 234, 216, 0.84);
  font-size: 19px;
  line-height: 1.65;
  max-width: 620px;
}

.about-story {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 820px;
}

.about-story-image {
  min-height: 820px;
  overflow: hidden;
}

.about-story-image img {
  filter: saturate(0.62) contrast(0.96) brightness(0.72);
  height: 100%;
  object-fit: cover;
  object-position: 52% 38%;
  width: 100%;
}

.about-prose {
  align-content: center;
  display: grid;
  padding: var(--space-7) clamp(32px, 8vw, 136px);
}

.about-prose h2 {
  max-width: 720px;
}

.about-prose p:not(.eyebrow) {
  color: rgba(244, 234, 216, 0.82);
  font-size: 18px;
  line-height: 1.72;
  max-width: 700px;
}

.about-prose p:not(.eyebrow) + p {
  margin-top: var(--space-3);
}

.about-prose .text-cta {
  margin-top: var(--space-4);
  width: max-content;
}

.journal-page {
  background: var(--bg);
}

.journal-hero {
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 132px clamp(18px, 4vw, 72px) 124px;
  position: relative;
}

.journal-hero > img {
  filter: saturate(0.72) contrast(1.08) brightness(0.62);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.journal-hero-shade {
  background:
    radial-gradient(circle at 50% 46%, rgba(24, 24, 21, 0.08), rgba(24, 24, 21, 0.78) 64%),
    linear-gradient(90deg, rgba(24, 24, 21, 0.78), rgba(24, 24, 21, 0.32), rgba(24, 24, 21, 0.82));
  inset: 0;
  position: absolute;
}

.notebook {
  background:
    linear-gradient(90deg, rgba(139, 60, 45, 0.14) 0 1px, transparent 1px 100%),
    repeating-linear-gradient(180deg, rgba(24, 24, 21, 0) 0 31px, rgba(76, 88, 94, 0.16) 32px),
    #efe4d1;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
  color: #27231c;
  max-height: min(76svh, 760px);
  max-width: 760px;
  overflow: auto;
  padding: clamp(32px, 5vw, 68px);
  position: relative;
  transform: rotate(-1.2deg);
  width: min(760px, 100%);
  z-index: 2;
}

.notebook::before {
  background: rgba(139, 60, 45, 0.32);
  content: "";
  inset: 0 auto 0 clamp(22px, 4vw, 42px);
  position: absolute;
  width: 1px;
}

.notebook::after {
  border: 1px solid rgba(39, 35, 28, 0.08);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.notebook-meta {
  align-items: start;
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  position: relative;
}

.notebook .eyebrow {
  color: rgba(39, 35, 28, 0.58);
}

.notebook-meta span {
  color: rgba(39, 35, 28, 0.48);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.notebook h1 {
  color: #201d17;
  font-family: "Caveat", var(--font-display);
  font-size: clamp(50px, 6.2vw, 86px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  margin-bottom: var(--space-4);
  position: relative;
  white-space: nowrap;
}

.journal-writing {
  color: rgba(32, 29, 23, 0.86);
  font-family: "Caveat", var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.18;
  min-height: 360px;
  position: relative;
}

.journal-writing p {
  margin-bottom: var(--space-4);
}

.journal-writing.is-writing::after {
  animation: blinkCaret 900ms step-end infinite;
  content: "";
  border-right: 2px solid rgba(39, 35, 28, 0.7);
  margin-left: 3px;
}

.video-page {
  background: var(--bg);
}

.video-hero {
  min-height: 72svh;
  overflow: hidden;
  position: relative;
}

.video-hero > img {
  filter: saturate(0.72) contrast(1.04) brightness(0.68);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.video-hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 24, 21, 0.92) 0%, rgba(24, 24, 21, 0.54) 46%, rgba(24, 24, 21, 0.32) 100%),
    linear-gradient(0deg, rgba(24, 24, 21, 0.94) 0%, rgba(24, 24, 21, 0.08) 52%, rgba(24, 24, 21, 0.52) 100%);
  inset: 0;
  position: absolute;
}

.video-hero-copy {
  bottom: var(--space-7);
  left: clamp(24px, 6vw, 104px);
  max-width: 780px;
  position: absolute;
  z-index: 2;
}

.video-hero-copy h1 {
  font-size: clamp(64px, 8vw, 128px);
  max-width: 900px;
}

.video-hero-copy p:not(.eyebrow) {
  color: rgba(244, 234, 216, 0.82);
  font-size: 18px;
  max-width: 560px;
}

.video-feature {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(220px, 0.9fr) 3fr;
  padding: var(--space-7) clamp(24px, 4.4vw, 72px);
}

.video-feature-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.video-frame {
  background: #10100e;
  border: 1px solid rgba(244, 234, 216, 0.1);
  overflow: hidden;
  position: relative;
}

.video-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.video-frame.featured {
  box-shadow: var(--shadow);
  justify-self: end;
  width: 80%;
}

.video-grid-section {
  border-top: 1px solid rgba(244, 234, 216, 0.08);
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(220px, 0.9fr) 3fr;
  padding: var(--space-7) clamp(24px, 4.4vw, 72px) var(--space-8);
}

.video-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card h3 {
  margin-top: var(--space-4);
}

@keyframes blinkCaret {
  50% {
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

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

  .section-intro {
    position: static;
  }

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

  .tour-news,
  .story,
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story,
  .video-feature,
  .video-grid-section,
  .about-story-image {
    min-height: auto;
  }

  .video-feature,
  .video-grid-section {
    grid-template-columns: 1fr;
  }

  .video-feature-copy {
    position: static;
  }

  .about-story-image {
    height: 560px;
  }

  .about-story-image img {
    object-position: 52% 34%;
  }

  .notebook {
    max-height: none;
  }

  .story {
    height: auto;
  }

  .story-image,
  .stage-panel {
    max-height: 500px;
  }

  .story-image {
    height: 500px;
  }

  .story-image img {
    object-position: 42% 58%;
  }

  .player {
    grid-template-columns: 56px 1fr auto auto;
  }

  .player > img {
    width: 56px;
  }

  .timeline,
  .listen-links {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    padding: 22px 20px;
  }

  .brand {
    font-size: 18px;
    letter-spacing: 0.24em;
  }

  .header-actions a {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(24, 24, 21, 0.9) 0%, rgba(24, 24, 21, 0.48) 58%, rgba(24, 24, 21, 0.24) 100%),
      linear-gradient(0deg, rgba(24, 24, 21, 0.93) 0%, rgba(24, 24, 21, 0.08) 42%, rgba(24, 24, 21, 0.45) 100%);
  }

  .hero-content {
    left: 22px;
    right: 22px;
    top: 48%;
  }

  h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  h2 {
    font-size: clamp(44px, 15vw, 62px);
  }

  .hero-release {
    align-items: flex-start;
    display: grid;
    gap: var(--space-3);
    left: 22px;
    right: 22px;
  }

  .discography,
  .tour-panel,
  .newsletter-panel,
  .story-copy,
  .about-prose {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about-hero {
    min-height: 100svh;
  }

  .about-hero > img {
    object-position: 54% center;
  }

  .about-hero-copy {
    left: 22px;
    right: 22px;
    top: 40%;
  }

  .about-hero-copy h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .about-hero-copy p:not(.eyebrow),
  .about-prose p:not(.eyebrow) {
    font-size: 17px;
  }

  .about-story-image {
    height: 460px;
  }

  .about-prose {
    padding-bottom: var(--space-7);
    padding-top: var(--space-6);
  }

  .journal-hero {
    align-items: start;
    min-height: 100svh;
    padding: 104px 18px 104px;
  }

  .journal-hero > img {
    object-position: 52% center;
  }

  .notebook {
    max-height: calc(100svh - 220px);
    overflow: auto;
    padding: 34px 26px 40px 38px;
    transform: rotate(-0.5deg);
  }

  .notebook::before {
    left: 24px;
  }

  .notebook-meta {
    display: grid;
  }

  .journal-writing {
    font-size: 25px;
    min-height: 380px;
  }

  .notebook h1 {
    font-size: clamp(38px, 11.4vw, 46px);
  }

  .video-hero {
    min-height: 680px;
  }

  .video-hero-copy {
    bottom: var(--space-6);
    left: 22px;
    right: 22px;
  }

  .video-hero-copy h1 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .video-feature,
  .video-grid-section {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .video-frame.featured {
    justify-self: stretch;
    width: 100%;
  }

  .discography {
    padding-top: var(--space-6);
  }

  .album-grid {
    gap: var(--space-5);
    grid-template-columns: 1fr;
  }

  .story-copy {
    min-height: auto;
    padding-bottom: var(--space-7);
    padding-top: var(--space-6);
  }

  .signature {
    display: none;
  }

  .show-list li {
    grid-template-columns: 50px 1fr;
  }

  .show-list a {
    grid-column: 2;
    justify-self: start;
  }

  .player {
    gap: var(--space-3);
    grid-template-columns: 48px 1fr 92px;
    min-height: 78px;
    padding: 10px 14px;
  }

  .player > img {
    width: 48px;
  }

  .track-meta strong {
    font-size: 18px;
  }

  .heart {
    display: none;
  }

  .player-controls {
    gap: 0;
  }

  .player-controls button:not(.play) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

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