@font-face {
  font-family: "Lust";
  src: url("fonts/Lust-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Midgod";
  src: url("fonts/TBJMidgod-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- intro overlay ---- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #07070a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 24px;
  transform: translateY(0);
  transition: transform 0.9s cubic-bezier(0.7, 0, 0.18, 1), visibility 0s linear 1s;
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.7, 0, 0.18, 1);
  z-index: -1;
}
.intro.is-hidden {
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
}
.intro.is-hidden::before {
  transform: translateY(0);
}
.intro-logo {
  position: relative;
  display: inline-block;
  width: clamp(260px, 60vw, 600px);
  aspect-ratio: 2001 / 1125;
}
.intro-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: invert(1);
}
.intro-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rouge);
  -webkit-mask-image: url("https://richyashel.com/cdn/shop/files/YASHEL_LOGO_HORIZONTALwhite_1.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-mode: alpha;
  mask-image: url("https://richyashel.com/cdn/shop/files/YASHEL_LOGO_HORIZONTALwhite_1.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-mode: alpha;
  clip-path: inset(0 100% 0 0);
  animation: logoFill 2s cubic-bezier(0.7, 0, 0.2, 1) 0.25s forwards;
}
@keyframes logoFill {
  to { clip-path: inset(0 0% 0 0); }
}
body[data-intro="loading"] { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .intro, .intro-mark span, .intro-eyebrow, .intro-meta, .intro-bar, .intro-bar span {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

:root {
  --bg: #0b0b0e;
  --bg-2: #111114;
  --fg: #f5f5f2;
  --muted: #8a8a92;
  --muted-2: #5d5d65;
  --line: rgba(245, 245, 242, 0.10);
  --accent: #ff5fa2;
  --rouge: #b9293a;
  --font-display: "Midgod", "Khand", "Bebas Neue", "Helvetica Neue", -apple-system, sans-serif;
  --font-serif: "Lust", "Times New Roman", Georgia, serif;
  --font-body: "Switzer", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-script: "Lust", "Times New Roman", serif;
  --max: 1320px;
  --pad: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 28px var(--pad) 20px;
  background: linear-gradient(to bottom, rgba(11,11,14,0.55) 0%, rgba(11,11,14,0) 100%);
  gap: 12px;
}
.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}
.logo img {
  height: clamp(56px, 7vw, 92px);
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.55));
}

/* language toggle: editorial, straight lines, no rounded pill */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.lang-switch-menu {
  margin-top: 32px;
  align-self: start;
}
.lang-switch button {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 16px 8px 0;
  margin: 0 16px 0 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--muted-2);
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}
.lang-switch button + button {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.lang-switch button:last-child { margin-right: 0; }
.lang-switch button:hover { color: var(--fg); }
.lang-switch button.is-active {
  color: var(--fg);
}
.lang-switch button.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 16px;
  bottom: 2px;
  height: 1px;
  background: var(--rouge);
}
.lang-switch button + button.is-active::after { left: 16px; right: 0; }

/* hamburger */
.menu-toggle {
  grid-column: 4;
  justify-self: end;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 120;
}
.menu-toggle .bar {
  display: block;
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.2s ease, top 0.35s cubic-bezier(0.7, 0, 0.3, 1);
}
.menu-toggle .bar:nth-child(1) { top: 18px; }
.menu-toggle .bar:nth-child(2) { top: 24px; }
.menu-toggle .bar:nth-child(3) { top: 30px; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

/* menu overlay */
.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #07070a;
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.7, 0, 0.18, 1) 0.35s, visibility 0s 1.05s;
  overflow-y: auto;
  visibility: hidden;
}
.menu-panel.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.7s cubic-bezier(0.7, 0, 0.18, 1) 0s, visibility 0s 0s;
}
.menu-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px var(--pad) 60px;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 48px;
}
.menu-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0;
  display: block;
}
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
}
.menu-nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, padding-left 0.3s ease, color 0.3s ease;
}
.menu-num { display: none; }
.menu-italic { margin-left: auto; }
.menu-panel.is-open .menu-nav a {
  opacity: 1;
  transform: translateY(0);
}
.menu-panel.is-open .menu-nav a:nth-child(1) { transition-delay: 0.18s; }
.menu-panel.is-open .menu-nav a:nth-child(2) { transition-delay: 0.24s; }
.menu-panel.is-open .menu-nav a:nth-child(3) { transition-delay: 0.30s; }
.menu-panel.is-open .menu-nav a:nth-child(4) { transition-delay: 0.36s; }
.menu-panel.is-open .menu-nav a:nth-child(5) { transition-delay: 0.42s; }
.menu-panel.is-open .menu-nav a:nth-child(6) { transition-delay: 0.48s; }
.menu-nav a:hover .menu-label { color: var(--rouge); }
.menu-nav a:hover .menu-num { color: var(--fg); }
.menu-nav a:hover .menu-italic { color: var(--fg); }
.menu-label, .menu-num, .menu-italic { transition: color 0.35s ease; }
.menu-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}
.menu-label {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 132px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.menu-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--muted);
  text-align: right;
}
.menu-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.menu-footer p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--fg);
}
.menu-footer p em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted);
}
.menu-footer .menu-eyebrow { margin-bottom: 10px; }

