/* ══════════════════════════════════════════════════════
   TAJ MUSIC — Shared Stylesheet
   ══════════════════════════════════════════════════════ */

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
ul { list-style: none; }

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --black: #0A0A0A;
  --charcoal: #111111;
  --surface: #161616;
  --surface2: #1C1C1C;
  --red-accent: #8B1A1A;
  --amber: #C9943A;
  --white: #F5F0EB;
  --muted: #888880;
  --border: rgba(245, 240, 235, 0.08);
}

/* ── HEADER ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--white);
  text-transform: uppercase;
}

/* ── MENU TRIGGER (replaces hamburger) ──────────────── */
.menu-trigger {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--muted);
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
  transition: color 0.25s ease;
}
.menu-trigger:hover { color: var(--white); }
.menu-trigger.open  { color: var(--amber); }

/* ── NAV OVERLAY (left-panel dropdown) ──────────────── */
.nav-overlay {
  position: fixed;
  top: 64px;
  left: 48px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.38s ease, transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}
.nav-overlay.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 24px 0 8px;
}
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(22px, 3.2vw, 42px);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.25;
  position: relative;
  transition: color 0.25s ease;
  text-shadow: 0 2px 24px rgba(0,0,0,0.9);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }

.nav-divider { display: none; }
.nav-socials { display: none; }

/* ── Nav backdrop blur ──────────────────────────── */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 768px) {
  .nav-overlay { left: 24px; }
}

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--muted);
}
.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-socials a {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
}
.footer-socials a:hover { color: var(--white); }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 18px 52px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.btn-outline-white {
  border: 1px solid rgba(245, 240, 235, 0.35);
  background: transparent;
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-outline-amber {
  border: 1px solid var(--amber);
  background: transparent;
  color: var(--amber);
}
.btn-outline-amber:hover {
  background: var(--amber);
  color: var(--black);
}

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes heroFadeIn {
  from { opacity: 0; filter: blur(8px); transform: translateY(12px); }
  to   { opacity: 1; filter: blur(0);   transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 0.4; }
  50%       { transform: scaleY(0.65) translateY(6px); opacity: 0.9; }
}
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   INDEX.HTML
   ══════════════════════════════════════════════════════ */

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(80px, 18vw, 200px);
  letter-spacing: 0.15em;
  color: var(--white);
  will-change: opacity, filter, transform;
  animation: heroFadeIn 1.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--amber);
  margin: 20px auto;
  animation: heroFadeIn 1.8s ease forwards;
  animation-delay: 1.4s;
  opacity: 0;
}
.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(245, 240, 235, 0.65);
  text-transform: uppercase;
  animation: heroFadeIn 1.8s ease forwards;
  animation-delay: 1.8s;
  opacity: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--muted);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

/* Bio Section */
.bio-section {
  background: var(--charcoal);
  padding: 130px 48px;
}
.bio-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 80px;
  align-items: start;
}
.bio-portrait-wrap {
  position: sticky;
  top: 100px;
}
.bio-portrait {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
  background: var(--surface2);
  filter: blur(0.4px) contrast(0.95);
  image-rendering: smooth;
}
.bio-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.bio-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 4px;
}
.bio-alias {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
}
.bio-body p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(245, 240, 235, 0.72);
  margin-bottom: 24px;
}
.bio-body p:last-child { margin-bottom: 0; }

/* Credentials Bar */
.credentials-bar {
  background: var(--surface);
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.credentials-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
}

/* CTA Strip */
.cta-strip {
  background: var(--black);
  padding: 110px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════
   PAGE HERO (shared inner pages)
   ══════════════════════════════════════════════════════ */
.page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  padding: 64px 48px 0;
}
.page-hero--lg { min-height: 65vh; }
.page-hero--md { min-height: 55vh; }
.page-hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: heroFadeIn 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.page-hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(60px, 12vw, 140px);
  color: var(--white);
  line-height: 1;
  animation: heroFadeIn 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}
.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(245, 240, 235, 0.55);
  margin-top: 24px;
  animation: heroFadeIn 1s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}
.page-hero-sub--muted {
  color: var(--muted);
  letter-spacing: 0.2em;
}

/* ── Page photo strip (legacy, kept for any remaining use) ─ */
.page-photo {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
}
.page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.72) saturate(0.85);
  display: block;
}
.page-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.55) 100%);
}

/* ── Full-bleed photo hero (replaces page-hero + page-photo) */
.page-photo-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.page-photo-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.58) saturate(0.82);
  display: block;
}
.page-photo-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.45) 55%, rgba(10,10,10,0.82) 100%);
  pointer-events: none;
}
.page-photo-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 48px 90px;
  width: 100%;
}

