/* ============================================================
   © 2026 Avalon Entertainments (Avalon Productions Pvt Ltd).
   All rights reserved. "Where Music Meets Vision."
   Proprietary stylesheet — unauthorized copying or reuse is prohibited.
   Contact: +91 9633221069 · https://wa.me/message/7A5LVBRN73CMO1
   ------------------------------------------------------------
   AVALON ENTERTAINMENTS — Cinematic Scrollytelling
   ============================================================ */

:root {
  --bg-primary:    #050508;
  --bg-secondary:  #0A0A12;
  --bg-card:       #0F0F18;
  --blue-electric: #2463EB;
  --blue-glow:     #3B82F6;
  --blue-dim:      #1E3A5F;
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-dim:      #8B6E2A;
  --text-primary:  #F0EBE0;
  --text-soft:     rgba(240,235,224,0.7);
  --text-dim:      #6E6A7A;
  --border:        rgba(36,99,235,0.12);
  --border-soft:   rgba(240,235,224,0.1);
  --serif:         'Playfair Display', 'Georgia', serif;
  --sans:          'Syne', 'Inter', system-ui, sans-serif;
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; font-size: 16px; }
html, body {
  width: 100%;
  min-height: 100%;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x: clip does NOT create a new BFC so sticky still works.
     overflow-x: hidden would silently break position:sticky on all children. */
  overflow-x: clip;
}
body.no-scroll { overflow-y: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; color: var(--gold-light); }
::selection { background: var(--blue-electric); color: #fff; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ============ GRAIN OVERLAY ============ */
.grain {
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grainShift 7s steps(7) infinite;
}
@keyframes grainShift {
  0%,100%{ transform: translate(0,0); }
  14%    { transform: translate(-1%,1%); }
  28%    { transform: translate(2%,-1%); }
  42%    { transform: translate(-2%,2%); }
  57%    { transform: translate(1%,-2%); }
  71%    { transform: translate(-1%,1%); }
  85%    { transform: translate(2%,0); }
}
.vignette {
  position: fixed; inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.65) 100%);
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: grid;
  place-items: center;
  transition: opacity 1s var(--ease-out), visibility 1s var(--ease-out);
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { width: min(400px, 80vw); text-align: center; }
.preloader-logo {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-out) 0.3s forwards;
}
.preloader-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: brightness(0.9);
}
.logo-mark {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
}
.logo-word {
  font-size: 0.72rem;
  letter-spacing: 0.6em;
  color: var(--text-soft);
  padding-left: 0.6em;
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.48em;
  color: var(--text-dim);
  padding-left: 0.48em;
}
.preloader-bar {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
  overflow: visible;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}
.preloader-bar-fill {
  position: absolute; inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-electric), var(--gold-light));
  box-shadow: 0 0 20px rgba(36,99,235,0.6), 0 0 40px rgba(201,168,76,0.2);
  transition: width 0.5s var(--ease-out);
}
.preloader-meta {
  display: flex; justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.64rem;
  letter-spacing: 0.4em;
  color: var(--text-dim);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.4s forwards;
}
.preloader-pct::after { content: '%'; margin-left: 2px; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ WHATSAPP BUTTON ============ */
#whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), opacity 0.7s var(--ease-out);
  opacity: 0;
  pointer-events: none;
}
#whatsapp-btn.wa-visible {
  opacity: 1;
  pointer-events: auto;
}
#whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
#whatsapp-btn svg { width: 28px; height: 28px; }

/* ============ NAVBAR ============ */
#navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translate(-50%, -150%);
  z-index: 7000;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0.65rem 0.8rem 0.65rem 1.4rem;
  background: rgba(10,10,18,0.7);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  opacity: 0;
  transition:
    transform 0.8s var(--ease-out),
    opacity   0.8s var(--ease-out),
    background 0.5s ease,
    border-color 0.5s ease;
  white-space: nowrap;
}
#navbar.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
#navbar.scrolled {
  background: rgba(5,5,8,0.85);
  border-color: rgba(255,255,255,0.1);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-fallback {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-primary);
}
.brand-word {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--text-soft);
  font-family: var(--sans);
}
.nav-links {
  display: flex;
  gap: 1.4rem;
}
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--text-soft);
  text-transform: uppercase;
  font-family: var(--sans);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-family: var(--sans);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav-cta:hover {
  background: var(--text-primary);
  color: #000;
  border-color: var(--text-primary);
}

