/* ==========================================================================
   ESSENCE WORSHIP — MIDNIGHT OBSIDIAN & CELESTIAL CYAN / AZURE DESIGN SYSTEM
   ========================================================================== */
:root {
  /* Semantic brand tokens extracted from the original Essence Worship theme */
  --color-primary: #00e2f2;
  --color-primary-soft: #62f4ff;
  --color-primary-deep: #00a7b5;
  --color-secondary: #146cff;
  --color-background: #06090b;
  --color-surface: #10171b;
  --color-heading: #ffffff;
  --color-body: #f2f6f7;
  --color-muted: #94a3b8;
  --color-border: rgba(255, 255, 255, 0.09);

  /* Color Palette — Soft Balanced Dark Charcoal with Celestial Cyan & Azure */
  --bg-deep: var(--color-background);
  --bg-primary: #0a0f12;
  --bg-surface: var(--color-surface);
  --bg-surface-elevated: #162126;
  --bg-surface-glass: rgba(6, 9, 11, 0.9);
  --bg-glass-card: rgba(255, 255, 255, 0.04);
  --bg-glass-card-hover: rgba(255, 255, 255, 0.08);
  --bg-subtle-tint: rgba(0, 226, 242, 0.055);

  --border-subtle: var(--color-border);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-focus: rgba(0, 226, 242, 0.68);

  /* Primary Accent: Celestial Cyan / Azure */
  --accent-gold: var(--color-primary);
  --accent-gold-light: var(--color-primary-soft);
  --accent-gold-dark: var(--color-primary-deep);
  --accent-gold-glow: rgba(0, 226, 242, 0.25);
  
  /* Secondary Accent: Electric Indigo / Cobalt */
  --accent-crimson: var(--color-secondary);
  --accent-crimson-light: #62a0ff;
  --accent-crimson-glow: rgba(20, 108, 255, 0.25);

  --text-pure: var(--color-heading);
  --text-primary: var(--color-body);
  --text-secondary: #cbd5e1;
  --text-muted: var(--color-muted);
  --text-dim: #64748b;

  /* Typography */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Saira', sans-serif;

  /* Spacing */
  --header-height: 74px;
  --player-height: 84px;
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-glow-gold: 0 4px 25px rgba(0, 226, 242, 0.32);
  --shadow-glow-crimson: 0 4px 25px rgba(20, 108, 255, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg-deep);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: var(--player-height);
  position: relative;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: #001012;
  background: var(--accent-gold);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Subtle celestial background accent */
body::before {
  content: "";
  position: fixed;
  top: -15vh;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  height: 55vh;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(99, 102, 241, 0.04) 45%, transparent 75%);
  z-index: -1;
  pointer-events: none;
  filter: blur(90px);
}

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

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

button, input, textarea, select {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--accent-gold-light);
  outline-offset: 3px;
}

ul, ol {
  list-style: none;
}

/* Container */
.essence-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.font-accent {
  font-family: var(--font-accent);
}

.title-hero {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--text-pure);
}

.title-section {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: var(--text-pure);
}

.subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(0, 226, 242, 0.1);
  border: 1px solid rgba(0, 226, 242, 0.32);
  border-radius: var(--radius-full);
  color: var(--accent-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #ffffff 20%, var(--accent-gold-light) 75%, var(--accent-crimson-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-crimson {
  background: linear-gradient(135deg, #ffffff 20%, var(--accent-crimson-light) 75%, var(--accent-crimson) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.essence-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: rgba(8, 10, 15, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
}

.essence-header.scrolled {
  background: rgba(8, 10, 15, 0.96);
  border-bottom-color: var(--border-medium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  flex-wrap: nowrap;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-pure);
  text-decoration: none;
  flex-shrink: 0;
  z-index: 2;
}

.brand-symbol {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: #f8fbfc;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0, 226, 242, 0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-symbol::after {
  content: none;
}

.brand-symbol svg,
.brand-symbol img {
  position: relative;
  z-index: 2;
}

.brand-symbol img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--text-pure);
  white-space: nowrap;
}

.brand-name span {
  color: var(--accent-gold-light);
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 4px 6px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(12px);
    flex-shrink: 1;
  }

  .nav-item {
    padding: 6px 13px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    white-space: nowrap;
  }

  .nav-item:hover {
    color: var(--text-pure);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-item.active {
    color: #001012;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    box-shadow: 0 0 14px rgba(14, 165, 233, 0.4);
    font-weight: 700;
  }
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-pure);
  border-color: var(--border-medium);
  transform: translateY(-1px);
}

