/* =========================================================
   MP ENTERTAINMENT — editorial dark, 2026 (v2)
   ========================================================= */

:root {
  --bg: #000;
  --bg-2: #0a0a0a;
  --bg-3: #111;
  --ink: #f4f1ea;
  --ink-soft: #d8d4cb;
  --ink-dim: #9c9890;
  --ink-mute: #5e5b54;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.16);
  --line-3: rgba(255,255,255,.28);
  --neon: #c8e9ff;
  --neon-soft: rgba(200,233,255,.25);
  --wa: #25d366;
  --r-lg: 18px;
  --r-md: 12px;
  --r-sm: 8px;
  --pad: clamp(20px, 4vw, 56px);
  --container: 1280px;
  --t-fast: 240ms cubic-bezier(.2,.8,.2,1);
  --t-med:  520ms cubic-bezier(.2,.8,.2,1);
  --t-slow: 900ms cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-loading { overflow: hidden; }
body.popup-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* =========================================================
   NEON IMAGE TREATMENT
   ----- The SVG filter (#neonGlow) converts JPG luminance
   ----- to alpha — dark JPG areas become FULLY transparent
   ----- (not "almost black"), so the rectangular boundary
   ----- vanishes. The filter then layers gaussian blurs to
   ----- create a real glow that follows ONLY the letters.
   ========================================================= */
.neon-img {
  position: relative;
  isolation: isolate;
  background: transparent;
}
.neon-img img {
  width: 100%; height: auto; display: block;
  background: transparent;
  filter: url(#neonGlow);
  animation: neonImgPulse 3.6s ease-in-out infinite;
  will-change: opacity, transform;
}
.neon-img--soft img { filter: url(#neonGlowSoft); }

@keyframes neonImgPulse {
  0%, 100% { opacity: .9;  transform: scale(1);    }
  35%      { opacity: 1;   transform: scale(1.005);}
  37%      { opacity: .68; }                          /* flicker */
  39%      { opacity: 1;   }
  68%      { opacity: .96; transform: scale(1.002);}
  70%      { opacity: .82; }
  72%      { opacity: 1;   }
}
@media (prefers-reduced-motion: reduce) {
  .neon-img img { animation: none; opacity: 1; transform: none; }
}

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .8s ease, visibility 0s linear .8s;
}
.loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: clamp(160px, 28vw, 260px);
  margin-bottom: 32px;
}
.loader-bar {
  position: absolute; left: 50%; bottom: 18%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.loader-bar span {
  position: absolute; left: -40%; top: 0; height: 100%; width: 40%;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  animation: loaderSweep 1.4s linear infinite;
}
@keyframes loaderSweep { from { left: -40%; } to { left: 100%; } }
.loader-cap {
  position: absolute; bottom: 12%;
  left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: .4em;
  color: var(--ink-mute);
}

/* =========================================================
   TOP NAV — logo as badge (intentional, no JPG-noise issue)
   ========================================================= */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 16px var(--pad);
  transition: background var(--t-fast), border-color var(--t-fast), padding var(--t-fast);
  border-bottom: 1px solid transparent;
}
.topnav.scrolled {
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom-color: var(--line);
  padding-top: 10px; padding-bottom: 10px;
}
.topnav-logo {
  display: flex; align-items: center; justify-content: center;
  width: 76px; height: 76px;
  flex: 0 0 auto;
  transition: width var(--t-fast), height var(--t-fast), transform var(--t-fast);
  /* No background / border / padding — SVG filter on the IMG removes JPG black,
     leaves only the letterforms glowing. */
}
.topnav.scrolled .topnav-logo { width: 60px; height: 60px; }
.topnav-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.footer-brand img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.topnav-logo:hover { transform: scale(1.06); }

.topnav-links { display: flex; gap: 28px; }
.topnav-links a {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
  position: relative; padding: 6px 2px;
  transition: color var(--t-fast);
}
.topnav-links a:hover { color: var(--ink); }
.topnav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--neon);
  transition: right var(--t-med);
}
.topnav-links a:hover::after { right: 0; }

.topnav-cta {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  padding: 11px 18px; border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.04);
  color: var(--ink);
  transition: all var(--t-fast);
}
.topnav-cta:hover { background: var(--ink); color: #000; border-color: var(--ink); }

.topnav-burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
}
.topnav-burger span {
  width: 22px; height: 1.5px; background: var(--ink);
  transition: transform var(--t-fast);
}
.topnav-burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.topnav-burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 880px) {
  .topnav-logo { width: 56px; height: 56px; }
  .topnav.scrolled .topnav-logo { width: 50px; height: 50px; }
  .topnav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    padding: 10px var(--pad) 28px;
    background: rgba(0,0,0,.94);
    border-bottom: 1px solid var(--line);
  }
  .topnav-links.open { display: flex; }
  .topnav-links a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .topnav-cta { display: none; }
  .topnav-burger { display: flex; }
}

