:root {
  --ink: #151923;
  --ink-soft: #232936;
  --paper: #f4efe6;
  --paper-bright: #fffaf2;
  --white: #ffffff;
  --red: #c8203f;
  --red-dark: #98152d;
  --orange: #f26a2e;
  --blue: #2f82c4;
  --gold: #f2b84b;
  --mint: #71bfa9;
  --muted: #706d69;
  --line: rgba(21, 25, 35, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --page: 1240px;
  --header-height: 92px;
  --shadow: 0 24px 60px rgba(14, 17, 24, 0.2);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

button {
  border: 0;
  cursor: pointer;
}

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

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

svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2;
}

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

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.page-width {
  width: min(var(--page), calc(100% - 64px));
  margin-inline: auto;
}

.section-space {
  padding-block: 112px;
}

.eyebrow,
.section-number {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold);
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading h2,
.promise-grid h2,
.decades-copy h2,
.win-layout h2,
.club-layout h2,
.page-hero h1,
.call-intro h1 {
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 850;
  line-height: 0.98;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.primary-button,
.outline-button,
.text-link,
.header-call,
.listen-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  font-weight: 800;
}

.primary-button {
  padding: 0 22px;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(200, 32, 63, 0.24);
  transition: background 160ms ease, transform 160ms ease;
}

.primary-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.outline-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  transition: background 160ms ease, color 160ms ease;
}

.outline-button:hover {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  min-height: 42px;
  border-bottom: 1px solid currentColor;
}

.text-link.light {
  color: var(--white);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(21, 25, 35, 0.97);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange) 0 34%, var(--gold) 34% 56%, var(--red) 56% 82%, var(--blue) 82% 100%);
  content: "";
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 168px;
  height: 68px;
}

.brand-link img {
  width: 168px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 750;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.mobile-call-link {
  display: none;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-call {
  min-width: 178px;
  min-height: 58px;
  padding: 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 3px;
  font-size: 0.9rem;
  transition: background 160ms ease, border-color 160ms ease;
}

.header-call:hover {
  border-color: var(--gold);
  background: rgba(242, 184, 75, 0.12);
}

.listen-button {
  min-width: 166px;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 3px;
  background: var(--red);
  color: var(--white);
  font-size: 0.92rem;
  box-shadow: 0 12px 28px rgba(200, 32, 63, 0.3);
}

.listen-button.is-playing {
  background: var(--gold);
  color: var(--ink);
}

.listen-button.is-loading svg,
.song-list-loading svg,
.is-loading svg {
  animation: spin 900ms linear infinite;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 44px);
  max-height: 860px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
  object-position: center center;
  animation: hero-arrive 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(12, 17, 25, 0.97) 0%, rgba(12, 17, 25, 0.82) 32%, rgba(12, 17, 25, 0.22) 62%, rgba(12, 17, 25, 0.04) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - var(--header-height) - 44px);
  max-height: 860px;
  padding: 64px 0 132px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-kicker span + span {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.48);
}

.hero-brand {
  width: min(440px, 42vw);
  height: auto;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.24));
}

.hero-promise {
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.93);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 3rem;
  line-height: 1.04;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-actions .primary-button {
  min-height: 60px;
  padding-inline: 28px;
  font-size: 1rem;
}