body[data-menu-open="true"] { overflow: hidden; }

/* shared section head */
.kicker {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.2;
}
.section-head { margin-bottom: 64px; max-width: 760px; }
.section-head h3 {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 132px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 32px;
  padding-top: 0.04em;
}
.section-head h3 em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--rouge);
  font-size: 0.72em;
  vertical-align: 0.04em;
}

/* stacked head: large script line on top, sans heading below */
.section-head h3.head-stacked {
  line-height: 1;
}
.section-head h3.head-stacked em {
  display: block;
  font-size: 0.7em;
  line-height: 0.95;
  margin-bottom: 0.04em;
  vertical-align: baseline;
}
.section-head h3.head-stacked br { display: none; }

/* flipped head: sans short word + script big word, single line */
.section-head h3.head-flip {
  white-space: nowrap;
  line-height: 1.05;
  font-size: clamp(40px, 7vw, 88px);
}
.section-head h3.head-flip em {
  font-size: 1.05em;
  line-height: inherit;
  margin-left: 0.08em;
  vertical-align: baseline;
}
.section-head h3.head-flip-big {
  font-size: clamp(40px, 6vw, 72px);
}
.section-head h3.head-flip-big em {
  font-size: 1.2em;
  margin-left: 0.16em;
}
.section-head .lead {
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  max-width: 56ch;
  margin: 0;
  line-height: 1.55;
}

/* scroll stage */
.scroll-stage {
  position: relative;
  height: 720svh;
}
.sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}
canvas#fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg);
}
.noise,
.noise-fine {
  position: absolute;
  inset: -12%;
  pointer-events: none;
  z-index: 4;
  will-change: transform;
}
.noise {
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='420' height='420'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch' seed='3'/><feColorMatrix type='saturate' values='0'/></filter><rect width='420' height='420' filter='url(%23n)'/></svg>");
  background-size: 420px 420px;
  animation: noiseShift 0.32s steps(8) infinite;
}
.noise-fine {
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='2.4' numOctaves='1' stitchTiles='stitch' seed='17'/><feColorMatrix type='saturate' values='0'/></filter><rect width='240' height='240' filter='url(%23n2)'/></svg>");
  background-size: 240px 240px;
  animation: noiseShift 0.18s steps(10) infinite reverse;
}
@keyframes noiseShift {
  0%   { transform: translate(0, 0); }
  16%  { transform: translate(-4%, 3%); }
  33%  { transform: translate(3%, -4%); }
  50%  { transform: translate(-3%, -3%); }
  66%  { transform: translate(4%, 2%); }
  83%  { transform: translate(-2%, 4%); }
  100% { transform: translate(0, 0); }
}
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .noise, .noise-fine { animation: none; opacity: 0.18; }
}
.sticky::before,
.sticky::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 22vh;
  pointer-events: none;
  z-index: 2;
}
.sticky::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(11,11,14,0.65) 40%, rgba(11,11,14,0) 100%);
}
.sticky::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(11,11,14,0.65) 40%, rgba(11,11,14,0) 100%);
}

