/* ============================================================
   MOTHORO — Shared Stylesheet
   Fonts: Bebas Neue (headings) + DM Sans (body)
   Colors: #ffffff bg | #0a0a0a black | #888 gray | #f8f7f5 off-white
============================================================ */

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --bg: #ffffff;
  --black: #0a0a0a;
  --gray: #888888;
  --light-gray: #d4d4d4;
  --off-white: #f8f7f5;
  --transition: 0.3s ease;
  --container: 1100px;
  --px: 2rem;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, .display {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: 'DM Sans', sans-serif;
}

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
}

section {
  padding: 100px 0;
}

/* ===========================
   NAVIGATION
=========================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--px);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--black);
  transition: opacity var(--transition);
}

.nav-logo:hover {
  opacity: 0.6;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 200;
  position: relative;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: #ffffff;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: #ffffff;
}

/* ===========================
   MENU OVERLAY
=========================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-links {
  list-style: none;
  text-align: center;
  margin-bottom: 3rem;
}

.menu-links li {
  overflow: hidden;
}

.menu-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 5.5rem);
  color: #ffffff;
  letter-spacing: 0.04em;
  display: block;
  line-height: 1.15;
  transition: color var(--transition);
}

.menu-links a:hover {
  color: var(--gray);
}

.menu-divider {
  width: 30px;
  height: 1px;
  background: #333;
  margin: 1.5rem auto;
}

.menu-socials {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-socials a {
  color: #555;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  transition: color var(--transition);
}

.menu-socials a:hover {
  color: #ffffff;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--black);
  color: #ffffff;
}

.btn-primary:hover {
  background: #2a2a2a;
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: #ffffff;
}

/* ===========================
   FOOTER
=========================== */
footer {
  padding: 3.5rem var(--px);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 20;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-socials a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-copy {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.06em;
}

/* ===========================
   FADE-IN ANIMATION
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.12s; }
.fade-in.delay-2 { transition-delay: 0.24s; }
.fade-in.delay-3 { transition-delay: 0.4s; }
.fade-in.delay-4 { transition-delay: 0.58s; }

/* ===========================
   PARALLAX ELEMENTS
   translate property used separately from transform
   so parallax composes with reveal animations
=========================== */
[data-parallax] {
  will-change: translate;
}

/* ===========================
   SECTION REVEAL (scroll-in)
   Sections rise gently into view
=========================== */
.section-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.section-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   HEADLINE CLIP REVEAL
   H2s unmask bottom-to-top
=========================== */
.reveal-clip {
  clip-path: inset(0 0 100% 0);
  transform: translateY(12px);
  transition:
    clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1),
    transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0.18s;
  will-change: clip-path, transform;
}

.reveal-clip.in-view {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

/* ===========================
   PAGE HEADER (inner pages)
=========================== */
.page-header {
  padding: 160px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--black);
  letter-spacing: 0.02em;
}

.page-header .label {
  margin-bottom: 1rem;
  display: block;
}

/* ===========================
   HOMEPAGE — VINYL HERO
   Two-zone layout:
   1. .ohya-zone  — full-width oversized type (hover activates wave)
   2. .featured-zone — vinyl + featured module content
=========================== */
.vinyl-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  overflow-x: hidden;
}

/* ── Zone 1: OHYA ── */
.ohya-zone {
  padding: 2.5vh var(--px) 0;
  overflow: visible;
  cursor: default;
  user-select: none;
}

.ohya-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18vw, 26vw, 32vw);
  line-height: 0.85;
  color: var(--black);
  display: flex;
  align-items: baseline;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* Default: static, no animation */
.ohya-letter {
  display: inline-block;
  will-change: transform, opacity;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Scroll-driven spread set via JS on style.translate + style.opacity */
}