/* ============ HERO ============ */
#hero {
  position: relative;
  height: 500vh;
  width: 100%;
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}
/* Subtle radial shimmer over the canvas — makes earth glow before scroll */
.hero-sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 55% at 50% 52%, rgba(36,99,235,0.07), transparent 70%);
  animation: shimmerPulse 5s ease-in-out infinite;
}
@keyframes shimmerPulse {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}
#sequenceCanvas {
  position: absolute;
  top: 0;
  left: 0;
  /* 100vw/100vh ensures full bleed with no black bars regardless of parent size */
  width: 100vw !important;
  height: 100vh !important;
  display: block !important;
  z-index: 0;
  max-width: none !important;
  max-height: none !important;
}
.hero-haze {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(36,99,235,0.12), transparent 55%),
    radial-gradient(ellipse at 70% 65%, rgba(201,168,76,0.08), transparent 55%);
  mix-blend-mode: screen;
}
.hero-light {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.5) 0%,
    transparent 25%,
    transparent 70%,
    rgba(0,0,0,0.7) 100%
  );
}
.scene-stack {
  position: absolute; inset: 0;
  z-index: 10;
  pointer-events: none;
}
.scene {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8vw;
  opacity: 0;
  will-change: opacity, transform;
}
.scene-tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.6em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  font-family: var(--sans);
}
.scene-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 9.5vw, 10rem);
  line-height: 1.08;
  color: var(--text-primary);
  text-shadow: 0 0 80px rgba(0,0,0,0.5);
  letter-spacing: -0.01em;
  padding-bottom: 0.12em;
}
.scene-title em { font-style: italic; color: var(--gold-light); }

/* ── Per-scene colour temperature ── */
/* Scene 1: cold/space — pure white */
.scene-1 .scene-title { color: #FFFFFF; }
.scene-1 .scene-title em { color: rgba(255,255,255,0.9); }
.scene-1 .scene-tag { color: rgba(255,255,255,0.5); }
/* Scene 2: warm white — 'sound' stays gold (default em) */
.scene-2 .scene-title { color: rgba(240,235,224,0.95); }
/* Scene 3: gold stage-lights */
.scene-3 .scene-title { color: var(--gold-light); }
.scene-3 .scene-title em { color: var(--gold-light); font-style: italic; }
.scene-3 .scene-tag { color: var(--gold); }
/* Scene 4: gold title + 'alive' electric blue */
.scene-4 .scene-title { color: var(--gold-light); }
.scene-4 .scene-title em { color: var(--blue-glow); text-shadow: 0 0 30px rgba(59,130,246,0.7); }
.scene-4 .scene-tag { color: var(--gold); }

/* ── Scenes 3 & 4 repositioned to corners ── */
.scene-3 {
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 0 6vw 12vh;
}
.scene-3 .scene-title {
  font-size: clamp(2rem, 4.5vw, 5.5rem);
  text-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.scene-4 {
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  padding: 0 6vw 12vh;
}
.scene-4 .scene-title {
  font-size: clamp(2rem, 4.5vw, 5.5rem);
  text-shadow: 0 0 60px rgba(0,0,0,0.8);
}

/* ── title-line clip-path reveal ── */
.scene-title { overflow: visible; }
.title-line {
  display: block;
  /* Negative top/bottom insets keep ascenders & descenders (p, g, y) from
     being clipped by the reveal mask. */
  clip-path: inset(-0.18em 100% -0.24em 0);
}
.scene-live .title-line:nth-child(1) {
  animation: lineReveal 0.85s var(--ease-out) 0s forwards;
}
.scene-live .title-line:nth-child(2) {
  animation: lineReveal 0.85s var(--ease-out) 0.13s forwards;
}
@keyframes lineReveal {
  from { clip-path: inset(-0.18em 100% -0.24em 0); }
  to   { clip-path: inset(-0.18em 0% -0.24em 0); }
}

.scene-line {
  display: block;
  width: 1px;
  height: 72px;
  margin-top: 2.8rem;
  background: linear-gradient(180deg, var(--gold-light), transparent);
  opacity: 0.6;
}
/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  /* Centering via GSAP (xPercent:-50) */
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  will-change: transform, opacity;
}
.scroll-cue span:first-child {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: var(--text-dim);
  font-family: var(--sans);
}
.scroll-cue-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--text-soft), transparent);
  animation: scrollBob 2.2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100%{ transform: scaleY(0.4); transform-origin: top; opacity: 0.3; }
  50%    { transform: scaleY(1);   transform-origin: top; opacity: 1; }
}
/* HUD */
.hud {
  position: absolute;
  top: 1.6rem; left: 1.6rem;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  color: var(--text-dim);
  font-family: var(--sans);
  text-transform: uppercase;
}
.hud-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 8px var(--blue-glow);
  animation: hudPulse 1.8s ease-in-out infinite;
}
.hud-frame {
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid var(--border-soft);
}
@keyframes hudPulse {
  0%,100%{ opacity: 1; }
  50%    { opacity: 0.25; }
}

