/* =========================================================
   IDLE INDEX — V1.6
   Static HTML/CSS/JS site designed for GitHub + Netlify
   ========================================================= */

:root {
  --black: #070707;
  --black-2: #0d0d0e;
  --charcoal: #151516;
  --charcoal-2: #202022;
  --paper: #e7e6e2;
  --muted: #aaa8a3;
  --dim: #74716d;
  --brand-red: #cd2a35;
  --brand-red-bright: #e3545e;
  --wine: var(--brand-red);
  --wine-bright: var(--brand-red-bright);
  --red: var(--brand-red);
  --orange: var(--brand-red);
  --line: rgba(231, 230, 226, 0.18);
  --line-strong: rgba(231, 230, 226, 0.32);
  --header-height: 78px;
  --max: 1240px;
  --pad: clamp(1.1rem, 4vw, 3.5rem);
  --heading: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(7, 7, 7, 0.91), rgba(7, 7, 7, 0.96)),
    url("../images/grain.svg");
  font-family: var(--body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  opacity: 0.33;
  mix-blend-mode: soft-light;
  background-image: url("../images/grain.svg");
}

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

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

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

a {
  color: inherit;
}

::selection {
  color: var(--black);
  background: var(--orange);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--black);
  background: var(--paper);
  transform: translateY(-180%);
}

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

.sr-only {
  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;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.65rem var(--pad);
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    height 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  height: 68px;
  background: rgba(7, 7, 7, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(15px);
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.site-nav a {
  position: relative;
  padding: 0.6rem 0;
  color: var(--paper);
  font-size: 0.77rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-book)::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-book {
  padding: 0.72rem 1rem !important;
  color: var(--black) !important;
  background: var(--paper);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Common */
.section {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h2 {
  margin-bottom: 1.5rem;
  font-family: var(--heading);
  font-size: clamp(3.8rem, 10vw, 8.8rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.82rem 1.2rem;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--paper);
  border-color: var(--paper);
}

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

.button-ghost {
  color: var(--paper);
  background: transparent;
  border-color: var(--line-strong);
}

.button-ghost:hover {
  border-color: var(--paper);
}

.text-action,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-underline-offset: 0.36em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background: url("../images/idle-index-band.webp") 55% center / cover no-repeat;
  transform: scale(1.015);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.68) 46%, rgba(5, 5, 5, 0.2) 74%, rgba(5, 5, 5, 0.36) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, transparent 50%, rgba(5, 5, 5, 0.45) 100%);
}

.hero-inner {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding: calc(var(--header-height) + 4rem) 0 clamp(4.5rem, 9vw, 7rem);
}

.hero-copy {
  width: min(650px, 100%);
}

.hero-logo {
  width: clamp(235px, 38vw, 455px);
  max-height: 48vh;
  object-fit: contain;
  margin-left: -1.5rem;
  filter: drop-shadow(0 15px 40px rgba(0,0,0,0.55));
}

.hero-release {
  margin: 0.9rem 0 0.7rem;
  font-family: var(--heading);
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 540px;
  margin-bottom: 1.8rem;
  color: #d1cfca;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.text-action {
  margin-left: 0.4rem;
}

.hero-location {
  position: absolute;
  right: var(--pad);
  bottom: 3.5rem;
  display: grid;
  padding-left: 1.25rem;
  border-left: 2px solid var(--orange);
  text-align: right;
}

.hero-location span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-location strong {
  font-size: 0.86rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  right: 1rem;
  bottom: 50%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right bottom;
}

/* Ticker */
.ticker {
  overflow: hidden;
  color: var(--black);
  background: var(--paper);
  border-bottom: 1px solid var(--black);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  will-change: transform;
  animation: ticker 34s linear infinite;
}

.ticker-group {
  flex: 0 0 auto;
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  padding: 0.8rem 1.5rem;
}

.ticker span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.ticker i {
  color: var(--red);
  font-size: 0.7rem;
}

@keyframes ticker {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Video */
.video-section {
  display: grid;
  grid-template-columns: minmax(440px, 0.98fr) minmax(0, 1.38fr);
  gap: clamp(2rem, 3.6vw, 3.75rem);
  align-items: center;
}

.video-section > * {
  min-width: 0;
}

.video-section .section-intro {
  position: relative;
  z-index: 2;
}

.video-section .section-intro h2 {
  width: 100%;
  max-width: none;
  font-size: clamp(3.15rem, 4.2vw, 4.65rem);
  line-height: 0.88;
  letter-spacing: -0.005em;
  overflow-wrap: normal;
}

.video-section .section-intro h2 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.section-intro p:last-child {
  max-width: 440px;
  color: var(--muted);
}

.video-shell {
  position: relative;
  border: 1px solid var(--line);
  background: var(--charcoal);
  box-shadow: 25px 25px 0 rgba(205, 42, 53, 0.24);
}

.video-shell::before {
  position: absolute;
  top: -13px;
  left: -13px;
  z-index: -1;
  width: 80px;
  height: 80px;
  content: "";
  border-top: 1px solid var(--orange);
  border-left: 1px solid var(--orange);
}

.video-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  color: var(--paper);
  background: #000;
  border: 0;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 400ms ease;
}

.video-poster:hover img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.video-poster-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.8), transparent 55%),
    radial-gradient(circle at center, transparent 10%, rgba(0,0,0,0.34) 100%);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(78px, 10vw, 124px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.6));
  transition: transform 180ms ease;
}

