/* ================================================
   ANIL MR. DUNIYA — Official Website
   Design: Editorial Luxury | Monochromatic
   Palette: White / Grey / Black
================================================ */

/* ── VARIABLES & RESET ── */
:root {
  --white:      #FFFFFF;
  --off-white:  #F7F7F7;
  --light-grey: #E8E8E8;
  --silver:     #BDBDBD;
  --grey:       #9E9E9E;
  --mid-grey:   #6B6B6B;
  --dark-grey:  #3D3D3D;
  --charcoal:   #2A2A2A;
  --near-black: #1A1A1A;
  --black:      #0A0A0A;

  --font-display: 'Bebas Neue', cursive;
  --font-body:    'Inter', sans-serif;

  --nav-h:    80px;
  --max-w:    1440px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --t:        0.3s var(--ease);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--near-black);
  overflow-x: hidden;
  line-height: 1.6;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── AUDIO EXPERIENCE OVERLAY ── */
#audio-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#audio-overlay.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}
#audio-overlay-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
}
#audio-overlay-logo {
  width: 110px; height: auto;
  animation: pulse-logo 2.5s ease-in-out infinite;
}
@keyframes pulse-logo {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}
#audio-overlay-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
#audio-enter-btn {
  margin-top: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
#audio-enter-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
#audio-enter-btn span { margin-right: 8px; font-size: 10px; }

/* ── MUTE BUTTON ── */
#mute-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; font-size: 14px;
  display: none;
  align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
  backdrop-filter: blur(6px);
}
#mute-btn:hover { background: rgba(0,0,0,0.85); color: #fff; }
#mute-btn.visible { display: flex; }

/* ── PAGE LOADER ── */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px; z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.out { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  width: 100px;
  animation: logo-pulse 1.2s ease-in-out infinite alternate;
}
.loader-logo img { width: 100%; }

.loader-track {
  width: 180px; height: 1px;
  background: var(--charcoal);
}
.loader-fill {
  height: 100%;
  background: var(--white);
  animation: fill-bar 1.8s var(--ease) forwards;
}

@keyframes logo-pulse {
  from { opacity: 0.3; transform: scale(0.92); }
  to   { opacity: 1;   transform: scale(1.04); }
}
@keyframes fill-bar {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: #000;
  transition: background var(--t), box-shadow var(--t);
}
.navbar.scrolled {
  background: #000;
  box-shadow: 0 1px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo img {
  height: 48px; width: auto;
  transition: filter var(--t);
}
.navbar.scrolled .nav-logo img { filter: none; }

.nav-menu {
  display: flex; align-items: center; gap: 44px;
}
.nav-link {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative; transition: color var(--t);
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width var(--t);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link { color: var(--white); }
.navbar.scrolled .nav-link:hover { color: var(--white); }

/* New Release — editorial outlined CTA in nav */
.nav-link.new-release-btn {
  border: 1.5px solid rgba(255,255,255,0.65);
  padding: 5px 14px;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.nav-link.new-release-btn::before { content: none; }
.nav-link.new-release-btn::after  { display: none; }
.nav-link.new-release-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white) !important;
  border-color: var(--white);
}
.navbar.scrolled .nav-link.new-release-btn {
  border-color: rgba(255,255,255,0.65);
  color: var(--white) !important;
}
.navbar.scrolled .nav-link.new-release-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white) !important;
  border-color: var(--near-black);
}

.nav-socials {
  display: flex; align-items: center; gap: 18px;
}
.nav-social {
  color: rgba(255,255,255,0.7); font-size: 15px;
  transition: color var(--t), transform var(--t);
}
.nav-social:hover { color: var(--white); transform: translateY(-2px); }
.navbar.scrolled .nav-social { color: rgba(255,255,255,0.7); }
.navbar.scrolled .nav-social:hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px; width: 32px;
}
.ham-line {
  display: block; width: 100%; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.navbar.scrolled .ham-line { background: var(--near-black); }
.hamburger.open .ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO — Full-bleed background, centred bottom text ── */
.hero {
  position: relative;
  width: 100%; height: 100vh; min-height: 680px;
  margin-top: 36px; /* push down below fixed news ticker */
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  background: var(--near-black);
}

/* Background photo with ken-burns slow zoom */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  filter: grayscale(25%) contrast(1.06);
  animation: ken-burns 20s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* Gradient overlay — strong dark at bottom, light at top */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top,
      rgba(10,10,10,0.94) 0%,
      rgba(10,10,10,0.60) 28%,
      rgba(10,10,10,0.18) 58%,
      rgba(10,10,10,0.08) 100%
    ),
    linear-gradient(to right,
      rgba(10,10,10,0.28) 0%,
      transparent 28%,
      transparent 72%,
      rgba(10,10,10,0.28) 100%
    );
}