/* Wave only triggers on cursor hover — intentional, polished */
.ohya-text:hover .ohya-letter {
  animation: letterWave 1.8s ease-in-out infinite;
}
.ohya-text:hover .ohya-letter:nth-child(1) { animation-delay: 0s;     }
.ohya-text:hover .ohya-letter:nth-child(2) { animation-delay: 0.15s;  }
.ohya-text:hover .ohya-letter:nth-child(3) { animation-delay: 0.30s;  }
.ohya-text:hover .ohya-letter:nth-child(4) { animation-delay: 0.45s;  }

@keyframes letterWave {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-0.07em); }
}

/* ── Zone 2: Featured ── */
.featured-zone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem var(--px) 4rem;
}

.featured-inner {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  max-width: 820px;
  width: 100%;
}

.featured-visual {
  flex-shrink: 0;
}

/* Featured text block — shared across all content types */
.featured-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.featured-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: 'DM Sans', sans-serif;
  display: block;
  margin-bottom: 0.35rem;
}

.featured-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.25rem);
  letter-spacing: 0.02em;
  color: var(--black);
  line-height: 0.95;
}

.featured-meta {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.2rem;
}

.featured-cta {
  margin-top: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  width: fit-content;
  display: inline-block;
  transition: color var(--transition), border-color var(--transition);
}

.featured-cta:hover {
  color: var(--gray);
  border-color: var(--gray);
}

/* Vinyl record container — now lives inside .featured-visual */
.featured-visual .vinyl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* The disc itself spins */
.vinyl-disc {
  width: clamp(160px, 20vw, 300px);
  height: clamp(160px, 20vw, 300px);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  animation: vinylSpin 46s linear infinite;
  will-change: transform;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.12),
    0 20px 60px rgba(0,0,0,0.22),
    0 40px 100px rgba(0,0,0,0.12);
  background:
    radial-gradient(circle at center,
      #2c2c2c 0% 19%,
      #0d0d0d 19% 19.8%,
      #1e1e1e 19.8% 24%,
      #0d0d0d 24% 24.8%,
      #1c1c1c 24.8% 30%,
      #0d0d0d 30% 30.8%,
      #1b1b1b 30.8% 37%,
      #0d0d0d 37% 37.8%,
      #1a1a1a 37.8% 45%,
      #0d0d0d 45% 45.8%,
      #191919 45.8% 54%,
      #0d0d0d 54% 54.8%,
      #181818 54.8% 64%,
      #0d0d0d 64% 64.8%,
      #171717 64.8% 75%,
      #0d0d0d 75% 75.8%,
      #161616 75.8% 87%,
      #0d0d0d 87% 87.8%,
      #151515 87.8% 100%
    );
}

@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.vinyl-label {
  position: absolute;
  width: 38%;
  height: 38%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.vinyl-label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vinyl-hole {
  position: absolute;
  width: 7%;
  height: 7%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 50%;
  z-index: 2;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.4);
}

/* .vinyl-meta removed — use .featured-content instead */

/* ===========================
   HOMEPAGE — LOOSIES PLAYER
=========================== */
.loosies-section {
  padding: 80px 0;
  border-top: 1px solid #ebebeb;
}

.loosies-section .label {
  display: block;
  margin-bottom: 1.5rem;
}

.audio-player {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.player-track-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.player-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
  color: var(--black);
  line-height: 1;
}

.player-sub {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.25rem;
}

.play-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform 0.2s ease;
}

.play-btn:hover {
  background: #2c2c2c;
  transform: scale(1.06);
}

.play-btn svg {
  width: 17px;
  height: 17px;
}

.player-progress-wrap {
  flex: 1;
  position: relative;
}

.player-progress-bar {
  position: relative;
  height: 2px;
  background: var(--light-gray);
  cursor: pointer;
}

.player-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--black);
  width: 0%;
  pointer-events: none;
}

.player-scrubber {
  position: absolute;
  inset: -8px 0;
  width: 100%;
  height: calc(100% + 16px);
  opacity: 0;
  cursor: pointer;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.player-time {
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  min-width: 2.8rem;
  text-align: right;
}

/* ===========================
   HOMEPAGE — BOTTOM PANE (merch + stay connected split)
=========================== */
.bottom-pane {
  background: var(--black);
  padding: 100px var(--px);
}

.bottom-pane-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}

