:root {
  color-scheme: light;
  --ink: #ecfff8;
  --muted: #9dafaa;
  --paper: #07100f;
  --white: #f7fff9;
  --panel: rgba(13, 26, 24, 0.82);
  --panel-solid: #101d1b;
  --green: #2ce48f;
  --green-dark: #08382c;
  --gold: #ffd166;
  --coral: #ff5e57;
  --cyan: #44d9ff;
  --charcoal: #050706;
  --line: rgba(111, 255, 190, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 12%, rgba(68, 217, 255, 0.13), transparent 28%),
    linear-gradient(180deg, #07100f 0%, #0b1513 48%, #07100f 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: linear-gradient(90deg, rgba(5, 8, 7, 0.92), rgba(11, 24, 21, 0.78));
  backdrop-filter: blur(22px) saturate(1.25);
  border: 1px solid rgba(111, 255, 190, 0.18);
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px clamp(18px, 4vw, 48px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  color: var(--white);
  font-weight: 950;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(111, 255, 190, 0.3);
  border-radius: 4px;
  box-shadow: 0 0 22px rgba(44, 228, 143, 0.18);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  overflow: hidden;
  width: 44px;
}

.brand-mark img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 4px;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 4px;
  color: rgba(247, 255, 249, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
  min-height: 38px;
  padding: 9px 13px;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(44, 228, 143, 0.11);
  border-color: rgba(44, 228, 143, 0.28);
  box-shadow: inset 0 0 18px rgba(44, 228, 143, 0.08);
  color: var(--white);
}

.nav-toggle {
  align-items: center;
  background: rgba(44, 228, 143, 0.12);
  border: 1px solid rgba(44, 228, 143, 0.28);
  border-radius: 50%;
  color: var(--white);
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav-toggle svg {
  height: 24px;
  width: 24px;
}

svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  display: grid;
  min-height: 78vh;
  overflow: hidden;
  place-items: center start;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: url("assets/mikey-long-hero.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.18) contrast(1.05);
  opacity: 0.86;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 7, 6, 0.9), rgba(5, 15, 13, 0.58) 48%, rgba(5, 15, 13, 0.18)),
    linear-gradient(180deg, rgba(255, 209, 102, 0.09), transparent 34%, rgba(7, 16, 15, 0.82));
}

.hero-content {
  color: var(--white);
  max-width: 800px;
  padding: 76px clamp(22px, 7vw, 88px) 58px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--green);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green);
  text-shadow: 0 0 22px rgba(44, 228, 143, 0.62);
}

.hero-tagline {
  background: rgba(44, 228, 143, 0.1);
  border: 1px solid rgba(44, 228, 143, 0.26);
  border-radius: 999px;
  box-shadow: inset 0 0 18px rgba(44, 228, 143, 0.07);
  display: inline-block;
  line-height: 1.35;
  max-width: min(100%, 720px);
  padding: 8px 14px;
}

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

h1 {
  font-size: clamp(4rem, 12vw, 9.5rem);
  letter-spacing: 0;
  line-height: 0.86;
  margin-bottom: 24px;
  max-width: 760px;
  text-shadow: 0 0 34px rgba(68, 217, 255, 0.2);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-copy {
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  max-width: 680px;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button svg {
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 14px 34px rgba(44, 228, 143, 0.2);
  color: #04100d;
  font-weight: 900;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-weight: 900;
}

.button.dark {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-color: rgba(255, 255, 255, 0.18);
  color: #04100d;
  box-shadow: 0 12px 26px rgba(44, 228, 143, 0.16);
  font-weight: 900;
  width: 100%;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(44, 228, 143, 0.13);
  border-color: rgba(44, 228, 143, 0.42);
}

.button.dark:hover,
.button.dark:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 16px 38px rgba(68, 217, 255, 0.22);
}

.button.dark svg,
.button.primary svg {
  color: #04100d;
}

.quick-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  max-width: 960px;
  width: 100%;
  justify-self: center;
}

.quick-stats div {
  background:
    linear-gradient(135deg, rgba(4, 15, 13, 0.82), rgba(8, 56, 44, 0.48));
  border: 1px solid rgba(111, 255, 190, 0.18);
  border-radius: var(--radius);
  box-shadow: inset 0 0 18px rgba(44, 228, 143, 0.05);
  padding: 13px 14px;
}