/* ── Hero intro wordmark (top centre only) ── */
.hero-intro {
  position: absolute;
  top: 2.2rem;
  left: 50%;
  /* Centering handled by GSAP (xPercent:-50) so scroll-scrub scale/opacity
     does not clobber the horizontal centre transform. */
  z-index: 12;
  text-align: center;
  white-space: nowrap;
  will-change: transform, opacity;
}
.hero-wordmark {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  color: rgba(240,235,224,0.75);
  font-family: var(--sans);
  text-transform: uppercase;
}

/* ── Soundwave concentric rings — light gold ── */
.soundwave-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Centering via GSAP (xPercent/yPercent:-50) */
  z-index: 1;
  pointer-events: none;
  will-change: transform, opacity;
}
.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.18);
  transform: translate(-50%, -50%) scale(1);
  animation: ringExpand 3.6s ease-out infinite;
}
.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 1.2s; }
.ring-3 { animation-delay: 2.4s; }
@keyframes ringExpand {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.45; }
  100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}

/* ── Center logo + floating music notes ── */
.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Centering via GSAP (xPercent/yPercent:-50) so scroll-scrub scale/opacity
     animation keeps it centred while shrinking on scroll. */
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform, opacity;
}
.hero-center-logo {
  width: 88px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 0 22px rgba(201,168,76,0.35));
}
/* Floating music notes around the center logo */
.cnote {
  position: absolute;
  font-size: 1rem;
  color: rgba(201,168,76,0.7);
  pointer-events: none;
  text-shadow: 0 0 10px rgba(201,168,76,0.45);
  animation: cnoteFloat var(--dur, 3s) ease-in-out var(--del, 0s) infinite;
  user-select: none;
}
.cnote-1 { top: -42px; left: 50%; margin-left: -6px; --dur: 3.3s; --del: 0s;   }
.cnote-2 { top: 8px;   right: -44px;                 --dur: 2.7s; --del: 0.6s; }
.cnote-3 { bottom: -40px; left: 50%; margin-left: -6px; --dur: 3.5s; --del: 1.2s; }
.cnote-4 { top: 8px;   left: -44px;                  --dur: 3.0s; --del: 0.3s; }
.cnote-5 { top: -26px; right: -34px;                 --dur: 2.9s; --del: 1.7s; }
@keyframes cnoteFloat {
  0%,100% { transform: translate(0, 0);         opacity: 0.55; }
  35%      { transform: translate(6px, -13px);  opacity: 0.95; }
  70%      { transform: translate(-5px, -8px);  opacity: 0.35; }
}

/* ── Hero subtitle — sits below the scroll indicator ── */
.hero-subtitle {
  font-size: 0.55rem;
  letter-spacing: 0.26em;
  color: rgba(240,235,224,0.38);
  font-family: var(--sans);
  text-transform: uppercase;
  margin-top: 0.8rem;
  white-space: nowrap;
}