/* ── Lessons layered photo block ────────────────────── */
.lessons-photo-pair {
  position: relative;
  height: 540px;
  flex-shrink: 0;
  width: 460px;
}
.lessons-photo-pair img {
  position: absolute;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.85);
}
.lessons-photo-pair img:first-child {
  width: 240px;
  height: 320px;
  top: 0;
  left: 0;
  z-index: 2;
  border: 3px solid var(--charcoal);
  object-position: center top;
}
.lessons-photo-pair img:last-child {
  width: 330px;
  height: 430px;
  bottom: 0;
  right: 0;
  z-index: 1;
  border: 3px solid var(--charcoal);
  object-position: center top;
}

/* ── Notable collaborators ──────────────────────────── */
.collaborators {
  padding: 64px 48px 80px;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}
.collaborators-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.collaborators-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.collaborators-divider::before,
.collaborators-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.collaborators-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.collaborators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}
.collaborator-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  color: rgba(245,240,235,0.45);
  padding: 10px 28px;
  transition: color 0.25s ease;
  cursor: default;
  white-space: nowrap;
  position: relative;
}
.collaborator-name::after {
  content: '·';
  position: absolute;
  right: -4px;
  color: rgba(245,240,235,0.15);
}
.collaborator-name:last-child::after { display: none; }
.collaborator-name:hover { color: rgba(245,240,235,0.85); }

/* ══════════════════════════════════════════════════════
   SHARED SECTION UTILITIES
   ══════════════════════════════════════════════════════ */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 52px;
  color: var(--white);
  margin-bottom: 56px;
}
.section-heading--lg {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 12px;
}
.section-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-top: 10px;
}

/* ══════════════════════════════════════════════════════
   DISCOGRAPHY.HTML
   ══════════════════════════════════════════════════════ */

/* Original Music */
.original-music {
  background: var(--charcoal);
  padding: 100px 48px;
}
.original-music-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.streaming-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.streaming-btn-wrap { position: relative; }
.coming-soon-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--amber);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.streaming-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(245, 240, 235, 0.15);
  background: rgba(255, 255, 255, 0.02);
  padding: 22px 36px;
  min-width: 210px;
  transition: border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}
.streaming-btn:hover {
  border-color: var(--amber);
  background: rgba(201, 148, 58, 0.07);
}
.streaming-btn-icon {
  width: 22px;
  height: 22px;
  color: var(--white);
  flex-shrink: 0;
}
.streaming-btn-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.streaming-btn-small {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}
.streaming-btn-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
}

/* Industry Credits Heading */
.credits-heading {
  background: var(--black);
  padding: 90px 48px 40px;
}
.credits-heading-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Album Strip */
.album-strip-outer {
  background: var(--black);
  width: 100%;
  overflow: hidden;
  padding-bottom: 28px;
}
.album-track {
  display: flex;
  animation: scrollLeft 65s linear infinite;
  will-change: transform;
  width: max-content;
}
.album-card {
  position: relative;
  width: 340px;
  height: 340px;
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  margin-right: 20px;
  background: var(--surface2);
}
.album-card img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) saturate(0.7);
  transition: filter 0.35s ease, transform 0.35s ease;
}
.album-card:hover img {
  filter: brightness(1) saturate(1);
  transform: scale(1.05);
}
.album-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.96) 0%, transparent 100%);
  padding: 50px 14px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.album-card:hover .album-card-overlay { opacity: 1; }
.album-card-artist {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--amber);
  text-transform: uppercase;
}
.album-card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--white);
  margin-top: 3px;
}
.album-card-year {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.album-card-icons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.album-card-icons a {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.album-card-icons a:hover { color: var(--white); }

/* Credits Note */
.credits-note {
  background: var(--surface);
  padding: 70px 48px;
  border-top: 1px solid var(--border);
}
.credits-note-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.credits-note-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.95;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   TOUR.HTML
   ══════════════════════════════════════════════════════ */
.tour-section {
  background: var(--charcoal);
  padding: 60px 48px 80px;
}
.tour-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* List wrapper */
.tour-list {
  margin-top: 48px;
}

/* Each show row */
.tour-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px 100px 1fr auto 48px;
  gap: 0 36px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease;
  overflow: hidden;
}

/* Amber sliding underline on hover */
.tour-row::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.tour-row:hover::after { width: 100%; }

/* Top border of first row */
.tour-list .tour-row:first-child {
  border-top: 1px solid var(--border);
}

/* Ghost index number */
.tour-index {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 235, 0.18);
  line-height: 1;
  user-select: none;
  transition: color 0.3s ease;
}
.tour-row:hover .tour-index {
  color: var(--amber);
}