.bottom-left,
.bottom-right {
  display: flex;
  flex-direction: column;
}

/* Left — Merch */
.bottom-left .label {
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 0.75rem;
}

.bottom-left h2 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: #ffffff;
  line-height: 0.88;
  margin-bottom: 1.5rem;
}

.bottom-left p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 2rem;
}

.bottom-left .btn {
  background: #ffffff;
  color: var(--black);
  align-self: flex-start;
}

.bottom-left .btn:hover:not([style*="pointer-events:none"]) {
  background: #e0e0e0;
}

/* Right — Stay Connected */
.bottom-right .label {
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 0.75rem;
}

.bottom-right h2 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.88;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.bottom-right p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 2rem;
  max-width: none;
}

.email-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  background: transparent;
  color: #ffffff;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}

.email-form input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.email-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.email-form button {
  padding: 0.9rem 1.75rem;
  background: #ffffff;
  color: var(--black);
  border: 1px solid #ffffff;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--transition);
  white-space: nowrap;
  border-radius: 0;
}

.email-form button:hover {
  background: #e0e0e0;
}

.form-message {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  min-height: 1.2em;
  color: rgba(255, 255, 255, 0.45);
}

/* (merch-cta removed — merged into .bottom-pane) */

/* ===========================
   DISCOGRAPHY — FULL-BLEED STACKED BLOCKS
   Each album = full-width section with metadata bar,
   giant centered title, and cover art.
=========================== */

/* Page header */
.disco-header {
  padding: 120px 0 40px;
  text-align: center;
}

.disco-header .label {
  display: block;
  margin-bottom: 0.5rem;
}

.disco-header h1 {
  font-size: clamp(5rem, 12vw, 10rem);
  letter-spacing: 0.02em;
  color: var(--black);
  line-height: 0.95;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

/* Disco header scroll-spread letters */
.disco-header-letter {
  display: inline-block;
  will-change: transform, opacity;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Jump to Bio button */
.jump-bio {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 3px;
  transition: color var(--transition), border-color var(--transition), opacity 0.4s ease;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.jump-bio:hover {
  color: var(--black);
  border-bottom-color: var(--black);
}

.jump-bio.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Album block — full-bleed clickable section with sticky tuck stack */
.disco-block {
  display: block;
  text-decoration: none;
  background: var(--bg, #1a1a1a);
  color: #ffffff;
  padding: 0 var(--px);
  height: 60vh;
  min-height: 380px;
  position: sticky;
  top: 0;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

/* Each block stacks above the previous one */
.disco-block:nth-child(2)  { z-index: 2; }
.disco-block:nth-child(3)  { z-index: 3; }
.disco-block:nth-child(4)  { z-index: 4; }
.disco-block:nth-child(5)  { z-index: 5; }
.disco-block:nth-child(6)  { z-index: 6; }
.disco-block:nth-child(7)  { z-index: 7; }
.disco-block:nth-child(8)  { z-index: 8; }
.disco-block:nth-child(9)  { z-index: 9; }
.disco-block:nth-child(10) { z-index: 10; }
.disco-block:nth-child(11) { z-index: 11; }
.disco-block:nth-child(12) { z-index: 12; }
.disco-block:nth-child(13) { z-index: 13; }
.disco-block:nth-child(14) { z-index: 14; }
.disco-block:nth-child(15) { z-index: 15; }
.disco-block:nth-child(16) { z-index: 16; }
.disco-block:nth-child(17) { z-index: 17; }
.disco-block:nth-child(18) { z-index: 18; }
.disco-block:nth-child(19) { z-index: 19; }

/* Metadata bar — type (left), title (center), year (right) */
.disco-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.disco-meta span:nth-child(2) {
  text-align: center;
}

/* Giant title */
.disco-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-align: center;
  color: #ffffff;
  margin: 0;
  padding-top: clamp(1.5rem, 3vh, 2.5rem);
  text-transform: uppercase;
}

/* Cover art — centered below title, intentionally overflows block for peek effect */
.disco-art {
  display: flex;
  justify-content: center;
  padding: clamp(1.5rem, 3vh, 2.5rem) 0 0;
}

.disco-art img {
  width: clamp(200px, 30vw, 360px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s ease;
}

.disco-block:hover .disco-art img {
  transform: scale(1.03);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.55);
}

/* Stream indicator — appears on hover */
.disco-block::after {
  content: 'Stream \2192';
  position: absolute;
  bottom: 2rem;
  right: var(--px);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0);
  transition: color 0.4s ease;
}

.disco-block:hover::after {
  color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   ABOUT / BIO SECTION
=========================== */
.about-section {
  padding: 100px 0;
  position: relative;
  z-index: 20;
  background: #ffffff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
}

.about-image-wrap {
  background: var(--off-white);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-bio {
  font-size: 0.97rem;
  line-height: 1.9;
  color: #5a5a5a;
  max-width: 380px;
}

.about-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.about-tags span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--light-gray);
  padding: 0.45rem 0.85rem;
}

/* ===========================
   MERCH PAGE
=========================== */
.merch-hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  padding-left: var(--px);
  padding-right: var(--px);
}

.merch-hero h1 {
  font-size: clamp(5rem, 14vw, 12rem);
  color: var(--black);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.merch-hero p {
  color: var(--gray);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  max-width: 360px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--px) 60px;
}

.contact-inner {
  max-width: 520px;
}

.contact-inner h1 {
  font-size: clamp(4rem, 9vw, 7rem);
  color: var(--black);
  margin-bottom: 1.75rem;
}

.contact-inner p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.85;
  margin-bottom: 2.75rem;
  letter-spacing: 0.02em;
}

.contact-email {
  font-size: 1rem;
  color: var(--black);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  transition: color var(--transition), border-color var(--transition);
}

.contact-email:hover {
  color: var(--gray);
  border-color: var(--gray);
}

/* ===========================
   RESPONSIVE — TABLET
=========================== */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .about-bio {
    max-width: 100%;
  }
}

