/* ============================================================
   SAVIOMUSICS — DJ PORTFOLIO
   Design tokens: dark near-black base, neon cyan primary accent,
   violet secondary accent, glassmorphism cards, glow effects.
   Signature motif: the "live frequency bar" — a recurring
   equalizer/VU-meter graphic that ties nav, hero and dividers
   together (inspired by real DJ mixer hardware).
   ============================================================ */

:root{
  /* Color tokens */
  --bg:            #0a0a0d;
  --bg-elevated:   #131318;
  --bg-elevated-2: #1a1a21;
  --cyan:          #00e5ff;
  --violet:        #a855f7;
  --text:          #f2f2f5;
  --muted:         #8b8b96;
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  /* Gradients */
  --grad-accent: linear-gradient(90deg, var(--cyan), var(--violet));

  /* Typography */
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --nav-height: 76px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; border:none; background:none; color:inherit; }
ul{ list-style:none; }
input, select, textarea{ font-family: inherit; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}

::selection{ background: var(--cyan); color:#0a0a0d; }

/* Scrollbar */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background: var(--bg); }
::-webkit-scrollbar-thumb{ background: var(--bg-elevated-2); border-radius: 10px; }

/* ============================================================
   UTILITY
   ============================================================ */
.section{ padding: 120px 0; position: relative; }
.section-alt{ background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent); }
.section-inner{ max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
  display:inline-block;
  margin-bottom: 14px;
}
.eyebrow.small{ font-size: 11px; margin-bottom: 8px; }
.eyebrow.center{ display:block; text-align:center; }

.section-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.section-title.center{ text-align:center; }

