/* ==========================================================================
   FMR TRILL - OFFICIAL ARTIST PLATFORM
   Design System: Swiss Editorial Brutalism x Dark Camcorder Goth
   ========================================================================== */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@500,600,700&f[]=satoshi@500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&family=Cinzel:wght@600;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

@font-face {
  font-family: 'Berkahi Blackletter';
  src: url('../assets/fonts/BerkahiBlackletter.otf') format('opentype'),
       url('../assets/fonts/BerkahiBlackletter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Default: Dark Camera Goth Theme */
  --bg-primary: #0a0a0c;
  --bg-secondary: #121216;
  --bg-tertiary: #18181f;
  --bg-card: rgba(20, 20, 26, 0.7);
  --bg-card-hover: #1f1f28;
  --text-primary: #f5f5f7;
  --text-secondary: #9a9aa3;
  --text-muted: #5e5e68;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-hairline: rgba(255, 255, 255, 0.08);
  --accent-rec: #ff3344;
  --accent-cyan: #00f0ff;
  --nav-bg: rgba(10, 10, 12, 0.88);
  
  /* Echo Stack Layers (Dark Mode) */
  --echo-1: #ffffff;
  --echo-2: #3a3a46;
  --echo-3: #2c2c36;
  --echo-4: #202028;
  --echo-5: #15151b;
  
  /* Footer */
  --footer-bg: #050507;
  --footer-text: #eaeaea;

  /* Typography */
  --font-hero: 'Berkahi Blackletter','Clash Display', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-headline: 'Clash Display', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-goth: 'UnifrakturMaguntia', 'Cinzel', cursive;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Easing */
  --ease-reveal: cubic-bezier(0.77, 0, 0.175, 1);
  --duration-reveal: 700ms;
}

[data-theme="swiss-mono"] {
  /* Swiss Minimalist Spec Mode */
  --bg-primary: #f2f2f2;
  --bg-secondary: #e8e8e8;
  --bg-tertiary: #dfdfdf;
  --bg-card: rgba(255, 255, 255, 0.4);
  --bg-card-hover: #ffffff;
  --text-primary: #111111;
  --text-secondary: #838282;
  --text-muted: #b6b5b5;
  --border-color: rgba(30, 30, 30, 0.1);
  --border-hairline: rgba(30, 30, 30, 0.1);
  --accent-rec: #e02424;
  --accent-cyan: #0969da;
  --nav-bg: rgba(242, 242, 242, 0.9);
  
  /* Echo Stack Layers (Swiss Spec) */
  --echo-1: #111111;
  --echo-2: #bfbfbf;
  --echo-3: #c9c9c9;
  --echo-4: #d1d1d1;
  --echo-5: #d9d9d9;
  
  /* Footer (Retains deep dark per spec) */
  --footer-bg: #1e1e1e;
  --footer-text: #f6f6f6;
}

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 300ms ease, color 300ms ease;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Film Grain Overlay */
.film-grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   VIEWFINDER HUD (Camera Overlay Elements)
   ========================================================================== */

.camera-hud-frame {
  position: fixed;
  inset: 12px;
  pointer-events: none;
  z-index: 950;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hud-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--border-color);
  border-style: solid;
  opacity: 0.5;
}
.hud-corner.top-left {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}
.hud-corner.top-right {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}
.hud-corner.bottom-left {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}
.hud-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

.hud-crosshair {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 900;
  opacity: 0.15;
}
.hud-crosshair::before, .hud-crosshair::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.hud-crosshair::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}
.hud-crosshair::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

/* ==========================================================================
   NAVIGATION (80px Sticky Header)
   ========================================================================== */

/* ==========================================================================
   NAVIGATION (Minimal Low-Visibility Header & Choices Drawer)
   ========================================================================== */

.site-header.site-header-minimal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(10, 10, 12, 0.45);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

