/*
Theme Name: Cloe Hubbard
Theme URI: https://cloehubbard.com
Author: Moaz Adrian
Author URI: https://cloehubbard.com
Description: A bold, glamorous WordPress theme for Bay Area singer-songwriter Cloe Hubbard. Features dark luxe aesthetics with black base, gold accents, and elegant typography. Version 2.1 (Refactored) includes CPT-based architecture for Music, Videos, and Shows with organized assets and reusable components.
Version: 1.6.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cloe-hubbard
Tags: music, artist, portfolio, custom-post-types, one-column, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/

/* ============================================
   CSS VARIABLES & FOUNDATION
   ============================================ */

:root {
  /* Colors - Dark Luxe Palette */
  --color-black: #0a0a0a;
  --color-dark-gray: #1a1a1a;
  --color-medium-gray: #2a2a2a;
  --color-gold: #d4af37;
  --color-gold-light: #e8c547;
  --color-gold-dark: #b8941f;
  --color-red: #8b1538;
  --color-red-light: #a52a4a;
  --color-white: #ffffff;
  --color-off-white: #f5f5f5;
  --color-gray-text: #b0b0b0;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 8rem;

  /* Layout */
  --max-width: 1400px;
  --max-width-narrow: 800px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.6);
  --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-off-white);
  background-color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-gray-text);
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus {
  color: var(--color-gold-light);
}

strong {
  font-weight: 600;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-lg {
  padding: var(--spacing-xxl) 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0));
  backdrop-filter: blur(10px);
  transition: background var(--transition-medium);
  padding: var(--spacing-md) 0;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow-subtle);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.site-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-title a {
  color: inherit;
}

.main-navigation ul {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
  margin: 0;
}

.main-navigation a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gray-text);
  transition: color var(--transition-fast);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  color: var(--color-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.menu-toggle:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* ============================================
   HERO SECTION (Merged & Optimized)
   ============================================ */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #000;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 21, 56, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Video Container (sits above fallback) */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none; /* Prevent taps from triggering iOS native video player */
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: 30% center; /* Focus slightly left - adjust as needed */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none; /* Double guard: prevent all interaction with background video */
  -webkit-user-select: none;
  user-select: none;
}

/* Fallback Background Image (visible by default, fades when video loads) */
.hero-bg-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 2rem;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Hero CTA Button */
.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-black);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--glow-gold);
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  color: var(--color-black);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 2rem;
  height: 2rem;
  color: rgba(255, 255, 255, 0.8);
  stroke: var(--color-gold);
}

/* ============================================
   FEATURED VIDEO SECTION
   ============================================ */

.video-section {
  background: var(--color-dark-gray);
  padding: var(--spacing-xxl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: var(--spacing-md) auto 0;
}

/* Shared eyebrow style for v31 sections */
.gallery-eyebrow-v31,
.social-eyebrow-v31,
.about-eyebrow-v31,
.contact-eyebrow-v31,
.vip-eyebrow-v31 {
    display: block;
    color: #d4af37;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 0.6rem;
}

.vip-eyebrow-v31 {
    font-size: 0.7rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   STREAM NOW – FEATURED EMBED (Option B)
   ============================================ */

.streaming-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
  margin-top: var(--spacing-lg);
}

/* Video Embed */
.streaming-embed {
  width: 100%;
}

/* 16:9 responsive ratio */
.embed-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-medium-gray);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.embed-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Caption under video */
.embed-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--spacing-sm);
  font-size: 0.95rem;
}

.embed-title {
  font-weight: 600;
  letter-spacing: 0.3px;
}

.embed-link {
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.4);
  transition: var(--transition-fast);
}

.embed-link:hover {
  border-color: var(--color-gold);
}

/* Platform Column */
.streaming-platforms {
  display: flex;
  flex-direction: column;
}

.streaming-platforms-title {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  opacity: 0.9;
}

/* ============================================
   PHOTO GALLERY SECTION
   ============================================ */

.gallery-section {
  background: var(--color-dark-gray);
  padding: var(--spacing-xxl) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery-item:hover::after {
  opacity: 1;
}

.view-all-link {
  display: inline-block;
  margin-top: var(--spacing-lg);
  padding: 1rem 2rem;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-medium);
}

.view-all-link:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */

.about-preview-section {
  background: var(--color-black);
  padding: var(--spacing-xxl) 0;
}

.about-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-preview-text {
  font-size: 1.15rem;
  line-height: 1.8;
}

.about-preview-text p:first-of-type::first-letter {
  font-size: 4rem;
  font-family: var(--font-heading);
  float: left;
  line-height: 0.8;
  margin: 0.1em 0.1em 0 0;
  color: var(--color-gold);
}

.about-preview-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.about-preview-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   CONTACT / BOOKING SECTION
   ============================================ */

.contact-section {
  background: linear-gradient(135deg, var(--color-dark-gray) 0%, var(--color-medium-gray) 100%);
  padding: var(--spacing-xxl) 0;
}

.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  font-size: 1.15rem;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--color-dark-gray);
  border: 2px solid var(--color-medium-gray);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 4px;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-black);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

/* ============================================
   BOOKING CTA STYLES (Merged)
   ============================================ */

.booking-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  animation: slideUp 0.6s ease-out 0.3s both;
}

.booking-cta-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-label {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  letter-spacing: 0.02em;
}

.booking-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #8B4513 0%, #5D3A1A 100%); /* Saddle brown - Americana */
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  width: fit-content;
}

.booking-email-btn:hover {
  background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.booking-email-btn:active {
  transform: translateY(0);
}

.booking-email-btn svg {
  flex-shrink: 0;
  opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-black);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 1px solid var(--color-medium-gray);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-medium-gray);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-gold);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.social-link:hover svg {
  fill: var(--color-black);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-medium-gray);
  color: var(--color-gray-text);
  font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS (Consolidated)
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   MUSIC PAGE STYLES
   ============================================ */

.music-hero {
  background: radial-gradient(900px 400px at 20% 10%, rgba(212,175,55,0.08), transparent 60%);
}