/* Date block */
.tour-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.tour-date-day {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 48px;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.tour-row:hover .tour-date-day { color: var(--amber); }
.tour-date-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Event + venue block */
.tour-event-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tour-event-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 26px;
  color: var(--white);
  line-height: 1.15;
  transition: color 0.3s ease;
}
.tour-row:hover .tour-event-name { color: var(--white); }
.tour-venue {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* Location */
.tour-location {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 235, 0.35);
  text-align: right;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.tour-row:hover .tour-location { color: var(--muted); }

/* Ticket arrow */
.tour-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  color: rgba(245, 240, 235, 0.25);
  flex-shrink: 0;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.tour-link svg { width: 16px; height: 16px; }
.tour-link:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(201, 148, 58, 0.08);
}
.tour-row:hover .tour-link {
  border-color: rgba(201, 148, 58, 0.4);
  color: rgba(201, 148, 58, 0.6);
}

/* Empty state */
.tour-empty {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tour-empty-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-align: center;
}

/* Booking note */
.tour-booking-note {
  margin-top: 64px;
  text-align: center;
}
.tour-booking-note p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.tour-booking-note a {
  color: var(--amber);
  transition: opacity 0.2s ease;
}
.tour-booking-note a:hover { opacity: 0.75; }

/* ══════════════════════════════════════════════════════
   LESSONS.HTML
   ══════════════════════════════════════════════════════ */
.lessons-intro {
  background: var(--charcoal);
  padding: 72px 48px;
}
.lessons-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.lessons-intro-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}
.lessons-intro-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245, 240, 235, 0.7);
  margin-bottom: 16px;
}
.lessons-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lessons-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.lessons-detail-item::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  background: var(--amber);
  flex-shrink: 0;
  border-radius: 50%;
}

/* Lesson Types */
.lesson-types {
  background: var(--black);
  padding: 64px 48px;
}
.lesson-types-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lesson-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}
.lesson-card {
  background: var(--charcoal);
  padding: 40px 32px 44px;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-top: 1px solid transparent;
}
.lesson-card:hover {
  background: var(--surface);
  border-top-color: var(--amber);
  box-shadow: 0 -1px 0 0 var(--amber), inset 0 0 40px rgba(201,148,58,0.04);
}
.lesson-card:hover .lesson-card-number {
  color: rgba(201,148,58,0.18);
}
.lesson-card:hover .lesson-card-title {
  color: var(--amber);
}
.lesson-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 52px;
  color: rgba(245, 240, 235, 0.06);
  margin-bottom: 20px;
  line-height: 1;
}
.lesson-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
}
.lesson-card-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.lesson-card-level {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
  margin-top: 22px;
}

/* Pricing */
.lessons-pricing {
  background: var(--surface);
  padding: 64px 48px;
  border-top: 1px solid var(--border);
}
.lessons-pricing-inner {
  max-width: 960px;
  margin: 0 auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}
.pricing-card {
  background: var(--charcoal);
  padding: 52px 40px;
  position: relative;
  text-align: center;
}
.pricing-card.featured { background: var(--surface2); }
.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 22px; right: 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--amber);
}
.pricing-card-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pricing-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 60px;
  color: var(--white);
  line-height: 1;
}
.pricing-card-price sup {
  font-size: 28px;
  vertical-align: super;
  font-weight: 300;
}
.pricing-card-unit {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 32px;
}
.pricing-card-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-card-features li {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(245, 240, 235, 0.6);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-card-features li::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ── Pricing chart (session table) ───────────────── */
.pricing-chart {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-bottom: none;
  overflow-x: auto;
}
.pc-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 2.8fr 1.4fr;
  border-bottom: 1px solid var(--border);
  align-items: stretch;
  min-width: 680px;
}
.pc-row--featured { background: var(--surface2); }
.pc-header        { background: var(--surface); }

.pc-cell {
  padding: 22px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,235,0.65);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.pc-cell:last-child { border-right: none; }

.pc-header .pc-cell {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 28px;
}

.pc-cell--session {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.pc-header .pc-cell--session {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  color: var(--muted);
}

.pc-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--cream);
}

.pc-cell--cta {
  padding: 8px 10px;
  align-items: stretch;
}

.pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border: 1px solid var(--amber);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
  width: 100%;
}
.pc-btn:hover         { background: var(--amber); color: var(--black); }
.pc-btn--filled       { background: var(--amber); color: var(--black); }
.pc-btn--filled:hover { background: transparent;  color: var(--amber); }