.stage-header {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 var(--pad) 18vh;
  gap: 14px;
}
.stage-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 26px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65);
}
.stage-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.stage-meta span:nth-child(2) { color: var(--muted-2); }

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 6;
  pointer-events: none;
}
.scroll-line {
  display: block;
  width: 2px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(185,41,58,0) 0%, var(--rouge) 100%);
  box-shadow: 0 0 12px rgba(185, 41, 58, 0.55);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top center; }
  45%  { transform: scaleY(1); transform-origin: top center; }
  55%  { transform: scaleY(1); transform-origin: bottom center; }
  100% { transform: scaleY(0); transform-origin: bottom center; }
}
.scroll-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
}

/* progress line + counter while scrubbing the video */
.stage-progress {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 22px;
  height: 1px;
  background: rgba(245, 245, 242, 0.12);
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.stage-progress-bar {
  display: block;
  position: absolute;
  inset: 0;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
.stage-progress-info {
  position: absolute;
  right: var(--pad);
  bottom: 38px;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.stage-progress-arrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--fg);
  animation: arrowPulse 1.8s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(3px); opacity: 1; }
}
.stage-progress-frame {
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.is-scrubbing .stage-progress,
.is-scrubbing .stage-progress-info {
  opacity: 1;
}
.is-scrubbing .stage-progress-info { transform: translateY(0); }

/* marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.marquee-track > span {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
}
.marquee-track > span em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: var(--fg);
  letter-spacing: -0.005em;
  font-size: 1.15em;
  line-height: 1;
  margin: 0 0.18em 0 0.6em;
  display: inline-block;
  transform: translateY(-0.12em);
}
.marquee-track .dot {
  color: var(--muted-2);
  font-size: 0.7em;
  transform: none;
  line-height: 1;
}
@keyframes marqueeRun {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: translateX(-10%); }
}

/* stats */
.stats {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad);
}
.stats-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid li {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stats-grid li:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
}
.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.stat-label em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted-2);
}

/* spotify embed */
.spotify-embed {
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
}
.spotify-embed iframe {
  display: block;
  border: 0;
  width: 100%;
  min-height: 352px;
}

/* press */
.press {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--pad);
  border-top: 1px solid var(--line);
}
.press-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.press .kicker { color: var(--muted-2); margin-bottom: 28px; }
.press-quote { margin: 0; padding: 0; }
.press-quote p {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.32;
  letter-spacing: 0.01em;
  margin: 0 0 32px;
  color: var(--fg);
}
.press-quote p em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: var(--rouge);
  font-size: 1.25em;
  line-height: 0.85;
  letter-spacing: -0.005em;
  vertical-align: -0.02em;
}
.press-quote footer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.press-quote cite {
  font-style: normal;
  color: var(--fg);
}
.press-meta { color: var(--muted-2); }
.press-quote footer::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--muted-2);
}

/* generic section wrapper */
.music,
.acoustic,
.merch,
.tour,
.about {
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px var(--pad);
  border-top: 1px solid var(--line);
}

/* acoustic session video */
.acoustic-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--bg-2);
  overflow: hidden;
  border: 1px solid var(--line);
}
.acoustic-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* covers: horizontal scroll on desktop (EP work style) */
.covers-wrap {
  position: relative;
  margin: 0 calc(var(--pad) * -1);
  padding: 0 var(--pad);
  overflow: hidden;
}
.covers-grid {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
}
.cover {
  flex: 0 0 26vw;
  max-width: 26vw;
}
.cover {
  display: block;
  text-decoration: none;
  color: inherit;
}
.cover-art {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-2);
  margin-bottom: 18px;
}
.cover-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
  filter: saturate(0.95) contrast(1.02);
}
.cover-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 44px;
  color: var(--fg);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.cover:hover .cover-art img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(0.65);
}
.cover:hover .cover-play { opacity: 1; }
.cover-title {
  font-family: var(--font-script);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 6px;
}
.cover-meta {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 24px;
}
.video {
  grid-column: span 2;
  display: block;
  position: relative;
}
.video.feature {
  grid-column: span 4;
  grid-row: span 2;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-2);
  margin-bottom: 16px;
}
.video.feature .video-thumb { aspect-ratio: 16 / 10; }
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: saturate(0.95);
}
.video:hover .video-thumb img { transform: scale(1.04); }
.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,14,0.4) 0%, rgba(11,11,14,0) 50%);
  pointer-events: none;
}
.video-meta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}
.video-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
.video.feature .video-title { font-size: clamp(36px, 3.4vw, 52px); }