.music-embeds {
  padding-top: 46px;
  padding-bottom: 70px;
}

.embed-card {
  max-width: 920px;
}

/* ==========================================
   Music Page - UI Fix Patch
   ========================================== */

/* Prevent H1 from colliding with the sticky header */
.music-page .music-hero {
  padding-top: 140px !important;
  padding-bottom: 32px !important;
}

/* If header is fixed/sticky, this helps anchor jumps */
.music-page {
  scroll-margin-top: 110px;
}

/* Clean typography spacing */
.music-page .music-title {
  margin: 0 0 14px !important;
}

.music-page .music-subtitle {
  margin: 0 0 18px !important;
  max-width: 70ch;
}

/* Buttons: force pill UI */
.music-page .music-platforms {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 14px !important;
}

.music-page .music-platforms a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
  border: 1px solid rgba(212,175,55,0.35) !important;
  background: rgba(212,175,55,0.14) !important;
  color: rgba(255,255,255,0.95) !important;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.music-page .music-platforms a:hover {
  transform: translateY(-1px);
  border-color: rgba(212,175,55,0.65) !important;
  background: rgba(212,175,55,0.20) !important;
}

/* Outline style (YouTube) button */
.music-page .music-platforms a.btn-outline {
  border-color: rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.06) !important;
}

.music-page .music-platforms a.btn-outline:hover {
  border-color: rgba(255,255,255,0.30) !important;
  background: rgba(255,255,255,0.10) !important;
}

/* Better focus */
.music-page .music-platforms a:focus-visible {
  outline: 2px solid rgba(212,175,55,0.85);
  outline-offset: 3px;
}

/* Section spacing */
.music-page section {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.music-page .music-embeds,
.music-page .music-discography {
  padding-top: 36px !important;
  padding-bottom: 64px !important;
}

/* Divider lines */
.music-page .music-embeds::before,
.music-page .music-discography::before {
  content: "" !important;
  display: block !important;
  height: 1px !important;
  background: rgba(255,255,255,0.08) !important;
  margin: 0 0 26px !important;
}

/* Fix "SECTION" text / weird labels */
.music-page .embed-title::before,
.music-page .music-discography .section-head h2::before {
  content: none !important;
}

/* Featured card styling */
.music-page .embed-card {
  max-width: 820px;
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.04) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.38) !important;
}

/* Title bar */
.music-page .embed-title {
  margin: 0 !important;
  padding: 14px 16px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  opacity: 0.9 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

/* Embed sizing */
.music-page .embed-frame {
  position: relative !important;
  width: 100% !important;
  padding-bottom: 56.25% !important; /* 16:9 */
  height: 0 !important;
  background: rgba(0,0,0,0.35);
}

.music-page .embed-frame iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
}

/* Discography spacing + grid */
.music-page .section-head {
  margin-bottom: 18px !important;
}

/* =========================
   Release Cards - Premium UI (Merged)
   ========================= */

.music-page .release-grid {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 18px !important;
}

/* Card shell - All properties merged */
.music-page .release-card {
  position: relative;
  grid-column: span 4;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  background: rgba(255,255,255,0.045) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.38) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

/* Hover state - merged */
.music-page .release-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.45) !important;
  background: rgba(255,255,255,0.06) !important;
  box-shadow: 0 26px 68px rgba(0,0,0,0.52) !important;
}

/* Cover image */
.music-page .release-thumb img {
  width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1);
  transition: transform 220ms ease;
}

.music-page .release-card:hover .release-thumb img {
  transform: scale(1.04);
}

/* Content area */
.music-page .release-meta {
  padding: 16px 16px 18px !important;
}

/* Title */
.music-page .release-title {
  margin: 0 0 10px !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
}

/* Date as a tag/pill */
.music-page .release-date {
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  color: rgba(255,255,255,0.88) !important;
  border: 1px solid rgba(212,175,55,0.30) !important;
  background: rgba(212,175,55,0.10) !important;
}

/* "View Release" hint on hover */
.music-page .release-card::after {
  content: "View Release →";
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  color: rgba(255,255,255,0.78);
}

.music-page .release-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Hero video loading optimization properties merged into main hero declarations above */

/* Optional: Add a subtle loading shimmer to the fallback */
.hero-bg-fallback::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer-subtle 2s infinite;
}

@keyframes shimmer-subtle {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Remove shimmer once video is loaded (via JS adding this class) */
.hero-section.video-loaded .hero-bg-fallback::after {
    display: none;
}

/* ================================================
   STREAMING SECTION V31 - ENHANCED UX/UI
   Replace the existing PREMIUM STREAMING GRID
   block in v31-sections.css with this
   ================================================ */

.streaming-section-v31 {
    background: #0a0a0a;
}

/* Two-column feature layout */
.streaming-feature-v31 {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2.5rem;
}

.embed-ratio-v31 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(10, 10, 10, 0.5);
}

.embed-ratio-v31 iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-caption-v31 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0 0.25rem;
}

.embed-title-v31 {
    color: #ccc;
    font-size: 0.95rem;
}

.embed-link-v31 {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    transition: border-color 0.3s ease;
}

.embed-link-v31:hover {
    border-bottom-color: #d4af37;
}

/* --- Right: Platform sidebar --- */
.streaming-platforms-v31 {
    display: flex;
    flex-direction: column;
}

.streaming-platforms-heading-v31 {
    margin-bottom: 1.5rem;
}

.streaming-platforms-label-v31 {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #e8e8e8;
    margin-bottom: 0.3rem;
}

.streaming-platforms-sub-v31 {
    display: block;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.02em;
}

/* Platform grid — 2×2 inside the sidebar */
.streaming-feature-v31 .streaming-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    max-width: none;
    margin: 0;
}

