:root {
  --paper: #e9edf0;
  --surface: #d9dfe3;
  --ink: #131517;
  --muted: #51585e;
  --line: #b7c0c6;
  --red: #c82c26;
  --display: "Bahnschrift Condensed", "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

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

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  transition: border-color 220ms ease;
}

.wordmark {
  font-family: var(--display);
  font-size: 25px;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.site-nav a,
.social-links a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after,
.social-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.site-nav a:hover::after,
.social-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: 700 14px/1 var(--body);
}

.hero {
  height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
  padding-top: 70px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 54px clamp(24px, 7vw, 112px);
}

.hero h1,
h2,
.song-list strong,
.featured-release h3 {
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  max-width: 760px;
  margin: 0;
  padding-left: 28px;
  font-size: clamp(82px, 12vw, 180px);
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.hero h1::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 4px;
  left: 0;
  width: 4px;
  background: var(--red);
}

.hero-copy > p {
  margin: 38px 0 0 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 0 28px;
}

.button img {
  flex: 0 0 auto;
}

.button-spotify {
  gap: 10px;
  border-color: #1ed760;
  color: #0b0b0b;
  background: #1ed760;
}

.button-spotify:hover {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.button-spotify:hover img {
  filter: invert(1);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(520px, calc(100% - 28px));
  margin: 44px 0 0 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
}

.hero-proof dt {
  color: var(--muted);
  font-size: 12px;
}

.hero-proof dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.button {
  min-width: 188px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  border-color: var(--red);
  color: #f7f7f5;
  background: var(--red);
}

.button-primary:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.button-secondary:hover {
  color: var(--paper);
  background: var(--ink);
}

.hero-media {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.section-shell {
  padding: clamp(88px, 10vw, 154px) clamp(20px, 6vw, 96px);
}

.section-intro {
  max-width: 760px;
  margin-bottom: clamp(48px, 7vw, 94px);
}

.section-intro h2,
.story-copy h2,
.partner-heading h2,
.fan-copy h2,
.epk-copy h2,
.press-heading h2,
.platform-heading h2,
.live-heading h2,
.booking-copy h2 {
  margin: 0;
  font-size: clamp(56px, 7.8vw, 118px);
  letter-spacing: -0.06em;
  line-height: 0.84;
}

.section-intro p,
.press-heading p,
.platform-heading p,
.live-heading p,
.booking-copy p,
.story-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.62;
}

.section-intro p {
  margin: 28px 0 0;
}

.music-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(440px, 1.28fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: start;
}

.release-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
}

.release-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% 48%;
  filter: grayscale(1) contrast(1.06);
  transform: scale(1.05);
}

.featured-release h3 {
  margin: 24px 0 0;
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.release-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 34px 0 0;
}

.release-proof div {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.release-proof div + div {
  padding-left: 24px;
  border-right: 0;
}

.release-proof dt {
  color: var(--muted);
  font-size: 13px;
}

.release-proof dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 900;
  line-height: 0.8;
}

.text-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding: 15px 0;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--red);
  border-color: var(--red);
}

.song-list {
  border-top: 1px solid var(--line);
}

.song-list a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 220ms ease, color 220ms ease;
}

.song-list a:hover {
  padding-left: 16px;
  color: var(--red);
}

.song-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.song-list strong {
  max-width: 520px;
  font-size: clamp(29px, 3.4vw, 54px);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.song-list b {
  font-size: 25px;
  font-weight: 400;
}

#music,
#reach,
#story,
#live,
#press,
#epk,
#booking {
  scroll-margin-top: 70px;
}

.platform-section {
  border-top: 1px solid var(--line);
}

.platform-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 92px);
}

.platform-heading p,
.live-heading p {
  margin: 0;
}

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

.platform-card {
  min-width: 0;
  padding: clamp(20px, 2.5vw, 38px);
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
}

.platform-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  font-weight: 800;
}

.platform-shot {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.platform-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 0;
}

.platform-card dl div {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.platform-card dl div + div {
  padding-left: 18px;
  border-right: 0;
}

.platform-card dt {
  color: var(--muted);
  font-size: 12px;
}

.platform-card dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 58px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.86;
}

.spotify-card {
  color: #f4f4f4;
  background: #121212;
}

.spotify-card .platform-label img {
  filter: invert(68%) sepia(80%) saturate(638%) hue-rotate(88deg) brightness(91%);
}

.spotify-card dt {
  color: #a7a7a7;
}

.spotify-card dl div,
.spotify-card .platform-shot {
  border-color: #383838;
}

.threads-copy {
  min-height: clamp(210px, 27vw, 380px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 60px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.threads-copy strong {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 92px);
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.threads-copy p {
  max-width: 420px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.76fr);
  gap: clamp(50px, 9vw, 146px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.story-copy p:first-of-type {
  margin-top: 42px;
}

.story-copy p + p {
  margin-top: 20px;
}

.story-media {
  min-height: 660px;
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.partner-section {
  border-top: 1px solid var(--line);
}

.partner-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 48px;
  align-items: end;
}

.partner-heading p,
.epk-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.62;
}

.partner-lanes {
  margin-top: clamp(54px, 7vw, 92px);
  border-top: 1px solid var(--ink);
}

.partner-lanes article {
  display: grid;
  grid-template-columns: 70px minmax(240px, 0.7fr) minmax(280px, 1fr);
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.partner-lanes span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.partner-lanes h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}

.partner-lanes p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.live-section {
  border-top: 1px solid var(--line);
}

.live-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 92px);
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 30px);
}