.quick-stats dt {
  color: rgba(255, 254, 248, 0.72);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-stats dd {
  color: var(--white);
  font-size: clamp(0.98rem, 1.45vw, 1.2rem);
  font-weight: 900;
  line-height: 1.18;
  margin: 0;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(46px, 6vw, 82px) clamp(20px, 4vw, 36px);
}

.intro-strip {
  display: grid;
  gap: 16px;
  padding-bottom: 26px;
  padding-top: 26px;
}

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

.intro-item {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(16, 29, 27, 0.98), rgba(8, 56, 44, 0.76));
  border: 1px solid rgba(111, 255, 190, 0.18);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  gap: 14px;
  min-height: 82px;
  padding: 18px;
}

.intro-icon {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(44, 228, 143, 0.2), rgba(68, 217, 255, 0.09));
  border: 1px solid rgba(44, 228, 143, 0.34);
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(44, 228, 143, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--green);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.35rem;
  height: 48px;
  justify-content: center;
  line-height: 1;
  width: 48px;
}

.intro-icon i {
  color: var(--cyan);
  display: block;
}

.intro-item div {
  display: grid;
  gap: 3px;
}

.intro-item small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.section-heading {
  margin-bottom: 24px;
  max-width: 760px;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.booking-copy p,
.featured-release p,
.set-card li {
  color: var(--muted);
  font-size: 1.05rem;
}

.music-layout {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr);
}

.featured-release,
.track-card,
.show-card,
.video-card,
.set-card,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.featured-release {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  padding: 18px;
}

.featured-release .eyebrow,
.about-copy .eyebrow,
.booking-copy .eyebrow {
  margin-bottom: 18px;
}

.featured-release .eyebrow + h3,
.about-copy .eyebrow + h2,
.booking-copy .eyebrow + h2 {
  margin-top: 0;
}

.album-art {
  aspect-ratio: 1;
  border: 1px solid rgba(111, 255, 190, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 0 32px rgba(44, 228, 143, 0.13);
  height: auto;
  object-fit: cover;
  overflow: hidden;
  width: 100%;
}

.spotify-listen-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(30, 215, 96, 0.14), rgba(68, 217, 255, 0.08));
  border: 1px solid rgba(44, 228, 143, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-top: 12px;
  padding: 16px;
  text-decoration: none;
}

.spotify-listen-card i {
  color: #1ed760;
  font-size: 2rem;
}

.spotify-listen-card span {
  display: grid;
  gap: 3px;
}

.spotify-listen-card small {
  color: var(--muted);
  font-weight: 800;
}

.spotify-card-button {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 999px;
  color: #04100d;
  font-size: 0.86rem;
  font-weight: 950;
  padding: 10px 14px;
  white-space: nowrap;
}