/* ── EKG HEARTBEAT LINE scrolling across hero background ── */
.hero-ekg {
  position: absolute;
  width: 200%; left: 0;
  top: 44%; height: 100px;
  z-index: 2; pointer-events: none;
  animation: ekg-scroll 14s linear infinite;
}
.ekg-svg { width: 100%; height: 100%; overflow: visible; }
.ekg-glow {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 10;
  filter: blur(4px);
}
.ekg-line {
  fill: none;
  stroke: rgba(255,255,255,0.22);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes ekg-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Content — centred at bottom */
.hero-center {
  position: relative; z-index: 3;
  text-align: center;
  padding: 0 24px 68px;
  width: 100%;
}

.hero-genres {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 14px;
  margin-bottom: 18px;
}
.hero-genres span {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8), 0 0 24px rgba(0,0,0,0.6);
}
.hero-genres .sep { color: rgba(255,255,255,0.55); text-shadow: none; }

.hero-name {
  display: flex; flex-direction: column; align-items: center;
  line-height: 0.88; margin-bottom: 18px;
}
.name-first {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 200px);
  color: var(--white); letter-spacing: 0.02em;
}
.name-second {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 112px);
  color: var(--silver); letter-spacing: 0.08em;
}

.hero-sub {
  font-size: 12px; font-weight: 300;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 36px;
}

/* ── HEARTBEAT PULSE LINE (bottom of hero) ── */
.hero-pulse {
  width: 260px; height: 32px;
  overflow: hidden; position: relative;
  margin: 0 auto;
}
.pulse-track {
  width: 200%; height: 100%;
  position: absolute; left: 0;
  animation: pulse-scroll 4s linear infinite;
}
.pulse-svg { width: 100%; height: 100%; }
.pulse-line {
  fill: none;
  stroke: rgba(255,255,255,0.5);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes pulse-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll hint — right side */
.scroll-hint {
  position: absolute; bottom: 40px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 4;
}
.scroll-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}
.scroll-rail {
  width: 1px; height: 56px;
  background: rgba(255,255,255,0.15);
  overflow: hidden; position: relative;
}
.scroll-rail::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.55);
  animation: rail-drop 1.6s ease-in-out infinite;
}
@keyframes rail-drop {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ── BUTTONS ── */
.btn-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 34px;
  background: var(--white); color: var(--black);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--white);
  transition: all var(--t); cursor: pointer;
}
.btn-light:hover { background: transparent; color: var(--white); }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 34px;
  background: transparent; color: var(--white);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all var(--t); cursor: pointer;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-dark {
  display: inline-flex; align-items: center;
  padding: 13px 34px;
  background: var(--near-black); color: var(--white);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--near-black);
  transition: all var(--t); cursor: pointer;
}
.btn-dark:hover { background: transparent; color: var(--near-black); }

.btn-outline-dark {
  display: inline-flex; align-items: center;
  padding: 13px 34px;
  background: transparent; color: var(--near-black);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--near-black);
  transition: all var(--t); cursor: pointer;
}
.btn-outline-dark:hover { background: var(--near-black); color: var(--white); }

/* ── SHARED TYPOGRAPHY ── */
.section-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 10px;
}
.section-eyebrow.light { color: var(--silver); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 86px);
  letter-spacing: 0.03em; line-height: 1;
  color: var(--near-black);
}
.section-title.light { color: var(--white); }

.section-rule {
  width: 52px; height: 1.5px;
  background: var(--near-black); margin-top: 18px;
}
.section-rule.light { background: var(--white); }

/* ── ABOUT — New layout: quote → strip → centred bio ── */
.about { background: var(--white); }

/* 1. Quote banner — full-width dark strip */
.quote-banner {
  background: var(--near-black);
  padding: 72px 48px;
}
.quote-banner-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: flex-start;
  justify-content: center; gap: 20px;
}
.qmark {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 72px; line-height: 0.75;
  color: var(--dark-grey); flex-shrink: 0;
  user-select: none;
}
.qmark.close { align-self: flex-end; }
.quote-text {
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.55;
}

/* 2. Photo strip — full width, horizontal band */
.photo-strip {
  position: relative;
  width: 100%; height: 68vh; min-height: 320px;
  overflow: hidden;
}
.photo-strip img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
  filter: contrast(1.04);
}
.strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.15) 0%,
    transparent 20%,
    transparent 65%,
    rgba(255,255,255,0.9) 100%
  );
}
.strip-badge {
  position: absolute; bottom: -36px; right: 80px;
  width: 72px; height: 72px;
  background: var(--white); border-radius: 50%;
  padding: 10px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.14);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.strip-badge img { width: 100%; }