.live-grid a {
  color: var(--ink);
  text-decoration: none;
}

.live-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  background: var(--surface);
}

.live-grid span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.press-section {
  border-top: 1px solid var(--line);
}

.fan-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(54px, 10vw, 160px);
  align-items: start;
  border-top: 8px solid var(--red);
  background: var(--ink);
  color: var(--paper);
}

.fan-kicker {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fan-copy h2 {
  color: var(--paper);
}

.fan-copy > p:last-child {
  max-width: 520px;
  margin: 34px 0 0;
  color: #a9afb3;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.62;
}

.fan-form {
  padding-top: 8px;
}

.fan-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 24px;
}

.fan-form-fields > label:not(.fan-consent) {
  display: grid;
  gap: 11px;
}

.fan-form label > span {
  color: #a9afb3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fan-form label small {
  margin-left: 6px;
  color: #747a7e;
  font-size: 9px;
}

.fan-form input[type="text"],
.fan-form input[type="email"],
.fan-form input[type="tel"],
.fan-form select {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid #555b5f;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font: 600 17px/1.2 var(--body);
}

.fan-form select {
  cursor: pointer;
}

.fan-form select option {
  background: var(--ink);
  color: var(--paper);
}

.fan-form input:focus,
.fan-form select:focus {
  border-color: var(--red);
}

.fan-form input::placeholder {
  color: #676c70;
}

.fan-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.fan-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.fan-consent span {
  max-width: 520px;
  color: #a9afb3 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.fan-submit {
  grid-column: 1 / -1;
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  border: 0;
  background: var(--red);
  color: #fff;
  font: 800 13px/1 var(--body);
  text-transform: uppercase;
  cursor: pointer;
}

.fan-submit:hover {
  background: #a9231e;
}

.fan-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
}

.fan-success {
  padding: clamp(34px, 5vw, 64px) 0;
  border-top: 1px solid #555b5f;
  border-bottom: 1px solid #555b5f;
}

.fan-success > span,
.fan-success p,
.fan-success small {
  color: #a9afb3;
}

.fan-success > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fan-success h3 {
  max-width: 580px;
  margin: 20px 0 42px;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
}

.fan-success p {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
}

.fan-success strong {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 80px);
  letter-spacing: 0.02em;
}

.fan-success small {
  display: block;
  margin-top: 18px;
}

.fan-form-status {
  min-height: 20px;
  margin: 18px 0 0;
  color: #ff817b;
  font-size: 13px;
}

.press-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}

.press-heading h2 {
  width: 100%;
  font-size: clamp(52px, 6.8vw, 104px);
  line-height: 0.86;
}

.press-heading p {
  margin: 0;
}

.press-visuals {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(12px, 2vw, 28px);
  margin-top: clamp(48px, 7vw, 90px);
}

.press-visual {
  color: var(--ink);
  text-decoration: none;
}

.press-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: filter 180ms ease;
}

.press-visual:hover img {
  filter: saturate(1) contrast(1.02);
}

.press-visual span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  padding: 15px 0 22px;
  border-bottom: 1px solid var(--ink);
}

.press-visual strong {
  font-size: 15px;
  text-transform: uppercase;
}

.press-visual small {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
}

.press-visual b {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.press-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(44px, 6vw, 76px);
  background: var(--line);
}