/* releases */
.track-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.track {
  display: grid;
  grid-template-columns: 80px 1.6fr 1fr 100px;
  align-items: baseline;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s ease;
}
.track:hover { padding-left: 16px; }
.track-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.track-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.track-meta { color: var(--muted); font-size: 14px; }
.track-year {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* cta button */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding: 16px 26px;
  border: 1px solid var(--fg);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.cta:hover {
  background: var(--fg);
  color: var(--bg);
}

/* merch */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
}
.merch-card {
  display: block;
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
  width: 100%;
}
.merch-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #161618 0%, #0e0e10 100%);
  overflow: hidden;
  margin-bottom: 16px;
  transition: background 0.4s ease;
}
.merch-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(185, 41, 58, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.merch-card:hover .merch-img::after { opacity: 1; }
.merch-card:hover .merch-img {
  background: linear-gradient(180deg, #1a1518 0%, #0c0a0b 100%);
}
.merch-front,
.merch-back {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  aspect-ratio: 1 / 1;
  height: auto;
  max-height: 86%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  transition: opacity 0.45s ease, filter 0.4s ease;
}
.merch-front { z-index: 1; opacity: 1; }
.merch-back  { z-index: 2; opacity: 0; pointer-events: none; }

/* per-product visual normalization: each PNG has the garment at a different scale */
.merch-card[data-name="R!CH YASHEL Hoodie"] .merch-front,
.merch-card[data-name="R!CH YASHEL Hoodie"] .merch-back {
  transform: translate(-50%, -50%) scale(1.05) !important;
}
.merch-card[data-name="TR!BE Hoodie"] .merch-front,
.merch-card[data-name="TR!BE Hoodie"] .merch-back {
  transform: translate(-50%, -50%) scale(0.95) !important;
}
.merch-card[data-name="Baby R!CH Hoodie"] .merch-front,
.merch-card[data-name="Baby R!CH Hoodie"] .merch-back {
  transform: translate(-50%, -50%) scale(0.98) !important;
}
.merch-card[data-name="Composition Hoodie"] .merch-front,
.merch-card[data-name="Composition Hoodie"] .merch-back {
  transform: translate(-50%, -50%) scale(0.95) !important;
}
.merch-card[data-name="TR!BE R!CH T-Shirt"] .merch-front,
.merch-card[data-name="TR!BE R!CH T-Shirt"] .merch-back {
  transform: translate(-50%, -50%) scale(1.02) !important;
}
.merch-card[data-name="Composition Crop"] .merch-front,
.merch-card[data-name="Composition Crop"] .merch-back,
.merch-card[data-name="R!CH in Love Crop"] .merch-front,
.merch-card[data-name="R!CH in Love Crop"] .merch-back,
.merch-card[data-name="TR!BE Crop"] .merch-front,
.merch-card[data-name="TR!BE Crop"] .merch-back,
.merch-card[data-name="Women Crop"] .merch-front,
.merch-card[data-name="Women Crop"] .merch-back {
  transform: translate(-50%, -50%) scale(1.05) !important;
}

.merch-card.has-back:hover .merch-front,
.merch-card.has-back.is-flipped .merch-front { opacity: 0; }
.merch-card.has-back:hover .merch-back,
.merch-card.has-back.is-flipped .merch-back { opacity: 1; }
.merch-card:hover .merch-front { filter: drop-shadow(0 24px 40px rgba(185, 41, 58, 0.35)) drop-shadow(0 8px 14px rgba(0,0,0,0.4)); }
.merch-quick {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(11,11,14,0.85) 0%, rgba(11,11,14,0) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}
.merch-quick::before {
  content: "Quick view";
}
.merch-quick::after {
  content: "→";
  font-size: 14px;
  letter-spacing: 0;
}
.merch-card:hover .merch-quick { opacity: 1; transform: translateY(0); }
.merch-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 6px;
}
.merch-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
}
.merch-price {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 0;
  font-variant-numeric: tabular-nums;
}