/* ── Scroll pulse bar (sound wave indicator) ── */
.scroll-pulse-bar {
  width: 48px;
  height: 2px;
  border-radius: 1px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  margin-top: 0.3rem;
}
.pulse-wave {
  height: 100%;
  width: 40%;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--blue-electric), var(--gold-light));
  animation: pulseSlide 1.6s ease-in-out infinite;
}
@keyframes pulseSlide {
  0%   { transform: translateX(-100%); opacity: 0.6; }
  50%  { transform: translateX(150%);  opacity: 1; }
  100% { transform: translateX(-100%); opacity: 0.6; }
}

/* ============ SHARED SECTION PIECES ============ */
section { position: relative; }
.section-head {
  text-align: center;
  padding: 10rem 6vw 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.52em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-family: var(--sans);
  margin-bottom: 1.8rem;
}
.eyebrow-light { color: var(--gold-light); }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 1.0;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.section-lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============ MANIFESTO ============ */
.section-manifesto {
  padding: 16rem 8vw 14rem;
  background: linear-gradient(180deg, #000 0%, var(--bg-secondary) 100%);
}
.manifesto-wrap { max-width: 1300px; margin: 0 auto; }
.manifesto-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: 1.16;
  color: var(--text-primary);
  max-width: 1100px;
  margin: 3rem 0 3rem;
  letter-spacing: -0.01em;
}
.manifesto-sub {
  font-size: 1.1rem;
  color: var(--gold-light);
  font-family: var(--serif);
  font-style: italic;
  margin-bottom: 5rem;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-soft);
  max-width: 900px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-light);
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  color: var(--text-dim);
  text-transform: uppercase;
  font-family: var(--sans);
}

/* ============ SERVICES ============ */
.section-services {
  padding-bottom: 12rem;
  background: var(--bg-secondary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1600px;
  margin: 4rem auto 0;
  border-top: 1px solid var(--border-soft);
  border-left: 1px solid var(--border-soft);
}
.svc-card {
  position: relative;
  padding: 3rem 2.4rem;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background 0.4s ease, border-color 0.35s ease;
  overflow: hidden;
}
.svc-card:hover {
  border-color: rgba(201,168,76,0.4);
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(36,99,235,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.svc-card:hover::before { opacity: 1; }
.svc-num {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-family: var(--sans);
}
.svc-icon {
  width: 36px; height: 36px;
  color: var(--blue-glow);
  margin-bottom: 1.6rem;
}
.svc-icon svg { width: 100%; height: 100%; }
.svc-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.svc-copy {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #B8B4C8;
}

/* ============ ARTISTS ============ */
.section-artists {
  padding-bottom: 12rem;
  background: var(--bg-primary);
}
.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 100%;
  margin: 4rem 0 0;
  background: var(--border-soft);
}
.artist-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}
.artist-media {
  position: absolute; inset: 0;
}
.artist-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: brightness(0.6) saturate(1.1);
  transition: transform 1.4s var(--ease-out), filter 0.8s ease;
}
.artist-card::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.9) 100%),
    radial-gradient(circle at 50% 85%, rgba(36,99,235,0.2), transparent 60%);
  pointer-events: none;
}
.artist-card:hover .artist-media img {
  transform: scale(1.1);
  filter: brightness(0.8) saturate(1.2);
}
.artist-meta {
  position: absolute;
  bottom: 2.2rem; left: 2.2rem;
  z-index: 3;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.artist-num {
  font-size: 0.66rem;
  letter-spacing: 0.5em;
  color: var(--gold-light);
  font-family: var(--sans);
}
.artist-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
}
.artist-genre {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--text-soft);
  text-transform: uppercase;
  font-family: var(--sans);
}

