:root {
  --ink: #fff1d6;
  --paper: #101010;
  --soft: #181818;
  --soft-2: #222222;
  --panel: #151515;
  --muted: #b9b0a1;
  --line: rgba(255, 241, 214, 0.14);
  --red: #ff3b22;
  --yellow: #ffb21f;
  --blue: #087ea4;
  --black: #090909;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

button,
select {
  font: inherit;
}

section[id] {
  scroll-margin-top: 88px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 17px;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 244, 220, 0.32);
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 244, 220, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a:hover,
.icon-link:hover {
  color: var(--yellow);
}

.locale-switcher {
  min-width: 172px;
  margin-left: auto;
}

.locale-switcher select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  padding: 0 34px 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.locale-switcher select:focus {
  border-color: var(--red);
  outline: none;
}

.icon-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.icon-link {
  padding: 0 17px;
  background: var(--red);
  color: white;
}

.button {
  padding: 0 20px;
  border: 1px solid rgba(255, 244, 220, 0.3);
  background: transparent;
  color: var(--ink);
}

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

.button.secondary:hover,
.button.primary:hover,
.icon-link:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
  min-height: calc(82vh - 72px);
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.hero,
.page-hero {
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: min(100%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 244, 220, 0.24);
  border-radius: 8px;
  object-fit: cover;
}

.record-ring {
  display: none;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.center-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before,
.center-eyebrow::before,
.center-eyebrow::after {
  width: 28px;
  height: 1px;
  background: var(--red);
  content: "";
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.intro-band div {
  min-height: 140px;
  padding: clamp(22px, 4vw, 36px);
  border-right: 1px solid var(--line);
  background: var(--soft);
}

.intro-band div:nth-child(2) {
  background: #141414;
}

.intro-band div:nth-child(3) {
  background: #171717;
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band span {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-band strong {
  display: block;
  max-width: 330px;
  font-size: clamp(19px, 2.3vw, 27px);
  line-height: 1.15;
}

.section,
.platform-section,
.story-section,
.channel-section,
.inquiry-section {
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.video-count {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section h2,
.platform-section h2,
.story-section h2,
.channel-section h2,
.inquiry-section h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

.page-hero {
  display: grid;
  justify-items: center;
  padding: clamp(48px, 8vw, 88px) clamp(18px, 5vw, 72px) clamp(30px, 5vw, 50px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}

.page-hero img {
  width: clamp(78px, 11vw, 112px);
  aspect-ratio: 1;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 244, 220, 0.24);
  border-radius: 50%;
  object-fit: cover;
}

.page-hero .page-hero-art {
  width: min(100%, 280px);
  border-radius: 8px;
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
}

.page-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 650;
  line-height: 1.55;
}

.music-list-section > .section-heading,
.music-list-section > .music-toolbar,
.music-list-section > .video-grid,
.music-list-section > .pagination {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.music-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 30px;
}

.filter-bar,
.sort-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter,
.sort {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.filter:hover,
.filter.is-active,
.sort:hover,
.sort.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.video-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 160ms ease;
}

.video-card:hover {
  border-color: var(--yellow);
}

.video-card.is-hidden {
  display: none;
}

.video-card a {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--black);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 11px;
}

.video-copy {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.video-copy p {
  margin: 0;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.video-copy h3 {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.22;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.video-meta span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  background: var(--soft);
  padding: 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(28px, 5vw, 48px);
}

.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.page-button {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  cursor: pointer;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 850;
}

.page-button:hover:not(:disabled),
.page-button.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.page-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.page-step {
  min-width: 92px;
}

.page-status {
  width: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  border-top: 1px solid var(--line);
  background: #121212;
}

.story-copy p:not(.eyebrow),
.channel-section p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 650;
  line-height: 1.6;
}

.track-list {
  align-self: end;
  border-top: 1px solid var(--line);
}

.story-panel {
  display: grid;
  gap: 18px;
}

.story-panel img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(255, 244, 220, 0.24);
  border-radius: 8px;
  object-fit: cover;
}

.track-list a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition:
    background 180ms ease,
    color 180ms ease,
    padding-left 180ms ease;
}

.track-list a:hover {
  padding-left: 8px;
  background: rgba(255, 178, 31, 0.06);
  color: var(--yellow);
}

.track-list span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.track-list strong {
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.12;
}

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

.platform-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.platform-section h2 {
  max-width: 620px;
  margin: 0 0 clamp(18px, 3vw, 28px);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 10px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.platform-link:hover {
  border-color: var(--yellow);
  background: var(--soft);
}

.platform-icon {
  display: grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 5px;
  color: white;
  font-size: 10px;
  font-weight: 1000;
}

.youtube .platform-icon,
.ytmusic .platform-icon {
  background: #ff0033;
}

.spotify .platform-icon {
  background: #1ed760;
  color: var(--black);
}

.apple .platform-icon {
  background: #111111;
}

.amazon .platform-icon {
  background: #00a8e1;
  color: var(--black);
}

.bandcamp .platform-icon {
  background: #1da0c3;
}

.tidal .platform-icon {
  background: #111111;
}

.preview-section {
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #111111;
  color: var(--ink);
}

.preview-heading,
.preview-layout,
.spotify-feature {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.preview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(22px, 4vw, 34px);
}

.preview-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

.equalizer {
  display: inline-flex;
  align-items: end;
  gap: 6px;
  min-height: 48px;
}

.equalizer span {
  display: block;
  width: 9px;
  border-radius: 999px;
  background: var(--yellow);
}

.equalizer span:nth-child(1) {
  height: 18px;
}

.equalizer span:nth-child(2) {
  height: 38px;
  background: var(--red);
}

.equalizer span:nth-child(3) {
  height: 28px;
}

.equalizer span:nth-child(4) {
  height: 46px;
  background: var(--red);
}

.equalizer span:nth-child(5) {
  height: 24px;
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(280px, 0.9fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

.preview-player,
.mini-preview,
.stream-embed-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.iframe-shell {
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.iframe-shell iframe,
.mini-preview iframe,
.stream-embed-card iframe {
  display: block;
  width: 100%;
  border: 0;
}

.iframe-shell iframe {
  height: 100%;
}

.preview-copy {
  padding: 18px;
}

.preview-copy span,
.mini-preview span,
.stream-embed-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.05;
}

.preview-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.preview-stack {
  display: grid;
  gap: 14px;
}

.mini-preview {
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) minmax(0, 1fr);
  align-items: stretch;
}

.mini-preview iframe {
  height: 100%;
  min-height: 126px;
  background: var(--black);
}

.mini-preview div,
.stream-embed-card > div {
  padding: 16px;
}

.mini-preview strong,
.stream-embed-card strong {
  display: block;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.15;
}

.stream-embed-card iframe {
  height: 352px;
  background: var(--black);
}

.spotify-embed-card iframe {
  min-height: 352px;
}

.spotify-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.4fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(30, 215, 96, 0.14), transparent 42%),
    var(--panel);
  overflow: hidden;
}

.spotify-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: clamp(22px, 4vw, 42px);
}

.spotify-feature-copy span {
  display: block;
  margin-bottom: 12px;
  color: #1ed760;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spotify-feature-copy h3 {
  max-width: 520px;
  margin: 0 0 16px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 0.98;
  text-transform: uppercase;
}

.spotify-feature-copy p {
  max-width: 420px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 650;
  line-height: 1.55;
}

.spotify-feature-copy a {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1ed760;
  color: var(--black);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 950;
}

.spotify-frame-wrap {
  display: grid;
  align-items: stretch;
  min-height: 520px;
  padding: clamp(12px, 2vw, 18px);
  background: #0b0b0b;
}

.spotify-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 496px;
  border: 0;
  border-radius: 8px;
}

.channel-section {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.channel-section img {
  width: 132px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.channel-actions {
  display: grid;
  gap: 10px;
}

.contact-hero {
  display: grid;
  justify-items: center;
  min-height: calc(70vh - 72px);
  padding: clamp(48px, 7vw, 82px) clamp(18px, 6vw, 96px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}

.contact-logo img {
  width: clamp(82px, 12vw, 118px);
  aspect-ratio: 1;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 244, 220, 0.24);
  border-radius: 50%;
  object-fit: cover;
}

.contact-copy {
  max-width: 760px;
}

.contact-copy .center-eyebrow {
  justify-content: center;
}

.contact-copy h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04;
}

.contact-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 650;
  line-height: 1.55;
  margin-right: auto;
  margin-left: auto;
}

.email-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  max-width: 720px;
  margin: 28px auto 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.email-panel > span {
  grid-column: 1 / -1;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.email-panel a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(20px, 2.7vw, 30px);
  font-weight: 1000;
}

.copy-email {
  justify-self: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.copy-email span {
  color: inherit;
}

.copy-email.is-copied {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(320px, 1.35fr);
  gap: clamp(30px, 5vw, 68px);
  background: #121212;
}

.inquiry-lead {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

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

.inquiry-grid article {
  min-height: 200px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.inquiry-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.inquiry-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.08;
}

.inquiry-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.48;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  padding: 0 13px;
  font-size: 15px;
  font-weight: 650;
  text-transform: none;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  outline: none;
}

.captcha-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 10px;
  align-items: end;
}

.captcha-refresh {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--yellow);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.captcha-refresh:hover {
  border-color: var(--yellow);
}

.form-error {
  display: none;
  margin: -4px 0 0;
  border: 1px solid rgba(255, 59, 34, 0.38);
  border-radius: 8px;
  background: rgba(255, 59, 34, 0.08);
  color: #ff8a78;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
}

.form-error.is-visible {
  display: block;
}

.form-submit {
  justify-self: start;
  min-height: 44px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: white;
  cursor: pointer;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 900;
}

.form-submit:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.form-success {
  display: none;
  margin: 0;
  border: 1px solid rgba(241, 43, 30, 0.28);
  border-radius: 8px;
  background: var(--soft);
  color: var(--yellow);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.form-success.is-visible {
  display: block;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: 22px 36px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #0c0c0c;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
}

.footer-brand p,
.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--ink);
  opacity: 0.78;
}

.footer-links a:hover {
  color: var(--yellow);
  opacity: 1;
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .hero,
  .story-section,
  .channel-section,
  .contact-hero,
  .inquiry-section,
  .preview-layout,
  .spotify-feature {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: 2;
  }

  .intro-band,
  .video-grid,
  .platform-grid,
  .inquiry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .channel-section {
    justify-items: start;
  }

  .mini-preview iframe {
    min-height: 150px;
  }

  .spotify-feature-copy {
    min-height: auto;
  }

  .spotify-frame-wrap {
    min-height: 440px;
  }

  .spotify-frame-wrap iframe {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    flex-wrap: wrap;
  }

  .site-nav {
    display: none;
  }

  .locale-switcher {
    order: 3;
    width: min(100%, 172px);
    margin-left: auto;
  }

  .icon-link {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .brand span {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .button {
    width: 100%;
  }

  .intro-band,
  .video-grid,
  .platform-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-band div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    display: block;
  }

  .video-count {
    margin-top: 12px;
  }

  .music-toolbar {
    display: grid;
  }

  .pagination {
    justify-content: flex-start;
  }

  .page-numbers {
    justify-content: flex-start;
  }

  .page-step {
    min-width: 0;
    flex: 1 1 0;
  }

  .channel-section img {
    width: 112px;
  }

  .center-eyebrow {
    gap: 10px;
  }

  .center-eyebrow::before,
  .center-eyebrow::after {
    width: 26px;
  }

  .platform-link {
    min-height: 46px;
    justify-content: flex-start;
  }

  .preview-heading {
    display: block;
  }

  .equalizer {
    margin-top: 18px;
  }

  .mini-preview {
    grid-template-columns: 1fr;
  }

  .mini-preview iframe {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .spotify-feature-copy a {
    width: 100%;
  }

  .spotify-frame-wrap {
    min-height: 390px;
    padding: 10px;
  }

  .spotify-frame-wrap iframe {
    min-height: 370px;
  }

  .email-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

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

  .captcha-box {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .form-submit {
    width: 100%;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