.btn-icon-gold:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

/* Luxury Modern Hamburger Menu Button */
.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none !important;
  }
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background-color: var(--text-pure);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0.5);
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   FULLSCREEN LUXURY EDITORIAL NAVIGATION DRAWER
   ========================================================================== */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 15, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
  overflow-y: auto;
}

.nav-drawer.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-top-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(8, 10, 15, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  z-index: 10;
  flex-shrink: 0;
}

.drawer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.drawer-close-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-pure);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.drawer-close-btn:hover {
  background: var(--accent-crimson);
  border-color: var(--accent-crimson);
  color: #ffffff;
  transform: rotate(90deg);
}

.drawer-container {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px 24px 80px;
  gap: 40px;
  flex: 1;
}

@media (min-width: 900px) {
  .drawer-container {
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: start;
    padding-top: 50px;
  }
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.drawer-nav-item:hover, .drawer-nav-item.active {
  color: var(--text-pure);
  background: var(--bg-surface);
  border-color: var(--border-subtle);
  transform: translateX(8px);
  padding-left: 24px;
}

.drawer-nav-item:hover span.nav-num, .drawer-nav-item.active span.nav-num {
  color: var(--accent-gold-light);
}

.drawer-nav-item span.nav-num {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
}

.drawer-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drawer-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.drawer-card-track {
  display: flex;
  align-items: center;
  gap: 14px;
}

.drawer-track-cover {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.drawer-track-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-track-info h5 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-pure);
}

.drawer-track-info p {
  font-size: 0.82rem;
  color: var(--accent-gold-light);
  margin-top: 2px;
}

.drawer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--accent-gold);
  color: #ffffff;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #001012;
  box-shadow: 0 4px 16px rgba(0, 226, 242, 0.3);
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  color: #001012;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 226, 242, 0.42);
}

.btn-crimson {
  background: var(--accent-crimson);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
  border: 1px solid var(--accent-crimson);
}

.btn-crimson:hover {
  background: var(--accent-crimson-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-crimson);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  color: var(--text-pure);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-play-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-pure);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.btn-play-hero .play-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-crimson));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.4);
  transition: transform var(--transition-fast);
}

.btn-play-hero:hover {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-play-hero:hover .play-circle {
  transform: scale(1.08);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 70px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.55) contrast(1.15) saturate(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(0, 226, 242, 0.15), transparent 55%),
              linear-gradient(to top, var(--bg-deep) 0%, rgba(8, 10, 15, 0.85) 50%, rgba(8, 10, 15, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.hero-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.ticker-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.ticker-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  margin-top: 18px;
  margin-bottom: 34px;
  max-width: 680px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  max-width: 650px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-pure);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ==========================================================================
   MISSION CHAPTER (Midnight Azure Velvet Banner)
   ========================================================================== */
.section-mission-banner {
  position: relative;
  background: linear-gradient(135deg, #0e1e38 0%, #0d1629 50%, #0a0d18 100%);
  padding: 60px 0;
  border-radius: var(--radius-lg);
  margin: -20px 24px 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(14, 165, 233, 0.28);
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-mission-banner {
    margin: -10px 12px 36px;
    padding: 40px 0;
  }
}

.mission-banner-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(14, 165, 233, 0.2), transparent 70%);
  pointer-events: none;
}

.mission-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.mission-banner-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.6;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.mission-banner-text strong {
  color: var(--accent-gold-light);
}

.mission-banner-artists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.artist-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.artist-pill:hover {
  background: var(--accent-gold);
  color: #ffffff;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   CARDS & GRID SYSTEM
   ========================================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.essence-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.essence-card:hover {
  border-color: var(--border-medium);
  background: var(--bg-surface-elevated);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   ARTIST CARDS
   ========================================================================== */
.artist-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.artist-card:hover {
  border-color: var(--border-medium);
  background: var(--bg-surface-elevated);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.artist-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: #141724;
}

.artist-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

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

.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 21, 32, 0.85) 0%, transparent 60%);
}

.artist-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.artist-role {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold-light);
  margin-bottom: 6px;
}

.artist-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
}

/* ==========================================================================
   MUSIC & ALBUM SHOWCASE
   ========================================================================== */