.press-list span {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: var(--paper);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 43px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.epk-section {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1fr) minmax(230px, 0.42fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.epk-preview {
  color: var(--ink);
  text-decoration: none;
}

.epk-preview img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 18px 22px 0 var(--red);
}

.epk-preview span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.epk-copy > p:first-of-type {
  margin-top: 34px;
}

.epk-copy .epk-note {
  margin-top: 16px;
  font-size: 14px;
}

.epk-actions .button {
  width: 100%;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  border-top: 8px solid var(--red);
}

.booking-copy p {
  margin: 30px 0 0;
}

.booking-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-types li::before {
  content: "+";
  margin-right: 8px;
  color: var(--red);
}

.booking-copy .booking-contact {
  margin-top: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.booking-button {
  margin-top: 34px;
  min-width: 220px;
}

.booking-visual {
  color: var(--ink);
  text-decoration: none;
}

.booking-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.booking-visual span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  padding: clamp(58px, 7vw, 104px) clamp(20px, 4vw, 64px) 34px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.site-footer .social-links img {
  filter: invert(1);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(340px, 1fr) minmax(240px, 0.62fr);
  gap: clamp(42px, 8vw, 130px);
  align-items: start;
  padding-bottom: clamp(58px, 8vw, 110px);
}

.footer-brand .wordmark {
  color: var(--paper);
}

.footer-brand p,
.footer-booking p,
.footer-bottom p {
  color: #a9afb3;
}

.footer-brand p {
  margin: 18px 0 0;
  font-size: 14px;
}

.footer-booking h2 {
  max-width: 620px;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(44px, 5.8vw, 84px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-booking p {
  max-width: 500px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.55;
}

.footer-cta {
  display: inline-flex;
  justify-content: space-between;
  gap: 34px;
  margin-top: 28px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--red);
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-management {
  display: grid;
  gap: 18px;
}

.footer-management span {
  color: #a9afb3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-management a {
  color: var(--paper);
  font-size: 15px;
  font-weight: 800;
}

.footer-management a:last-child {
  width: fit-content;
  margin-top: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #4a4d50;
  text-decoration: none;
}

.footer-management b {
  margin-left: 14px;
}

.social-links {
  display: flex;
  gap: 26px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid #34373a;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal[data-delay="1"] {
  transition-delay: 100ms;
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .music-layout,
  .story-section,
  .press-section,
  .fan-section,
  .booking-section,
  .epk-section {
    grid-template-columns: 1fr;
  }

  .platform-heading,
  .live-heading,
  .press-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .press-list {
    grid-template-columns: 1fr 1fr;
  }

  .epk-preview {
    width: min(320px, 70vw);
  }

  .featured-release {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
    column-gap: 34px;
  }

  .release-image {
    grid-row: span 4;
  }

  .partner-heading {
    grid-template-columns: 1fr;
  }

  .partner-lanes article {
    grid-template-columns: 54px minmax(220px, 0.7fr) minmax(260px, 1fr);
  }

  .story-media {
    min-height: 560px;
  }

  .booking-button {
    width: fit-content;
  }

  .site-footer {
    padding-inline: 30px;
  }

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

  .footer-management {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 62px;
    padding-inline: 18px;
  }

  .wordmark {
    font-size: 21px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 62px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

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

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    height: auto;
    min-height: 100dvh;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(42dvh, 1fr);
    padding-top: 62px;
  }

  .hero-copy {
    padding: 34px 18px 28px;
  }

  .hero h1 {
    padding-left: 18px;
    max-width: 100%;
    font-size: clamp(48px, 13vw, 64px);
  }

  .hero-copy > p,
  .hero-actions {
    margin-left: 18px;
  }

  .hero-copy > p {
    margin-top: 22px;
  }

  .hero-actions {
    width: calc(100% - 18px);
    flex-direction: row;
    margin-top: 20px;
  }

  .button {
    min-width: 0;
    min-height: 50px;
    padding-inline: 16px;
  }

  .hero-media img {
    object-position: center 15%;
  }

  .section-shell {
    padding: 76px 18px;
  }

  .section-intro h2,
  .story-copy h2,
  .partner-heading h2,
  .fan-copy h2,
  .epk-copy h2,
  .press-heading h2,
  .platform-heading h2,
  .live-heading h2,
  .booking-copy h2 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .press-heading h2 {
    font-size: clamp(44px, 13vw, 64px);
    letter-spacing: -0.055em;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .music-layout,
  .story-section,
  .press-section,
  .fan-section,
  .booking-section {
    gap: 46px;
  }

  .platform-grid,
  .live-grid {
    grid-template-columns: 1fr;
  }

  .press-visuals {
    grid-template-columns: 1fr;
  }

  .platform-heading,
  .live-heading,
  .partner-heading {
    gap: 26px;
  }

  .platform-card {
    padding: 18px;
  }

  .platform-card dd {
    font-size: clamp(32px, 11vw, 52px);
  }

  .threads-copy {
    min-height: 260px;
  }

  .featured-release {
    display: block;
  }

  .song-list a {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    min-height: 98px;
  }

  .song-list strong {
    font-size: clamp(27px, 8vw, 40px);
  }

  .story-media {
    min-height: 500px;
  }

  .partner-lanes article {
    grid-template-columns: 34px 1fr;
    gap: 12px 18px;
    align-items: start;
  }

  .partner-lanes p {
    grid-column: 2;
  }

  .press-list {
    grid-template-columns: 1fr;
  }

  .fan-form-fields {
    grid-template-columns: 1fr;
  }

  .epk-preview {
    width: min(260px, 78vw);
  }

  .press-list span {
    min-height: 110px;
  }

  .booking-button {
    width: 100%;
  }

  .site-footer {
    padding-inline: 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-management {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom p {
    text-align: left;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #131517;
    --surface: #24272a;
    --ink: #f0f0ed;
    --muted: #afb2b4;
    --line: #3b3e41;
    --red: #e24a43;
  }

  .hero-media img {
    filter: brightness(0.88);
  }

  .release-image img {
    filter: grayscale(1) contrast(1.08) brightness(0.82);
  }

  .platform-card:not(.spotify-card) .platform-label img,
  .threads-card .platform-label img,
  .social-links img {
    filter: invert(1);
  }

  .button-primary {
    color: #f7f7f5;
  }
}