.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.release-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(111, 255, 190, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  display: inline-flex;
  font-weight: 950;
  gap: 9px;
  min-height: 46px;
  padding: 11px 13px;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.release-link:hover,
.release-link:focus-visible {
  border-color: rgba(68, 217, 255, 0.46);
  box-shadow: 0 14px 34px rgba(68, 217, 255, 0.12);
  transform: translateY(-2px);
}

.release-link.spotify i {
  color: #1ed760;
}

.release-link.apple i {
  color: var(--white);
}

.release-link.youtube i {
  color: #ff5e57;
}

.release-link.compact {
  font-size: 0.88rem;
  min-height: 40px;
  padding: 9px 11px;
}

.song-platform-links {
  margin-top: 0;
}

.track-list,
.show-list,
.video-grid {
  display: grid;
  gap: 12px;
}

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

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

.track-card,
.show-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.track-card:has(.track-cover) {
  grid-template-columns: 96px minmax(0, 1fr);
}

.track-card:has(.track-cover) audio,
.track-card:has(.track-cover) .song-spotify-card,
.track-card:has(.track-cover) .track-link {
  grid-column: 2;
}

.track-cover {
  aspect-ratio: 1;
  border: 1px solid rgba(111, 255, 190, 0.2);
  border-radius: var(--radius);
  grid-row: span 3;
  height: auto;
  object-fit: cover;
  width: 96px;
}

.track-card h3,
.show-card h3,
.video-card h3,
.featured-release h3,
.set-card h3 {
  color: var(--white);
}

.video-card {
  overflow: hidden;
}

.video-media {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(44, 228, 143, 0.13), rgba(68, 217, 255, 0.08));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.video-media iframe,
.video-media video,
.video-media img,
.video-placeholder,
.video-thumb-link {
  border: 0;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.video-placeholder,
.video-thumb-link {
  align-items: center;
  color: var(--cyan);
  display: flex;
  font-weight: 950;
  gap: 10px;
  justify-content: center;
  position: relative;
  text-decoration: none;
}

.video-placeholder {
  font-size: 1.15rem;
}

.video-placeholder i {
  font-size: 2.1rem;
}

.video-thumb-link img {
  display: block;
  inset: 0;
  position: absolute;
}

.video-thumb-link span {
  align-items: center;
  background: rgba(5, 8, 7, 0.78);
  border: 1px solid rgba(111, 255, 190, 0.26);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  gap: 8px;
  padding: 10px 14px;
  position: relative;
  z-index: 1;
}

.video-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.video-copy h3,
.video-copy p {
  margin-bottom: 0;
}

.video-copy p {
  color: var(--muted);
}

.track-top,
.show-top {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.track-top > div,
.show-top > div {
  display: grid;
  gap: 10px;
}

.track-top h3,
.show-top h3 {
  margin-bottom: 0;
}

.pill {
  background: rgba(44, 228, 143, 0.12);
  border: 1px solid rgba(44, 228, 143, 0.22);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  justify-self: start;
  line-height: 1;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 8px 10px;
  text-transform: uppercase;
}

audio {
  height: 42px;
  width: 100%;
}

.track-link,
.show-link,
.contact-links a {
  color: var(--green);
  font-weight: 900;
}

.muted-line {
  color: var(--muted);
  font-weight: 800;
  margin: 0;
}

.about-section,
.booking-section {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 0.9fr);
}

.about-copy-wrap {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
}

.artist-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  margin: 0;
  overflow: hidden;
  padding: 10px;
}

.artist-card img {
  border-radius: calc(var(--radius) - 2px);
  height: auto;
  max-height: 260px;
  object-fit: contain;
  width: 100%;
}

.set-card {
  padding: 28px;
}

.set-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.set-card li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.set-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.social-section {
  max-width: var(--max);
}

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

.social-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(16, 29, 27, 0.98), rgba(8, 56, 44, 0.72));
  border: 1px solid rgba(111, 255, 190, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  color: var(--white);
  display: grid;
  gap: 12px;
  justify-items: center;
  min-height: 114px;
  padding: 16px 12px;
  text-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(68, 217, 255, 0.48);
  box-shadow: 0 18px 54px rgba(68, 217, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
}

.social-card i {
  color: var(--cyan);
  font-size: 2.1rem;
}

.social-card span {
  font-weight: 950;
}

.social-card.youtube i {
  color: #ff5e57;
}

.social-card.spotify i {
  color: var(--green);
}

.social-card.apple i,
.social-card.x i {
  color: var(--white);
}

.social-card.facebook i {
  color: #44d9ff;
}

.booking-section {
  background:
    linear-gradient(135deg, rgba(5, 7, 6, 0.98), rgba(8, 56, 44, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(68, 217, 255, 0.2), transparent 34%);
  color: var(--white);
  max-width: none;
  padding-left: max(clamp(20px, 4vw, 36px), calc((100vw - var(--max)) / 2 + 36px));
  padding-right: max(clamp(20px, 4vw, 36px), calc((100vw - var(--max)) / 2 + 36px));
}

.booking-copy p {
  color: rgba(255, 254, 248, 0.74);
}

.contact-links a {
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

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

label {
  color: var(--white);
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 8px;
}

.contact-form label,
.contact-form .form-status {
  color: var(--white);
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(111, 255, 190, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

option {
  background: var(--panel-solid);
  color: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(68, 217, 255, 0.74);
  box-shadow: 0 0 0 3px rgba(68, 217, 255, 0.14);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(247, 255, 249, 0.42);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-status {
  font-weight: 800;
  margin: 0;
  min-height: 24px;
}

.website-field {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.notice {
  border-radius: var(--radius);
  font-weight: 900;
  padding: 14px 16px;
}

.notice.success {
  background: rgba(44, 228, 143, 0.12);
  border: 1px solid rgba(44, 228, 143, 0.25);
}

.notice.error {
  background: rgba(255, 94, 87, 0.12);
  border: 1px solid rgba(255, 94, 87, 0.25);
}

.policy-page {
  margin: 0 auto;
  max-width: 940px;
  padding: 84px clamp(18px, 4vw, 36px) 72px;
}

.policy-content {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  padding: clamp(24px, 5vw, 48px);
}

.policy-content h1 {
  font-size: clamp(3rem, 9vw, 6rem);
  margin-bottom: 28px;
}

.policy-content h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
  margin: 34px 0 12px;
}

.policy-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.policy-content a {
  color: var(--green);
  font-weight: 900;
}

.cookie-banner {
  align-items: center;
  background: rgba(5, 8, 7, 0.94);
  border: 1px solid rgba(111, 255, 190, 0.24);
  border-radius: var(--radius);
  bottom: 18px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 16px;
  left: 18px;
  max-width: 760px;
  padding: 16px;
  position: fixed;
  right: 18px;
  z-index: 50;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  color: rgba(247, 255, 249, 0.78);
  margin: 0;
}

.cookie-banner a {
  color: var(--green);
  font-weight: 900;
}

.cookie-banner .button {
  flex: 0 0 auto;
}

.site-footer {
  align-items: center;
  background: #030605;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 4vw, 48px);
}

.footer-brand,
.footer-legal,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand,
.footer-legal {
  align-items: center;
}

.footer-legal {
  border-top: 1px solid rgba(255, 254, 248, 0.12);
  justify-content: space-between;
  padding-top: 18px;
  width: 100%;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 254, 248, 0.72);
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: rgba(5, 8, 7, 0.96);
    border: 1px solid rgba(111, 255, 190, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 18px;
    position: absolute;
    right: 0;
    top: 74px;
  }

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

  .policy-nav {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    padding: 0;
    position: static;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background: rgba(5, 10, 9, 0.72);
  }

  .hero-content {
    padding-bottom: 72px;
    padding-top: 82px;
  }

  .quick-stats,
  .intro-cards,
  .intro-strip,
  .music-layout,
  .track-list,
  .video-grid,
  .social-grid,
  .about-section,
  .about-copy-wrap,
  .booking-section,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .quick-stats {
    gap: 10px;
    justify-self: center;
    max-width: 300px;
  }

  .quick-stats div {
    justify-items: center;
    min-height: 0;
    padding: 9px 10px;
    text-align: center;
  }

  .quick-stats dt {
    font-size: 0.64rem;
  }

  .quick-stats dd {
    font-size: 0.88rem;
  }

  .artist-card {
    max-width: 360px;
  }

  .featured-release {
    grid-template-columns: 1fr;
  }

  .track-card:has(.track-cover) {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .track-cover {
    width: 82px;
  }

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

  .footer-brand,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    gap: 12px 16px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 58px;
    padding: 8px 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    height: 36px;
    width: 36px;
  }

  .brand span:last-child {
    line-height: 1.05;
    max-width: 138px;
  }

  .site-nav {
    top: 66px;
  }

  .section {
    padding: 54px 16px;
  }

  .policy-page {
    padding: 54px 14px;
  }

  .policy-nav {
    display: flex;
    flex-direction: row;
    position: static;
  }

  .policy-nav a {
    font-size: 0.76rem;
    padding: 8px 9px;
  }

  .cookie-banner {
    align-items: stretch;
    bottom: 10px;
    flex-direction: column;
    left: 10px;
    right: 10px;
  }

  .cookie-banner .button {
    width: 100%;
  }

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

  .social-card {
    min-height: 116px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 4.8rem);
  }

  .hero-tagline {
    border-radius: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    max-width: 100%;
    padding: 8px 11px;
  }

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

  .spotify-listen-card {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
  }

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

  .release-link {
    font-size: 0.74rem;
    gap: 5px;
    justify-content: center;
    min-height: 38px;
    padding: 8px 5px;
    text-align: center;
  }

  .release-link i {
    font-size: 0.9rem;
  }

  .spotify-card-button {
    grid-column: 1 / -1;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

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

  .track-top,
  .show-top {
    align-items: start;
    flex-direction: column;
  }

  .track-card:has(.track-cover) {
    grid-template-columns: 1fr;
  }

  .track-card:has(.track-cover) audio,
  .track-card:has(.track-cover) .song-spotify-card,
  .track-card:has(.track-cover) .track-link {
    grid-column: auto;
  }

  .track-cover {
    grid-row: auto;
    width: min(100%, 260px);
  }
}