[data-theme="swiss-mono"] .site-header.site-header-minimal {
  background: rgba(242, 242, 242, 0.7);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.nav-container-minimal {
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Minimal Brand Logo */
.brand-logo-minimal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-logo-minimal:hover {
  opacity: 0.8;
  transform: translateX(2px);
}

.brand-logo-minimal .brand-name {
  font-family: var(--font-hero);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1;
}

.brand-dot {
  display: none !important;
}

/* Menu Toggle Button (Sleek pill / button opening choices) */
.menu-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-open-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.menu-btn-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 14px;
}

.menu-btn-icon .bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, width 180ms ease;
}

.menu-btn-icon .bar-bottom {
  width: 70%;
  align-self: flex-end;
}

.menu-open-btn:hover .menu-btn-icon .bar-bottom {
  width: 100%;
}

[data-theme="swiss-mono"] .menu-open-btn {
  background: rgba(17, 17, 17, 0.04);
  border-color: rgba(17, 17, 17, 0.15);
}

/* ==========================================================================
   NAVIGATION CHOICES DRAWER (Fullscreen / Slide-in Overlay)
   ========================================================================== */

.nav-overlay-drawer {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 300ms ease;
}

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

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 300ms ease;
  cursor: pointer;
}

.nav-overlay-drawer.active .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: #0b0b0e;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem 2.5rem;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
  z-index: 1;
  overflow-y: auto;
}

.nav-overlay-drawer.active .drawer-panel {
  transform: translateX(0);
}

[data-theme="swiss-mono"] .drawer-panel {
  background: #f7f7f8;
  border-left-color: rgba(17, 17, 17, 0.12);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

/* Drawer Header */
.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="swiss-mono"] .drawer-header {
  border-bottom-color: rgba(17, 17, 17, 0.1);
}

.drawer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-brand-name {
  font-family: var(--font-hero);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1;
}

.drawer-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.drawer-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 180ms ease;
}

.drawer-close-btn .close-icon {
  font-size: 15px;
  line-height: 1;
}

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

[data-theme="swiss-mono"] .drawer-close-btn {
  background: rgba(17, 17, 17, 0.05);
  border-color: rgba(17, 17, 17, 0.15);
}

[data-theme="swiss-mono"] .drawer-close-btn:hover {
  background: #111111;
  border-color: #111111;
  color: #f2f2f2;
}

/* Drawer Navigation List */
.drawer-nav {
  padding: 2rem 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.drawer-nav-item {
  width: 100%;
}

.drawer-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text-primary);
  border: 1px solid transparent;
  transition: all 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-link .d-idx {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  width: 28px;
  letter-spacing: 0.05em;
  transition: color 150ms ease;
}

.drawer-link .d-title {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-grow: 1;
  transition: transform 180ms ease;
}

.drawer-link .d-arrow {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--text-muted);
  opacity: 0.5;
  transition: transform 180ms ease, opacity 180ms ease, color 180ms ease;
}

.drawer-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.drawer-link:hover .d-idx {
  color: #ff3344;
}

.drawer-link:hover .d-title {
  transform: translateX(4px);
}

.drawer-link:hover .d-arrow {
  opacity: 1;
  color: #ff3344;
  transform: translate(2px, -2px);
}

[data-theme="swiss-mono"] .drawer-link:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="swiss-mono"] .drawer-link:hover .d-idx,
[data-theme="swiss-mono"] .drawer-link:hover .d-arrow {
  color: #111111;
}

/* Highlighted Contact Link */
.drawer-link-highlight {
  background: rgba(255, 51, 68, 0.08);
  border-color: rgba(255, 51, 68, 0.25);
}

.drawer-link-highlight .d-idx {
  color: #ff3344;
}

[data-theme="swiss-mono"] .drawer-link-highlight {
  background: rgba(17, 17, 17, 0.06);
  border-color: rgba(17, 17, 17, 0.2);
}