.album-showcase-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .album-showcase-box {
    grid-template-columns: 340px 1fr;
    gap: 50px;
    align-items: center;
  }
}

.album-art-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.album-art-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-vinyl-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, var(--accent-gold-glow), transparent 70%);
  z-index: -1;
  filter: blur(15px);
}

/* Track list */
.tracklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.track-row:hover, .track-row.playing {
  background: rgba(255, 255, 255, 0.075);
  border-color: var(--border-medium);
  transform: translateX(4px);
}

.track-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.track-index {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  width: 20px;
}

.track-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.track-row:hover .track-play-btn, .track-row.playing .track-play-btn {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #001012;
}

.track-meta h5 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-pure);
}

.track-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.track-duration {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* ==========================================================================
   VIDEO EMBED CARDS
   ========================================================================== */
.video-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.video-card:focus-visible,
.track-row:focus-visible,
.playlist-item:focus-visible,
.search-result-item:focus-visible {
  outline: 3px solid var(--accent-gold-light);
  outline-offset: 3px;
}

.video-card:hover {
  border-color: var(--border-medium);
  background: var(--bg-surface-elevated);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.video-thumbnail-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #080a0f;
  overflow: hidden;
}

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

.video-card:hover .video-thumbnail-box img {
  transform: scale(1.05);
}

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-crimson));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
}

.video-card:hover .video-play-badge {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.video-body {
  padding: 20px;
}

.video-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.4;
}

/* ==========================================================================
   STUDIO & CONTACT SECTION
   ========================================================================== */
.contact-section-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.contact-image-pane {
  position: relative;
  min-height: 360px;
  background: #080a0f;
}

.contact-image-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 21, 32, 0.85) 0%, transparent 60%);
}

.contact-info-pane {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact-method-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-medium);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-card.whatsapp .contact-icon {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.contact-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-pure);
}

/* ==========================================================================
   PERSISTENT MUSIC PLAYER
   ========================================================================== */
.essence-player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--player-height);
  background: rgba(8, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-normal);
}

.player-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

/* Track info snippet */
.player-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  max-width: 300px;
}

.player-cover {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #141724;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-meta {
  overflow: hidden;
}

.player-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-pure);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-artist {
  font-size: 0.78rem;
  color: var(--accent-gold-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Center Controls & Progress */
.player-center {
  flex: 1;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-player-ctl {
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-player-ctl:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.btn-player-main {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #001012;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-gold);
  transition: all var(--transition-fast);
}

.btn-player-main:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-crimson-light));
}

.player-progress-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-counter {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  min-width: 34px;
}

.player-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: height var(--transition-fast);
}

.player-progress-bar:hover {
  height: 6px;
}

.player-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-crimson));
  border-radius: var(--radius-full);
}

.player-progress-handle {
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.player-progress-bar:hover .player-progress-handle {
  transform: translateY(-50%) scale(1);
}

/* Volume & Utility */
.player-right {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  justify-content: flex-end;
}

.volume-control {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .volume-control {
    display: flex;
  }
}

.volume-slider {
  width: 65px;
  height: 4px;
  appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
}

/* Playlist Queue Drawer */
.playlist-drawer {
  position: fixed;
  bottom: var(--player-height);
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  max-height: 460px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  z-index: 995;
  display: flex;
  flex-direction: column;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.playlist-drawer.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.playlist-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.playlist-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.playlist-content {
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.playlist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.playlist-item:hover, .playlist-item.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-medium);
}

.playlist-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.playlist-item-num {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 700;
}

.playlist-item-info h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-pure);
}

.playlist-item-info p {
  font-size: 0.75rem;
  color: var(--accent-gold-light);
}

/* ==========================================================================
   GLOBAL SEARCH MODAL
   ========================================================================== */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 24px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-card {
  width: 100%;
  max-width: 640px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.search-input-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-subtle);
}

.search-input-box input {
  flex: 1;
  font-size: 1.1rem;
  color: var(--text-pure);
  outline: none;
}

.search-input-box input::placeholder {
  color: var(--text-dim);
}

.search-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 16px 22px;
}

.search-category-title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  margin-bottom: 10px;
  margin-top: 12px;
}

.search-category-title:first-child {
  margin-top: 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 6px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

/* ==========================================================================
   SHARE MODAL
   ========================================================================== */
.share-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.share-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.share-card {
  width: 100%;
  max-width: 460px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}

.share-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.share-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.share-opt-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.share-opt-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-pure);
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.copy-link-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 4px 4px 4px 14px;
}