/* Platform cards — refined */
.streaming-feature-v31 .platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.75rem 1rem;
    background: linear-gradient(145deg, #161616, #1c1c1c);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    min-height: auto;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.streaming-feature-v31 .platform-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-4px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.08);
    background: linear-gradient(145deg, #1a1a1a, #222);
}

/* Icon */
.streaming-feature-v31 .platform-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.streaming-feature-v31 .platform-icon svg {
    width: 100%;
    height: 100%;
    fill: #d4af37;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.streaming-feature-v31 .platform-card:hover .platform-icon svg {
    fill: #f0c840;
    transform: scale(1.1);
}

/* Name */
.streaming-feature-v31 .platform-name {
    color: #ccc;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.streaming-feature-v31 .platform-card:hover .platform-name {
    color: #fff;
}

/* Disabled state — remove this if no longer needed */
.platform-card-disabled {
    opacity: 0.55;
    pointer-events: none;
    cursor: not-allowed;
}

/* ================================================
   RELEASE SPOTLIGHT - ENHANCED
   Replace the existing RELEASE SPOTLIGHT block
   in v31-sections.css with this
   ================================================ */

.release-spotlight {
    background: var(--color-dark-gray, #111);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Cover with play button overlay --- */
.spotlight-cover-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.12);
}

.spotlight-cover-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spotlight-cover-wrap:hover img {
    transform: scale(1.03);
}

.spotlight-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.spotlight-play-btn svg {
    width: 28px;
    height: 28px;
    color: #0a0a0a;
    margin-left: 3px; /* optical center for play icon */
}

.spotlight-play-btn:hover {
    background: #f0c840;
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
}

/* --- Content --- */
.spotlight-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.spotlight-label {
    color: #d4af37;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

.spotlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.spotlight-artist {
    font-size: 1.15rem;
    color: #e8e8e8;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.spotlight-date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.spotlight-date-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    color: #d4af37;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.spotlight-tagline {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #b0b0b0;
    margin-bottom: 2rem;
    max-width: 480px;
}

.spotlight-tagline em {
    color: #ccc;
    font-style: italic;
}

/* --- Action buttons --- */
.spotlight-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.spotlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #d4af37, #f0c840);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.spotlight-cta svg {
    flex-shrink: 0;
}

.spotlight-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
}

.spotlight-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #d4af37;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.spotlight-cta-secondary svg {
    flex-shrink: 0;
}

.spotlight-cta-secondary:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 900px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }

    .spotlight-title {
        font-size: 2.75rem;
    }

    .spotlight-content {
        text-align: center;
        align-items: center;
    }

    .spotlight-date {
        justify-content: center;
    }

    .spotlight-tagline {
        max-width: none;
    }

    .spotlight-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .spotlight-title {
        font-size: 2.25rem;
    }

    .spotlight-actions {
        flex-direction: column;
        width: 100%;
    }

    .spotlight-cta,
    .spotlight-cta-secondary {
        justify-content: center;
        width: 100%;
    }

    .spotlight-play-btn {
        width: 56px;
        height: 56px;
    }

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


@media (max-width: 900px) {
    .streaming-feature-v31 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .streaming-platforms-heading-v31 {
        text-align: center;
    }

    .streaming-feature-v31 .streaming-grid-premium {
        grid-template-columns: repeat(4, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 550px) {
    .streaming-feature-v31 .streaming-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .streaming-feature-v31 .platform-card {
        padding: 1.25rem 0.75rem;
    }
}

/* ================================================
   UPCOMING SHOWS V31 - Premium Card Layout
   Add this to v31-sections.css
   ================================================ */

.shows-section-v31 {
    background: var(--color-dark-gray, #111);
}

.shows-header-v31 {
    text-align: center;
    margin-bottom: 3rem;
}

.shows-subtitle-v31 {
    color: #888;
    font-size: 1.05rem;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}

/* --- Card Grid --- */
.shows-grid-v31 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Individual Card --- */
.show-card-v31 {
    display: flex;
    flex-direction: column;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.show-card-v31:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.06);
}

/* --- Card Image --- */
.show-card-image-v31 {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.show-card-image-v31 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.show-card-v31:hover .show-card-image-v31 img {
    transform: scale(1.06);
}

.show-card-image-overlay-v31 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
    pointer-events: none;
}

/* "Next Show" badge */
.show-card-badge-v31 {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.3rem 0.85rem;
    background: #d4af37;
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* --- Card Body --- */
.show-card-body-v31 {
    display: flex;
    gap: 1.1rem;
    padding: 1.25rem 1.25rem 0.75rem;
    align-items: flex-start;
}

/* Date block */
.show-card-date-v31 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    padding: 0.6rem 0.4rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    flex-shrink: 0;
}

.show-card-month-v31 {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #d4af37;
    line-height: 1;
}

.show-card-day-v31 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #e8e8e8;
    line-height: 1.15;
}

/* Info block */
.show-card-info-v31 {
    flex: 1;
    min-width: 0;
}

.show-card-venue-v31 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #e8e8e8;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.show-card-location-v31 {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.show-card-location-v31 svg {
    color: #d4af37;
    flex-shrink: 0;
    opacity: 0.7;
}

.show-card-meta-v31 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.show-card-time-v31 {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #777;
}

.show-card-time-v31 svg {
    color: #666;
    flex-shrink: 0;
}

.show-card-age-v31 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    color: #999;
}

/* --- CTA Button --- */
.show-card-cta-v31 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.75rem 1.25rem 1.25rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    color: #d4af37;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.show-card-cta-v31 svg {
    transition: transform 0.3s ease;
}

