/* ============================================================
   413 ENTERTAINMENT — DESIGN SYSTEM
   Theme: Neon club lighting / DJ set energy, high contrast,
   bold and clean. Built for premium wedding + event feel.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800;900&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root{
  /* --- Color tokens --- */
  --void:        #0a0a12;   /* base background */
  --void-2:      #120e1f;   /* secondary background, panels */
  --panel:       #17132a;   /* card surface */
  --panel-line:  #2a2340;   /* hairline borders on dark */
  --magenta:     #ff2e9a;   /* primary neon accent */
  --magenta-dim: #ff2e9a33;
  --cyan:        #00e5ff;   /* secondary neon accent */
  --cyan-dim:    #00e5ff33;
  --violet:      #8b5cf6;   /* tertiary accent / gradients */
  --gold:        #ffc857;   /* warm CTA accent */
  --gold-dim:    #ffc85733;
  --white:       #f6f4fb;   /* primary text on dark */
  --muted:       #a89fc4;   /* secondary text on dark */
  --muted-2:     #6f6690;   /* tertiary text / captions */

  /* light-context tokens (used sparingly, e.g. print / high-contrast blocks) */
  --ink:         #100c1c;

  /* --- Type --- */
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* --- Radius / shadow / spacing rhythm --- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-glow-magenta: 0 0 40px -8px rgba(255,46,154,.55);
  --shadow-glow-cyan: 0 0 40px -8px rgba(0,229,255,.5);
  --shadow-soft: 0 20px 60px -20px rgba(0,0,0,.6);

  --maxw: 1240px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body{ margin:0; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font:inherit; cursor:pointer; }
input, textarea, select{ font:inherit; }

body{
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background: soft radial washes, like stage haze catching light */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60vw 60vw at 85% -10%, rgba(255,46,154,.14), transparent 60%),
    radial-gradient(50vw 50vw at -10% 20%, rgba(0,229,255,.10), transparent 60%),
    radial-gradient(70vw 70vw at 50% 120%, rgba(139,92,246,.12), transparent 60%),
    var(--void);
}
/* fine grain / noise-free scanline texture for club-floor feel */
body::after{
  content:"";
  position: fixed;
  inset:0;
  z-index: -1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity:.4;
}

::selection{ background: var(--magenta); color: var(--void); }