/* =========================================================
   HERO — mixer-mp.jpg as full-screen background
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: clamp(140px, 20vh, 200px) var(--pad) 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden;
  background: #000;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .85;
  filter: saturate(1.15) contrast(1.05) brightness(.85);
  transform: scale(1.04);
  will-change: transform;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.65) 100%),
    linear-gradient(180deg, rgba(0,0,0,.5) 0%, transparent 30%, transparent 65%, rgba(0,0,0,.9) 100%);
  pointer-events: none;
}
.hero-bg-grain {
  position: absolute; inset: 0; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 760px;
  display: flex; flex-direction: column;
  gap: 26px;
  animation: heroIn 1s var(--t-slow) both;
  animation-delay: .9s;
}
body.is-loading .hero-content { animation-delay: 0s; opacity: 0; }
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.hero-kicker {
  margin: 0;
  font-size: 12px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--neon);
  text-shadow: 0 0 18px rgba(200,233,255,.4);
}
.hero-title {
  margin: 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 124px);
  line-height: .98;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-line-1 { display: block; }
.hero-line-2 {
  display: block;
  font-style: italic;
  background: linear-gradient(180deg, #ffffff, #c8e9ff 80%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  transition: all var(--t-fast);
  border: 1px solid transparent;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--ink); color: #000;
  box-shadow: 0 12px 40px -10px rgba(255,255,255,.25);
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 18px 50px -10px rgba(200,233,255,.4); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line-2); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--line-3); }
.btn-lg { padding: 16px 30px; }

.hero-foot {
  position: absolute; left: var(--pad); right: var(--pad); bottom: 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-mute);
  pointer-events: none;
}
.hero-foot-right { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6ee7a0;
  box-shadow: 0 0 10px rgba(110,231,160,.7);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { opacity: .6; transform: scale(1) } 50% { opacity: 1; transform: scale(1.2) } }

.hero-scroll {
  position: absolute; right: var(--pad); top: 50%;
  transform: translateY(-50%) rotate(180deg);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  writing-mode: vertical-rl;
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--ink-mute);
  pointer-events: none;
}
.hero-scroll em { font-style: normal; transform: rotate(180deg); }
.hero-scroll-line {
  width: 1px; height: 60px; background: rgba(255,255,255,.15);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; left: 0; right: 0; top: -100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--neon));
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -50% } 100% { top: 100% } }

@media (max-width: 700px) {
  .hero-foot { display: none; }
  .hero-scroll { display: none; }
  .hero { padding-top: 110px; padding-bottom: 90px; }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line); }
.cta-strip + .section, .section + .cta-strip { border-top: 0; }

.eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 18px;
}
.h-display {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
}
.h-display em {
  font-style: italic;
  background: linear-gradient(180deg, #fff, #c8e9ff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-head { margin-bottom: 56px; max-width: 760px; }
.sec-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head-center .h-display { margin-left: auto; margin-right: auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   ABOUT — neon image up top, text below, centered stack
   ========================================================= */
.section-about { padding-top: clamp(100px, 14vw, 180px); }
.about-stack {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 24px;
}
.about-neon {
  width: clamp(220px, 32vw, 380px);
  margin-bottom: 12px;
}
.about-stack .eyebrow { margin: 0; }
.about-title { max-width: 16ch; }
.about-body {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  font-weight: 300;
}
.about-stats {
  display: flex; gap: clamp(24px, 4vw, 60px); flex-wrap: wrap; justify-content: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 700px;
}
.about-stat {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 120px;
}
.about-stat .stat-value {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  background: linear-gradient(180deg, #fff, #c8e9ff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-stat .stat-label {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* =========================================================
   GALLERY — bigger, more punch
   ========================================================= */
.section-gallery { padding-top: clamp(60px, 9vw, 120px); }
.gallery-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}
.gallery-item {
  position: relative; overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: var(--r-md);
  transition: transform var(--t-med);
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .8s ease;
  filter: saturate(1.05) contrast(1.04) brightness(.95);
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.2) contrast(1.06) brightness(1.05); }
.gallery-item .gi-meta {
  position: absolute; left: 22px; bottom: 18px; right: 22px;
  display: flex; justify-content: space-between; align-items: center;
  color: #fff; font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: all var(--t-med);
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  font-weight: 500;
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.8) 100%);
  opacity: 0; transition: opacity var(--t-med);
}
.gallery-item:hover .gi-meta { opacity: 1; transform: none; }
.gallery-item:hover::after { opacity: 1; }

/* bigger bento layout */
.gallery-grid > :nth-child(1)  { grid-column: span 8; aspect-ratio: 16/10; }
.gallery-grid > :nth-child(2)  { grid-column: span 4; aspect-ratio: 4/5; }
.gallery-grid > :nth-child(3)  { grid-column: span 4; aspect-ratio: 4/5; }
.gallery-grid > :nth-child(4)  { grid-column: span 8; aspect-ratio: 16/10; }
.gallery-grid > :nth-child(5)  { grid-column: span 6; aspect-ratio: 16/11; }
.gallery-grid > :nth-child(6)  { grid-column: span 6; aspect-ratio: 16/11; }
.gallery-grid > :nth-child(7)  { grid-column: span 4; }
.gallery-grid > :nth-child(8)  { grid-column: span 4; }
.gallery-grid > :nth-child(9)  { grid-column: span 4; }
.gallery-grid > :nth-child(10) { grid-column: span 12; aspect-ratio: 21/8; }
.gallery-grid > :nth-child(n+11) { grid-column: span 6; }
@media (max-width: 880px) {
  .gallery-grid > * { grid-column: span 12 !important; aspect-ratio: 4/3 !important; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.section-testimonials {
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(200,233,255,.05), transparent 70%),
    transparent;
}
.testi-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  position: relative;
  padding: 36px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.testi-card:hover { transform: translateY(-3px); border-color: var(--line-2); background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); }