/* ============ EXPERIENCES ============ */
.section-experiences {
  position: relative;
  overflow: hidden;
  background: #000;
}
.exp-parallax {
  position: absolute;
  inset: -15% 0;
  z-index: 0;
}
.exp-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(1.3) contrast(1.1);
  will-change: transform;
}
.exp-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 25%, rgba(0,0,0,0.92) 95%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 25%, transparent 70%, rgba(0,0,0,0.75) 100%);
}
.exp-fog {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 40% at 25% 65%, rgba(36,99,235,0.2), transparent 70%);
  mix-blend-mode: screen;
  animation: fogDrift 20s ease-in-out infinite;
}
.exp-fog-2 {
  background: radial-gradient(ellipse 55% 35% at 75% 35%, rgba(201,168,76,0.12), transparent 70%);
  animation: fogDrift 26s ease-in-out infinite reverse;
}
@keyframes fogDrift {
  0%,100%{ transform: translate(0,0) scale(1); }
  50%    { transform: translate(3%,-4%) scale(1.07); }
}
.exp-laser {
  position: absolute; top: -10%;
  width: 1px; height: 130%;
  background: linear-gradient(180deg, transparent 5%, rgba(36,99,235,0.7) 50%, transparent 95%);
  filter: blur(1.5px);
  animation: laserPulse 8s ease-in-out infinite;
}
.exp-laser-1 { left: 20%; transform: rotate(-9deg); }
.exp-laser-2 { left: 78%; transform: rotate(11deg); animation-delay: 3.5s; }
@keyframes laserPulse {
  0%,100%{ opacity: 0.15; }
  50%    { opacity: 0.85; }
}
.exp-content {
  position: relative; z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 14rem 6vw 6rem;
}
.exp-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 7.8rem);
  line-height: 0.97;
  margin: 2rem 0 3rem;
  letter-spacing: -0.01em;
}
.exp-title .line { display: block; }
.exp-lede {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
}
.exp-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 5rem;
}
.exp-stats > div {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
/* Concert Gallery */
.exp-gallery {
  position: relative; z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 0;
  background: var(--border-soft);
}
.exp-gal-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.exp-gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.1);
  transform: scale(1.03);
  transition: transform 1.2s var(--ease-out), filter 0.6s ease;
}
.exp-gal-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.8) saturate(1.3);
}

/* ============ PACKAGES ============ */
.section-packages {
  padding-bottom: 14rem;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
/* Tab Toggle */
.pkg-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 5rem;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 4px;
}
.pkg-tab {
  flex: 1;
  padding: 0.75rem 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--text-dim);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}
.pkg-tab.active {
  background: var(--blue-electric);
  color: #fff;
  box-shadow: 0 0 20px rgba(36,99,235,0.4);
}
/* Panels */
.pkg-panel { display: block; }
.pkg-panel-hidden { display: none; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 6vw;
}
.pkg-card {
  position: relative;
  padding: 2.8rem 2.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.pkg-card:hover {
  border-color: rgba(36,99,235,0.3);
  box-shadow: 0 0 40px rgba(36,99,235,0.08);
}
.pkg-card-featured {
  border-color: rgba(36,99,235,0.35);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(36,99,235,0.06) 100%);
  box-shadow: 0 0 60px rgba(36,99,235,0.12);
}
.pkg-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: #fff;
  background: var(--blue-electric);
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(36,99,235,0.5);
}
.pkg-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pkg-tier {
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-family: var(--sans);
}
.pkg-price-wrap { text-align: right; }
.pkg-price {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--text-primary);
  line-height: 1.1;
}
.pkg-period {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: var(--text-dim);
  font-family: var(--sans);
  margin-top: 0.2rem;
}
.pkg-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
}
.pkg-for {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.5rem;
  flex: 1;
}
.pkg-features li {
  font-size: 0.85rem;
  color: var(--text-soft);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.pkg-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-glow);
  font-size: 0.75rem;
}
.pkg-btn {
  display: block;
  text-align: center;
  padding: 0.85rem 1.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  margin-top: 0.8rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.pkg-btn:hover {
  background: var(--text-primary);
  color: #000;
  border-color: var(--text-primary);
}
.pkg-btn-featured {
  background: var(--blue-electric);
  border-color: var(--blue-electric);
  color: #fff;
  box-shadow: 0 0 24px rgba(36,99,235,0.35);
}
.pkg-btn-featured:hover {
  background: var(--blue-glow);
  border-color: var(--blue-glow);
  color: #fff;
}
/* Add-ons */
.pkg-addon {
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 2.4rem 2.8rem;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--bg-card);
}
.pkg-addon-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  font-family: var(--sans);
}
.pkg-addon p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}
.addon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.addon-tags span {
  font-size: 0.72rem;
  color: var(--text-dim);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-family: var(--sans);
}
.pkg-note {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 0 2.8rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============ PROCESS ============ */
.section-process {
  padding-bottom: 14rem;
  background: var(--bg-secondary);
}
.process-steps {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: calc(6vw + 2.2rem);
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-soft) 10%, var(--border-soft) 90%, transparent);
}
.process-step {
  display: flex;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--border-soft);
  width: 4.4rem;
  text-align: right;
  padding-top: 0.2rem;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  right: -1.55rem;
  top: 1.2rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  background: var(--bg-secondary);
  transform: translateX(50%);
}
.step-content { flex: 1; padding-top: 0.4rem; }
.step-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}
.step-copy {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 600px;
}