.video-poster:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
}

.play-button circle {
  fill: rgba(7,7,7,0.72);
  stroke: var(--paper);
  stroke-width: 2;
}

.play-button path {
  fill: var(--paper);
}

.video-poster-label {
  position: absolute;
  right: 1.25rem;
  bottom: 1.1rem;
  left: 1.25rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  text-align: left;
}

.video-poster-label small {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-poster-label strong {
  font-family: var(--heading);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
}

.video-shell iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

/* Music */
.music-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: start;
}

.music-section::before {
  position: absolute;
  top: 8%;
  right: -22vw;
  z-index: -1;
  width: 55vw;
  height: 55vw;
  content: "";
  border-radius: 50%;
  opacity: 0.16;
  background: var(--red);
  filter: blur(130px);
}

.album-art {
  position: relative;
  width: 100%;
  max-width: 620px;
  justify-self: center;
  align-self: start;
}

.album-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 1px solid var(--line-strong);
  box-shadow: 30px 30px 0 #111;
}

.album-stamp {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.42rem 0.65rem;
  color: var(--black);
  background: var(--paper);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.music-lede {
  max-width: 610px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.track-list {
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
  border-top: 1px solid var(--line);
}

.track-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.track-list span,
.track-list time {
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.track-list strong {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.music-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.credits {
  margin-top: 2rem;
  padding-top: 1.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.credits p {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  margin: 0.35rem 0;
}

.credits span {
  color: var(--paper);
  font-weight: 780;
}

/* Spotify */
.spotify-section {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin: 0 auto clamp(5rem, 10vw, 9rem);
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(120deg, rgba(205, 42, 53, 0.24), transparent 45%),
    var(--charcoal);
  border: 1px solid var(--line);
}

.spotify-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.spotify-copy p:last-child {
  color: var(--muted);
}

.spotify-embed {
  border: 0;
  border-radius: 12px;
}

/* About */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "heading copy"
    "wide tall";
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.about-heading { grid-area: heading; }
.about-copy { grid-area: copy; padding-top: 2.5rem; }
.photo-wide { grid-area: wide; }
.photo-tall { grid-area: tall; }

.about-lede {
  color: var(--paper);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  font-weight: 540;
  line-height: 1.3;
}

.about-copy p:not(.about-lede) {
  max-width: 640px;
  color: var(--muted);
}

.photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.photo:hover img {
  transform: none;
}

.photo-wide,
.photo-tall {
  align-self: start;
  justify-self: stretch;
}

/* Booking banner */
.booking-banner {
  position: relative;
  min-height: min(760px, 82svh);
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.booking-banner-image,
.booking-banner-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.booking-banner-image {
  background:
    url("../images/booking-live.webp") 52% center / cover no-repeat;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.01);
}

.booking-banner-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7,7,7,0.97) 0%, rgba(7,7,7,0.82) 43%, rgba(7,7,7,0.38) 76%, rgba(7,7,7,0.23) 100%),
    linear-gradient(0deg, rgba(7,7,7,0.82) 0%, rgba(7,7,7,0.08) 58%, rgba(7,7,7,0.26) 100%);
}

.booking-banner-copy {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.booking-banner-copy h2 {
  max-width: 900px;
}

.booking-banner-copy p {
  max-width: 560px;
  margin-bottom: 1.8rem;
  color: #d0cec9;
}

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 110px;
}

.contact-intro h2 {
  font-size: clamp(3.8rem, 8vw, 7.6rem);
}

.contact-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-intro a {
  text-underline-offset: 0.25em;
}

.booking-facts {
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.booking-facts div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.booking-facts dt {
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-facts dd {
  margin: 0;
  font-size: 0.84rem;
}

.booking-form {
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(143,23,52,0.14), transparent 35%),
    var(--charcoal);
  border: 1px solid var(--line);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

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

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

.field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.field label {
  color: #d6d4cf;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field label span,
.form-footer p span {
  color: var(--orange);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--paper);
  background: rgba(7,7,7,0.72);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.88rem 0.9rem;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.field input,
.field select {
  min-height: 50px;
}

.field textarea {
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--line-strong);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  background: #0b0b0c;
  border-color: var(--orange);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #64615e;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 0.6rem;
}

.form-footer p {
  margin: 0;
  color: var(--dim);
  font-size: 0.72rem;
}

.submit-button {
  min-width: 190px;
}

.form-status {
  margin-top: 1.25rem;
  padding: 1rem;
  color: var(--paper);
  border: 1px solid var(--orange);
  background: rgba(205,42,53,0.17);
}

/* Footer */
.site-footer {
  padding: clamp(3rem, 7vw, 6rem) var(--pad) 1.6rem;
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-brand img {
  width: 105px;
  height: 105px;
  object-fit: contain;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-family: var(--heading);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: clamp(2.5rem, 6vw, 5rem) 0;
  border-block: 1px solid var(--line);
}

.social-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.social-links a:last-child {
  border-right: 0;
}

.social-links a:hover {
  color: var(--black);
  background: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--dim);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--muted);
}

/* Thank-you and 404 */
.thank-you-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(rgba(7,7,7,.88), rgba(7,7,7,.96)),
    url("../images/idle-index-band.webp") center / cover no-repeat;
}

.thank-you-card {
  width: min(720px, 100%);
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  background: rgba(7,7,7,.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(15px);
}

.thank-you-card img {
  width: 170px;
  margin: 0 auto 1.5rem;
}

.thank-you-card h1 {
  margin-bottom: 1rem;
  font-family: var(--heading);
  font-size: clamp(3rem, 9vw, 6.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.thank-you-card p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1180px) and (min-width: 981px) {
  .video-section {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.45fr);
    gap: 2.4rem;
  }

  .video-section .section-intro h2 {
    font-size: clamp(3.35rem, 5.35vw, 5.75rem);
  }
}

@media (max-width: 1120px) {
  .video-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .video-section .section-intro h2 {
    font-size: clamp(3.6rem, 9vw, 6.6rem);
  }

  .video-links {
    grid-column: 1;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 1rem var(--pad) 1.5rem;
    visibility: hidden;
    background: rgba(7,7,7,.98);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

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

  .nav-book {
    margin-top: 0.8rem;
    padding: 0.9rem 1rem !important;
    text-align: center;
    border: 0 !important;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-location {
    position: static;
    width: max-content;
    margin-top: 2.5rem;
    text-align: left;
  }

  .hero-scroll {
    display: none;
  }

  .video-section,
  .music-section,
  .spotify-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .video-links {
    grid-column: 1;
  }

  .spotify-section {
    padding: 1.3rem;
  }

  .about-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "copy"
      "wide"
      "tall";
  }

  .about-copy {
    padding-top: 0;
  }

  .photo-wide,
  .photo-tall {
    width: 100%;
    margin-top: 0;
  }

  .contact-intro {
    position: static;
  }

  .social-links {
    grid-template-columns: 1fr 1fr;
  }

  .social-links a {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .header-brand span {
    display: none;
  }

  .header-brand img {
    width: 46px;
    height: 46px;
  }

  .hero-media {
    background-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.72) 57%, rgba(5,5,5,.42) 100%),
      linear-gradient(90deg, rgba(5,5,5,.75), rgba(5,5,5,.08));
  }

  .hero-inner {
    padding-top: 8rem;
  }

  .hero-logo {
    width: min(310px, 82vw);
    margin-left: -0.8rem;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .text-action {
    margin: 0.6rem 0 0;
  }

  h2 {
    font-size: clamp(3.4rem, 19vw, 6rem);
  }

  .video-section {
    width: 100%;
    padding-inline: var(--pad);
  }

  .video-shell {
    margin-inline: calc(var(--pad) * -1);
    border-inline: 0;
    box-shadow: none;
  }

  .music-section {
    gap: 4rem;
  }

  .album-art img {
    box-shadow: 15px 15px 0 #111;
  }

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

  .credits p {
    grid-template-columns: 100px 1fr;
  }

  .photo-tall {
    width: 100%;
    margin-top: 0;
  }

  .booking-banner {
    min-height: 720px;
  }

  .booking-banner-image {
    background-position: 64% center;
  }

  .form-row,
  .form-row-three {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

  .booking-facts div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-links a {
    border-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

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


/* =========================================================
   V1.4 MOBILE RESPONSIVE REFINEMENT
   These overrides intentionally come after the original
   breakpoints so narrow screens receive a purpose-built layout.
   ========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

main,
section,
header,
footer,
nav,
div,
figure,
form {
  min-width: 0;
}

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
    --pad: 1rem;
  }

  body {
    font-size: 1rem;
    line-height: 1.58;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-open {
    height: var(--header-height);
    padding: 0.45rem var(--pad);
  }

  .header-brand img {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 9px;
  }

  .site-nav {
    inset: var(--header-height) 0 auto 0;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    padding: 0.55rem var(--pad) 1rem;
  }

  .site-nav a {
    padding: 0.9rem 0;
    font-size: 0.76rem;
  }

  .section {
    width: calc(100% - 2rem);
    padding-block: 4.25rem;
  }

  .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  h2 {
    margin-bottom: 1.1rem;
    font-size: clamp(3rem, 15.5vw, 4.7rem);
    line-height: 0.88;
  }

  .button {
    min-height: 49px;
    padding: 0.78rem 0.9rem;
    font-size: 0.72rem;
  }

  /* Mobile hero */
  .hero {
    min-height: 100svh;
    display: block;
    overflow: hidden;
  }

  .hero-media {
    inset: 0;
    opacity: 0.88;
    background-position: 54% center;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.38) 0%,
        rgba(5, 5, 5, 0.53) 26%,
        rgba(5, 5, 5, 0.84) 66%,
        rgba(5, 5, 5, 0.99) 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.64) 0%,
        rgba(5, 5, 5, 0.18) 70%,
        rgba(5, 5, 5, 0.45) 100%
      );
  }

  .hero-inner {
    width: 100%;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding:
      calc(var(--header-height) + 3rem)
      var(--pad)
      1.75rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 31rem;
  }

  .hero-copy > .eyebrow {
    margin-bottom: 1rem;
  }

  .hero-logo {
    width: min(62vw, 245px);
    max-height: none;
    margin: 0 0 1.15rem;
  }

  .hero-release {
    max-width: 11ch;
    margin: 0 0 0.7rem;
    font-size: clamp(2.2rem, 10.7vw, 3.05rem);
    line-height: 0.94;
    letter-spacing: 0.045em;
  }

  .hero-description {
    max-width: 30rem;
    margin-bottom: 1.25rem;
    font-size: 0.96rem;
    line-height: 1.55;
  }

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

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

  .text-action {
    width: max-content;
    max-width: 100%;
    justify-content: flex-start;
    margin: 0.25rem 0 0;
    padding: 0.55rem 0;
    font-size: 0.7rem;
  }

  .hero-location {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.28rem 0.75rem;
    margin-top: 1.15rem;
    padding: 0.9rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .hero-location span {
    grid-column: 1 / -1;
    font-size: 0.62rem;
  }

  .hero-location strong {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero-location strong:last-child {
    grid-column: 1 / -1;
  }

  /* Seamless, compact ticker */
  .ticker-track {
    animation-duration: 27s;
  }

  .ticker-group {
    min-width: max-content;
    justify-content: flex-start;
    gap: 0.95rem;
    padding: 0.68rem 0.5rem;
  }

  .ticker span {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .ticker i {
    font-size: 0.55rem;
  }

  /* Video */
  .video-section {
    width: calc(100% - 2rem);
    padding-inline: 0;
    gap: 1.6rem;
  }

  .video-section .section-intro h2 {
    font-size: clamp(3rem, 14.8vw, 4.35rem);
    line-height: 0.88;
  }

  .video-section .section-intro h2 span {
    width: auto;
    max-width: 100%;
    white-space: nowrap;
  }

  .section-intro p:last-child {
    max-width: none;
    font-size: 0.96rem;
  }

  .video-shell {
    margin-inline: 0;
    border: 1px solid var(--line);
    box-shadow: 10px 10px 0 rgba(205, 42, 53, 0.2);
  }

  .video-shell::before {
    display: none;
  }

  .play-button {
    width: 76px;
  }

  .video-poster-label {
    right: 0.8rem;
    bottom: 0.7rem;
    left: 0.8rem;
  }

  .video-poster-label strong {
    font-size: 1.25rem;
  }

  .video-links {
    display: grid;
    justify-content: stretch;
    gap: 0.85rem;
  }

  .video-links .text-link {
    width: 100%;
    justify-content: space-between;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.68rem;
  }

  /* Music */
  .music-section {
    gap: 2.75rem;
  }

  .album-art {
    width: 100%;
    max-width: 31rem;
    margin-inline: auto;
  }

  .album-art img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    box-shadow: 12px 12px 0 #111;
  }

  .album-stamp {
    top: 0.7rem;
    right: 0.7rem;
    font-size: 0.59rem;
  }

  .music-copy h2 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .music-lede {
    margin-bottom: 1.5rem;
    font-size: 0.96rem;
  }

  .track-list li {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding: 0.82rem 0;
  }

  .track-list strong {
    min-width: 0;
    font-size: 0.76rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .track-list span,
  .track-list time {
    font-size: 0.63rem;
  }

  .music-actions {
    display: grid;
  }

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

  .credits {
    font-size: 0.75rem;
  }

  .credits p {
    grid-template-columns: 1fr;
    gap: 0.1rem;
    margin-bottom: 0.8rem;
  }

  /* Spotify */
  .spotify-section {
    width: calc(100% - 2rem);
    gap: 1.25rem;
    margin-bottom: 4.25rem;
    padding: 1rem;
  }

  .spotify-copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.25rem);
  }

  .spotify-embed {
    height: 352px;
  }

  /* About/photos */
  .about-section {
    gap: 1.75rem;
  }

  .about-heading h2 {
    font-size: clamp(3.2rem, 16.5vw, 4.8rem);
  }

  .about-lede {
    font-size: 1.2rem;
  }

  .photo-wide,
  .photo-tall {
    width: 100%;
    margin: 0;
  }

  .photo img,
  .photo-tall img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  /* Booking */
  .booking-banner {
    min-height: 620px;
  }

  .booking-banner-image {
    background-position: 67% center;
  }

  .booking-banner-shade {
    background:
      linear-gradient(
        180deg,
        rgba(7, 7, 7, 0.38) 0%,
        rgba(7, 7, 7, 0.56) 36%,
        rgba(7, 7, 7, 0.96) 100%
      ),
      linear-gradient(
        90deg,
        rgba(7, 7, 7, 0.75) 0%,
        rgba(7, 7, 7, 0.2) 80%
      );
  }

  .booking-banner-copy {
    width: calc(100% - 2rem);
    align-self: end;
    padding-bottom: 3rem;
  }

  .booking-banner-copy h2 {
    font-size: clamp(3.1rem, 15.5vw, 4.7rem);
  }

  .booking-banner-copy .button {
    width: 100%;
  }

  /* Contact/form */
  .contact-section {
    gap: 2.25rem;
  }

  .contact-intro h2 {
    font-size: clamp(3rem, 14.7vw, 4.6rem);
  }

  .booking-facts div {
    padding: 0.8rem 0;
  }

  .booking-facts dd,
  .booking-facts a {
    overflow-wrap: anywhere;
  }

  .booking-form {
    padding: 1rem;
  }

  .field {
    margin-bottom: 0.9rem;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }

  /* Footer */
  .site-footer {
    padding: 3rem 1rem 1.25rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 80px;
    height: 80px;
  }

  .footer-brand strong {
    font-size: 2rem;
  }

  .social-links {
    margin: 2.25rem 0;
  }

  .social-links a {
    padding: 1rem 0.3rem;
  }
}

@media (max-width: 390px) {
  :root {
    --pad: 0.85rem;
  }

  .section,
  .video-section,
  .spotify-section,
  .booking-banner-copy {
    width: calc(100% - 1.7rem);
  }

  .hero-inner {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .hero-logo {
    width: min(59vw, 218px);
  }

  .hero-release {
    font-size: clamp(2rem, 10.5vw, 2.65rem);
  }

  .hero-description {
    font-size: 0.91rem;
  }

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

  .hero-location span,
  .hero-location strong:last-child {
    grid-column: 1;
  }

  .video-section .section-intro h2 {
    font-size: clamp(2.75rem, 14.2vw, 3.7rem);
  }

  .track-list strong {
    font-size: 0.7rem;
  }
}

@media (max-width: 900px) and (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: 720px;
  }

  .hero-inner {
    min-height: 720px;
    padding-top: calc(var(--header-height) + 2rem);
  }

  .hero-logo {
    width: 180px;
  }

  .hero-location {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-location span {
    grid-column: 1 / -1;
  }

  .hero-location strong:last-child {
    grid-column: auto;
  }
}


/* =========================================================
   V1.5 MOBILE HERO IMAGE-RATIO FIX
   The image element includes intrinsic width/height attributes.
   Explicit height:auto prevents the mobile logo from retaining
   a tall 899px layout box after its width is reduced.
   ========================================================= */

.hero-logo {
  height: auto;
  aspect-ratio: 1 / 1;
}

@media (max-width: 680px) {
  .hero-logo {
    width: min(58vw, 225px);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    margin: 0 0 1rem;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 2.25rem);
  }

  .hero-copy > .eyebrow {
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 390px) {
  .hero-logo {
    width: min(56vw, 205px);
  }
}


/* =========================================================
   V1.6 DESKTOP ABOUT-SECTION FIX
   Keep the large editorial heading inside its grid column.
   ========================================================= */

@media (min-width: 981px) {
  .about-section {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    column-gap: clamp(3rem, 5vw, 5rem);
    row-gap: clamp(2.5rem, 4vw, 4rem);
  }

  .about-heading,
  .about-copy {
    min-width: 0;
  }

  .about-heading h2 {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    font-size: clamp(4.4rem, 6.1vw, 6.25rem);
    line-height: 0.91;
    letter-spacing: -0.012em;
  }

  .about-copy {
    padding-top: 2.2rem;
  }

  .about-lede {
    max-width: 34rem;
    font-size: clamp(1.22rem, 1.75vw, 1.72rem);
    line-height: 1.35;
  }

  .about-copy p:not(.about-lede) {
    max-width: 36rem;
  }
}