[data-theme="swiss-mono"] .drawer-link-highlight .d-idx {
  color: #111111;
}

/* Drawer Footer */
.drawer-footer {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

[data-theme="swiss-mono"] .drawer-footer {
  border-top-color: rgba(17, 17, 17, 0.1);
}

.drawer-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.drawer-meta-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.drawer-meta-info .rec-dot {
  width: 6px;
  height: 6px;
  background: #ff3344;
  border-radius: 50%;
  animation: recBlink 1.4s infinite;
}

.drawer-socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.drawer-socials a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 150ms ease;
}

.drawer-socials a:hover {
  color: var(--text-primary);
}

/* Tactical Mode Switcher Button (Shared in drawer and UI) */
.tactical-mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 180ms ease;
}

.mode-led {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

[data-theme="swiss-mono"] .mode-led {
  background-color: #111111;
  box-shadow: none;
}

.tactical-mode-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-primary);
  transform: translateY(-1px);
}

[data-theme="swiss-mono"] .tactical-mode-btn {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="swiss-mono"] .tactical-mode-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .drawer-panel {
    max-width: 100%;
    padding: 1.5rem 1.25rem;
  }
  .drawer-link .d-title {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   HERO SECTION & TYPOGRAPHIC ECHO STACK
   ========================================================================== */

.hero-section {
  width: 100%;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 1.5rem;
  overflow: hidden;
  text-align: center;
}

/* Background video + scrim (fades into the page at the bottom edge) */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--bg-primary) url('../assets/video/hero-background-poster.jpg') center / cover no-repeat;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 55%, var(--bg-primary) 100%),
    rgba(10, 10, 12, 0.35);
}

/* Swiss mode keeps its light ground so the dark wordmark stays legible */
[data-theme="swiss-mono"] .hero-video-wrap::after {
  background:
    linear-gradient(to bottom, transparent 55%, var(--bg-primary) 100%),
    rgba(242, 242, 242, 0.78);
}

.hero-center-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-goth-badge {
  font-family: var(--font-goth);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 20;
}

/* Typographic Echo Stack Component */
.echo-stack-container {
  position: relative;
  display: inline-block;
  user-select: none;
  margin: 3.5rem 0 3.5rem 0;
  perspective: 900px;
}