/* ============ CTA ============ */
.section-cta {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 14rem 6vw;
  background: radial-gradient(ellipse at center, #08091a 0%, var(--bg-primary) 75%);
}
.cta-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(36,99,235,0.18), transparent 52%),
    radial-gradient(circle at 50% 60%, rgba(201,168,76,0.1), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.cta-particles {
  position: absolute; inset: 0;
  pointer-events: none;
}
.cta-particles span {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  opacity: 0;
  animation: partFloat 16s linear infinite;
}
.cta-particles span:nth-child(1) { left: 10%; background: var(--gold-light); box-shadow: 0 0 8px var(--gold-light); animation-delay: 0s; }
.cta-particles span:nth-child(2) { left: 23%; background: var(--blue-glow); box-shadow: 0 0 8px var(--blue-glow); animation-delay: 2s; }
.cta-particles span:nth-child(3) { left: 37%; background: var(--gold-light); animation-delay: 4s; }
.cta-particles span:nth-child(4) { left: 52%; background: var(--blue-glow); animation-delay: 6s; }
.cta-particles span:nth-child(5) { left: 65%; background: var(--gold-light); animation-delay: 8s; }
.cta-particles span:nth-child(6) { left: 79%; background: var(--blue-glow); animation-delay: 10s; }
.cta-particles span:nth-child(7) { left: 18%; background: var(--gold-light); animation-delay: 12s; }
.cta-particles span:nth-child(8) { left: 88%; background: var(--blue-glow); animation-delay: 14s; }
@keyframes partFloat {
  0%   { top: 108%; opacity: 0; }
  8%   { opacity: 0.8; }
  92%  { opacity: 0.8; }
  100% { top: -8%; opacity: 0; }
}
.cta-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 1300px;
}
.cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 10vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 2rem 0 2rem;
}
.cta-title .line { display: block; }
.cta-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: #fff;
  background: #25D366;
  border: 1px solid #25D366;
  border-radius: 999px;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  box-shadow: 0 0 28px rgba(37,211,102,0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  transition: background 0.3s, border-color 0.3s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost-outline {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--text-primary);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-ghost-outline:hover {
  background: var(--text-primary);
  color: #000;
  border-color: var(--text-primary);
}

/* ============ FOOTER ============ */
.site-footer {
  background: #000;
  padding: 6rem 6vw 3rem;
  border-top: 1px solid var(--border-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.footer-logo-img {
  width: 80px;
  height: auto;
  border-radius: 6px;
  filter: brightness(0.85);
}
.footer-logo-fallback {
  align-items: center;
  gap: 0.5rem;
}
.footer-brand-word {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-about {
  font-size: 0.88rem;
  line-height: 1.72;
  color: var(--text-soft);
  margin-bottom: 1rem;
  max-width: 340px;
}
.footer-company {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
  font-family: var(--sans);
}
.footer-col-head {
  font-size: 0.62rem;
  letter-spacing: 0.48em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-soft);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--text-primary); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  transition: color 0.3s;
  line-height: 1.5;
}
a.contact-item:hover { color: var(--text-primary); }
.contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-glow); }
.contact-address { cursor: default; }
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  transition: color 0.3s;
}
.social-link:hover { color: var(--gold-light); }
.footer-legal {
  font-size: 0.74rem;
  color: var(--text-dim);
  line-height: 1.8;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-soft);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer-copy {
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-transform: uppercase;
  font-family: var(--sans);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-card:nth-child(4), .svc-card:nth-child(5) { grid-column: span 1; }
  .artist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  #navbar {
    gap: 0.6rem;
    padding: 0.55rem 0.6rem 0.55rem 1rem;
    top: 1rem;
  }
  .nav-links { display: none; }
  .nav-cta { padding: 0.45rem 0.9rem; font-size: 0.6rem; letter-spacing: 0.2em; }

  .hud-label, .hud-frame { display: none; }

  .section-manifesto { padding: 10rem 6vw 8rem; }
  .manifesto-stats { grid-template-columns: repeat(2, 1fr); max-width: 100%; }

  .services-grid { grid-template-columns: 1fr; border-left: none; border-top: none; }
  .svc-card { border-left: none; border-top: 1px solid var(--border-soft); }

  .artist-grid { grid-template-columns: 1fr; gap: 1px; }

  .exp-gallery { grid-template-columns: 1fr; }
  .exp-stats { gap: 2.5rem; }

  .pkg-grid { grid-template-columns: 1fr; padding: 0 4vw; }
  .pkg-tabs { max-width: 340px; }

  .process-steps::before { left: calc(4vw + 2.2rem); }

  .footer-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-about { max-width: 100%; }

  .cta-title { font-size: clamp(3rem, 14vw, 6rem); }
  .cta-actions { flex-direction: column; align-items: center; }

  .exp-content { padding: 10rem 6vw 4rem; }
  .process-step { flex-direction: column; gap: 1rem; }
  .step-num { text-align: left; }
  .step-num::after { display: none; }
  .process-steps::before { display: none; }
}
@media (max-width: 600px) {
  .manifesto-stats { grid-template-columns: repeat(2, 1fr); }
  .pkg-tabs { flex-direction: column; border-radius: 12px; max-width: 100%; margin: 0 4vw 3rem; }
  .pkg-tab { border-radius: 8px; }
  .section-head { padding: 7rem 5vw 3rem; }
}

