@font-face {
  font-family: "TheSignature";
  src: url("assets/fonts/thesignature.regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --black-soft: #030303;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.66);
  --white-faint: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --acid: #ffffff;
  --acid-soft: rgba(255, 255, 255, 0.08);
  --signature: "TheSignature", "Bodoni Moda", serif;
  --serif: "Bodoni Moda", "Didot", "Baskerville", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: #000;
}

body::after {
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.side-rail {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 76px;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 210px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 2, 2, 0.76);
  backdrop-filter: blur(18px);
}

.side-rail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 1px;
  background: var(--acid);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.32);
}

.brand-mark {
  height: 76px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
}

.brand-mark span {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.brand-mark span::before {
  width: 23px;
  height: 1px;
  background: var(--white);
  box-shadow: 0 -9px 0 rgba(255, 255, 255, 0.34), 0 9px 0 rgba(255, 255, 255, 0.34);
}

.brand-mark span::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
}

.rail-nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 54px);
  padding: 0 32px;
}

.rail-nav a,
.rail-social a,
.section-kicker,
.hero-label,
.meta-line,
.stream-list a,
.tour-table span,
.tour-table em,
.tour-table b,
.section-heading a,
.works-preview span,
.scroll-cue {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rail-nav a {
  position: relative;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--white-dim);
  transition: color 180ms ease;
}

.rail-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.rail-nav a:hover,
.rail-nav a.is-active,
.rail-social a:hover {
  color: var(--white);
}

.rail-nav a.is-active::after,
.rail-nav a:hover::after {
  transform: scaleX(1);
}

.rail-nav span {
  color: var(--acid);
}

.rail-social {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid var(--line);
}

.rail-social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white-dim);
  transition: color 180ms ease, transform 180ms ease;
}

.rail-social a:hover {
  transform: translateY(-2px);
}

.rail-social svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rail-social a[aria-label="Apple Music"] svg,
.rail-social a[aria-label="YouTube"] svg {
  fill: currentColor;
  stroke: none;
}

.mobile-header {
  display: none;
}

main {
  height: 100vh;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

main::-webkit-scrollbar {
  display: none;
}

main > section {
  position: relative;
  flex: 0 0 100vw;
  min-width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  scroll-snap-align: start;
  border-left: 1px solid var(--line);
  background: rgba(2, 2, 2, 0.72);
}

.hero {
  display: block;
  overflow: hidden;
  background: #000;
}

.hero-copy {
  position: absolute;
  left: clamp(36px, 5vw, 82px);
  top: 50%;
  z-index: 4;
  max-width: min(38vw, 560px);
  padding: 0;
  transform: translateY(-42%);
}

.hero-label,
.section-kicker {
  margin: 0 0 30px;
  color: var(--acid);
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--signature);
  font-size: clamp(6rem, 10vw, 11.6rem);
  font-weight: 400;
  line-height: 0.64;
  overflow-wrap: normal;
  white-space: nowrap;
  text-shadow: 0 16px 70px rgba(0, 0, 0, 0.9);
}

.hero-statement {
  max-width: 480px;
  margin: 48px 0 0;
  color: var(--white);
  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 25px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--white);
}

.button-primary {
  border-color: var(--acid);
  background: var(--white);
  color: var(--black);
}

.button-primary:hover {
  background: var(--white);
  color: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  border-left: 0;
  background: #000;
  overflow: hidden;
}

.smoke-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.smoke-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20vh;
  z-index: 1;
  width: min(40vw, 620px);
  height: min(66vh, 680px);
  background-image: url("assets/smoke-realistic-screen.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  mix-blend-mode: screen;
  opacity: 0.5;
  filter: blur(2px);
  transform: translateX(-50%) translateY(0) scale(0.5);
  transform-origin: 50% 100%;
  animation: bottomSmokeRise 7.2s linear infinite;
  pointer-events: none;
}

.smoke-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18vh;
  z-index: 1;
  width: min(11vw, 160px);
  height: min(36vh, 360px);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.26;
  filter: blur(2.5px);
  transform: translateX(-50%) translateY(0) scale(0.92);
  transform-origin: 50% 100%;
  background-image: url("assets/smoke-source-point.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  animation: sourceSmokePulse 3.6s ease-in-out infinite;
}