.testi-mark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 64px; line-height: 1;
  color: var(--neon); opacity: .35;
  margin-bottom: -8px;
}
.testi-quote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px; line-height: 1.35; font-style: italic;
  color: var(--ink); margin: 8px 0 22px;
}
.testi-author { font-size: 14px; color: var(--ink); font-weight: 600; }
.testi-event { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); margin-top: 2px; }

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  padding: clamp(48px, 8vw, 80px) 0;
  background:
    linear-gradient(180deg, transparent, rgba(200,233,255,.04) 50%, transparent),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-strip h3 {
  margin: 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15; max-width: 22ch;
  color: var(--ink);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  position: relative;
  padding: 28px 26px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: rgba(255,255,255,.02);
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  display: flex; flex-direction: column; gap: 10px;
}
.contact-card-link { cursor: pointer; }
.contact-card:hover { border-color: var(--line-2); background: rgba(255,255,255,.045); }
.contact-card-link:hover { transform: translateY(-2px); }
.contact-label {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-value {
  font-size: 18px; color: var(--ink); font-weight: 500;
  font-family: 'Instrument Serif', Georgia, serif; font-style: italic; letter-spacing: -.005em;
}
.contact-card-link .contact-arrow {
  position: absolute; top: 24px; right: 24px;
  color: var(--ink-mute); font-size: 18px; transition: transform var(--t-fast), color var(--t-fast);
}
.contact-card-link:hover .contact-arrow { color: var(--neon); transform: translate(4px, -4px); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-brand { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.footer-meta { color: var(--ink-mute); font-size: 13px; letter-spacing: .05em; }
.footer-meta a { color: var(--ink-dim); border-bottom: 1px dotted var(--line-2); padding-bottom: 1px; }
.footer-meta a:hover { color: var(--neon); }

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 150;
  display: inline-flex; align-items: center; gap: 0;
  background: var(--wa); color: #fff;
  padding: 14px;
  border-radius: 999px;
  box-shadow: 0 14px 40px -8px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5);
  transition: padding var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  overflow: hidden;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 14px 40px -8px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 14px 40px -8px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 14px 40px -8px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-fab:hover { padding-right: 22px; transform: translateY(-2px); }
.wa-fab svg { display: block; }
.wa-fab-label {
  display: inline-block;
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  transition: max-width var(--t-med), margin-left var(--t-fast);
}
.wa-fab:hover .wa-fab-label { max-width: 130px; margin-left: 10px; }
@media (max-width: 600px) {
  .wa-fab { bottom: 18px; right: 18px; padding: 12px; }
}

/* =========================================================
   POPUP
   ========================================================= */
.popup {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.popup.show { display: flex; animation: popupFade .35s ease both; }
@keyframes popupFade { from { opacity: 0 } to { opacity: 1 } }
.popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.popup-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
  background: linear-gradient(180deg, #0c0c0c, #050505);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 38px 32px 30px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8), 0 0 80px -20px rgba(200,233,255,.18);
  animation: popupRise .5s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes popupRise { from { opacity: 0; transform: translateY(20px) scale(.98) } to { opacity: 1; transform: none } }
.popup-close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 24px; line-height: 1; color: var(--ink-dim);
  display: grid; place-items: center;
  transition: all var(--t-fast);
}
.popup-close:hover { background: rgba(255,255,255,.06); color: var(--ink); }
.popup-eyebrow {
  display: inline-block;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--neon); padding: 6px 10px;
  border: 1px solid rgba(200,233,255,.25); border-radius: 999px; margin-bottom: 16px;
}
.popup-card h3 {
  margin: 0 0 8px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 30px; line-height: 1.15; letter-spacing: -.01em;
  color: var(--ink);
}
.popup-card > p { margin: 0 0 20px; color: var(--ink-soft); font-size: 14.5px; }

.lead-form { display: flex; flex-direction: column; gap: 12px; }
.lead-form label { display: flex; flex-direction: column; gap: 6px; }
.lead-form label > span { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); }
.lead-form input, .lead-form textarea {
  font: inherit; color: var(--ink);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  width: 100%; resize: vertical;
}
.lead-form input:focus, .lead-form textarea:focus {
  border-color: var(--neon);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(200,233,255,.12);
}
.lead-form .btn { margin-top: 6px; }
.lead-feedback { margin: 6px 0 0; font-size: 13px; min-height: 18px; color: var(--ink-dim); text-align: center; }
.lead-feedback.ok  { color: #6ee7a0; }
.lead-feedback.err { color: #ff8a8a; }

@media (max-width: 600px) {
  .popup-card { padding: 30px 22px 24px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}