/* ============ FLOATING MICROPHONE ============ */
#scroll-mic {
  position: fixed;
  top: 0;
  left: 0;
  /* Left-anchored: JS drives x from viewport centre via a sine wave.
     Anchoring to the right edge made it only swing near the right side. */
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.45));
  will-change: transform, opacity;
}
#scroll-mic svg {
  display: block;
}

/* Musical note particles (spawned via JS) */
.mic-note {
  position: fixed;
  z-index: 51;
  font-size: 1.1rem;
  color: var(--gold-light);
  pointer-events: none;
  opacity: 1;
  text-shadow: 0 0 12px rgba(201,168,76,0.6);
  will-change: transform, opacity;
  user-select: none;
}

/* ============ MANIFESTO DEFAULT VISIBLE ============ */
/* First section after hero transitions in directly — no JS reveal needed */
.section-manifesto .manifesto-title,
.section-manifesto .manifesto-sub,
.section-manifesto .eyebrow,
.section-manifesto .manifesto-stats {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .grain { animation: none; }
  .exp-fog, .exp-laser, .cta-particles span { display: none; }
}

/* ============================================================
   CONTENT PROTECTION (Layer 2)
   ============================================================ */
/* Disable text selection site-wide */
body,
h1, h2, h3, h4, h5, h6,
p, span, a, li, em, strong, div, figure, figcaption {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Inputs/textareas (if ever added) stay selectable for usability */
input, textarea { -webkit-user-select: text; user-select: text; }

/* Images: no dragging, no pointer capture.
   Parent-hover effects still work because the parent element keeps
   receiving pointer events. */
img {
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

/* DevTools-detected blackout + blur overlay */
#secure-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(240,235,224,0.55);
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}
#secure-overlay.active { display: flex; }
body.secure-blur > *:not(#secure-overlay) {
  filter: blur(20px) !important;
  pointer-events: none !important;
}