/* Booking */
.booking-section {
  background: var(--black);
  padding: 100px 48px;
}
.booking-inner {
  max-width: 700px;
  margin: 0 auto;
}
.booking-form {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}
.form-input,
.form-select,
.form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: rgba(201, 148, 58, 0.55); }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(136, 136, 128, 0.45); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--surface); }
.form-submit { margin-top: 8px; }

/* ══════════════════════════════════════════════════════
   MERCH.HTML
   ══════════════════════════════════════════════════════ */
.merch-section {
  background: var(--charcoal);
  padding: 90px 48px 100px;
}
.merch-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}
.merch-card {
  background: var(--charcoal);
  overflow: hidden;
  cursor: pointer;
}
.merch-img-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}
.merch-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.merch-card:hover .merch-img-wrap img {
  transform: scale(1.04);
  filter: brightness(0.85);
}
.merch-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
.merch-placeholder-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.2em;
  color: rgba(245, 240, 235, 0.06);
  user-select: none;
}
.merch-info {
  padding: 24px 28px 32px;
}
.merch-category {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.merch-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}
.merch-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 18px;
}
.merch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.merch-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 26px;
  color: var(--white);
}
.merch-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
  border: 1px solid rgba(201, 148, 58, 0.3);
  padding: 10px 22px;
  background: transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.merch-btn:hover {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
}
.merch-cta {
  background: var(--black);
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.merch-cta-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lesson-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header { padding: 0 24px; }

  /* Bio */
  .bio-section { padding: 80px 24px; }
  .bio-inner { grid-template-columns: 1fr; gap: 44px; }
  .bio-portrait-wrap { position: static; }

  /* Credentials / CTA */
  .credentials-bar { padding: 24px; }
  .cta-strip { padding: 70px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Page heroes */
  .page-hero { padding: 80px 24px 0; }

  /* Discography */
  .original-music { padding: 70px 24px; }
  .streaming-buttons { flex-direction: column; }
  .streaming-btn { min-width: 0; width: 100%; }
  .credits-heading { padding: 60px 24px 32px; }
  .credits-note { padding: 50px 24px; }
  .section-heading { font-size: 36px; }

  /* Tour */
  .tour-section { padding: 60px 24px 80px; }
  .tour-row {
    grid-template-columns: 80px 1fr 48px;
    grid-template-rows: auto auto;
    gap: 8px 20px;
  }
  .tour-index { display: none; }
  .tour-date {
    grid-column: 1;
    grid-row: 1 / 3;
    justify-content: center;
  }
  .tour-date-day { font-size: 40px; }
  .tour-event-wrap { grid-column: 2; grid-row: 1; }
  .tour-location {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    font-size: 10px;
  }
  .tour-link {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  /* Lessons */
  .lessons-intro { padding: 70px 24px; }
  .lessons-intro-inner { grid-template-columns: 1fr; gap: 44px; }
  .lesson-types { padding: 70px 24px; }
  .lesson-cards { grid-template-columns: 1fr; }
  .lessons-pricing { padding: 70px 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .booking-section { padding: 70px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Merch */
  .merch-section { padding: 70px 24px 80px; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-cta { padding: 60px 24px; }

  /* Page photo and new sections */
  .page-photo { height: 320px; }
  .page-photo-hero { min-height: 62vh; }
  .page-photo-hero-content { padding: 0 24px 64px; }
  .page-photo-hero.leaves-only > img { transform: scale(3); }
  .lessons-photo-pair { display: none; }
  .collaborators { padding: 48px 24px 60px; }
  .collaborator-name { font-size: 17px; padding: 8px 16px; }

  /* Album strip mobile fix */
  .album-strip-outer { overflow: hidden; }
  .album-track { animation-play-state: running; }

  /* Footer */
  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .merch-grid { grid-template-columns: 1fr; }
  .lesson-cards { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   LANDING PAGE — Bio Preview
   ══════════════════════════════════════════════════════ */
.lp-bio {
  background: var(--charcoal);
  padding: 130px 48px;
}
.lp-bio-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 80px;
  align-items: start;
}
.lp-bio-portrait-wrap {
  position: sticky;
  top: 100px;
}
.lp-bio-portrait {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
  background: var(--surface2);
  filter: blur(0.4px) contrast(0.95);
  image-rendering: smooth;
}
.lp-bio-summary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(245, 240, 235, 0.72);
  margin-bottom: 40px;
}

/* ══════════════════════════════════════════════════════
   LANDING PAGE — Lessons Preview
   ══════════════════════════════════════════════════════ */
.lp-lessons {
  background: var(--black);
  padding: 100px 48px;
}
.lp-lessons-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lp-lesson-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
  margin-bottom: 56px;
}
.lp-lesson-card {
  background: var(--charcoal);
  padding: 40px 32px 44px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease;
}
.lp-lesson-card:hover { background: var(--surface); }
.lp-lesson-card-body { flex: 1; }
.lp-lesson-card-footer { margin-top: 28px; }
.lp-lessons-footer { text-align: center; }

/* ══════════════════════════════════════════════════════
   LANDING PAGE — Discography Section
   ══════════════════════════════════════════════════════ */
.lp-disco {
  background: var(--black);
  padding-top: 100px;
}
.lp-disco-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.lp-disco-cta {
  text-align: center;
  padding: 56px 48px 100px;
}

/* ══════════════════════════════════════════════════════
   LANDING PAGE — Merch Preview
   ══════════════════════════════════════════════════════ */
.lp-merch {
  background: var(--surface);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.lp-merch-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lp-merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
  margin-bottom: 56px;
}
.lp-merch-footer { text-align: center; }

/* ══════════════════════════════════════════════════════
   LANDING PAGE — Booking Form
   ══════════════════════════════════════════════════════ */
.lp-booking {
  background: var(--black);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.lp-booking-inner {
  max-width: 700px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   DISCOGRAPHY GRID (static, discography.html)
   ══════════════════════════════════════════════════════ */
.disco-grid-section {
  background: var(--black);
  padding: 20px 48px 100px;
}
.disco-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.disco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.disco-album { cursor: pointer; }
.disco-album-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface2);
  margin-bottom: 14px;
}
.disco-album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.8);
  transition: filter 0.35s ease, transform 0.35s ease;
  display: block;
}
.disco-album:hover .disco-album-art img {
  filter: brightness(1) saturate(1);
  transform: scale(1.04);
}
.disco-album-artist {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.disco-album-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.disco-album-year {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 14px;
}
.disco-listen-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(201, 148, 58, 0.35);
  background: transparent;
  color: var(--amber);
  transition: background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.disco-listen-btn:hover {
  background: rgba(201, 148, 58, 0.1);
  border-color: var(--amber);
}

/* ══════════════════════════════════════════════════════
   YOUTUBE VIDEO SECTION
   ══════════════════════════════════════════════════════ */
.video-section {
  background: var(--black);
  padding: 90px 48px 100px;
  border-top: 1px solid var(--border);
}
.video-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.video-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface2);
  overflow: hidden;
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-cta {
  text-align: center;
  margin-top: 52px;
}
.video-cta-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 28px;
}
.video-expand-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 2px;
}
.video-expand-grid.open { display: grid; }