.real-smoke {
  position: absolute;
  left: 50%;
  bottom: 20vh;
  z-index: 1;
  width: min(50vw, 760px);
  height: min(92vh, 900px);
  background-image: url("assets/smoke-realistic-screen.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  mix-blend-mode: screen;
  opacity: 0.46;
  filter: blur(var(--smoke-blur, 2px));
  transform-origin: 50% 100%;
  animation: realSmokeRise var(--smoke-duration, 8.4s) linear infinite;
  animation-delay: var(--smoke-delay, 0s);
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.real-smoke-two {
  --smoke-duration: 8.4s;
  --smoke-delay: -2.8s;
  --smoke-blur: 4px;
  width: min(50vw, 760px);
  transform-origin: 50% 100%;
  animation-name: realSmokeRise;
}

.real-smoke-three {
  --smoke-duration: 8.4s;
  --smoke-delay: -5.6s;
  --smoke-blur: 7px;
  width: min(50vw, 760px);
  transform-origin: 50% 100%;
  animation-name: realSmokeRise;
}

.hero-guitar {
  position: absolute;
  left: 50%;
  top: 53%;
  z-index: 3;
  width: min(40vw, 610px);
  height: min(76vh, 790px);
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: grayscale(1) contrast(1.08) drop-shadow(0 24px 44px rgba(255, 255, 255, 0.12)) drop-shadow(0 34px 80px rgba(0, 0, 0, 0.86));
}

.hero-fallback-loop {
  display: none;
}

.scroll-cue {
  position: absolute;
  left: clamp(44px, 7vw, 116px);
  bottom: 38px;
  z-index: 4;
  color: var(--white-dim);
}

.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 72px;
  height: 1px;
  margin-left: 18px;
  vertical-align: middle;
  background: var(--white);
  transform-origin: left;
  animation: cueSlide 1.6s ease-in-out infinite;
}

.release-section,
.works-section,
.live-section,
.press-section,
.visual-section,
.merch-section,
.contact-section {
  display: grid;
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
  padding: 116px clamp(40px, 6vw, 104px) 58px;
}

.release-section {
  grid-template-columns: minmax(280px, 0.46fr) minmax(460px, 0.84fr) minmax(260px, 0.44fr);
}

.release-cover {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black-soft);
}

.release-cover img,
.works-preview img,
.live-image img,
.press-image img,
.visual-grid img,
.merch-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.release-copy h2,
.section-heading h2,
.press-copy h2,
.statement h2,
.merch-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(4.1rem, 7vw, 8rem);
  font-weight: 600;
  line-height: 0.88;
}

.release-copy p,
.statement p,
.merch-section p,
.contact-section p {
  max-width: 610px;
  color: var(--white-dim);
  font-size: 1rem;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
  color: var(--white);
}

.meta-line span {
  padding: 8px 10px;
  border: 1px solid var(--line);
}

.stream-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.stream-list a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  color: var(--white-dim);
  transition: color 180ms ease, padding-left 180ms ease;
}

.stream-list a:hover,
.section-heading a:hover,
.press-copy a:hover {
  color: var(--acid);
}

.stream-list a:hover {
  padding-left: 10px;
}

.works-section {
  grid-template-rows: auto minmax(0, 1fr);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin: 0;
}

.section-heading a {
  color: var(--white-dim);
}

.works-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.52fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: stretch;
}

.track-list,
.tour-table {
  align-self: center;
  border-top: 1px solid var(--line);
}

.track-row {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-areas:
    "num title"
    "num meta";
  gap: 0 20px;
  align-items: center;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
}

.track-row span {
  grid-area: num;
  color: var(--acid);
  font-size: 0.74rem;
  font-weight: 800;
}

.track-row strong {
  grid-area: title;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
}

