/* ==========================================================================
   BAINSLA MUSIC - MODERN INDIAN MUSIC & ENTERTAINMENT LABEL
   High-Energy Light Theme Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Color Palette - Light & Festive */
  --bg-primary: #FFFDF9;
  --bg-secondary: #FFF6EE;
  --bg-tertiary: #FFEFE0;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFF9F3;
  --bg-alt-section: #FFF3E6;

  /* Accent Colors */
  --crimson: #D90429;
  --crimson-hover: #BA0323;
  --crimson-light: #FFECEF;
  --marigold: #FF8500;
  --marigold-gold: #FFB703;
  --marigold-light: #FFF4E5;
  --saffron: #FB8500;
  --royal-purple: #7209B7;
  --royal-magenta: #9D4EDD;
  --purple-light: #F6EDFC;

  /* Gradients */
  --grad-festive: linear-gradient(135deg, #D90429 0%, #FF8500 50%, #FFB703 100%);
  --grad-sunset: linear-gradient(135deg, #FF8500 0%, #D90429 70%, #7209B7 100%);
  --grad-royal: linear-gradient(135deg, #7209B7 0%, #D90429 100%);
  --grad-gold: linear-gradient(135deg, #FFB703 0%, #FF8500 100%);
  --grad-soft-bg: linear-gradient(180deg, #FFFDF9 0%, #FFF4EB 100%);
  --grad-card-border: linear-gradient(135deg, rgba(217, 4, 41, 0.3), rgba(255, 133, 0, 0.3));

  /* Text & Contrast Colors (High Contrast on Light BG) */
  --text-main: #1A0E0E;
  --text-muted: #5C4B49;
  --text-light: #8A7572;
  --text-inverse: #FFFFFF;
  --border-light: rgba(217, 4, 41, 0.12);
  --border-subtle: rgba(0, 0, 0, 0.07);

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 12px rgba(217, 4, 41, 0.05);
  --shadow-md: 0 10px 25px rgba(217, 4, 41, 0.08), 0 4px 10px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 40px rgba(217, 4, 41, 0.12), 0 8px 16px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(255, 133, 0, 0.35);
  --shadow-crimson-glow: 0 10px 25px rgba(217, 4, 41, 0.3);

  /* Typography */
  --font-heading: 'Baloo 2', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-width: 1240px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Layout & Containers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-tertiary {
  background-color: var(--bg-alt-section);
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: var(--crimson-light);
  color: var(--crimson);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(217, 4, 41, 0.2);
  margin-bottom: 1rem;
}

.badge-gold {
  background: var(--marigold-light);
  color: #B25900;
  border-color: rgba(255, 133, 0, 0.3);
}

.badge-purple {
  background: var(--purple-light);
  color: var(--royal-purple);
  border-color: rgba(114, 9, 183, 0.25);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-title span {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   4. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-normal);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--grad-festive);
  color: var(--text-inverse);
  box-shadow: var(--shadow-crimson-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(217, 4, 41, 0.4);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-main);
  border: 2px solid rgba(217, 4, 41, 0.2);
}

.btn-secondary:hover {
  background: var(--crimson-light);
  border-color: var(--crimson);
  color: var(--crimson);
  transform: translateY(-2px);
}

.btn-youtube {
  background: #FF0000;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
  background: #CC0000;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 0, 0, 0.45);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   5. Decorative Wave & Diagonal Section Dividers
   -------------------------------------------------------------------------- */
.divider-wave-top, .divider-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}

.divider-wave-top {
  top: 0;
  transform: translateY(-98%);
}

.divider-wave-bottom {
  bottom: 0;
  transform: translateY(98%);
}

.divider-wave-top svg, .divider-wave-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Floating Ambient Blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: var(--marigold-gold);
  top: -100px;
  right: -100px;
  animation: floatSlow 12s infinite alternate ease-in-out;
}

.blob-2 {
  width: 380px;
  height: 380px;
  background: var(--crimson);
  bottom: 50px;
  left: -80px;
  animation: floatSlow 10s infinite alternate-reverse ease-in-out;
}

.blob-3 {
  width: 320px;
  height: 320px;
  background: var(--royal-magenta);
  top: 40%;
  right: 10%;
  opacity: 0.2;
}

@keyframes floatSlow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, 35px) scale(1.08); }
  100% { transform: translate(-20px, -20px) scale(0.95); }
}

/* --------------------------------------------------------------------------
   6. Navigation & Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 4, 41, 0.08);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-bottom-color: rgba(217, 4, 41, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo-icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--grad-festive);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-crimson-glow);
}

.logo-text-gradient {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--grad-festive);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--crimson);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, #FFF3E6 0%, #FFFDF9 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.hero-headline .highlight {
  background: var(--grad-festive);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

/* Hero Equalizer Visualizer */
.equalizer-bar-group {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  margin-right: 6px;
}