/* tour */
.dates {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.date {
  display: grid;
  grid-template-columns: 60px 160px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.date-index {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
}
.date-when {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.date-day {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.date-month {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 2.2vw, 32px);
  color: var(--muted);
}
.date-year {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.16em;
  font-variant-numeric: tabular-nums;
}
.date-place {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.date-city {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.date-venue { color: var(--muted); font-size: 14px; }
.date-cta a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* about */
.about { display: grid; gap: 80px; }
.pull-quote {
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(36px, 6.4vw, 96px);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}
.pull-quote p em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  font-size: 0.78em;
  color: var(--rouge);
  line-height: 0.95;
  letter-spacing: -0.005em;
}
.pull-quote cite {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.about-grid .section-head { margin-bottom: 0; }
.about-body p {
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 62ch;
}
.about-body p:first-child { color: var(--fg); }

/* product modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.product-modal.is-open {
  display: flex;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.product-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 10, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.product-panel {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  width: 100%;
  max-height: calc(100vh - 64px);
  background: var(--bg);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-modal.is-open .product-panel { transform: translateY(0); }
.product-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(11,11,14,0.6);
  border-radius: 999px;
  cursor: pointer;
  z-index: 3;
  display: grid;
  place-items: center;
}
.product-close span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: var(--fg);
}
.product-close span:nth-child(1) { transform: rotate(45deg); }
.product-close span:nth-child(2) { transform: rotate(-45deg); }
.product-image {
  position: relative;
  background: linear-gradient(180deg, #161618 0%, #0e0e10 100%);
  display: grid;
  place-items: center;
  padding: 56px 40px;
  aspect-ratio: 4 / 5;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.product-views {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(11,11,14,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.product-views button {
  background: transparent;
  border: 0;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.product-views button + button { border-left: 1px solid var(--line); }
.product-views button:hover { color: var(--fg); }
.product-views button.is-active { color: var(--bg); background: var(--fg); }
.product-info {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0;
}
.product-name {
  font-family: var(--font-script);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.product-price::before { content: "$"; }
.product-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 8px 0 4px;
  max-width: 42ch;
}
.product-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.product-field-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.product-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.product-sizes button {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  min-width: 48px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.product-sizes button:hover { border-color: var(--muted); }
.product-sizes button.is-active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 18px 24px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.product-cta:hover { background: var(--accent); color: var(--bg); }
.product-cta-price { font-variant-numeric: tabular-nums; opacity: 0.7; }
.product-fine {
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}
body[data-modal-open="true"] { overflow: hidden; }


@media (max-width: 820px) {
  .product-modal { padding: 0; align-items: stretch; }
  .product-panel {
    grid-template-columns: 1fr;
    max-height: 100svh;
    height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
  }
  .product-image { aspect-ratio: 1 / 1; padding: 24px; }
  .product-info {
    padding: 24px var(--pad) 16px;
    overflow-y: auto;
    gap: 12px;
  }
  .product-cta {
    position: sticky;
    bottom: 0;
    z-index: 5;
    margin: 0 calc(var(--pad) * -1) 0;
    padding: 18px var(--pad);
    background: var(--fg);
    color: var(--bg);
  }
  .product-fine { font-size: 10px; padding-bottom: 8px; }
  .product-close { top: 12px; right: 12px; }
}

/* newsletter */
.newsletter {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--pad);
  border-top: 1px solid var(--line);
  text-align: center;
}
.newsletter-inner { max-width: 720px; margin: 0 auto; }
.newsletter .kicker { color: var(--muted); }
.newsletter h3 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 88px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 40px;
}
.newsletter h3 em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--rouge);
  font-size: 0.95em;
  text-transform: none;
  letter-spacing: -0.005em;
  line-height: 0.9;
  vertical-align: -0.02em;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 18px;
  border-bottom: 1px solid var(--fg);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 16px 4px;
  font: inherit;
  font-size: 16px;
  color: var(--fg);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--muted-2); }