.track-row em {
  grid-area: meta;
  color: var(--white-dim);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.track-row:hover strong,
.track-row.is-active strong {
  color: var(--acid);
}

.works-preview {
  position: relative;
  min-height: min(66vh, 650px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black-soft);
}

.works-preview img {
  transition: opacity 220ms ease, transform 500ms ease;
}

.works-preview:hover img {
  transform: scale(1.03);
}

.works-preview figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.works-preview strong {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 0.92;
}

.live-section {
  grid-template-columns: minmax(380px, 0.52fr) minmax(600px, 0.86fr);
}

.live-image {
  min-height: min(68vh, 680px);
  overflow: hidden;
  border: 1px solid var(--line);
}

.live-board {
  min-width: 0;
}

.tour-table a {
  min-height: 60px;
  display: grid;
  grid-template-columns: 144px minmax(140px, 1fr) minmax(130px, 0.75fr) 82px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding-left 180ms ease;
}

.tour-table a:hover {
  padding-left: 10px;
  background: var(--acid-soft);
}

.tour-table strong {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-table span,
.tour-table em {
  color: var(--white-dim);
  font-style: normal;
}

.tour-table b {
  color: var(--acid);
  text-align: right;
}

.press-section {
  grid-template-columns: minmax(280px, 0.38fr) minmax(360px, 0.48fr) minmax(420px, 0.62fr);
}

.press-image {
  margin: 0;
  min-height: min(64vh, 620px);
  overflow: hidden;
  border: 1px solid var(--line);
}

.press-copy,
.statement {
  min-width: 0;
}

blockquote {
  margin: 30px 0;
  color: var(--white-dim);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  line-height: 1.22;
}

blockquote cite {
  display: block;
  margin-top: 14px;
  color: var(--acid);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.press-copy a {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.statement {
  border-left: 1px solid var(--line);
  padding-left: clamp(26px, 4vw, 54px);
}

.signature {
  display: block;
  margin-top: 30px;
  color: var(--white);
  font-family: var(--signature);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.8;
}

.visual-section {
  grid-template-rows: auto minmax(0, 1fr);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.visual-grid img {
  min-height: min(66vh, 650px);
  border: 1px solid var(--line);
  transition: filter 200ms ease, transform 200ms ease;
}

.visual-grid img:hover {
  filter: grayscale(0) contrast(1.04);
  transform: translateY(-3px);
}

.merch-section {
  grid-template-columns: minmax(420px, 0.72fr) minmax(520px, 0.74fr) auto;
}

.merch-section figure {
  margin: 0;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-section {
  grid-template-columns: minmax(360px, 0.62fr) minmax(560px, 0.88fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: clamp(54px, 8vw, 126px);
  row-gap: 24px;
}

.contact-section h2 {
  grid-column: 1;
  grid-row: 1;
  max-width: 520px;
  font-size: clamp(5.2rem, 8vw, 8.7rem);
}

.contact-section p {
  grid-column: 1;
  grid-row: 2;
  max-width: 390px;
  margin: 0;
  font-size: 1.08rem;
}

.booking-form {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: end;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form label span {
  color: var(--white-dim);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.92rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--white);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.booking-form select {
  appearance: none;
  color-scheme: dark;
  cursor: pointer;
}

.booking-form textarea {
  min-height: 116px;
  resize: vertical;
}

.form-wide,
.form-status {
  grid-column: 1 / -1;
}

.booking-form .button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--white-dim);
  font-size: 0.78rem;
}

.form-status.is-success {
  color: var(--white);
}

.form-status.is-error {
  color: rgba(255, 255, 255, 0.72);
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@keyframes cueSlide {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.45;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes realSmokeRise {
  0% {
    opacity: 0.22;
    filter: blur(0px);
    transform: translateX(-50%) translateY(0) scale(0.48);
  }
  14% {
    opacity: 0.52;
  }
  46% {
    opacity: 0.58;
    filter: blur(var(--smoke-blur, 2px));
    transform: translateX(-50%) translateY(-170px) scale(0.84);
  }
  78% {
    opacity: 0.34;
  }
  100% {
    opacity: 0.18;
    filter: blur(calc(var(--smoke-blur, 2px) + 4px));
    transform: translateX(-50%) translateY(-520px) scale(1.22);
  }
}

@keyframes bottomSmokeRise {
  0% {
    opacity: 0.34;
    filter: blur(1px);
    transform: translateX(-50%) translateY(0) scale(0.48);
  }
  18% {
    opacity: 0.62;
  }
  48% {
    opacity: 0.58;
  }
  78% {
    opacity: 0.38;
  }
  100% {
    opacity: 0.18;
    filter: blur(7px);
    transform: translateX(-50%) translateY(-300px) scale(1.04);
  }
}

@keyframes sourceSmokePulse {
  0%,
  100% {
    opacity: 0.18;
    filter: blur(2.5px);
    transform: translateX(-50%) translateY(8px) scale(0.72);
  }
  45% {
    opacity: 0.34;
    filter: blur(4px);
    transform: translateX(-50%) translateY(-42px) scale(1.02);
  }
}

@keyframes realSmokeRiseLeft {
  0% {
    opacity: 0;
    filter: blur(1px);
    transform: translateX(-54%) translateY(110px) scaleX(-0.72) scaleY(0.76) rotate(-4deg);
  }
  18% {
    opacity: 0.23;
  }
  52% {
    opacity: 0.4;
  }
  76% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    filter: blur(calc(var(--smoke-blur, 4px) + 5px));
    transform: translateX(-69%) translateY(-430px) scaleX(-1.16) scaleY(1.22) rotate(-13deg);
  }
}

@keyframes realSmokeRiseRight {
  0% {
    opacity: 0;
    filter: blur(2px);
    transform: translateX(-44%) translateY(130px) scale(0.82) rotate(5deg);
  }
  18% {
    opacity: 0.17;
  }
  50% {
    opacity: 0.32;
  }
  80% {
    opacity: 0.16;
  }
  100% {
    opacity: 0;
    filter: blur(calc(var(--smoke-blur, 7px) + 6px));
    transform: translateX(-31%) translateY(-470px) scale(1.34) rotate(14deg);
  }
}

@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;
  }
}

@media (max-width: 1180px) {
  .side-rail {
    grid-template-columns: 112px minmax(0, 1fr) 150px;
  }

  .rail-nav {
    gap: 20px;
    padding: 0 18px;
  }

  .rail-nav a {
    gap: 6px;
  }

  .rail-social {
    gap: 10px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  }

  .release-section,
  .press-section,
  .merch-section,
  .contact-section {
    grid-template-columns: minmax(340px, 0.78fr) minmax(420px, 1fr);
  }

  .stream-list,
  .booking-form {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .contact-section h2,
  .contact-section p {
    grid-column: 1;
    grid-row: auto;
  }

  .statement {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  html,
  body {
    overflow: auto;
    overflow-x: hidden;
  }

  body::before {
    background: #000;
  }

  .side-rail {
    position: fixed;
    inset: 68px 0 auto;
    height: auto;
    min-height: calc(100vh - 68px);
    display: none;
    align-content: start;
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 2, 2, 0.96);
  }

  .side-rail::after {
    display: none;
  }

  body.menu-open .side-rail {
    display: grid;
  }

  .brand-mark,
  .rail-social {
    display: none;
  }

  .rail-nav {
    height: auto;
    display: grid;
    gap: 0;
    padding: 12px 22px;
  }

  .rail-nav a {
    min-height: 48px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }

  .rail-nav a::after {
    display: none;
  }

  .mobile-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(2, 2, 2, 0.9);
    backdrop-filter: blur(16px);
  }

  .mobile-brand {
    font-family: var(--signature);
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 0.8;
  }

  .mobile-menu {
    width: 44px;
    height: 44px;
    display: grid;
    gap: 6px;
    place-content: center;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--white);
  }

  .mobile-menu span {
    width: 20px;
    height: 1px;
    background: currentColor;
  }

  main {
    height: auto;
    display: block;
    overflow: visible;
    scroll-snap-type: none;
  }

  main > section {
    min-width: 0;
    min-height: auto;
    overflow: visible;
    scroll-margin-top: 68px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 68px;
  }

  .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    padding: 64px 22px 56px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(4.25rem, 20vw, 6.4rem);
    white-space: nowrap;
  }

  .hero-statement {
    max-width: 100%;
    margin-top: 28px;
    font-size: 1.04rem;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-media,
  .smoke-stage {
    min-height: 65vh;
  }

  .hero-media {
    position: relative;
    inset: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-guitar {
    width: min(88vw, 520px);
    height: min(62vh, 720px);
  }

  .real-smoke {
    width: min(112vw, 680px);
    height: min(76vh, 720px);
  }

  .smoke-stage::before {
    width: min(104vw, 620px);
    height: min(64vh, 640px);
  }

  .smoke-stage::after {
    bottom: 14vh;
    width: min(32vw, 150px);
    height: min(34vh, 320px);
  }

  .scroll-cue {
    display: none;
  }

  .release-section,
  .works-section,
  .live-section,
  .press-section,
  .visual-section,
  .merch-section,
  .contact-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 64px 22px;
  }

  .release-copy h2,
  .section-heading h2,
  .press-copy h2,
  .statement h2,
  .merch-section h2,
  .contact-section h2 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .works-layout,
  .live-section,
  .press-section,
  .visual-grid,
  .merch-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .works-preview,
  .live-image,
  .press-image,
  .visual-grid img {
    min-height: 360px;
  }

  .visual-grid {
    display: grid;
    gap: 12px;
  }

  .tour-table a {
    min-height: 86px;
    grid-template-columns: 1fr auto;
    gap: 5px 16px;
  }

  .tour-table a span,
  .tour-table a em {
    grid-column: 1;
  }

  .tour-table a b {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .statement {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(3.85rem, 19vw, 5rem);
  }

  .button {
    min-height: 54px;
    padding: 0 18px;
  }

  .works-preview figcaption {
    display: grid;
    align-items: start;
  }
}