.eq-bar {
  width: 3px;
  background: var(--crimson);
  border-radius: 2px;
  animation: eqPulse 1.2s infinite ease-in-out alternate;
}

.eq-bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.eq-bar:nth-child(2) { height: 100%; animation-delay: 0.3s; }
.eq-bar:nth-child(3) { height: 40%; animation-delay: 0.5s; }
.eq-bar:nth-child(4) { height: 80%; animation-delay: 0.2s; }
.eq-bar:nth-child(5) { height: 50%; animation-delay: 0.4s; }

@keyframes eqPulse {
  0% { height: 25%; }
  100% { height: 100%; }
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  border-top: 1px solid rgba(217, 4, 41, 0.12);
  padding-top: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--marigold-light);
  color: var(--marigold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.trust-text {
  font-size: 0.85rem;
  line-height: 1.2;
}

.trust-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

/* Hero Media Featured Card */
.hero-media-wrapper {
  position: relative;
}

.hero-media-card {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(217, 4, 41, 0.1);
  transition: transform 0.4s ease;
}

.hero-media-card:hover {
  transform: translateY(-6px);
}

.hero-video-frame {
  position: relative;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-video-frame:hover img {
  transform: scale(1.05);
}

.hero-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.4) 100%);
  color: #FFFFFF;
  cursor: pointer;
  padding: 1.5rem;
  text-align: center;
}

.pulse-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-festive);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.6);
  animation: pulseRipple 2s infinite;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.hero-play-overlay:hover .pulse-play-btn {
  transform: scale(1.15);
}

@keyframes pulseRipple {
  0% { box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7); }
  70% { box-shadow: 0 0 0 22px rgba(217, 4, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 4, 41, 0); }
}

.hero-card-meta {
  padding: 1.25rem 0.5rem 0.5rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.hero-card-sub {
  font-size: 0.85rem;
  color: var(--crimson);
  font-weight: 600;
}

.floating-pill {
  position: absolute;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 133, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  animation: floatPill 6s infinite ease-in-out alternate;
}

.pill-top-right {
  top: -20px;
  right: -20px;
}

.pill-bottom-left {
  bottom: -20px;
  left: -20px;
}

@keyframes floatPill {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   8. Ticker / Marquee Banner
   -------------------------------------------------------------------------- */
.marquee-wrapper {
  background: var(--grad-sunset);
  color: #FFFFFF;
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.marquee-content {
  display: inline-flex;
  gap: 3rem;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.marquee-sparkle {
  color: var(--marigold-gold);
  font-size: 1.3rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   9. Latest YouTube Releases Feed
   -------------------------------------------------------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.video-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 4, 41, 0.3);
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumb-wrap img {
  transform: scale(1.08);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  background: rgba(217, 4, 41, 0.9);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition-bounce);
  opacity: 0.9;
}

.video-card:hover .video-play-btn {
  transform: scale(1.18);
  background: var(--crimson);
  opacity: 1;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.78);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.video-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  color: var(--crimson);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.2s;
}

.video-title:hover {
  color: var(--crimson);
}

.video-meta-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
}

.video-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Skeleton Loading Shimmer Effect */
.skeleton-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.skeleton {
  background: linear-gradient(90deg, #F0EAE1 25%, #FFF6EC 50%, #F0EAE1 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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

.skeleton-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.skeleton-body {
  padding: 1.25rem;
}

.skeleton-tag {
  width: 80px;
  height: 14px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.skeleton-title {
  width: 100%;
  height: 20px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.skeleton-title.short {
  width: 65%;
  margin-bottom: 1.25rem;
}

.skeleton-meta {
  width: 100%;
  height: 14px;
  border-radius: 4px;
}

.channel-cta-box {
  background: var(--grad-soft-bg);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(217, 4, 41, 0.25);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-sm);
}

.channel-cta-info h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.channel-cta-info p {
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. About & Milestone Counters
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}

.about-badge-card {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: #FFFFFF;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--crimson);
  max-width: 260px;
}

.about-badge-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-main);
}

.about-badge-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  background: var(--marigold-light);
  color: var(--marigold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature-item h5 {
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.about-feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Stats / Milestone Strip */
.stats-strip {
  margin-top: 5rem;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   11. Services Section
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-festive);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 4, 41, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--crimson-light);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon-box {
  background: var(--grad-festive);
  color: #FFFFFF;
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.service-feature svg {
  color: var(--crimson);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--crimson);
  font-weight: 700;
  font-size: 0.9rem;
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--crimson-hover);
}

/* --------------------------------------------------------------------------
   12. Featured Artists Showcase
   -------------------------------------------------------------------------- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.artist-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  position: relative;
}

.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 133, 0, 0.4);
}

.artist-avatar-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.25rem auto;
  position: relative;
  border-radius: 50%;
  padding: 4px;
  background: var(--grad-festive);
  box-shadow: var(--shadow-md);
}

.artist-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #EEE;
  border: 3px solid #FFFFFF;
  transition: transform 0.4s ease;
}

.artist-card:hover .artist-avatar {
  transform: scale(1.05);
}

.artist-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.artist-genre {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--royal-purple);
  background: var(--purple-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.artist-hits {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.artist-hits strong {
  color: var(--text-main);
}

.artist-btn {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(217, 4, 41, 0.25);
  color: var(--crimson);
  font-weight: 700;
  transition: var(--transition-fast);
}

.artist-btn:hover {
  background: var(--grad-festive);
  color: #FFFFFF;
  border-color: transparent;
}

/* --------------------------------------------------------------------------
   13. Music / Video Gallery (Filterable)
   -------------------------------------------------------------------------- */
.gallery-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  cursor: pointer;
}

.tab-btn:hover {
  color: var(--crimson);
  border-color: rgba(217, 4, 41, 0.4);
}

.tab-btn.active {
  background: var(--grad-festive);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: var(--shadow-crimson-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 16 / 10;
  transition: var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  color: #FFFFFF;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.gallery-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: var(--crimson);
}

.gallery-center-play {
  align-self: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-center-play {
  transform: scale(1.2);
  background: var(--crimson);
  color: #FFFFFF;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   14. Testimonials & Press Carousel
   -------------------------------------------------------------------------- */
.testimonial-card-wrap {
  max-width: 820px;
  margin: 0 auto 3rem auto;
  position: relative;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem 3rem 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(217, 4, 41, 0.15);
  font-family: serif;
}

.testimonial-quote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-main);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--crimson);
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.testimonial-author-role {
  font-size: 0.85rem;
  color: var(--crimson);
  font-weight: 600;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--crimson);
  color: #FFFFFF;
  border-color: var(--crimson);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(217, 4, 41, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 32px;
  border-radius: var(--radius-pill);
  background: var(--grad-festive);
}

/* Press & Streaming Partners Strip */
.press-strip {
  border-top: 1px solid var(--border-subtle);
  padding-top: 3.5rem;
  text-align: center;
}

.press-heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.press-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.7;
  transition: var(--transition-fast);
}

.press-badge:hover {
  opacity: 1;
  color: var(--crimson);
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   15. Contact / Work With Us & Google Map
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: #FFFFFF;
  border-color: var(--crimson);
  box-shadow: 0 0 0 4px rgba(217, 4, 41, 0.1);
}

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

.form-error-msg {
  font-size: 0.8rem;
  color: #DC2626;
  font-weight: 600;
  display: none;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #DC2626;
  background: #FEF2F2;
}

.form-group.has-error .form-error-msg {
  display: block;
}

.form-alert-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #10B981;
  color: #065F46;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--crimson-light);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--grad-festive);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-3px);
}