:focus-visible{
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   TYPE SCALE
   ============================================================ */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.eyebrow::before{
  content:"";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 10px 2px var(--magenta);
  flex: none;
}

h1, .h1{
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.01em;
  font-size: clamp(2.6rem, 6vw, 5rem);
}
h2, .h2{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  font-size: clamp(2rem, 4vw, 3rem);
}
h3, .h3{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}
.lede{
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 60ch;
}
.text-gradient{
  background: linear-gradient(92deg, var(--magenta) 0%, var(--violet) 45%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(95deg, var(--magenta), var(--violet));
  color: var(--white);
  box-shadow: var(--shadow-glow-magenta);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 0 55px -6px rgba(255,46,154,.75); }
.btn-ghost{
  background: transparent;
  border-color: var(--panel-line);
  color: var(--white);
}
.btn-ghost:hover{ border-color: var(--cyan); color: var(--cyan); }
.btn-gold{
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 40px -10px rgba(255,200,87,.6);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 0 55px -6px rgba(255,200,87,.8); }
.btn-block{ width:100%; justify-content:center; }

/* ============================================================
   NAV
   ============================================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,18,.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--panel-line);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.01em;
}
.brand img{
  height: 50px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(255,46,154,.35));
  transition: filter .2s ease, transform .2s ease;
}
.brand:hover img{
  filter: drop-shadow(0 0 20px rgba(0,229,255,.55));
  transform: translateY(-1px);
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a{
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover{ color: var(--white); background: var(--panel); }
.nav-links a.active{ color: var(--void); background: var(--white); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-phone{
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--muted);
  transition: color .15s ease;
}
.nav-phone:hover{ color: var(--cyan); }
.nav-phone strong{ color: var(--white); }

.menu-toggle{
  display:none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  align-items:center; justify-content:center;
  color: var(--white);
}
.mobile-panel{
  display:none;
  position: fixed;
  inset: 78px 0 0 0;
  background: var(--void);
  z-index: 99;
  padding: 20px 28px 40px;
  overflow-y:auto;
}
.mobile-panel.open{ display:block; }
.mobile-panel a{
  display:block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid var(--panel-line);
}
.mobile-panel .btn{ margin-top: 24px; }

@media (max-width: 900px){
  .nav-links{ display:none; }
  .nav-phone{ display:none; }
  .menu-toggle{ display:flex; }
}

/* ============================================================
   MARQUEE TICKER — like an LED sign / mixer readout
   ============================================================ */
.ticker{
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
  background: var(--void-2);
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
}
.ticker-track{
  display: inline-flex;
  gap: 40px;
  animation: ticker 32s linear infinite;
}
.ticker span{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: inline-flex;
  align-items:center;
  gap: 40px;
}
.ticker span b{ color: var(--cyan); font-weight: 500; }
@keyframes ticker{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ============================================================
   EQUALIZER — signature animated element
   ============================================================ */
.eq{
  display:flex;
  align-items:flex-end;
  gap: 5px;
  height: 46px;
}
.eq i{
  display:block;
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(to top, var(--magenta), var(--cyan));
  animation: eq-bounce 1.1s ease-in-out infinite;
}
.eq i:nth-child(1){ height: 40%; animation-delay: -0.9s; }
.eq i:nth-child(2){ height: 70%; animation-delay: -0.4s; }
.eq i:nth-child(3){ height: 100%; animation-delay: -1.3s; }
.eq i:nth-child(4){ height: 55%; animation-delay: -0.15s; }
.eq i:nth-child(5){ height: 85%; animation-delay: -0.7s; }
.eq i:nth-child(6){ height: 35%; animation-delay: -1.05s; }
.eq i:nth-child(7){ height: 65%; animation-delay: -0.55s; }
@keyframes eq-bounce{
  0%, 100%{ transform: scaleY(.35); }
  50%{ transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce){
  .eq i{ animation: none; height: 70% !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.hero h1{ margin-top: 18px; }
.hero .lede{ margin-top: 22px; }
.hero-actions{
  display:flex;
  align-items:center;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-stats{
  display:flex;
  gap: 34px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-stat b{
  display:block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
}
.hero-stat span{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hero-visual{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-line);
  background-image:
    radial-gradient(120% 100% at 20% 0%, rgba(255,46,154,.45), transparent 55%),
    radial-gradient(120% 100% at 90% 100%, rgba(0,229,255,.4), transparent 55%),
    linear-gradient(190deg, rgba(10,8,18,.2) 0%, rgba(10,8,18,.35) 55%, rgba(8,6,14,.88) 100%),
    url('../images/hero-dancefloor.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display:flex;
  align-items:flex-end;
  padding: 26px;
}
.hero-visual::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 64px);
  opacity:.5;
}
.hero-visual .beam{
  position:absolute;
  width: 220%;
  height: 120px;
  top: -40px; left: -60%;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.35), transparent);
  transform: rotate(18deg);
  filter: blur(6px);
  animation: sweep 6s ease-in-out infinite;
}
@keyframes sweep{
  0%,100%{ transform: rotate(18deg) translateX(-6%); }
  50%{ transform: rotate(18deg) translateX(6%); }
}
.hero-card{
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(10,8,18,.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 20px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.hero-card .np-label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: var(--muted);
}
.hero-card .np-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-top: 4px;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ aspect-ratio: 16/10; order: -1; }
}

/* ============================================================
   SECTIONS / LAYOUT UTILITIES
   ============================================================ */
section{ padding: 92px 0; position: relative; }
.section-head{
  max-width: 720px;
  margin-bottom: 52px;
}
.section-head h2{ margin-top: 16px; }
.section-head .lede{ margin-top: 16px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.divider{
  height:1px;
  background: linear-gradient(90deg, transparent, var(--panel-line), transparent);
  border:0;
  margin: 0;
}

.band{ background: var(--void-2); border-top:1px solid var(--panel-line); border-bottom:1px solid var(--panel-line); }
.band-panel{ background: var(--panel); }

/* ============================================================
   CARDS — services
   ============================================================ */
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 980px){ .grid-3{ grid-template-columns: 1fr; } .grid-2{ grid-template-columns: 1fr; } }

.card{
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.card:hover{
  transform: translateY(-4px);
  border-color: var(--magenta);
  box-shadow: var(--shadow-glow-magenta);
}
.card .icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--magenta-dim), var(--cyan-dim));
  border: 1px solid var(--panel-line);
}
.card h3{ margin-bottom: 12px; }
.card p{ color: var(--muted); font-size: 15.2px; }
.card .card-link{
  margin-top: 20px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--cyan);
}
.card .card-link svg{ transition: transform .18s ease; }
.card:hover .card-link svg{ transform: translateX(4px); }

.feature-list{ margin-top: 22px; display:flex; flex-direction:column; gap: 12px; }
.feature-list li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}
.feature-list li svg{ flex:none; margin-top: 3px; color: var(--cyan); }