.copy-link-box input {
  flex: 1;
  font-size: 0.84rem;
  color: var(--text-secondary);
  outline: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.essence-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 36px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-dim);
  font-size: 0.84rem;
}

/* ==========================================================================
   PAGE HEADERS (Sub-pages)
   ========================================================================== */
.page-header-section {
  padding: calc(var(--header-height) + 50px) 0 45px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(6, 9, 11, 0.68), var(--bg-deep)),
    url('/assets/images/backgrounds/worship-stage.jpeg') center 31% / cover;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-pure);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.page-lead {
  max-width: 660px;
  margin: 14px auto 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Section Spacing Utilities */
.section-spacer {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-spacer {
    padding: 50px 0;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-pure);
  font-size: 0.94rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-control::placeholder {
  color: var(--text-dim);
  opacity: 1;
}

select.form-control {
  color-scheme: dark;
}

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

.form-control:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 226, 242, 0.18);
}

/* Toast Notifications */
.essence-toast {
  position: fixed;
  bottom: calc(var(--player-height) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  color: var(--text-pure);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.essence-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   FINAL RESPONSIVE & ACCESSIBILITY PASS
   ========================================================================== */
.page-header-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.7;
}

.page-header-section > .essence-container {
  position: relative;
  z-index: 1;
}

.page-title,
.title-section,
.artist-name,
.video-title {
  text-wrap: balance;
}

.page-lead,
.hero-description,
.footer-brand p {
  text-wrap: pretty;
}

.artist-card,
.video-card,
.essence-card {
  isolation: isolate;
}

.artist-card::before,
.video-card::before,
.essence-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0.78;
  pointer-events: none;
}

.artist-card,
.video-card {
  position: relative;
}

@media (max-width: 1100px) {
  .brand-name {
    font-size: 1.05rem;
  }

  .essence-container {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 66px;
    --player-height: 76px;
  }

  .essence-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-actions {
    gap: 6px;
  }

  .btn-icon,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-section {
    min-height: 760px;
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 56px;
  }

  .hero-backdrop img {
    object-position: 62% center;
  }

  .hero-actions,
  .hero-actions .btn,
  .hero-actions .btn-play-hero {
    width: 100%;
  }

  .hero-actions .btn-play-hero {
    justify-content: flex-start;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 36px;
  }

  .stat-num {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 0.67rem;
  }

  .page-header-section {
    padding: calc(var(--header-height) + 38px) 0 38px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .album-showcase-box,
  .essence-card,
  .artist-body {
    padding: 20px;
  }

  .album-showcase-box > div:last-child > div:first-child,
  .product-card > div:last-child {
    flex-wrap: wrap;
    gap: 12px;
  }

  .donation-amount-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .donation-amount-grid .btn {
    min-height: 44px;
  }

  .event-card {
    padding: 20px !important;
  }

  .event-card > div > div {
    min-width: 0 !important;
  }

  .track-row {
    padding: 11px 12px;
  }

  .track-left {
    min-width: 0;
    gap: 10px;
  }

  .track-index {
    display: none;
  }

  .track-meta {
    min-width: 0;
  }

  .track-meta h5,
  .track-meta p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .contact-val {
    font-size: 0.9rem;
    overflow-wrap: anywhere;
  }

  .footer-bottom,
  .footer-bottom > div:last-child {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .footer-bottom > div:last-child {
    gap: 8px !important;
  }

  .player-inner {
    gap: 10px;
  }

  .player-track-info {
    min-width: 0;
    width: min(42vw, 168px);
  }

  .player-cover {
    width: 42px;
    height: 42px;
  }

  .player-center {
    max-width: none;
  }

  .player-progress-wrap {
    display: none;
  }

  .player-controls {
    gap: 12px;
  }

  .player-right {
    min-width: 24px;
  }

  .playlist-drawer {
    right: 10px;
    width: calc(100vw - 20px);
    max-width: none;
  }

  .share-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .copy-link-box input {
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .brand-name {
    font-size: 0.92rem;
  }

  .brand-logo {
    gap: 7px;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
  }

  .header-actions .btn-icon-gold {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .player-track-info {
    width: 118px;
  }

  .player-cover,
  .btn-player-ctl:first-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