.echo-layer {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(3rem, 8.5vw, 8.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Foreground layer - clean, crisp brutalist typography with zero neon glow */
.echo-foreground {
  position: relative;
  z-index: 5;
  color: var(--echo-1);
  display: inline-block;
  filter: none !important;
  text-shadow: none !important;
}

[data-theme="swiss-mono"] .echo-foreground {
  filter: none !important;
  text-shadow: none !important;
}

/* Background layers 2-5 */
.echo-bg-1, .echo-bg-2, .echo-bg-3, .echo-bg-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: none !important;
  text-shadow: none !important;
  transition: transform 300ms var(--ease-reveal), color 250ms ease, opacity 300ms ease;
}

/* Layer 2: -0.035em with undulating pulse animation */
.echo-bg-1 {
  color: var(--echo-2);
  z-index: 4;
  animation: echoPulse1 4.5s ease-in-out infinite;
}

/* Layer 3: -0.07em */
.echo-bg-2 {
  color: var(--echo-3);
  z-index: 3;
  animation: echoPulse2 4.5s ease-in-out infinite 0.35s;
}

/* Layer 4: -0.105em */
.echo-bg-3 {
  color: var(--echo-4);
  z-index: 2;
  animation: echoPulse3 4.5s ease-in-out infinite 0.7s;
}

/* Layer 5: -0.14em */
.echo-bg-4 {
  color: var(--echo-5);
  z-index: 1;
  animation: echoPulse4 4.5s ease-in-out infinite 1.05s;
}

/* Animated Keyframes for Dynamic Echo Stack (Pure Geometric Motion, Zero Glow) */
@keyframes echoPulse1 {
  0%, 100% {
    transform: translate(-0.03em, -0.03em);
    opacity: 0.88;
  }
  50% {
    transform: translate(-0.05em, -0.05em) scale(1.008);
    opacity: 0.7;
  }
}

@keyframes echoPulse2 {
  0%, 100% {
    transform: translate(-0.06em, -0.06em);
    opacity: 0.72;
  }
  50% {
    transform: translate(-0.1em, -0.1em) scale(1.015);
    opacity: 0.55;
  }
}

@keyframes echoPulse3 {
  0%, 100% {
    transform: translate(-0.09em, -0.09em);
    opacity: 0.55;
  }
  50% {
    transform: translate(-0.15em, -0.15em) scale(1.022);
    opacity: 0.38;
  }
}

@keyframes echoPulse4 {
  0%, 100% {
    transform: translate(-0.12em, -0.12em);
    opacity: 0.4;
  }
  50% {
    transform: translate(-0.2em, -0.2em) scale(1.03);
    opacity: 0.22;
  }
}

/* Glitch Bursts (.is-glitching / .is-negative toggled by js/app.js,
   which also sets --glitch-ms and --glitch-dir per pulse) */

.echo-stack-container.is-glitching {
  filter: url(#heroGlitchDistort);
}

/* Negative flash inverts the letters only (dark glyphs, light echo trails) */
.echo-stack-container.is-negative {
  filter: invert(1);
}

.echo-stack-container.is-glitching.is-negative {
  filter: url(#heroGlitchDistort) invert(1);
}

/* Analog static + scanlines clipped to the wordmark; faint at idle, heavy during bursts */
.echo-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  pointer-events: none;
  color: transparent;
  background-image:
    repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0 1px, transparent 1px 3px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0.33 0.33 0.33 0 0 0.33 0.33 0.33 0 0 0.33 0.33 0.33 0 0 0 0 0 0 1'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='linear' slope='3' intercept='-1'/%3E%3CfeFuncG type='linear' slope='3' intercept='-1'/%3E%3CfeFuncB type='linear' slope='3' intercept='-1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)'/%3E%3C/svg%3E");
  background-size: 100% 3px, 180px 180px;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.2;
  animation: staticCrawl 0.45s steps(1, end) infinite;
}

.is-glitching .echo-static {
  opacity: 0.75;
  animation-duration: 0.12s;
}

@keyframes staticCrawl {
  0%   { background-position: 0 0, 0 0; }
  17%  { background-position: 0 1px, -61px 23px; }
  33%  { background-position: 0 2px, 37px -71px; }
  50%  { background-position: 0 0, -103px -17px; }
  67%  { background-position: 0 1px, 79px 53px; }
  83%  { background-position: 0 2px, -29px 97px; }
  100% { background-position: 0 0, 0 0; }
}

/* RGB-split slices of the foreground wordmark */
.echo-foreground::before,
.echo-foreground::after {
  content: attr(data-text);
  content: attr(data-text) / "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.echo-foreground::before {
  color: var(--accent-cyan);
}

.echo-foreground::after {
  color: var(--accent-rec);
}

[data-theme="swiss-mono"] .echo-foreground::before,
[data-theme="swiss-mono"] .echo-foreground::after {
  mix-blend-mode: multiply;
}

.is-glitching .echo-foreground {
  animation: glitchJitter var(--glitch-ms, 300ms) steps(1, end) both var(--glitch-dir, normal);
}

.is-glitching .echo-foreground::before {
  animation: glitchSliceA var(--glitch-ms, 300ms) steps(1, end) both var(--glitch-dir, normal);
}

.is-glitching .echo-foreground::after {
  animation: glitchSliceB var(--glitch-ms, 300ms) steps(1, end) both var(--glitch-dir, normal);
}

@media (prefers-reduced-motion: reduce) {
  .echo-static {
    animation: none;
  }
}

@keyframes glitchJitter {
  0%   { transform: none; }
  10%  { transform: translate(-0.03em, 0.01em) skewX(-8deg); }
  22%  { transform: translate(0.04em, 0) skewX(4deg); }
  35%  { transform: translate(-0.02em, -0.01em) scaleY(1.04); }
  50%  { transform: translate(0.05em, 0.02em) skewX(-3deg); }
  64%  { transform: translate(-0.04em, 0) scaleX(1.02); }
  80%  { transform: translate(0.02em, -0.01em) skewX(6deg); }
  100% { transform: none; }
}

@keyframes glitchSliceA {
  0%   { opacity: 1; clip-path: inset(10% 0 70% 0); transform: translate(-0.06em, 0); }
  15%  { clip-path: inset(55% 0 25% 0); transform: translate(0.05em, 0); }
  30%  { clip-path: inset(30% 0 52% 0); transform: translate(-0.1em, 0); }
  45%  { clip-path: inset(80% 0 4% 0); transform: translate(0.08em, 0); }
  60%  { clip-path: inset(4% 0 86% 0); transform: translate(-0.04em, 0); }
  75%  { clip-path: inset(42% 0 40% 0); transform: translate(0.07em, 0); }
  90%  { clip-path: inset(66% 0 18% 0); transform: translate(-0.05em, 0); }
  100% { opacity: 0; clip-path: inset(0 0 100% 0); transform: none; }
}

@keyframes glitchSliceB {
  0%   { opacity: 1; clip-path: inset(62% 0 22% 0); transform: translate(0.07em, 0); }
  12%  { clip-path: inset(18% 0 64% 0); transform: translate(-0.08em, 0); }
  28%  { clip-path: inset(74% 0 8% 0); transform: translate(0.04em, 0); }
  42%  { clip-path: inset(36% 0 46% 0); transform: translate(-0.06em, 0); }
  58%  { clip-path: inset(8% 0 76% 0); transform: translate(0.1em, 0); }
  72%  { clip-path: inset(50% 0 30% 0); transform: translate(-0.03em, 0); }
  88%  { clip-path: inset(24% 0 60% 0); transform: translate(0.06em, 0); }
  100% { opacity: 0; clip-path: inset(0 0 100% 0); transform: none; }
}

.hero-subtitle-container {
  max-width: 680px;
  margin-top: 1.75rem;
  position: relative;
  z-index: 10;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-brutalist-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-brutalist-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
}

.btn-brutalist-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: all 180ms ease;
}