@media (max-width: 768px) {
  .video-section { padding: 70px 24px 80px; }
  .video-grid { grid-template-columns: 1fr; gap: 2px; }
  .video-expand-grid { grid-template-columns: 1fr; }
}

/* ── YouTube Shorts / TikTok-style section ────────── */
.shorts-section {
  background: var(--charcoal);
  padding: 80px 48px 90px;
  border-top: 1px solid var(--border);
}
.shorts-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 48px;
}
.short-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--surface2);
  overflow: hidden;
  border: 1px solid var(--border);
}
.short-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Leaves-only hero (bio + lessons) ──────────────── */
.page-photo-hero.leaves-only > img {
  object-position: center top !important;
  transform-origin: top center;
  transform: scale(3);
}

@media (max-width: 768px) {
  .shorts-section { padding: 70px 24px 80px; }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 480px) {
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* btn-sm utility */
.btn-sm {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(245, 240, 235, 0.2);
  background: transparent;
  color: var(--white);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}
.btn-sm:hover { border-color: var(--amber); color: var(--amber); }
.btn-sm-amber {
  border-color: rgba(201, 148, 58, 0.4);
  color: var(--amber);
}
.btn-sm-amber:hover { background: rgba(201, 148, 58, 0.1); }

/* Responsive — new sections */
@media (max-width: 1024px) {
  .disco-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-lesson-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .lp-bio { padding: 80px 24px; }
  .lp-bio-inner { grid-template-columns: 1fr; gap: 44px; }
  .lp-bio-portrait-wrap { position: static; }
  .lp-lessons { padding: 70px 24px; }
  .lp-lesson-cards { grid-template-columns: 1fr; }
  .lp-disco-header { padding: 0 24px; }
  .lp-disco-cta { padding: 40px 24px 70px; }
  .lp-merch { padding: 70px 24px; }
  .lp-merch-grid { grid-template-columns: 1fr; }
  .lp-booking { padding: 70px 24px; }
  .disco-grid-section { padding: 20px 24px 70px; }
  .disco-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .disco-grid { grid-template-columns: 1fr; }
}