/* 3. Bio body — centred, no image column */
.bio-body {
  background: var(--white);
  padding: 88px 0 120px;
}
.bio-inner {
  max-width: 860px; margin: 0 auto; padding: 0 40px;
}
.bio-header { margin-bottom: 48px; }

/* Stats bar */
.bio-stats {
  display: flex; align-items: center; gap: 32px;
  padding: 24px 0; margin-bottom: 40px;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}
.bio-stat { display: flex; flex-direction: column; gap: 3px; }
.stat-val {
  font-family: var(--font-display);
  font-size: 36px; color: var(--near-black);
  letter-spacing: 0.02em; line-height: 1;
}
.stat-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey);
}
.stat-sep { width: 1px; height: 44px; background: var(--light-grey); }

/* Two-column paragraph text (no image, text only) */
.bio-text-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-bottom: 24px;
}
.bio-p {
  font-size: 16px; line-height: 1.85; color: var(--dark-grey);
}
.bio-p-full {
  font-size: 16px; line-height: 1.85; color: var(--dark-grey);
  margin-bottom: 40px;
}

/* ── STREAM TEASER (dark) ── */
.stream-teaser {
  background: var(--near-black);
  padding: 110px 0; text-align: center;
}
.stream-teaser-wrap {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 80px;
}

.platforms-row {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 48px;
  margin: 60px 0;
}
.platform-pill {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  color: var(--mid-grey);
  transition: color var(--t), transform var(--t);
}
.platform-pill i { font-size: 38px; }
.platform-pill span {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.platform-pill:hover { color: var(--white); transform: translateY(-5px); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--near-black);
  padding: calc(var(--nav-h) + 80px) 80px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 160px);
  color: var(--white); letter-spacing: 0.05em; line-height: 1;
}
.page-hero-sub {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--grey); margin-top: 14px;
}

/* ── MUSIC PAGE ── */
.releases {
  padding: 100px 80px;
  max-width: var(--max-w); margin: 0 auto;
}
.releases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 56px;
}
@media (max-width: 1100px) {
  .releases-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .releases-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .releases-grid { grid-template-columns: 1fr; }
}

.release-card { display: flex; flex-direction: column; }
.release-art {
  position: relative; aspect-ratio: 16/9;
  background: var(--near-black); overflow: hidden; margin-bottom: 18px;
  cursor: pointer; display: block;
}
.release-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.release-art:hover img { transform: scale(1.04); }
.release-art-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t);
}
.release-art:hover .release-art-overlay { opacity: 1; }
/* Inline iframe once video loads */
.release-art iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.play-ring {
  width: 56px; height: 56px;
  border: 2px solid var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px;
}

.release-title {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: 0.04em;
  color: var(--near-black);
}
.release-meta {
  font-size: 11px; color: var(--grey);
  letter-spacing: 0.08em; margin: 4px 0 12px;
}
.release-links { display: flex; gap: 14px; }
.release-links a {
  color: var(--dark-grey); font-size: 17px;
  transition: color var(--t), transform var(--t);
}
.release-links a:hover { color: var(--black); transform: translateY(-2px); }

/* Streaming cards section */
.streaming-section {
  background: var(--off-white);
  padding: 100px 80px;
}
.streaming-wrap {
  max-width: var(--max-w); margin: 0 auto; text-align: center;
}
.streaming-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px; margin-top: 56px;
}
.stream-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  padding: 40px 16px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  cursor: pointer;
}
.stream-card:hover {
  border-color: var(--near-black);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}
.stream-card i { font-size: 36px; color: var(--near-black); }
.stream-card span {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark-grey);
}

/* ── BOOKING PAGE ── */
.booking-wrap {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px; align-items: start;
}

/* Calendar widget — Google Calendar style */
.cal-widget {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--light-grey);
}
.cal-month-label {
  font-size: 17px; font-weight: 600;
  color: var(--near-black); letter-spacing: 0.01em;
}
.cal-controls { display: flex; align-items: center; gap: 6px; }
.cal-btn-today {
  padding: 5px 14px;
  border: 1px solid var(--light-grey); background: none; border-radius: 4px;
  font-size: 12px; font-weight: 600; color: var(--dark-grey);
  cursor: pointer; transition: all var(--t);
}
.cal-btn-today:hover { background: var(--near-black); color: var(--white); border-color: var(--near-black); }
.cal-arrow {
  width: 34px; height: 34px; border: none; background: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--dark-grey); font-size: 14px; transition: background var(--t);
}
.cal-arrow:hover { background: var(--light-grey); }

.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 10px 16px 0;
}
.cal-wd {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grey); padding: 6px 0;
}