.btn-brutalist-secondary:hover {
  border-color: var(--text-primary);
  background: var(--bg-card-hover);
}

/* Down arrow scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  z-index: 10;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: pulseLine 2s infinite;
}

@keyframes pulseLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   ASYMMETRICAL SHOWCASE GRID (Spec-Compliant with Uploaded Photos)
   ========================================================================== */

.showcase-section {
  padding: 6rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-hairline);
  padding-bottom: 1.5rem;
}

.section-title-large {
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-subtitle-badge {
  display: none !important;
}

/* TV wall archive styles live in css/tv-wall.css */

/* ==========================================================================
   MUSIC & MEDIA PLAYER SECTION
   ========================================================================== */

.music-section {
  padding: 6rem 2rem;
  max-width: 1440px;
  margin: 0 auto;

  /* Strict black & white: neutral grays only, no tint or accent color */
  --bg-card: #000000;
  --bg-secondary: #0b0b0b;
  --bg-card-hover: #161616;
  --text-primary: #ffffff;
  --text-secondary: #a6a6a6;
  --text-muted: #6e6e6e;
  --border-color: rgba(255, 255, 255, 0.16);
  --border-hairline: rgba(255, 255, 255, 0.1);
}

.player-suite-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
}

/* Player Left Column */
.player-main-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.player-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-goth);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.now-playing-title {
  font-family: var(--font-goth);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.now-playing-artist {
  font-family: var(--font-goth);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.track-credits-tag {
  font-family: var(--font-goth);
  font-size: 14px;
  padding: 2px 10px;
  border: 1px solid var(--border-hairline);
  border-radius: 3px;
  color: var(--text-muted);
}

/* Canvas Audio Waveform Visualizer */
.waveform-container {
  width: 100%;
  height: 90px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-hairline);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

#waveformCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Progress & Scrubber */
.player-progress-bar-wrap {
  width: 100%;
  margin-bottom: 1.5rem;
}

.progress-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.progress-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text-primary);
  cursor: pointer;
  transition: transform 120ms ease;
}