.accent-text{
  background: var(--grad-accent);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.glass-card{
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

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

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  position: relative;
  overflow:hidden;
}
.btn-primary{
  background: var(--grad-accent);
  color: #05070a;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(0,229,255,0.35), 0 0 48px rgba(168,85,247,0.18);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 0 34px rgba(0,229,255,0.55), 0 0 60px rgba(168,85,247,0.3); }
.btn-outline{
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover{ border-color: var(--cyan); box-shadow: 0 0 20px rgba(0,229,255,0.25); transform: translateY(-3px); }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader{
  position: fixed; inset:0; z-index: 9999;
  background: var(--bg);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden{ opacity:0; visibility:hidden; pointer-events:none; }

.preloader-vinyl{ width: 90px; height: 90px; }
.vinyl-disc{
  width:100%; height:100%; border-radius:50%;
  background: repeating-radial-gradient(circle, #1a1a21 0px, #1a1a21 2px, #0a0a0d 3px, #0a0a0d 6px);
  border: 2px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center;
  animation: spin 2.2s linear infinite;
  box-shadow: 0 0 30px rgba(0,229,255,0.25);
}
.vinyl-label{
  width: 28px; height:28px; border-radius:50%;
  background: var(--grad-accent);
}
@keyframes spin{ from{ transform: rotate(0deg);} to{ transform: rotate(360deg);} }

.preloader-eq{ display:flex; gap:6px; align-items:flex-end; height: 30px; }
.preloader-eq span{
  width:5px; background: var(--cyan); border-radius: 3px;
  animation: eqbounce 0.9s ease-in-out infinite;
}
.preloader-eq span:nth-child(1){ animation-delay: 0s; }
.preloader-eq span:nth-child(2){ animation-delay: 0.15s; background: var(--violet); }
.preloader-eq span:nth-child(3){ animation-delay: 0.3s; }
.preloader-eq span:nth-child(4){ animation-delay: 0.45s; background: var(--violet); }
.preloader-eq span:nth-child(5){ animation-delay: 0.6s; }
@keyframes eqbounce{ 0%,100%{ height:6px; } 50%{ height:28px; } }

/* ============================================================
   SCROLL PROGRESS + CURSOR GLOW
   ============================================================ */
#scroll-progress{
  position: fixed; top:0; left:0; height:3px; width:0%;
  background: var(--grad-accent);
  z-index: 9000;
  box-shadow: 0 0 12px rgba(0,229,255,0.6);
  transition: width 0.1s linear;
}

#cursor-glow{
  position: fixed; width: 380px; height: 380px; border-radius:50%;
  pointer-events:none; z-index: 1;
  background: radial-gradient(circle, rgba(0,229,255,0.06), rgba(168,85,247,0.03) 40%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: opacity 0.3s ease;
  opacity:0;
}
@media (hover:hover){ #cursor-glow{ opacity:1; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header{
  position: fixed; top: 18px; left:0; right:0; z-index: 900;
  display:flex; justify-content:center;
  transition: top 0.3s ease;
}
.nav-pill{
  display:flex; align-items:center; gap: 28px;
  background: rgba(15,15,18,0.65);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 100px;
  padding: 10px 14px 10px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  max-width: calc(100% - 32px);
}
.nav-logo{ display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-weight:700; font-size:15px; letter-spacing:0.02em; }
.nav-logo img{ height: 30px; width:30px; object-fit:contain; border-radius:8px; }
.nav-logo-fallback{
  height:30px; width:30px; border-radius:8px; background: var(--grad-accent);
  display:inline-flex; align-items:center; justify-content:center; color:#05070a; font-weight:800; font-size:12px;
}
.nav-links{ display:flex; gap: 4px; }
.nav-link{
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em;
  padding: 9px 14px; border-radius: 100px; color: var(--muted);
  transition: color 0.3s ease, background 0.3s ease;
}
.nav-link:hover, .nav-link.active{ color: var(--text); background: rgba(255,255,255,0.06); }
.nav-link.active{ color: var(--cyan); }

/* Signature: live frequency meter in nav */
.nav-eq{ display:flex; align-items:center; gap:3px; height: 18px; margin-left: 4px; }
.nav-eq span{ width:3px; background: var(--cyan); border-radius:2px; opacity:0.85; animation: eqbounce-small 1.1s ease-in-out infinite; }
.nav-eq span:nth-child(1){ animation-delay:0s; }
.nav-eq span:nth-child(2){ animation-delay:0.2s; background:var(--violet); }
.nav-eq span:nth-child(3){ animation-delay:0.4s; }
.nav-eq span:nth-child(4){ animation-delay:0.6s; background:var(--violet); }
@keyframes eqbounce-small{ 0%,100%{ height:4px; } 50%{ height:16px; } }

#nav-toggle{ display:none; flex-direction:column; gap:5px; padding: 8px; }
#nav-toggle span{ width:20px; height:2px; background: var(--text); border-radius:2px; }

#mobile-menu{
  position: fixed; top: calc(var(--nav-height) + 10px); right: 16px; z-index: 895;
  background: rgba(15,15,18,0.92); border:1px solid var(--border); border-radius: var(--radius-md);
  backdrop-filter: blur(20px); padding: 14px; display:flex; flex-direction:column; gap:4px;
  transform: translateY(-16px) scale(0.96); opacity:0; pointer-events:none; transition: all 0.3s ease;
}
#mobile-menu.open{ transform: translateY(0) scale(1); opacity:1; pointer-events:auto; }
.mobile-link{ font-family: var(--font-mono); font-size:13px; padding: 12px 18px; border-radius: var(--radius-sm); color: var(--muted); }
.mobile-link:hover{ color: var(--text); background: rgba(255,255,255,0.05); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  min-height: 100vh;
  display:flex; align-items:center; justify-content:center;
  position: relative;
  overflow:hidden;
  padding-top: var(--nav-height);
}
#hero-canvas{ position:absolute; inset:0; z-index:0; opacity:0.7; }

.hero-rays{
  position:absolute; inset:-20%; z-index:0;
  background:
    conic-gradient(from 200deg at 30% 20%, transparent 0deg, rgba(0,229,255,0.05) 40deg, transparent 90deg),
    conic-gradient(from 60deg at 80% 70%, transparent 0deg, rgba(168,85,247,0.06) 50deg, transparent 100deg);
  animation: raysRotate 30s linear infinite;
  pointer-events:none;
}
@keyframes raysRotate{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }

.hero-content{ position:relative; z-index:2; text-align:center; padding: 0 24px; }
.hero-title{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 11vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-shadow: 0 0 60px rgba(0,229,255,0.15);
}
.hero-slogan{
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--muted);
  margin-top: 18px;
  letter-spacing: 0.06em;
}

/* Hero signature frequency echo */
.hero-freq{
  display:flex; gap: 4px; justify-content:center; align-items:flex-end;
  height: 40px; margin: 34px auto 0;
}
.hero-freq span{
  width:4px; border-radius:3px;
  background: linear-gradient(to top, var(--cyan), var(--violet));
  animation: heroFreqBounce 1.4s ease-in-out infinite;
  opacity: 0.85;
}
.hero-freq span:nth-child(odd){ animation-duration: 1.1s; }
.hero-freq span:nth-child(3n){ animation-duration: 1.6s; }
@keyframes heroFreqBounce{ 0%,100%{ height:4px; } 50%{ height:38px; } }

.hero-cta{ display:flex; gap:18px; justify-content:center; margin-top: 42px; flex-wrap:wrap; }

#scroll-cue{
  position:absolute; bottom: 34px; left:50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--border-strong); border-radius: 20px;
  display:flex; justify-content:center; padding-top:8px; z-index:2;
}
.scroll-cue-line{ width:3px; height:8px; background: var(--cyan); border-radius:2px; animation: scrollCue 1.6s ease-in-out infinite; }
@keyframes scrollCue{ 0%{ transform: translateY(0); opacity:1;} 70%{ transform: translateY(12px); opacity:0;} 100%{opacity:0;} }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items:center; }
.about-image-frame{ position:relative; border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 4/5; border:1px solid var(--border); }
.about-image{ width:100%; height:100%; object-fit:cover; }
.img-fallback{ background: linear-gradient(160deg, var(--bg-elevated), var(--bg-elevated-2)); display:flex; align-items:center; justify-content:center; }
.img-fallback::after{ content:"saviomusics"; font-family: var(--font-display); color: var(--muted); font-size:14px; letter-spacing:0.1em; }
.about-glow{ position:absolute; inset:0; box-shadow: inset 0 0 80px rgba(0,229,255,0.08); pointer-events:none; }