.show-card-cta-v31:hover {
    background: linear-gradient(135deg, #d4af37, #f0c840);
    color: #0a0a0a;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.show-card-cta-v31:hover svg {
    transform: translateX(3px);
    stroke: #0a0a0a;
}

/* --- Featured Card Accent --- */
.show-card-featured-v31 {
    border-color: rgba(212, 175, 55, 0.2);
}

.show-card-featured-v31 .show-card-date-v31 {
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(212, 175, 55, 0.35);
}


@media (max-width: 1024px) {
    .shows-grid-v31 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    /* Featured card spans full width on tablet */
    .show-card-featured-v31 {
        grid-column: span 2;
    }

    .show-card-featured-v31 .show-card-image-v31 {
        aspect-ratio: 21 / 9;
    }
}

@media (max-width: 640px) {
    .shows-grid-v31 {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .show-card-featured-v31 {
        grid-column: span 1;
    }

    .show-card-featured-v31 .show-card-image-v31 {
        aspect-ratio: 16 / 9;
    }

    .show-card-venue-v31 {
        font-size: 1.05rem;
    }

    .show-card-day-v31 {
        font-size: 1.4rem;
    }
}

/* ================================================
   PRESS & FEATURES V31
   Replace the existing PRESS SECTION block
   in v31-sections.css with this
   ================================================ */

.press-section-v31 {
    background: #0a0a0a;
}

.press-header-v31 {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* ---- Highlights Strip ---- */
.press-highlights-v31 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 10px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.press-highlight-item-v31 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.press-highlight-icon-v31 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.press-highlight-icon-v31 svg {
    color: #d4af37;
}

.press-highlight-text-v31 {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.press-highlight-text-v31 em {
    color: #d4af37;
    font-style: italic;
}

.press-highlight-divider-v31 {
    width: 1px;
    height: 28px;
    background: rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

/* ---- Quote Cards ---- */
.press-quotes-v31 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.press-quote-v31 {
    position: relative;
}

.press-quote-inner-v31 {
    position: relative;
    padding: 2rem 1.75rem 1.75rem;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.press-quote-inner-v31::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.75rem;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, transparent);
    border-radius: 0 0 2px 2px;
}

.press-quote-inner-v31:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.04);
}

/* Quotation mark SVG */
.press-quote-mark-v31 {
    color: #d4af37;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.press-quote-text-v31 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: #d0d0d0;
    flex: 1;
    margin-bottom: 1.25rem;
}

/* Source */
.press-quote-source-v31 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.press-quote-outlet-v31 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.03em;
}


@media (max-width: 900px) {
    .press-highlights-v31 {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }

    .press-highlight-item-v31 {
        justify-content: center;
    }

    .press-highlight-divider-v31 {
        width: 40px;
        height: 1px;
    }

    .press-quotes-v31 {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

@media (max-width: 480px) {
    .press-quote-inner-v31 {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .press-quote-text-v31 {
        font-size: 0.95rem;
    }

    .press-highlight-text-v31 {
        font-size: 0.82rem;
    }
}

/* ================================================
   GALLERY V31 - Editorial Mosaic
   Add to v31-sections.css
   ================================================ */

.gallery-section-v31 {
    background: var(--color-dark-gray, #1a1a1a);
    overflow: hidden;
}

/* Header */
.gallery-header-v31 {
    text-align: center;
    margin-bottom: 3rem;
}

/* .gallery-eyebrow-v31 — uses shared eyebrow rule */

/* ---- Mosaic Grid ----
   4-column layout with select cells spanning 2 rows
   for an editorial magazine feel.
   ---------------------------------------- */
.gallery-mosaic-v31 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 6px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Tall cells span 2 rows */
.gallery-cell-tall-v31 {
    grid-row: span 2;
}

/* ---- Individual Cell ---- */
.gallery-cell-v31 {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-cell-link-v31 {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-cell-v31 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-cell-v31:hover img {
    transform: scale(1.08);
}

/* ---- Hover Overlay ---- */
.gallery-cell-overlay-v31 {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0) 0%,
        rgba(10, 10, 10, 0.3) 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-cell-v31:hover .gallery-cell-overlay-v31 {
    opacity: 1;
}

.gallery-cell-zoom-v31 {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    color: #d4af37;
    transition: all 0.35s ease;
    transform: translateY(8px);
}

.gallery-cell-v31:hover .gallery-cell-zoom-v31 {
    transform: translateY(0);
}

.gallery-cell-caption-v31 {
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center;
    padding: 0 1rem;
    transform: translateY(8px);
    transition: transform 0.4s ease 0.05s;
    max-width: 220px;
}

.gallery-cell-v31:hover .gallery-cell-caption-v31 {
    transform: translateY(0);
}

/* ---- Corner Accent on first cell ---- */
.gallery-cell-v31:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-top: 2px solid #d4af37;
    border-left: 2px solid #d4af37;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-cell-v31:first-child:hover::before {
    opacity: 1;
}

/* ---- Bottom Accent on last cell ---- */
.gallery-cell-v31:last-child::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid #d4af37;
    border-right: 2px solid #d4af37;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-cell-v31:last-child:hover::after {
    opacity: 1;
}


/* ================================================
   CINEMATIC DIVIDER V31
   ================================================ */

.cinematic-divider-v31 {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.divider-overlay-v31 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.55) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

.divider-content-v31 {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 3rem 2rem;
}

.lyric-line-v31 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: #d4af37;
    line-height: 1.45;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.lyric-line-v31:last-child {
    margin-bottom: 0;
}


@media (max-width: 1024px) {
    .gallery-mosaic-v31 {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
}

@media (max-width: 768px) {
    .gallery-mosaic-v31 {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 4px;
    }

    /* Only first image is tall on mobile */
    .gallery-cell-tall-v31 {
        grid-row: span 1;
    }

    .gallery-cell-tall-v31:first-child {
        grid-row: span 2;
    }

    .gallery-cell-zoom-v31 {
        width: 40px;
        height: 40px;
    }

    .gallery-cell-zoom-v31 svg {
        width: 18px;
        height: 18px;
    }

    .gallery-cell-caption-v31 {
        font-size: 0.72rem;
    }

    .lyric-line-v31 {
        font-size: 1.8rem;
    }

    .cinematic-divider-v31 {
        min-height: 350px;
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .gallery-mosaic-v31 {
        grid-auto-rows: 140px;
    }

    /* Hide zoom icon on touch devices, overlay still shows caption */
    .gallery-cell-zoom-v31 {
        display: none;
    }

    .gallery-cell-overlay-v31 {
        opacity: 1;
        background: linear-gradient(
            180deg,
            transparent 50%,
            rgba(10, 10, 10, 0.75) 100%
        );
    }

    .gallery-cell-caption-v31 {
        position: absolute;
        bottom: 0.5rem;
        transform: none;
        font-size: 0.68rem;
    }

    .lyric-line-v31 {
        font-size: 1.5rem;
    }
}

/* ================================================
   ABOUT PREVIEW V31 - Editorial Layout
   Add to v31-sections.css
   ================================================ */

.about-section-v31 {
    background: var(--color-black, #0a0a0a);
    overflow: hidden;
}

/* ---- Two-Column Layout ---- */
.about-layout-v31 {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- Image Column ---- */
.about-image-v31 {
    position: relative;
}

.about-image-frame-v31 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-photo-v31 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-frame-v31:hover .about-photo-v31 {
    transform: scale(1.03);
}

/* Gold corner accent */
.about-image-accent-v31 {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 40%;
    height: 40%;
    border-bottom: 2px solid rgba(212, 175, 55, 0.35);
    border-right: 2px solid rgba(212, 175, 55, 0.35);
    border-radius: 0 0 12px 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.about-image-frame-v31:hover .about-image-accent-v31 {
    border-color: rgba(212, 175, 55, 0.6);
    bottom: -10px;
    right: -10px;
}

/* ---- Stats Strip ---- */
.about-stats-v31 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.about-stat-v31 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
}

.about-stat-value-v31 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1.2;
}

.about-stat-label-v31 {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #777;
    font-weight: 600;
}

.about-stat-divider-v31 {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* ---- Text Column ---- */
.about-text-v31 {
    padding-top: 0.5rem;
}

/* .about-eyebrow-v31 — uses shared eyebrow rule */

.about-heading-v31 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #e8e8e8;
    margin-bottom: 1.75rem;
    line-height: 1.1;
}

.about-body-v31 {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #b0b0b0;
}

.about-body-v31 p {
    margin-bottom: 1.1rem;
}

.about-body-v31 p:last-child {
    margin-bottom: 0;
}

/* Drop cap on first paragraph */
.about-body-v31 p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    float: left;
    line-height: 0.78;
    margin: 0.1em 0.12em 0 0;
    color: #d4af37;
}

.about-body-v31 em {
    color: #ccc;
    font-style: italic;
}

/* ---- Actions ---- */
.about-actions-v31 {
    margin-top: 2rem;
}

.about-cta-v31 {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #d4af37, #f0c840);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.about-cta-v31 svg {
    transition: transform 0.3s ease;
}

.about-cta-v31:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.about-cta-v31:hover svg {
    transform: translateX(3px);
}

/* ---- Booking CTA ---- */
.about-booking-v31 {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-booking-label-v31 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    margin-bottom: 0.65rem;
}

.about-booking-label-v31 svg {
    color: #d4af37;
    opacity: 0.6;
    flex-shrink: 0;
}

.about-booking-btn-v31 {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.about-booking-btn-v31:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.12);
    color: #f0c840;
}


/* ================================================
   SOCIAL CLIPS V31
   ================================================ */

.social-section-v31 {
    background: var(--color-dark-gray, #1a1a1a);
}

.social-header-v31 {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* .social-eyebrow-v31 — uses shared eyebrow rule */

/* ---- Card Grid ---- */
.social-grid-v31 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

/* ---- Individual Card ---- */
.social-card-v31 {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.social-card-v31:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.06);
}

/* ---- Thumbnail ---- */
.social-card-thumb-v31 {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #141414;
}

.social-card-thumb-v31 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-card-v31:hover .social-card-thumb-v31 img {
    transform: scale(1.06);
}

/* Placeholder when no thumbnail */
.social-card-placeholder-v31 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #141414, #1c1c1c);
}

.social-card-placeholder-v31 svg {
    fill: #d4af37;
    opacity: 0.25;
}

/* ---- Play Button ---- */
.social-card-play-v31 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.85);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.social-card-play-v31 svg {
    fill: #0a0a0a;
    margin-left: 2px;
}

.social-card-v31:hover .social-card-play-v31 {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ---- Platform Badge ---- */
.social-card-badge-v31 {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #d4af37;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}


@media (max-width: 1024px) {
    .about-layout-v31 {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .about-layout-v31 {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        gap: 2.5rem;
    }

    .about-text-v31 {
        text-align: center;
        padding-top: 0;
    }

    .about-body-v31 p:first-of-type::first-letter {
        float: none;
        font-size: 1.05rem;
        margin: 0;
        color: inherit;
    }

    .about-heading-v31 {
        font-size: 2.25rem;
    }

    .about-actions-v31 {
        display: flex;
        justify-content: center;
    }

    .about-booking-v31 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-booking-label-v31 {
        justify-content: center;
        text-align: center;
    }

    .about-image-accent-v31 {
        display: none;
    }
}

@media (max-width: 640px) {
    .social-grid-v31 {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .social-card-play-v31 {
        width: 40px;
        height: 40px;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .social-card-play-v31 svg {
        width: 16px;
        height: 16px;
    }

    .social-card-badge-v31 {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
        bottom: 0.5rem;
        left: 0.5rem;
    }

    .about-stats-v31 {
        gap: 0.75rem;
        padding: 0.85rem 0.75rem;
    }

    .about-stat-value-v31 {
        font-size: 0.82rem;
    }

    .about-stat-label-v31 {
        font-size: 0.6rem;
    }

    .about-booking-btn-v31 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .social-grid-v31 {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-card-v31:nth-child(3) {
        grid-column: span 2;
    }

    .social-card-v31:nth-child(3) .social-card-thumb-v31 {
        aspect-ratio: 16 / 9;
    }
}

/* ============================================
   RESPONSIVE DESIGN (Consolidated)
   ============================================ */

@media (max-width: 980px) {
  .music-page .release-card {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  .streaming-feature {
    grid-template-columns: 1fr;
  }

  .streaming-platforms {
    margin-top: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-dark-gray);
    padding: var(--spacing-xl) var(--spacing-md);
    transition: right var(--transition-medium);
    box-shadow: var(--shadow-strong);
  }

  .main-navigation.active {
    right: 0;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .main-navigation a {
    font-size: 1.25rem;
  }

  /* About Preview */
  .about-preview-content {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Hero Section */
  .hero-section {
    min-height: 100svh;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-content {
    padding: 1.5rem;
  }

  /* Booking CTA */
  .booking-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .booking-email-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .booking-label {
    text-align: center;
  }

  .booking-cta-content {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .music-page .music-hero {
    padding-top: 110px !important;
  }
}

@media (max-width: 560px) {
  .music-page .release-card {
    grid-column: span 12;
  }

  .music-page .release-thumb img {
    height: 240px !important;
  }
}

/* For very wide screens */
@media (min-width: 1920px) {
  .hero-video {
    width: 100%;
    height: auto;
  }
}

/* Accessibility - Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-bg-fallback {
    z-index: 1;
  }

  .scroll-indicator {
    animation: none;
  }
}

/* ================================================
   VIP SIGNUP V31 - Premium CTA Card
   Replace the existing VIP SIGNUP block
   in v31-sections.css with this
   ================================================ */

.vip-section-v31 {
    background: var(--color-black, #0a0a0a);
}

/* ---- Card ---- */
.vip-card-v31 {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    background: linear-gradient(
        160deg,
        rgba(212, 175, 55, 0.04) 0%,
        #111 40%,
        #111 60%,
        rgba(212, 175, 55, 0.04) 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    text-align: center;
    overflow: hidden;
}

/* ---- Corner Accents ---- */
.vip-corner-v31 {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.vip-card-v31:hover .vip-corner-v31 {
    opacity: 0.7;
}

.vip-corner-tl-v31 {
    top: 12px;
    left: 12px;
    border-top: 2px solid #d4af37;
    border-left: 2px solid #d4af37;
    border-radius: 4px 0 0 0;
}

.vip-corner-br-v31 {
    bottom: 12px;
    right: 12px;
    border-bottom: 2px solid #d4af37;
    border-right: 2px solid #d4af37;
    border-radius: 0 0 4px 0;
}

/* ---- Icon ---- */
.vip-icon-v31 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.vip-icon-v31 svg {
    color: #d4af37;
}

/* ---- Typography ---- */
/* .vip-eyebrow-v31 — uses shared eyebrow rule with size override */

.vip-title-v31 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #e8e8e8;
    margin-bottom: 1.75rem;
    line-height: 1.15;
}

/* ---- Perks ---- */
.vip-perks-v31 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}

.vip-perk-v31 {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: #999;
}

.vip-perk-v31 svg {
    color: #d4af37;
    opacity: 0.65;
    flex-shrink: 0;
}

/* ---- Form ---- */
.vip-form-v31 {
    max-width: 480px;
    margin: 0 auto 1.25rem;
}

.vip-form-inner-v31 {
    width: 100%;
}

.vip-input-wrap-v31 {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vip-input-wrap-v31:focus-within {
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.vip-input-wrap-v31 input {
    flex: 1;
    padding: 0.95rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.vip-input-wrap-v31 input::placeholder {
    color: #666;
}

.vip-input-wrap-v31 button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.95rem 1.75rem;
    background: linear-gradient(135deg, #d4af37, #f0c840);
    color: #0a0a0a;
    border: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.vip-input-wrap-v31 button svg {
    transition: transform 0.3s ease;
}

.vip-input-wrap-v31 button:hover {
    background: linear-gradient(135deg, #f0c840, #d4af37);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.vip-input-wrap-v31 button:hover svg {
    transform: translateX(3px);
}

.vip-form-note-v31 {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    color: #555;
    font-style: italic;
}

/* ---- Privacy ---- */
.vip-privacy-v31 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #555;
}

.vip-privacy-v31 svg {
    color: #555;
    flex-shrink: 0;
}


@media (max-width: 640px) {
    .vip-card-v31 {
        padding: 2.5rem 1.5rem;
    }

    .vip-title-v31 {
        font-size: 2rem;
    }

    .vip-perks-v31 {
        flex-direction: column;
        gap: 0.75rem;
    }

    .vip-input-wrap-v31 {
        flex-direction: column;
        border-radius: 8px;
    }

    .vip-input-wrap-v31 input {
        border-radius: 0;
        text-align: center;
    }

    .vip-input-wrap-v31 button {
        justify-content: center;
        padding: 1rem;
    }

    .vip-corner-v31 {
        width: 40px;
        height: 40px;
    }
}

/* ================================================
   CONTACT / BOOKING V31
   Add to v31-sections.css
   ================================================ */

.contact-section-v31 {
    background: linear-gradient(160deg, #141414 0%, #1a1a1a 50%, #141414 100%);
}

/* ---- Two-Column Layout ---- */
.contact-layout-v31 {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================================
   LEFT: Info Column
   ================================ */
.contact-info-v31 {
    padding-top: 0.5rem;
}

/* .contact-eyebrow-v31 — uses shared eyebrow rule */

.contact-heading-v31 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #e8e8e8;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.contact-intro-v31 {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #999;
    margin-bottom: 2rem;
}

/* ---- Contact Details ---- */
.contact-details-v31 {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2rem;
}

.contact-detail-v31 {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.contact-detail-v31:hover {
    transform: translateX(4px);
}

a.contact-detail-v31:hover .contact-detail-icon-v31 {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.12);
}

.contact-detail-icon-v31 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-icon-v31 svg {
    color: #d4af37;
}

.contact-detail-label-v31 {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.contact-detail-value-v31 {
    display: block;
    font-size: 0.92rem;
    color: #ccc;
    font-weight: 500;
}

/* ---- Social Links ---- */
.contact-socials-v31 {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-socials-label-v31 {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #555;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-socials-links-v31 {
    display: flex;
    gap: 0.6rem;
}

.contact-social-link-v31 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #888;
    transition: all 0.3s ease;
}

.contact-social-link-v31 svg {
    fill: currentColor;
}

.contact-social-link-v31:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

/* ================================
   RIGHT: Form Column
   ================================ */
.contact-form-wrap-v31 {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 2.5rem;
}

.contact-form-v31 {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Two-column rows */
.form-row-v31 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Field */
.form-field-v31 {
    margin-bottom: 1.1rem;
}

.form-field-v31 label {
    display: block;
    margin-bottom: 0.4rem;
    color: #999;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-req-v31 {
    color: #d4af37;
}

.form-field-v31 input,
.form-field-v31 select,
.form-field-v31 textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e8e8e8;
    font-family: inherit;
    font-size: 0.92rem;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field-v31 input::placeholder,
.form-field-v31 textarea::placeholder {
    color: #555;
}

.form-field-v31 select {
    cursor: pointer;
    color: #999;
}

.form-field-v31 input:focus,
.form-field-v31 select:focus,
.form-field-v31 textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.06);
}

.form-field-v31 textarea {
    min-height: 130px;
    resize: vertical;
}

/* Submit */
.contact-submit-v31 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #d4af37, #f0c840);
    color: #0a0a0a;
    border: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-submit-v31 svg {
    transition: transform 0.3s ease;
}

.contact-submit-v31:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.contact-submit-v31:hover svg {
    transform: translate(3px, -3px);
}

.contact-submit-v31:active {
    transform: translateY(-1px);
}

/* Form message */
.form-message-v31 {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}


/* ================================================
   FOOTER V31 - Premium Artist Footer
   Add to v31-sections.css
   ================================================ */

.footer-v31 {
    background: #0a0a0a;
    padding: 0 0 2rem;
    position: relative;
}

/* Gold accent line at top */
.footer-accent-v31 {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.08) 15%,
        rgba(212, 175, 55, 0.4) 50%,
        rgba(212, 175, 55, 0.08) 85%,
        transparent 100%
    );
}

/* ---- Main Grid ---- */
.footer-grid-v31 {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================================
   Column 1: Brand
   ================================ */
.footer-brand-v31 {
    padding-right: 1rem;
}

.footer-logo-v31 {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 0.85rem;
}

.footer-logo-text-v31 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #d4af37;
    letter-spacing: 0.04em;
    font-weight: 700;
}

/* Override WP custom logo sizing */
.footer-logo-v31 .custom-logo {
    max-height: 40px;
    width: auto;
}

.footer-tagline-v31 {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social icons */
.footer-socials-v31 {
    display: flex;
    gap: 0.5rem;
}

.footer-social-v31 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-social-v31 svg {
    width: 16px;
    height: 16px;
    fill: #888;
    transition: fill 0.3s ease;
}

.footer-social-v31:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

.footer-social-v31:hover svg {
    fill: #d4af37;
}

/* ================================
   Columns 2-4: Links & Contact
   ================================ */
.footer-col-v31 {
    min-width: 0;
}

.footer-col-title-v31 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #e8e8e8;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col-title-v31::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #d4af37;
    border-radius: 1px;
}

/* Nav links */
.footer-nav-v31 {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-v31 a {
    color: #777;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-nav-v31 a:hover {
    color: #d4af37;
    transform: translateX(4px);
}

/* Contact items */
.footer-contact-v31 {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-item-v31 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #777;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

a.footer-contact-item-v31:hover {
    color: #d4af37;
    transform: translateX(4px);
}

.footer-contact-item-v31 svg {
    color: #d4af37;
    opacity: 0.5;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

a.footer-contact-item-v31:hover svg {
    opacity: 0.85;
}

/* ================================
   Bottom Bar
   ================================ */
.footer-bottom-v31 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright-v31 {
    font-size: 0.78rem;
    color: #555;
}

.footer-credit-v31 {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: #555;
}

.footer-credit-v31 svg {
    color: #d4af37;
    opacity: 0.6;
}


@media (max-width: 1024px) {
    .footer-grid-v31 {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 2.5rem;
    }

    /* Contact column wraps below on tablet */
    .footer-brand-v31 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer-grid-v31 {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }

    .footer-brand-v31 {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
    }

    .footer-socials-v31 {
        justify-content: center;
    }

    .footer-tagline-v31 {
        margin-bottom: 1.25rem;
    }

    .footer-col-title-v31::after {
        left: 0;
    }

    .footer-bottom-v31 {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid-v31 {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand-v31 {
        grid-column: span 1;
    }

    .footer-col-title-v31::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav-v31 {
        align-items: center;
    }

    .footer-nav-v31 a:hover {
        transform: none;
    }

    .footer-contact-v31 {
        align-items: center;
    }

    a.footer-contact-item-v31:hover {
        transform: none;
    }
}


@media (max-width: 900px) {
    .contact-layout-v31 {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
        gap: 2.5rem;
    }

    .contact-info-v31 {
        text-align: center;
        padding-top: 0;
    }

    .contact-details-v31 {
        align-items: center;
    }

    .contact-detail-v31 {
        justify-content: flex-start;
        max-width: 300px;
    }

    .contact-socials-v31 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-socials-links-v31 {
        justify-content: center;
    }

    .contact-heading-v31 {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .contact-form-wrap-v31 {
        padding: 1.75rem 1.25rem;
    }

    .form-row-v31 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--color-gold);
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
/* ============================================
   BOOK CLOE MODAL — v1.4.0+
   ============================================ */
.cloe-modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.85);
    display: none; align-items: center; justify-content: center;
    padding: 2rem; opacity: 0; transition: opacity .3s;
}
.cloe-modal-overlay.cloe-modal-active { opacity: 1; }
.cloe-modal {
    background: var(--color-dark-gray, #1a1a1a);
    border: 1px solid rgba(212,175,55,.2); border-radius: 12px;
    padding: 2.5rem; width: 100%; max-width: 560px;
    max-height: 90vh; overflow-y: auto; position: relative;
    transform: translateY(20px); transition: transform .3s;
}
.cloe-modal-active .cloe-modal { transform: translateY(0); }
.cloe-modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; color: rgba(255,255,255,.6);
    font-size: 1.6rem; cursor: pointer; line-height: 1; transition: color .2s;
}
.cloe-modal-close:hover { color: var(--color-gold, #d4af37); }
.cloe-modal-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: var(--color-gold, #d4af37); font-size: 1.5rem; margin: 0 0 1.5rem;
}
.menu-item-cta a { color: var(--color-gold, #d4af37) !important; font-weight: 600; }

/* ============================================
   DATE INPUT STYLING — ensure native date picker works
   ============================================ */
input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    cursor: pointer;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    filter: invert(1);
    transition: opacity .2s;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}
/* Ensure the date input shows placeholder-like text when empty */
input[type="date"]:invalid::-webkit-datetime-edit {
    color: rgba(255,255,255,.4);
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}
.gallery-lightbox--active {
    opacity: 1;
}
.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
.gallery-lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox__img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 60px rgba(0,0,0,.6);
    transition: opacity .25s ease;
    -webkit-user-select: none;
    user-select: none;
}
.gallery-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 3;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s, transform .2s;
    padding: 8px;
}
.gallery-lightbox__close:hover {
    opacity: 1;
    transform: scale(1.15);
}
.gallery-lightbox__prev,
.gallery-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s, background .2s, transform .2s;
}
.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover {
    opacity: 1;
    background: rgba(212,175,55,.2);
    border-color: rgba(212,175,55,.4);
    transform: translateY(-50%) scale(1.08);
}
.gallery-lightbox__prev { left: 16px; }
.gallery-lightbox__next { right: 16px; }
.gallery-lightbox__caption {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.8);
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: .85rem;
    letter-spacing: .03em;
    text-align: center;
    max-width: 80vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gallery-lightbox__counter {
    position: absolute;
    top: 20px;
    left: 24px;
    z-index: 2;
    color: rgba(255,255,255,.5);
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: .75rem;
    letter-spacing: .08em;
}

/* Gallery cell button reset (was <a>, now <button>) */
button.gallery-cell-link-v31 {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .gallery-lightbox__prev,
    .gallery-lightbox__next {
        width: 40px;
        height: 40px;
        opacity: .5;
    }
    .gallery-lightbox__prev { left: 8px; }
    .gallery-lightbox__next { right: 8px; }
    .gallery-lightbox__img {
        max-width: 96vw;
        max-height: 75vh;
    }
    .gallery-lightbox__close {
        top: 10px;
        right: 12px;
        font-size: 32px;
    }
    .gallery-lightbox__caption {
        bottom: 36px;
        font-size: .75rem;
    }
}

/* ============================================
   MUSIC CATALOG SECTION (Front Page)
   ============================================ */
.catalog-section {
    position: relative;
}
.catalog-header {
    text-align: center;
    margin-bottom: 3rem;
}
.catalog-eyebrow {
    display: inline-block;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-gold, #d4af37);
    margin-bottom: .75rem;
}
.catalog-desc {
    max-width: 520px;
    margin: .75rem auto 0;
    color: rgba(255,255,255,.55);
    font-size: .95rem;
    line-height: 1.6;
}

/* Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.75rem;
}

/* Card */
.catalog-card {
    position: relative;
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.catalog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,175,55,.25);
    box-shadow: 0 12px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(212,175,55,.1);
}

/* Cover */
.catalog-card__cover {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(0,0,0,.3);
}
.catalog-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.catalog-card:hover .catalog-card__cover img {
    transform: scale(1.06);
}
.catalog-card__cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212,175,55,.08), rgba(0,0,0,.2));
    color: rgba(255,255,255,.2);
}

/* Play button overlay */
.catalog-card__play {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-gold, #d4af37);
    color: var(--color-black, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s ease, transform .3s ease;
    box-shadow: 0 4px 16px rgba(212,175,55,.35);
}
.catalog-card:hover .catalog-card__play {
    opacity: 1;
    transform: translateY(0);
}
.catalog-card__link {
    display: block;
    text-decoration: none;
}

/* Info */
.catalog-card__info {
    padding: 1rem 1rem 1.15rem;
}
.catalog-card__title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.catalog-card__title a {
    color: #fff;
    text-decoration: none;
}
.catalog-card__title a:hover {
    color: var(--color-gold, #d4af37);
}
.catalog-card__meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .4rem;
    font-size: .75rem;
    color: rgba(255,255,255,.45);
}
.catalog-card__type {
    display: inline-block;
    padding: .15rem .5rem;
    border: 1px solid rgba(212,175,55,.3);
    border-radius: 3px;
    color: var(--color-gold, #d4af37);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.catalog-card__date {
    color: rgba(255,255,255,.4);
}

/* Stream links */
.catalog-card__links {
    display: flex;
    gap: .5rem;
    margin-top: .65rem;
}
.catalog-card__stream {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.5);
    transition: background .2s, color .2s, border-color .2s;
}
.catalog-card__stream:hover {
    background: rgba(212,175,55,.15);
    border-color: rgba(212,175,55,.3);
    color: var(--color-gold, #d4af37);
}

/* Responsive */
@media (max-width: 900px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 1.25rem;
    }
}
@media (max-width: 640px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .catalog-card__info {
        padding: .75rem .7rem 1rem;
    }
    .catalog-card__title {
        font-size: .9rem;
    }
}

/* ============================================
   VIDEO EMBED MODAL (Site-wide)
   ============================================ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .3s ease;
}
.video-modal.active {
    opacity: 1;
}
.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}
.video-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 3;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s, transform .2s;
    padding: 8px;
}
.video-modal__close:hover {
    opacity: 1;
    transform: scale(1.15);
}
.video-modal__wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
}
.video-modal .video-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 8px 60px rgba(0,0,0,.6);
}
.video-modal .video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Reset button styling for spotlight play/watch buttons */
button.spotlight-play-btn {
    border: none;
    cursor: pointer;
}
button.spotlight-cta {
    cursor: pointer;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: inherit;
    letter-spacing: inherit;
}