.hero-song {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 24px;
  left: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  min-height: 88px;
  margin-right: max(32px, calc((100vw - var(--page)) / 2));
  margin-left: auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 6px solid var(--orange);
  border-radius: 3px;
  background: rgba(14, 18, 27, 0.93);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-song > img {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
}

.hero-song span,
.now-feature span,
.song-meta span,
.host-card span,
.city-story span {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-song strong {
  display: block;
  overflow: hidden;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-song-play {
  background: var(--red);
  color: var(--white);
}

.promise-band {
  padding: 62px 0;
  border-bottom: 0;
  background: var(--gold);
}

.promise-grid {
  display: grid;
  grid-template-columns: 180px 1fr 0.74fr;
  align-items: start;
  gap: 44px;
}

.promise-grid h2 {
  font-size: 4rem;
}

.promise-copy {
  margin: 30px 0 0;
  color: rgba(21, 25, 35, 0.76);
  font-size: 1.04rem;
  line-height: 1.65;
}

.music-section {
  background: var(--paper);
}

.music-section .section-heading h2 {
  font-size: 5.4rem;
}

.played-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.now-feature {
  position: sticky;
  top: 108px;
  display: grid;
  grid-template-columns: 46% minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.now-feature > img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.now-feature-copy h3 {
  margin-bottom: 8px;
  font-size: 3.2rem;
  font-weight: 850;
  line-height: 0.95;
}

.now-feature-copy p {
  margin-bottom: 26px;
  color: var(--muted);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.65rem;
}

.music-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.round-play,
.service-button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.round-play {
  background: var(--red);
  color: var(--white);
}

.service-button {
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.service-button img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.service-button.spotify {
  color: #158f48;
}

.service-button.apple {
  color: var(--red);
}

.service-mark {
  display: grid !important;
  place-items: center;
  width: 22px;
  height: 22px;
  margin: 0 !important;
  border-radius: 50%;
  background: #1db954;
  color: #07130a !important;
  font-size: 0.72rem !important;
  font-weight: 900;
}

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

.song-list-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 100px;
  color: var(--muted);
}

.song-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 94px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.song-row > img {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  object-fit: cover;
}

.song-meta strong,
.song-meta p {
  display: block;
  margin: 0;
}

.song-meta strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.song-meta p {
  color: var(--muted);
}

.song-row-actions {
  display: flex;
  gap: 8px;
}

.song-row-actions .service-button {
  width: 40px;
  height: 40px;
}

.decades-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.decades-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.decades-copy h2 {
  font-size: 4.4rem;
}

.decades-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.65;
}

.segmented-control {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 4px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
}

.segmented-control button {
  min-width: 72px;
  min-height: 42px;
  border-radius: 3px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.segmented-control button.is-active {
  background: var(--white);
  color: var(--ink);
}

.decade-stage {
  position: relative;
  min-height: 470px;
  padding: 46px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  overflow: hidden;
  background: var(--red);
  box-shadow: var(--shadow);
}

.decade-stage::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 390px;
  height: 390px;
  border: 72px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.decade-stage[data-active-decade="70s"] {
  background: var(--orange);
}

.decade-stage[data-active-decade="90s"] {
  background: var(--blue);
}

.decade-kicker {
  margin-bottom: 72px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.decade-stage > strong {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 4.2rem;
  line-height: 0.92;
}

.decade-tracks {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.decade-tracks span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
}

.shows-section,
.club-section {
  background: var(--paper-bright);
}

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

.host-card {
  position: relative;
  min-height: 330px;
  --host-accent: var(--orange);
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.host-card:hover,
.city-story:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.host-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06);
}

.host-card > div {
  padding: 22px;
  border-top: 5px solid var(--host-accent);
}

.host-card:nth-child(2) {
  --host-accent: var(--blue);
}

.host-card:nth-child(3) {
  --host-accent: var(--gold);
}

.host-card strong {
  display: block;
  font-size: 1.6rem;
}

.host-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.host-card-wide {
  grid-row: span 2;
  min-height: 678px;
}

.host-card-wide > img {
  height: 430px;
}

.host-card-wide strong {
  font-size: 2.4rem;
}

.city-section {
  background: var(--paper);
}

.city-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.city-story {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--paper-bright);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.city-story > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-story > div {
  padding: 26px;
  border-top: 5px solid var(--blue);
}

.city-story h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.city-story p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.lead-story {
  grid-row: span 2;
  grid-template-columns: 1fr;
  min-height: 560px;
}

.lead-story > img {
  height: 340px;
}

.lead-story h3 {
  font-size: 2.5rem;
}

.win-section {
  background: var(--red);
  color: var(--white);
}

.win-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.win-layout > img {
  width: min(100%, 440px);
  max-height: 460px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.24));
}

.win-layout h2 {
  font-size: 4.6rem;
}

.win-layout > div > p:not(.eyebrow) {
  max-width: 580px;
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.6;
}

.light-button {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.light-button:hover {
  background: var(--gold);
}

.club-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.club-form {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 16px;
}

.club-form > p,
.club-form .primary-button,
.club-form .form-status {
  grid-column: 1 / -1;
}

.club-form > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.club-form label,
.call-name-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.club-form input,
.call-name-field input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  text-transform: none;
}

.club-form input:focus,
.call-name-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 130, 196, 0.14);
}