/* ============================================================
   PROCESS / TIMELINE (genuinely sequential content only)
   ============================================================ */
.timeline{ display:flex; flex-direction:column; }
.timeline-item{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--panel-line);
}
.timeline-item:last-child{ border-bottom: 1px solid var(--panel-line); }
.timeline-item .step{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-2);
  padding-top: 4px;
}
.timeline-item h3{ margin-bottom: 8px; }
.timeline-item p{ color: var(--muted); max-width: 62ch; }
@media (max-width: 700px){ .timeline-item{ grid-template-columns: 1fr; gap: 8px; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-card{
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-md);
  padding: 30px;
  display:flex;
  flex-direction:column;
  gap: 18px;
}
.quote-card .stars{ color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.quote-card p{ font-size: 15.5px; color: var(--white); }
.quote-card .who{
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   STAT / TRUST BAR
   ============================================================ */
.trust-bar{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 0;
}
.trust-bar .stat{ text-align:left; }
.trust-bar .stat b{
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  display:block;
}
.trust-bar .stat span{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items:stretch; }
@media (max-width: 980px){ .pricing-grid{ grid-template-columns: 1fr; } }
.price-card{
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display:flex;
  flex-direction:column;
  position: relative;
}
.price-card.featured{
  border-color: var(--magenta);
  box-shadow: var(--shadow-glow-magenta);
  background: linear-gradient(180deg, rgba(255,46,154,.08), var(--panel) 30%);
}
.price-card .badge{
  position:absolute; top:-14px; right: 30px;
  background: var(--magenta);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card h3{ font-size: 1.5rem; }
.price-card .tagline{ color: var(--muted); font-size: 14.5px; margin-top: 8px; }
.price-card .price-from{
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.price-card .price-from .amount{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.15rem;
  line-height: 1;
  background: linear-gradient(92deg, var(--white), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card .price-from .unit{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.price-card .price-duration{
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--panel-line);
  font-size: 14.5px;
  color: var(--muted);
}
.price-card .price-duration svg{ flex: none; color: var(--gold); }
.price-card ul{ margin-top: 20px; display:flex; flex-direction:column; gap: 13px; flex:1; }
.price-card li{ display:flex; gap: 10px; font-size: 14.5px; color: var(--muted); align-items:flex-start; }
.price-card li svg{ flex:none; color: var(--cyan); margin-top: 3px; }
.price-card .btn{ margin-top: 28px; }

/* ============================================================
   FORM (contact)
   ============================================================ */
.form-shell{
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px){ .form-row{ grid-template-columns: 1fr; } }
.field{ margin-bottom: 20px; display:flex; flex-direction:column; gap: 8px; }
.field label{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea{
  background: var(--void-2);
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--cyan);
}
.field textarea{ resize: vertical; min-height: 120px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner{
  border-radius: var(--radius-lg);
  padding: 64px 50px;
  background:
    radial-gradient(90% 140% at 10% 10%, rgba(255,46,154,.35), transparent 60%),
    radial-gradient(90% 140% at 90% 90%, rgba(0,229,255,.3), transparent 60%),
    linear-gradient(160deg, #1c1530, #0d0a17);
  border: 1px solid var(--panel-line);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2{ max-width: 620px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer{
  border-top: 1px solid var(--panel-line);
  padding: 64px 0 32px;
  background: var(--void-2);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
.footer-grid h4{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.footer-grid ul{ display:flex; flex-direction:column; gap: 12px; }
.footer-grid a{ color: var(--muted); font-size: 14.5px; transition: color .15s ease; }
.footer-grid a:hover{ color: var(--cyan); }
.footer-badge-link{ display: inline-block; }
.footer-badge{
  width: 148px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 26px rgba(255,46,154,.3)) drop-shadow(0 0 16px rgba(0,229,255,.22));
  transition: filter .25s ease, transform .25s ease;
}
.footer-badge-link:hover .footer-badge{
  filter: drop-shadow(0 0 32px rgba(255,46,154,.5)) drop-shadow(0 0 20px rgba(0,229,255,.4));
  transform: translateY(-2px);
}
.footer-brand p{ color: var(--muted); margin-top: 18px; max-width: 34ch; font-size: 14.5px; }
.footer-social{ display:flex; gap: 12px; margin-top: 20px; }
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--panel-line);
  display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ border-color: var(--cyan); color: var(--cyan); }
.footer-bottom{
  display:flex;
  justify-content: space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--panel-line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
}

/* ============================================================
   BREADCRUMB / PAGE HEADER (interior pages)
   ============================================================ */
.page-header{ padding: 56px 0 20px; }
.breadcrumb{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
  display:flex;
  gap: 8px;
  margin-bottom: 22px;
}
.breadcrumb a:hover{ color: var(--cyan); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity: 1; transform: none; }

/* ============================================================
   BADGE / TAG
   ============================================================ */
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--panel-line);
  color: var(--muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item{ border-top: 1px solid var(--panel-line); }
.faq-item:last-child{ border-bottom: 1px solid var(--panel-line); }
.faq-q{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--white);
  text-align:left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.faq-q .plus{
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--cyan);
  transition: transform .2s ease;
  flex: none;
  margin-left: 20px;
}
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p{ color: var(--muted); padding-bottom: 24px; max-width: 68ch; }
.faq-item.open .faq-a{ max-height: 300px; }

/* ============================================================
   PHOTO FEATURE — real event photo + caption band
   ============================================================ */
.photo-feature{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--panel-line);
  box-shadow: var(--shadow-soft);
}
.photo-feature img{ width:100%; height:auto; display:block; }
.photo-feature .caption{
  padding: 20px 24px;
  background: var(--panel);
}
.photo-feature .caption .cap-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.photo-feature .caption .cap-sub{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   PHOTO MOSAIC — 2x2 real-photo grid
   ============================================================ */
.photo-mosaic{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.photo-mosaic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--panel-line);
  aspect-ratio: 4/3;
}

/* ============================================================
   PARTNER CONTACT CARD
   ============================================================ */
.partner-card{
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px){
  .partner-card{ grid-template-columns: 1fr; text-align:center; }
  .partner-card .qr-block{ justify-self: center; }
}
.partner-card .who-name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}
.partner-card .who-role{
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
}
.partner-card .who-links{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: var(--muted);
}
.partner-card .who-links a{ color: var(--white); font-weight: 600; }
.partner-card .who-links a:hover{ color: var(--cyan); }
.qr-block{
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px;
  width: 180px;
}
.qr-block img{ width: 100%; height: auto; display:block; }
.qr-block .qr-label{
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.mt-0{ margin-top:0 } .mt-1{ margin-top:12px } .mt-2{ margin-top:24px } .mt-3{ margin-top:40px }
.flex{ display:flex; } .items-center{ align-items:center; } .justify-between{ justify-content:space-between; }
.gap-2{ gap:16px; }

/* ============================================================
   GALLERY MASONRY — real photo grid with hover captions
   ============================================================ */
.gallery-masonry{
  column-count: 3;
  column-gap: 18px;
}
@media (max-width: 900px){ .gallery-masonry{ column-count: 2; } }
@media (max-width: 560px){ .gallery-masonry{ column-count: 1; } }

.g-photo{
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--panel-line);
  cursor: zoom-in;
  background: var(--panel);
}
.g-photo img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform .35s ease;
}
.g-photo:hover img{ transform: scale(1.045); }
.g-photo:hover{ border-color: var(--magenta); box-shadow: var(--shadow-glow-magenta); }
.g-photo .g-cap{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(6,4,12,.88));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.g-photo:hover .g-cap{ opacity: 1; transform: translateY(0); }
.g-photo .g-cap span{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6,4,12,.94);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open{ display: flex; }
.lightbox figure{
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox img{
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--panel-line);
  box-shadow: var(--shadow-soft);
}
.lightbox figcaption{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next{
  position: absolute;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  color: var(--white);
  border-radius: 999px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s ease, color .15s ease;
  cursor: pointer;
}
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover{
  border-color: var(--cyan); color: var(--cyan);
}
.lightbox .lb-close{ top: 28px; right: 28px; }
.lightbox .lb-prev{ left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next{ right: 28px; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px){
  .lightbox .lb-prev{ left: 10px; } .lightbox .lb-next{ right: 10px; }
  .lightbox .lb-close{ top: 12px; right: 12px; }
}

/* ============================================================
   PARTNER BADGES — As Featured On (The Knot, WeddingWire, etc.)
   ============================================================ */
.partner-badges{
  padding: 34px 0;
  border-top: 1px solid var(--panel-line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.partner-badges h4{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.partner-badges-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.partner-badge-card{
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
  line-height: 0;
}
.partner-badge-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.5);
}
.partner-badge-card img{
  display: block;
  height: auto;
  max-width: 150px;
}
.partner-badge-card.on-dark{
  background: transparent;
  padding: 4px;
}
.partner-badge-card.on-dark:hover{
  box-shadow: none;
}