.progress-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

.time-readout-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Primary Player Controls */
.player-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.ctrl-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: var(--bg-secondary);
  transition: all 180ms ease;
}

.ctrl-btn:hover {
  border-color: var(--text-primary);
  background: var(--bg-card-hover);
  transform: scale(1.05);
}

.ctrl-btn-play {
  width: 60px;
  height: 60px;
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
}

.ctrl-btn-play:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 0 4px var(--border-color);
  transform: scale(1.08);
}

.volume-ctrl-group {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.volume-slider {
  width: 90px;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-primary);
}

/* Player Right Column: Tracklist */
.tracklist-container {
  border-left: 1px solid var(--border-hairline);
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
}

.tracklist-header {
  font-family: var(--font-goth);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
}

/* Ten releases: the list scrolls inside the card instead of stretching it */
.track-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0 6px 0 0;
  list-style: none;
  max-height: 470px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}

.track-item:focus-visible {
  outline: 1px solid var(--text-primary);
  outline-offset: 2px;
}

.track-item-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.track-spotify {
  display: flex;
  color: var(--text-muted);
  transition: color 180ms ease, transform 180ms ease;
}

.track-spotify svg {
  width: 18px;
  height: 18px;
}

.track-spotify:hover,
.track-spotify:focus-visible {
  color: #1ED760;
  transform: scale(1.12);
}

.spotify-full-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.spotify-full-link:hover,
.spotify-full-link:focus-visible {
  color: #1ED760;
}

.player-status-badge.is-error {
  color: var(--accent-rec);
}

/* Phones: let the single column shrink to the card and wrap the busy rows */
@media (max-width: 600px) {
  .player-suite-container {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 1.75rem 1.25rem;
  }

  .now-playing-artist {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .player-controls-row {
    flex-wrap: wrap;
    gap: 18px;
  }

  .ctrl-btn-group {
    gap: 12px;
  }

  .volume-ctrl-group,
  .volume-slider {
    flex: 1;
  }

  .track-item {
    padding: 12px;
  }

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

  .track-name-bold {
    font-size: 18px;
  }
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-hairline);
  border-radius: 4px;
  cursor: pointer;
  transition: all 180ms ease;
}

.track-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color);
  transform: translateX(4px);
}

.track-item.active-track {
  border-color: var(--text-primary);
  background: var(--bg-card-hover);
}

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

.track-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  width: 22px;
}

.track-name-bold {
  font-family: var(--font-goth);
  font-weight: 400;
  font-size: 20px;
  color: var(--text-primary);
}

.track-prod-sub {
  font-family: var(--font-goth);
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 3px;
}