.about-desc{ color: var(--muted); font-size:16px; margin-bottom: 24px; max-width: 54ch; }

.genre-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:36px; }
.genre-tag{
  font-family: var(--font-mono); font-size:11px; letter-spacing:0.05em; text-transform:uppercase;
  padding: 8px 16px; border-radius:100px; border:1px solid var(--border-strong);
  color: var(--text); background: rgba(255,255,255,0.03);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.genre-tag:hover{ border-color: var(--cyan); box-shadow: 0 0 16px rgba(0,229,255,0.25); }

.stats-row{ display:flex; gap: 40px; margin-bottom: 36px; flex-wrap:wrap; }
.stat-item{ display:flex; flex-direction:column; }
.stat-number{ font-family: var(--font-display); font-size: 40px; font-weight:800; color:var(--cyan); }
.stat-label{ font-family: var(--font-mono); font-size:11px; color: var(--muted); letter-spacing:0.04em; text-transform:uppercase; margin-top:4px; }

.about-highlights-title{ font-family: var(--font-display); font-size:16px; margin-bottom:14px; }
.highlights-list li{ position:relative; padding-left:22px; color: var(--muted); margin-bottom:10px; font-size:14.5px; }
.highlights-list li::before{ content:""; position:absolute; left:0; top:8px; width:8px; height:2px; background: var(--cyan); }

/* ============================================================
   MUSIC
   ============================================================ */
.featured-mix{
  display:flex; justify-content:space-between; align-items:center; gap: 24px;
  padding: 28px 32px; margin-bottom: 48px; flex-wrap:wrap;
}
.featured-mix h3{ font-family: var(--font-display); font-size:22px; margin: 6px 0 4px; }
.featured-mix p{ color: var(--muted); font-size:14px; }
.mini-eq{ display:flex; gap:4px; align-items:flex-end; height:30px; }
.mini-eq span{ width:4px; background: var(--grad-accent); border-radius:2px; animation: eqbounce 1s ease-in-out infinite; }
.mini-eq span:nth-child(2){ animation-delay:0.15s; }
.mini-eq span:nth-child(3){ animation-delay:0.3s; }
.mini-eq span:nth-child(4){ animation-delay:0.45s; }
.mini-eq span:nth-child(5){ animation-delay:0.6s; }

.music-embeds{ display:grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.embed-card{ padding: 24px; }
.embed-title{ font-family: var(--font-mono); font-size:13px; text-transform:uppercase; letter-spacing:0.08em; color: var(--muted); margin-bottom: 16px; }
.embed-wrapper{ border-radius: var(--radius-sm); overflow:hidden; }
.upcoming-mixes-note{ text-align:center; margin-top: 28px; color: var(--muted); font-size:13.5px; font-family: var(--font-mono); }

/* ============================================================
   EVENTS
   ============================================================ */
.countdown-block{ text-align:center; padding: 40px; margin-bottom: 56px; }
.countdown-timer{ display:flex; justify-content:center; gap: 22px; margin: 18px 0 14px; flex-wrap:wrap; }
.countdown-unit{ display:flex; flex-direction:column; align-items:center; min-width: 64px; }
.countdown-unit span{ font-family: var(--font-display); font-size: 38px; font-weight:800; color: var(--text); text-shadow: 0 0 20px rgba(0,229,255,0.25); }
.countdown-unit label{ font-family: var(--font-mono); font-size:10px; color: var(--muted); text-transform:uppercase; letter-spacing:0.08em; margin-top:4px; }
.countdown-event-name{ font-family: var(--font-mono); color: var(--cyan); font-size:13px; letter-spacing:0.04em; }

.event-tabs{ display:flex; justify-content:center; gap:10px; margin-bottom: 36px; }
.event-tab{
  font-family: var(--font-mono); font-size:12px; letter-spacing:0.06em; text-transform:uppercase;
  padding: 10px 22px; border-radius:100px; border:1px solid var(--border); color: var(--muted);
  transition: all 0.3s ease;
}
.event-tab.active{ color:#05070a; background: var(--grad-accent); border-color:transparent; }

.events-list{ display:flex; flex-direction:column; gap:16px; margin-bottom: 56px; }
.event-card{
  display:flex; align-items:center; justify-content:space-between; gap: 20px; flex-wrap:wrap;
  padding: 22px 28px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03); border:1px solid var(--border);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.event-card:hover{ transform: translateY(-4px); border-color: rgba(0,229,255,0.3); box-shadow: 0 10px 30px rgba(0,229,255,0.08); }
.event-card.is-past{ opacity: 0.6; }
.event-date-block{ display:flex; flex-direction:column; align-items:center; min-width:64px; font-family: var(--font-mono); }
.event-date-day{ font-size: 24px; font-weight:700; color: var(--cyan); }
.event-date-month{ font-size:11px; text-transform:uppercase; color: var(--muted); }
.event-info{ flex:1; min-width: 180px; }
.event-club{ font-family: var(--font-display); font-size:17px; font-weight:600; }
.event-location{ color: var(--muted); font-size: 13.5px; margin-top:2px; }
.event-time{ font-family: var(--font-mono); font-size:12px; color: var(--muted); }
.event-link{
  font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:0.06em;
  padding: 10px 18px; border-radius:100px; border:1px solid var(--border-strong); white-space:nowrap;
  transition: all 0.3s ease;
}
.event-link:hover{ border-color: var(--cyan); box-shadow: 0 0 16px rgba(0,229,255,0.25); }
.events-empty{ text-align:center; color: var(--muted); font-family: var(--font-mono); font-size:13px; padding: 30px; }

.map-wrapper{ padding: 24px; }
#event-map{ height: 380px; border-radius: var(--radius-sm); margin-top: 14px; filter: saturate(0.4) brightness(0.85); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item{
  position:relative; border-radius: var(--radius-sm); overflow:hidden; aspect-ratio:1; cursor:pointer;
  border: 1px solid var(--border);
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item::after{
  content:"+"; position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  font-size: 32px; color: var(--cyan); background: rgba(10,10,13,0.55); opacity:0; transition: opacity 0.35s ease;
}
.gallery-item:hover::after{ opacity:1; }
.gallery-item.img-fallback{ background: linear-gradient(160deg, var(--bg-elevated), var(--bg-elevated-2)); display:flex; align-items:center; justify-content:center; }
.gallery-item.img-fallback::before{ content: attr(data-label); font-family: var(--font-mono); font-size:11px; color: var(--muted); }

/* Lightbox */
#lightbox{
  position: fixed; inset:0; z-index: 9500; background: rgba(5,5,7,0.92); backdrop-filter: blur(6px);
  display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition: opacity 0.35s ease;
}
#lightbox.open{ opacity:1; pointer-events:auto; }
#lightbox-img{ max-width: 88vw; max-height: 84vh; border-radius: var(--radius-sm); box-shadow: 0 0 60px rgba(0,0,0,0.6); }
#lightbox-close{ position:absolute; top: 28px; right: 36px; font-size: 36px; color: var(--text); }

/* ============================================================
   LOGO STRIP
   ============================================================ */
.logo-strip-section{ padding: 60px 0; }
.logo-strip{ display:flex; flex-wrap:wrap; justify-content:center; gap: 44px; align-items:center; opacity:0.6; }
.logo-strip-item{ font-family: var(--font-display); font-size:16px; letter-spacing:0.05em; color: var(--muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card{ padding: 28px; }
.testimonial-quote{ color: var(--text); font-size:14.5px; margin-bottom: 18px; line-height:1.7; }
.testimonial-author{ font-family: var(--font-mono); font-size:12px; color: var(--cyan); }
.testimonial-role{ font-family: var(--font-mono); font-size:11px; color: var(--muted); }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-sub{ text-align:center; color: var(--muted); max-width: 50ch; margin: 0 auto 44px; }
.booking-form{ max-width: 760px; margin: 0 auto; padding: 40px; display:flex; flex-direction:column; gap: 20px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group{ display:flex; flex-direction:column; gap:8px; }
.form-group.full{ grid-column: 1/-1; }
label{ font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:0.06em; color: var(--muted); }
input, select, textarea{
  background: rgba(255,255,255,0.04); border:1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 16px; color: var(--text); font-size:14.5px; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus, select:focus, textarea:focus{ outline:none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,229,255,0.12); }
textarea{ resize: vertical; }
select{ appearance:none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%238b8b96' stroke-width='1.5' fill='none'/></svg>"); background-repeat:no-repeat; background-position: right 16px center; }

.btn-submit{ margin-top: 8px; position:relative; }
.btn-submit-loader{
  display:none; width:16px; height:16px; border:2px solid rgba(5,7,10,0.3); border-top-color:#05070a; border-radius:50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit.loading .btn-submit-text{ display:none; }
.btn-submit.loading .btn-submit-loader{ display:inline-block; }

.form-feedback{ font-family: var(--font-mono); font-size:13px; text-align:center; min-height:20px; }
.form-feedback.success{ color: #4ade80; }
.form-feedback.error{ color: #f87171; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{ max-width: 760px; margin: 0 auto; display:flex; flex-direction:column; gap: 12px; }
.faq-item{ border:1px solid var(--border); border-radius: var(--radius-sm); overflow:hidden; background: rgba(255,255,255,0.02); }
.faq-question{ width:100%; text-align:left; padding: 20px 24px; display:flex; justify-content:space-between; align-items:center; font-family: var(--font-display); font-size:14.5px; }
.faq-question::after{ content:"+"; color: var(--cyan); font-size:20px; transition: transform 0.3s ease; }
.faq-item.open .faq-question::after{ transform: rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px; color: var(--muted); font-size:14px; }
.faq-item.open .faq-answer{ max-height: 240px; padding: 0 24px 20px; }

/* ============================================================
   PRESS KIT
   ============================================================ */
.press-kit-block{ display:flex; justify-content:space-between; align-items:center; padding: 36px 40px; flex-wrap:wrap; gap:20px; }
.press-kit-block h3{ font-family: var(--font-display); font-size:20px; margin: 6px 0 4px; }
.press-kit-block p{ color: var(--muted); font-size:14px; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram-grid{ display:grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.instagram-item{ aspect-ratio:1; border-radius: var(--radius-sm); overflow:hidden; border:1px solid var(--border); }
.instagram-item img{ width:100%; height:100%; object-fit:cover; }
.instagram-item.img-fallback{ background: linear-gradient(160deg, var(--bg-elevated), var(--bg-elevated-2)); display:flex; align-items:center; justify-content:center; }
.instagram-item.img-fallback::after{ content:"IG"; font-family: var(--font-mono); font-size:11px; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer{ padding: 60px 32px 40px; border-top: 1px solid var(--border); }
.footer-inner{ max-width: var(--max-width); margin:0 auto; display:flex; flex-direction:column; align-items:center; gap: 20px; text-align:center; }
.footer-logo{ display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-weight:700; }
.footer-logo img{ height:26px; width:26px; object-fit:contain; border-radius:6px; }
.footer-social{ display:flex; gap: 16px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; transition: all 0.3s ease; }
.footer-social a:hover{ border-color: var(--cyan); box-shadow: 0 0 16px rgba(0,229,255,0.3); transform: translateY(-3px); }
.footer-social svg{ width:16px; height:16px; }
.footer-copy{ font-family: var(--font-mono); font-size:11.5px; color: var(--muted); }

/* ============================================================
   FLOATING SOCIAL BUTTON
   ============================================================ */
#fab-container{ position: fixed; bottom: 28px; right: 28px; z-index: 850; display:flex; flex-direction:column; align-items:center; gap:12px; }
#fab-main{
  width: 58px; height:58px; border-radius:50%; background: var(--grad-accent); color:#05070a;
  display:flex; align-items:center; justify-content:center; box-shadow: 0 0 24px rgba(0,229,255,0.4);
  transition: transform 0.4s ease;
}
#fab-main svg{ width:22px; height:22px; transition: transform 0.4s ease; }
#fab-main.open svg{ transform: rotate(45deg); }
#fab-menu{ display:flex; flex-direction:column; gap: 12px; align-items:center; }
.fab-item{
  width: 46px; height:46px; border-radius:50%; background: rgba(20,20,24,0.9); border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform: translateY(14px) scale(0.7); pointer-events:none;
  transition: all 0.35s cubic-bezier(.34,1.56,.64,1);
}
.fab-item svg{ width:18px; height:18px; }
#fab-menu.open .fab-item{ opacity:1; transform: translateY(0) scale(1); pointer-events:auto; }
.fab-item:hover{ border-color: var(--cyan); box-shadow: 0 0 16px rgba(0,229,255,0.3); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top{
  position: fixed; bottom: 28px; left: 28px; width:48px; height:48px; border-radius:50%;
  background: rgba(20,20,24,0.85); border:1px solid var(--border-strong); z-index: 850;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform: translateY(12px); pointer-events:none; transition: all 0.35s ease;
}
#scroll-top.visible{ opacity:1; transform: translateY(0); pointer-events:auto; }
#scroll-top svg{ width:18px; height:18px; }
#scroll-top:hover{ border-color: var(--cyan); box-shadow: 0 0 16px rgba(0,229,255,0.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .nav-eq{ display:none; }
  #nav-toggle{ display:flex; }
  .about-grid{ grid-template-columns: 1fr; }
  .music-embeds{ grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .instagram-grid{ grid-template-columns: repeat(3,1fr); }
  .form-row{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .section{ padding: 80px 0; }
  .hero-cta{ flex-direction:column; align-items:center; }
  .countdown-timer{ gap:12px; }
  .countdown-unit{ min-width:52px; }
  .countdown-unit span{ font-size:28px; }
}