/* ===========================
   RESPONSIVE — MOBILE
=========================== */
@media (max-width: 768px) {
  :root {
    --px: 1.25rem;
  }

  section {
    padding: 70px 0;
  }

  /* Vinyl hero — mobile: centered column */
  .featured-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    text-align: center;
  }

  .featured-zone {
    padding: 2.5rem var(--px) 3rem;
    align-items: center;
    justify-content: center;
  }

  .featured-content {
    align-items: center;
  }

  .featured-cta {
    align-self: center;
  }

  .vinyl-disc {
    width: clamp(140px, 48vw, 210px);
    height: clamp(140px, 48vw, 210px);
  }

  .ohya-zone {
    padding: 2vh var(--px) 0;
  }

  /* Bottom pane — stack on mobile */
  .bottom-pane-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .bottom-left h2 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  /* Email form */
  .email-form {
    flex-direction: column;
    margin: 0;
  }

  .email-form input[type="email"] {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
  }

  .email-form button {
    padding: 0.9rem 1.5rem;
  }

  /* Menu socials */
  .menu-socials {
    gap: 1rem;
    padding: 0 1.5rem;
  }

  /* Discography — mobile: stacked tuck blocks */
  .disco-header {
    padding: 100px 0 30px;
  }

  .disco-header h1 {
    font-size: clamp(3.5rem, 14vw, 6rem);
  }

  .disco-block {
    height: 50vh;
    min-height: 320px;
    position: sticky;
    top: 0;
  }

  .disco-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .disco-art img {
    width: clamp(150px, 45vw, 240px);
  }

  .disco-meta {
    font-size: 0.6rem;
  }

  .disco-block::after {
    display: none;
  }

  /* Jump to bio — smaller on mobile */
  .jump-bio {
    font-size: 0.62rem;
  }
}