.track-duration {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   MEDIA / VIDEO SECTION (Vintage Camcorder Viewfinder Look)
   ========================================================================== */

.video-showcase-section {
  padding: 6rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.camcorder-chassis {
  position: relative;
  background: #020204;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
}

.camcorder-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camcorder-video-media {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CRT Scanlines */
.camcorder-viewport::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.4) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  opacity: 0.35;
  z-index: 4;
}

.cam-spec-readout {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ==========================================================================
   STREAMING PLATFORMS & SOCIAL PLATFORM ICONS
   ========================================================================== */

.platforms-section {
  padding: 6rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.platform-icons-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* Each link sets --brand inline; Tidal and X are monochrome brands and keep the ink color */
.platform-icon-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  color: var(--text-primary);
  transition: transform 200ms ease, color 200ms ease;
  position: relative;
}

/* Platform name label, revealed on hover/focus */
.platform-icon-tile::after {
  content: attr(aria-label);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, -4px);
  padding: 5px 9px;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 5;
}

.platform-icon-tile:hover::after,
.platform-icon-tile:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.platform-icon-tile svg {
  width: clamp(40px, 3.6vw, 56px);
  height: clamp(40px, 3.6vw, 56px);
  transition: transform 200ms ease, filter 200ms ease;
}

.platform-icon-tile:hover,
.platform-icon-tile:focus-visible {
  transform: translateY(-4px);
  color: var(--brand, var(--text-primary));
}

.platform-icon-tile:hover svg,
.platform-icon-tile:focus-visible svg {
  transform: scale(1.15);
}

.platform-instagram:hover svg,
.platform-instagram:focus-visible svg {
  fill: url(#igBrandGradient);
}

/* TikTok's mark is the ink glyph with its cyan / red offset echoes */
.platform-tiktok:hover svg,
.platform-tiktok:focus-visible svg {
  filter: drop-shadow(-2px -2px 0 #25F4EE) drop-shadow(2px 2px 0 #FE2C55);
}

/* ==========================================================================
   CONTACT US SECTION
   ========================================================================== */

.contact-section {
  padding: 6rem 2rem 8rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 1.5rem 0 3rem 0;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.detail-value {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* Booking & Inquiry Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 3rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-hairline);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 150ms ease, background 150ms ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--text-primary);
  background: var(--bg-card-hover);
}

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

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: all 180ms ease;
  margin-top: 10px;
}

.form-submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Toast Message */
.form-toast {
  display: none;
  margin-top: 1.5rem;
  padding: 14px 18px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.form-toast.success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

/* ==========================================================================
   FOOTER (Deep Dark #1e1e1e per Spec)
   Deep dark theme (#1e1e1e) with 60% opacity off-white text (#f6f6f6).
   4-column layout including brand summary, navigation, company links,
   and contact details with Lucide-style line icons.
   Thin 5% opacity white top border.
   ========================================================================== */

.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Thin 5% opacity white top border */
  padding: 6rem 2rem 4rem 2rem;
  width: 100%;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-four-column-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 5rem;
}

.footer-brand-title {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand-summary {
  font-size: 0.95rem;
  color: rgba(246, 246, 246, 0.6); /* 60% opacity per spec */
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 1.5rem;
}

.footer-column-heading {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 14px;
  color: rgba(246, 246, 246, 0.6); /* 60% opacity */
  transition: color 150ms ease, transform 150ms ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(246, 246, 246, 0.6);
}

.footer-contact-row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke-width: 1.5;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(246, 246, 246, 0.4);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */

@media (max-width: 1100px) {
  .player-suite-container {
    grid-template-columns: 1fr;
  }
  .tracklist-container {
    border-left: none;
    border-top: 1px solid var(--border-hairline);
    padding-left: 0;
    padding-top: 2.5rem;
  }
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
  .footer-four-column-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 868px) {
  .nav-links, .btn-pill-contact {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  
  .platform-icons-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
  
  .footer-four-column-grid {
    grid-template-columns: 1fr;
  }
}

/* Lyrics Modal */
.lyrics-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lyrics-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.lyrics-modal-title {
  font-family: var(--font-headline);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.lyrics-modal-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-rec);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.lyrics-content-pre {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  white-space: pre-line;
  font-style: italic;
  border-left: 2px solid var(--border-color);
  padding-left: 1.25rem;
}

.close-modal-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-hairline);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 150ms ease;
}

.close-modal-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}


@media (max-width: 480px) {
  .platform-icons-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