.map-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 240px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #180D0E;
  color: #F7EFE8;
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: #BCAEAC;
  font-size: 0.95rem;
  margin: 1.25rem 0 1.5rem 0;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--crimson);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #BCAEAC;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--marigold-gold);
  transform: translateX(4px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 4px;
}

.newsletter-input {
  flex-grow: 1;
  background: transparent;
  padding: 0.6rem 1rem;
  color: #FFFFFF;
  font-size: 0.9rem;
}

.newsletter-input::placeholder {
  color: #8C7B79;
}

.newsletter-btn {
  background: var(--grad-festive);
  color: #FFFFFF;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  transform: scale(1.04);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #8C7B79;
}

/* --------------------------------------------------------------------------
   17. Lightbox / Video Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 8, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--crimson);
  color: #FFFFFF;
}

.modal-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
  width: 100%;
}

.modal-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Artist Profile Modal */
.artist-modal-content {
  padding: 2rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
}

.artist-modal-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 3px solid var(--crimson-light);
}

/* Toast System */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: #FFFFFF;
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--crimson);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.active {
  transform: translateX(0);
}

.toast.toast-success {
  border-left-color: #10B981;
}

/* --------------------------------------------------------------------------
   18. Scroll Reveal Animations (IntersectionObserver)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   19. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-cta-group, .hero-trust-badges {
    justify-content: center;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-headline {
    font-size: 2.5rem;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.35s ease;
    border-bottom: 2px solid var(--crimson);
  }
  .nav-menu.mobile-open {
    transform: translateY(0);
  }
  .nav-actions .btn {
    display: none;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .artists-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .channel-cta-box {
    flex-direction: column;
    text-align: center;
  }
  .stats-strip {
    grid-template-columns: 1fr;
  }
  .stat-item::after {
    display: none !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .pill-top-right, .pill-bottom-left {
    display: none;
  }
  .artist-modal-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .artist-modal-img {
    margin: 0 auto;
  }
}