.newsletter-form button {
  background: transparent;
  border: 0;
  padding: 16px 8px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.newsletter-form button:hover { gap: 14px; }
.newsletter-fine {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  margin: 0;
}

/* footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 100px var(--pad) 48px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.footer .kicker { margin-bottom: 36px; color: var(--muted); }
.links {
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.links li {
  flex: 1 1 0;
  min-width: 0;
  border-right: 1px solid var(--line);
}
.links li:last-child { border-right: 0; }
.links a {
  display: block;
  padding: 20px 10px;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.links a:hover { background: var(--bg-2); }
.copy {
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  text-align: left;
}
.footer-bottom .copy { text-align: left; }

.built-by {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-decoration: none;
  transition: color 0.25s ease;
}
.built-by:hover { color: var(--fg); }
.built-by-label { color: var(--muted-2); }
.built-by-mark {
  display: inline-flex;
  line-height: 0;
  position: relative;
}
.built-by-mark img {
  height: 14px;
  width: auto;
  filter: invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease, filter 0.45s ease, transform 0.45s ease;
}
.built-by:hover .built-by-mark img {
  opacity: 1;
  filter:
    invert(1)
    drop-shadow(1.5px 0 0 rgba(255, 80, 130, 0.55))
    drop-shadow(-1.5px 0 0 rgba(120, 200, 255, 0.5));
  animation: glassWobble 1.6s ease-in-out infinite;
}
@keyframes glassWobble {
  0%, 100% { transform: translate3d(0, 0, 0); }
  20% { transform: translate3d(-0.4px, 0.3px, 0); }
  40% { transform: translate3d(0.4px, -0.3px, 0); }
  60% { transform: translate3d(-0.3px, -0.4px, 0); }
  80% { transform: translate3d(0.4px, 0.3px, 0); }
}

/* hover FX on Lust red letters: chromatic aberration + micro wobble */
.section-head h3 em,
.pull-quote p em,
.press-quote p em,
.newsletter h3 em {
  display: inline-block;
  transition: filter 0.35s ease, transform 0.35s ease;
  cursor: default;
}
.section-head h3 em:hover,
.pull-quote p em:hover,
.press-quote p em:hover,
.newsletter h3 em:hover {
  filter:
    drop-shadow(1.4px 0 0 rgba(255, 80, 130, 0.55))
    drop-shadow(-1.4px 0 0 rgba(120, 200, 255, 0.5));
  animation: glassWobble 1.6s ease-in-out infinite;
}
.built-by-meta {
  color: var(--muted-2);
  font-weight: 500;
}
.built-by-meta::before {
  content: "·";
  margin: 0 8px 0 4px;
  color: var(--muted-2);
}
.built-by-meta em {
  font-family: var(--font-script);
  font-style: normal;
  text-transform: none;
  font-size: 1.25em;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin-right: 2px;
}

@media (max-width: 720px) {
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom .copy { text-align: center; }
}

/* responsive */
@media (max-width: 1024px) {
  .covers-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
  .merch-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid li:nth-child(2) { border-right: 0; }
  .stats-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  :root { --pad: 18px; }
  .nav { padding: 14px var(--pad); gap: 8px; }
  .nav-menu { display: none; }
  .logo img { height: 64px; }
  .lang-switch { margin-right: 4px; padding: 3px; }
  .lang-switch button { padding: 5px 8px; font-size: 9px; min-width: 26px; letter-spacing: 0.18em; }
  .menu-toggle { width: 40px; height: 40px; }
  .menu-toggle .bar { left: 10px; right: 10px; }
  .music, .acoustic, .merch, .tour, .about { padding: 80px var(--pad); }
  .covers-grid { grid-template-columns: 1fr; gap: 32px; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .date {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0;
  }
  .date-index { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about { gap: 48px; }
  .links { flex-wrap: wrap; }
  .links li { flex: 1 1 33%; border-right: 0; border-bottom: 1px solid var(--line); }
  .links li:not(:nth-child(3n)) { border-right: 1px solid var(--line); }
  .links li:last-child { border-right: 0; }
  .links a { font-size: 12px; padding: 16px 6px; }
  .stats { padding: 56px var(--pad); }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid li { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 16px; }
  .stats-grid li:last-child { border-bottom: 0; }
  .press { padding: 70px var(--pad); }
  .marquee { padding: 14px 0; }
  .marquee-track > span { font-size: clamp(20px, 5.5vw, 34px); }
  .marquee-track { gap: 26px; }
  .spotify-embed { margin-top: 28px; }
  .stage-header { gap: 12px; }
  .stage-kicker { font-size: 18px; letter-spacing: 0.3em; }
  .scroll-cue { bottom: 24px; }
  .scroll-stage { height: 480svh; }
  .stage-progress { left: 16px; right: 16px; bottom: 16px; }
  .stage-progress-info { right: 16px; bottom: 30px; font-size: 9px; gap: 8px; letter-spacing: 0.22em; }
  .newsletter { padding: 70px var(--pad); }
  .newsletter-form { flex-direction: column; gap: 14px; border-bottom: 0; max-width: 360px; }
  .newsletter-form input { border-bottom: 1px solid var(--fg); padding: 14px 4px; }
  .newsletter-form button { background: var(--fg); color: var(--bg); padding: 16px; justify-content: center; }
  .footer { padding: 60px var(--pad) 30px; }
  .footer-bottom { gap: 24px; padding-top: 22px; margin-top: 32px; }
  .product-modal { padding: 0; }
  .product-panel { grid-template-columns: 1fr; max-height: 100svh; }
  .product-image { aspect-ratio: 1 / 1; padding: 24px; }
  .product-info { padding: 28px var(--pad); gap: 14px; }
  .intro-mark { font-size: clamp(48px, 14vw, 96px); }
  .intro-bar { width: 80px; }
  .pull-quote p { font-size: clamp(32px, 8vw, 56px); text-align: center; order: 2; margin: 0; }
  .pull-quote p em { display: block; margin-top: 4px; }
  .pull-quote cite { order: 1; margin-bottom: 20px; }
  .press-quote p { font-size: clamp(22px, 5vw, 32px); line-height: 1.4; }
  .section-head h3 { word-break: break-word; }
  .section-head h3.head-flip { white-space: normal; font-size: clamp(32px, 7vw, 52px); line-height: 1; }
  .section-head h3.head-flip em { display: inline-block; font-size: 1em; margin-left: 0.12em; margin-top: 0; }
  .section-head h3.head-flip-big { font-size: clamp(30px, 7vw, 48px); white-space: nowrap; }
  .section-head h3.head-flip-big em { display: inline; font-size: 1.15em; margin-left: 0.14em; margin-top: 0; line-height: 1; vertical-align: baseline; }
  .section-head h3.head-stacked em { font-size: 0.8em; }
  .menu-italic { display: none; }
  .menu-inner { padding: 88px var(--pad) 32px; gap: 24px; }
  .menu-label { font-size: clamp(34px, 7vw, 52px); }
  .menu-nav a { padding: 14px 0; gap: 14px; }
  .menu-eyebrow { font-size: 10px; letter-spacing: 0.28em; }
  .menu-footer { display: none; }
  .lang-switch-menu { margin-top: 18px; }

  /* About centered on mobile */
  .about .section-head,
  .about-grid { text-align: center; }
  .about .section-head { max-width: none; margin-left: auto; margin-right: auto; }
  .about-body p { max-width: none; margin-left: auto; margin-right: auto; }

  /* footer-bottom compact */
  .footer-bottom { flex-direction: column; align-items: center; gap: 14px; }
  .footer-bottom .copy { text-align: center; font-size: 10px; letter-spacing: 0.14em; }
  .built-by { font-size: 9px; letter-spacing: 0.2em; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .built-by-mark img { height: 12px; }
  .built-by-meta::before { margin: 0 6px 0 4px; }
  .built-by-meta em { font-size: 1.05em; }

  /* covers as horizontal carousel with edge fade */
  .covers-wrap {
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .covers-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    gap: 16px;
    padding: 0 var(--pad) 24px;
    margin: 0 calc(var(--pad) * -1);
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    width: auto;
    transform: none !important;
    touch-action: pan-x;
  }
  .covers-grid::-webkit-scrollbar { display: none; }
  .cover { scroll-snap-align: none; }
  .covers-grid::-webkit-scrollbar { display: none; }
  .cover {
    flex: 0 0 76%;
    max-width: 76%;
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-stage { height: auto; }
  .sticky { position: relative; height: auto; min-height: 100svh; }
  .scroll-line { animation: none; transform: scaleY(1); }
  .video-thumb img, .merch-img img { transition: none; }
}