.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 4px 16px 16px; gap: 2px;
}
.cal-cell {
  position: relative; min-height: 68px;
  padding: 6px 5px 4px; border-radius: 4px;
  cursor: pointer; transition: background var(--t);
}
.cal-cell:hover:not(.empty):not(.other-month) { background: var(--off-white); }
.cal-cell.empty { cursor: default; pointer-events: none; }
.cal-cell.other-month .cal-num { color: var(--silver); }
.cal-cell.today .cal-num {
  background: var(--near-black); color: var(--white);
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cal-num {
  font-size: 12px; font-weight: 500;
  color: var(--near-black); line-height: 1;
}
.cal-event-pill {
  display: block; margin-top: 3px;
  background: var(--near-black); color: var(--white);
  font-size: 9px; font-weight: 600;
  padding: 2px 5px; border-radius: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cal-event-pill.available {
  background: var(--charcoal);
}

/* Upcoming events list */
.cal-upcoming {
  border-top: 1px solid var(--light-grey);
  padding: 18px 22px;
}
.cal-upcoming-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 14px;
}
.event-row {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--off-white);
}
.event-row:last-child { border-bottom: none; }
.event-badge {
  min-width: 46px; text-align: center;
  background: var(--off-white); padding: 7px 6px; border-radius: 4px;
}
.event-badge .e-month {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey);
}
.event-badge .e-day {
  font-family: var(--font-display);
  font-size: 22px; color: var(--near-black); line-height: 1.1;
}
.event-info .e-name {
  font-size: 13px; font-weight: 600; color: var(--near-black);
}
.event-info .e-venue {
  font-size: 11px; color: var(--grey); margin-top: 2px;
}

/* Booking form */
.booking-form-wrap { }
.form-title {
  font-family: var(--font-display);
  font-size: 40px; letter-spacing: 0.03em;
  color: var(--near-black); margin-bottom: 6px;
}
.form-sub {
  font-size: 13px; color: var(--grey); margin-bottom: 40px;
}
.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark-grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 15px;
  border: 1px solid var(--light-grey);
  background: var(--white);
  font-family: var(--font-body); font-size: 14px;
  color: var(--near-black);
  outline: none; border-radius: 0;
  transition: border-color var(--t);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--near-black); }
.form-group textarea { height: 110px; resize: vertical; }
.btn-submit {
  padding: 15px; width: 100%;
  background: var(--near-black); color: var(--white);
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 2px solid var(--near-black); cursor: pointer;
  transition: all var(--t);
}
.btn-submit:hover { background: transparent; color: var(--near-black); }
.form-note {
  font-size: 11px; color: var(--grey);
  text-align: center; margin-top: -6px;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  padding: 72px 80px 36px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 28px;
}
.footer-logo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.footer-logo-wrap img {
  width: 70px; opacity: 0.75;
}
.footer-artist-name {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: 0.18em; color: var(--white);
}
.footer-nav {
  display: flex; gap: 36px;
}
.footer-nav a {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid-grey);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--white); }
.footer-socials {
  display: flex; gap: 22px;
}
.footer-socials a {
  color: var(--dark-grey); font-size: 18px;
  transition: color var(--t), transform var(--t);
}
.footer-socials a:hover { color: var(--white); transform: translateY(-2px); }
.footer-rule {
  width: 100%; height: 1px; background: var(--charcoal);
}
.footer-copy {
  font-size: 11px; color: var(--dark-grey);
  letter-spacing: 0.06em; text-align: center;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.from-left { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .booking-wrap { grid-template-columns: 1fr; gap: 56px; }
  .streaming-grid { grid-template-columns: repeat(3, 1fr); }
  .bio-text-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--black);
    flex-direction: column; align-items: center;
    padding: 40px 24px; gap: 28px;
    transform: translateY(-110%); opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s ease;
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateY(0); opacity: 1; pointer-events: all;
  }
  .nav-link { font-size: 16px; color: var(--white) !important; }
  .nav-socials { display: none; }
  .hamburger { display: flex; }

  /* Hero responsive */
  .hero-center { padding: 0 20px 56px; }
  .scroll-hint { right: 20px; bottom: 28px; }
  .hero-pulse { width: 200px; }
  .hero-ekg { top: 48%; }

  /* About responsive */
  .quote-banner { padding: 48px 24px; }
  .quote-banner-inner { flex-direction: column; align-items: center; text-align: center; }
  .qmark { font-size: 48px; }
  .photo-strip { height: 38vh; }
  .strip-badge { right: 24px; }
  .bio-body { padding: 72px 0 80px; }
  .bio-inner { padding: 0 24px; }
  .bio-text-grid { grid-template-columns: 1fr; }

  .stream-teaser-wrap,
  .releases,
  .streaming-section,
  .booking-wrap { padding-left: 24px; padding-right: 24px; }

  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 56px; }

  .streaming-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 56px 24px 28px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