.club-form .primary-button {
  justify-self: start;
}

.form-status {
  min-height: 24px;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 750;
}

.site-footer {
  padding: 56px 0 22px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
}

.footer-brand img {
  width: 180px;
}

.footer-main p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-weight: 850;
}

.footer-social img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

/* Interior pages */
.page-hero {
  padding: 100px 0 72px;
  background: var(--ink);
  color: var(--white);
}

.page-hero h1 {
  max-width: 920px;
  font-size: 5.4rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  line-height: 1.6;
}

.interior-section {
  padding-block: 84px;
}

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

.schedule-row {
  display: grid;
  grid-template-columns: 220px 230px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-row img {
  width: 220px;
  height: 110px;
  border-radius: 6px;
  object-fit: cover;
}

.schedule-time {
  color: var(--red);
  font-weight: 850;
}

.schedule-row h2 {
  margin-bottom: 6px;
  font-size: 2rem;
}

.schedule-row p {
  margin: 0;
  color: var(--muted);
}

.event-grid,
.contest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card,
.contest-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-bright);
}

.event-card img,
.contest-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.event-card > div,
.contest-card > div {
  padding: 22px;
}

.event-card span,
.contest-card span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.event-card h2,
.contest-card h2 {
  margin: 8px 0 10px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.event-card p,
.contest-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.club-page-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.club-benefits {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.club-benefit {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.club-benefit svg {
  color: var(--red);
}

.club-benefit strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.club-benefit p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.club-page-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-bright);
}

.club-page-form label {
  display: grid;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.club-page-form input {
  height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.preference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.preference-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  text-transform: none;
}

/* Editorial detail pages */
.detail-hero {
  padding: 82px 0 74px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  align-items: center;
  gap: 72px;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 46px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.77rem;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-back:hover {
  color: var(--gold);
}

.detail-intro h1 {
  max-width: 760px;
  margin: 22px 0 26px;
  font-size: clamp(4.4rem, 7vw, 7.5rem);
  font-weight: 900;
  line-height: 0.86;
  overflow-wrap: anywhere;
}

.detail-intro > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.48rem;
  line-height: 1.4;
}

.detail-cta {
  min-height: 60px;
  margin-top: 32px;
}

.detail-image-wrap {
  position: relative;
  min-height: 560px;
  border-left: 6px solid var(--orange);
  background: #222936;
}

.detail-image {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.detail-brand-stamp {
  position: absolute;
  right: -16px;
  bottom: 28px;
  width: 192px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(21, 25, 35, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.detail-brand-stamp img {
  display: block;
  width: 100%;
}

.detail-content {
  padding: 104px 0;
  background: var(--paper-bright);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  gap: 90px;
}

.detail-article > p:not(.eyebrow) {
  max-width: 820px;
  margin: 0 0 28px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.34rem;
  line-height: 1.7;
}

.detail-facts {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.detail-facts dl {
  margin: 24px 0 34px;
}

.detail-facts dl div {
  display: grid;
  gap: 7px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.detail-facts dt {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-facts dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

/* Player */
.triton-player-host {
  position: fixed;
  left: -10px;
  bottom: -10px;
  width: 2px;
  height: 2px;
  overflow: hidden;
  opacity: 0.001;
  pointer-events: none;
}

.triton-player-host,
.triton-player-host * {
  max-width: 2px !important;
  max-height: 2px !important;
}

.player-modal,
.history-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.player-modal.is-open,
.history-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 19, 0.74);
  backdrop-filter: blur(16px);
}

.player-shell,
.history-shell {
  position: relative;
  width: min(980px, calc(100vw - 36px));
  max-height: calc(100svh - 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
}

.player-shell {
  height: min(680px, calc(100svh - 36px));
}

.player-head,
.history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 12px 16px 12px 20px;
  border-bottom: 1px solid var(--line-light);
}

.player-head img {
  width: 120px;
}

.player-head button,
.history-head button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.player-stage {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: calc(100% - 68px);
  padding: 30px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.player-now {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 0;
}

.player-art {
  width: 300px;
  height: 300px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.player-copy > span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.player-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: var(--player-artist-size, 5rem);
  font-weight: 900;
  line-height: 0.84;
  overflow-wrap: anywhere;
}

.player-copy > p {
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stream-button {
  min-width: 168px;
  min-height: 48px;
}

.player-controls .service-button {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.07);
}

.signal-meter {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  align-items: end;
  gap: 6px;
  height: 86px;
  padding-top: 20px;
}

.signal-meter i {
  display: block;
  height: var(--meter-height, 24%);
  min-height: 4px;
  background: var(--orange);
  transform-origin: bottom;
}

.player-modal.is-playing .signal-meter i {
  animation: meter 900ms ease-in-out infinite alternate;
  animation-delay: var(--meter-delay, 0ms);
}

.player-status {
  position: absolute;
  right: 30px;
  bottom: 112px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.75rem;
  font-weight: 750;
}

.history-shell {
  width: min(780px, calc(100vw - 36px));
  background: var(--paper-bright);
  color: var(--ink);
}

.history-head {
  border-color: var(--line);
}

.history-head h2 {
  margin: 0;
  font-size: 2rem;
}

.history-head button {
  background: var(--ink);
}

.history-list {
  max-height: min(620px, calc(100svh - 150px));
  padding: 0 24px 24px;
  overflow: auto;
}

/* Call page */
.call-page {
  min-height: calc(100svh - var(--header-height));
  background:
    linear-gradient(105deg, rgba(21, 25, 35, 0.97), rgba(21, 25, 35, 0.78)),
    url("./assets/wls-chicago-soundtrack-hero-branded.jpg") center / cover;
  color: var(--white);
}

.call-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
  min-height: calc(100svh - var(--header-height));
  padding-block: 50px;
}

.call-intro h1 {
  font-size: 4.5rem;
}

.call-intro p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.6;
}

.call-console {
  width: min(100%, 610px);
  justify-self: end;
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.call-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.call-console-head img {
  width: 130px;
}

.line-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.line-status::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.call-console h2 {
  margin-bottom: 8px;
  font-size: 2.2rem;
}

.call-console > p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.call-name-field {
  margin-bottom: 22px;
}

.call-activator {
  display: grid;
  place-items: center;
  width: min(290px, 76vw);
  aspect-ratio: 1;
  margin: 18px auto;
  border: 12px solid rgba(200, 32, 63, 0.13);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 24px 50px rgba(200, 32, 63, 0.3);
  transition: transform 160ms ease, background 160ms ease;
}

.call-activator:hover {
  background: var(--red-dark);
  transform: scale(1.02);
}

.call-activator svg {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.call-activator strong {
  display: block;
  font-size: 1.55rem;
}

.call-activator span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
}

.recording-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0;
}

.call-console.is-recording .recording-controls,
.call-console.has-recording .recording-controls {
  display: flex;
}

.call-console.is-recording .call-activator,
.call-console.has-recording .call-activator {
  display: none;
}

.record-timer {
  min-width: 68px;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
}

.recording-controls button {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 4px;
}

.record-stop {
  background: var(--red);
  color: var(--white);
}

.record-cancel {
  background: var(--ink);
  color: var(--white);
}

.record-preview {
  display: none;
  width: 100%;
  margin: 16px 0;
}

.call-console.has-recording .record-preview {
  display: block;
}

.call-disclaimer {
  margin: 18px 0 0 !important;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45 !important;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes hero-arrive {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes meter {
  from { transform: scaleY(0.52); }
  to { transform: scaleY(1); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 146px minmax(0, 1fr) auto;
  }

  .brand-link,
  .brand-link img {
    width: 130px;
  }

  .main-nav {
    gap: 16px;
  }

  .header-call {
    min-width: 150px;
    min-height: 54px;
    padding: 0 16px;
  }

  .listen-button {
    min-width: 148px;
    min-height: 54px;
  }

  .hero-brand {
    width: min(380px, 42vw);
  }

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

  .now-feature {
    grid-template-columns: 1fr;
  }

  .now-feature > img {
    width: min(100%, 360px);
  }

  .decades-layout,
  .win-layout {
    gap: 46px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .page-width {
    width: min(var(--page), calc(100% - 36px));
  }

  .section-space {
    padding-block: 80px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 6px 14px;
  }

  .brand-link,
  .brand-link img {
    width: 118px;
  }

  .nav-toggle {
    display: inline-grid;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 8px;
  }

  .main-nav {
    position: absolute;
    z-index: 79;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    min-height: calc(100svh - var(--header-height));
    max-height: calc(100svh - var(--header-height));
    padding: 24px 32px 40px;
    overflow-y: auto;
    background: #151923;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 1.15rem;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .mobile-call-link {
    display: block;
    color: var(--gold);
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .header-call {
    display: none;
  }

  .listen-button {
    min-width: 118px;
    min-height: 48px;
  }

  .hero,
  .hero-content {
    min-height: calc(100svh - var(--header-height) - 30px);
  }

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

  .hero-shade {
    background: linear-gradient(90deg, rgba(12, 17, 25, 0.94) 0%, rgba(12, 17, 25, 0.7) 48%, rgba(12, 17, 25, 0.18) 100%);
  }

  .hero-content {
    padding-bottom: 150px;
  }

  .hero-brand {
    width: min(370px, 48vw);
  }

  .hero-promise {
    font-size: 2rem;
  }

  .hero-song {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    max-width: 500px;
    margin: 0;
  }

  .promise-grid,
  .decades-layout,
  .win-layout,
  .club-layout,
  .club-page-layout,
  .call-layout,
  .detail-hero-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero-grid,
  .detail-content-grid {
    gap: 46px;
  }

  .detail-image-wrap,
  .detail-image {
    min-height: 480px;
    height: 480px;
  }

  .detail-facts {
    padding: 30px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .promise-grid {
    gap: 10px;
  }

  .promise-copy {
    margin-top: 10px;
  }

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

  .now-feature {
    position: static;
    grid-template-columns: 270px minmax(0, 1fr);
  }

  .host-grid,
  .city-grid,
  .event-grid,
  .contest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .host-card-wide,
  .lead-story {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .club-layout,
  .club-page-layout {
    gap: 48px;
  }

  .footer-main {
    grid-template-columns: 180px 1fr;
  }

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

  .page-hero h1 {
    font-size: 4.2rem;
  }

  .schedule-row {
    grid-template-columns: 180px 160px minmax(0, 1fr);
  }

  .schedule-row img {
    width: 180px;
    height: 96px;
  }

  .schedule-row .outline-button {
    grid-column: 3;
    justify-self: start;
  }

  .call-layout {
    gap: 32px;
  }

  .call-console {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .page-width {
    width: calc(100% - 28px);
  }

  .section-space {
    padding-block: 64px;
  }

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

  .brand-link,
  .brand-link img {
    width: 104px;
  }

  .listen-button {
    min-width: 52px;
    width: 52px;
    min-height: 52px;
    padding: 0;
  }

  .listen-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero {
    min-height: 760px;
    max-height: none;
  }

  .hero-content {
    min-height: 760px;
    padding: 68px 0 188px;
    justify-content: flex-start;
  }

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

  .hero-shade {
    background: linear-gradient(180deg, rgba(12, 17, 25, 0.72) 0%, rgba(12, 17, 25, 0.4) 42%, rgba(12, 17, 25, 0.92) 100%);
  }

  .hero-brand {
    width: min(290px, 78vw);
  }

  .hero-promise {
    font-size: 1.85rem;
  }

  .detail-hero {
    padding: 56px 0;
  }

  .detail-back {
    margin-bottom: 34px;
  }

  .detail-intro h1 {
    font-size: 3.45rem;
  }

  .detail-intro > p:not(.eyebrow) {
    font-size: 1.2rem;
  }

  .detail-image-wrap,
  .detail-image {
    min-height: 350px;
    height: 350px;
  }

  .detail-brand-stamp {
    right: -5px;
    width: 146px;
  }

  .detail-content {
    padding: 66px 0;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-song {
    grid-template-columns: 58px minmax(0, 1fr) 42px;
    min-height: 80px;
  }

  .hero-song > img {
    width: 58px;
    height: 58px;
  }

  .section-heading h2,
  .promise-grid h2,
  .decades-copy h2,
  .win-layout h2,
  .club-layout h2,
  .page-hero h1,
  .call-intro h1 {
    font-size: 2.8rem;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .played-layout {
    gap: 34px;
  }

  .now-feature {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
  }

  .now-feature-copy h3 {
    font-size: 1.85rem;
  }

  .now-feature-copy p {
    margin-bottom: 14px;
    font-size: 1.12rem;
  }

  .music-actions {
    gap: 7px;
  }

  .round-play,
  .service-button {
    width: 42px;
    height: 42px;
  }

  .song-row {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 82px;
  }

  .song-row > img {
    width: 58px;
    height: 58px;
  }

  .song-row-actions .service-button {
    width: 36px;
    height: 36px;
  }

  .song-row-actions .service-button.spotify {
    display: none;
  }

  .decades-layout {
    gap: 34px;
  }

  .decade-stage {
    min-height: 400px;
    padding: 28px;
  }

  .decade-kicker {
    margin-bottom: 54px;
  }

  .decade-stage > strong {
    font-size: 3.2rem;
  }

  .host-grid,
  .city-grid,
  .event-grid,
  .contest-grid {
    grid-template-columns: 1fr;
  }

  .host-card-wide,
  .lead-story {
    grid-column: auto;
  }

  .host-card-wide {
    min-height: 420px;
  }

  .host-card-wide > img,
  .host-card > img {
    height: 240px;
  }

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

  .city-story > img,
  .lead-story > img {
    height: 230px;
  }

  .lead-story {
    min-height: 440px;
  }

  .lead-story h3 {
    font-size: 2rem;
  }

  .win-layout {
    gap: 30px;
  }

  .win-layout > img {
    max-height: 320px;
  }

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

  .club-form > p,
  .club-form .primary-button,
  .club-form .form-status {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .page-hero {
    padding: 70px 0 54px;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .schedule-row img {
    width: 100%;
    height: auto;
  }

  .schedule-row .outline-button {
    grid-column: auto;
  }

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

  .player-modal,
  .history-modal {
    padding: 8px;
  }

  .player-shell,
  .history-shell {
    width: calc(100vw - 16px);
    max-height: calc(100svh - 16px);
  }

  .player-shell {
    height: calc(100svh - 16px);
  }

  .player-stage {
    padding: 18px;
    overflow: auto;
  }

  .player-now {
    grid-template-columns: 1fr;
    gap: 18px;
    align-content: start;
  }

  .player-art {
    width: min(54vw, 240px);
    height: min(54vw, 240px);
    margin-inline: auto;
  }

  .player-copy {
    text-align: center;
  }

  .player-copy h2 {
    font-size: 3rem;
    line-height: 0.9;
  }

  .player-copy > p {
    margin: 12px 0 16px;
    font-size: 1.45rem;
  }

  .player-controls {
    justify-content: center;
  }

  .stream-button {
    min-width: 142px;
  }

  .signal-meter {
    height: 60px;
  }

  .player-status {
    display: none;
  }

  .call-page,
  .call-layout {
    min-height: calc(100svh - var(--header-height));
  }

  .call-layout {
    align-content: start;
    padding-block: 22px;
  }

  .call-intro h1 {
    font-size: 2.45rem;
  }

  .call-intro p:not(.eyebrow) {
    display: none;
  }

  .call-console {
    padding: 18px;
  }

  .call-console h2 {
    font-size: 1.75rem;
  }

  .call-activator {
    width: min(230px, 62svh);
    border-width: 9px;
  }
}

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