/* ── GOOGLE FONTS loaded via <link> in layout.ejs <head> (non-render-blocking) */

:root {
  --bg: #0d1850;
  --bg-card: #0f1a60;
  --bg-elevated: #142080;
  --bg-translucent: rgba(13, 24, 80, 0.35);
  --fg: #f0ece6;
  --fg-muted: #8a8070;
  --gold: #c9a84c;
  --gold-bright: #e8c96d;
  --gold-dim: #7a5e28;
  --gold-glow: rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.18);
  --gold-border-hover: rgba(201,168,76,0.38);
  --radius: 14px;
  --font-display: 'Special Gothic Condensed One', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-ui: 'DM Sans', system-ui, sans-serif;
  --bg-deep: var(--bg);
  --bg-body: var(--bg-card);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  background-attachment: fixed;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh; /* prevents layout shift on mobile when content loads */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Internal pages: page-level background image so translucent sections show through ─── */
body.page-nos-dj,
body.page-soirees,
body.page-contact,
body.page-mariage,
body.page-restaurants,
body.page-formation,
body.page-location-materiel,
body.page-performers,
body.page-restaurant,
body.page-dj,
body.page-guest,
body.page-mc,
body.page-artistes {
  background-color: var(--bg);
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

body.page-nos-dj          { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/assets/legacy-r2/3c4cf6bf-e0f0-4a9d-a898-1d07edcee66e.png'); }
body.page-restaurants     { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/assets/legacy-r2/0358601a-cc17-43e9-b8f4-12fa6ba2ce18.png'); }
body.page-mariage         { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/assets/legacy-r2/faa5b569-a05e-4937-86f3-42fe01623bbf.png'); }
body.page-location-materiel { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/assets/legacy-r2/a4e94ccc-66cf-42d7-9e48-e24f40ce1001.png'); }
body.page-formation       { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/assets/legacy-r2/297c768e-0e98-4116-a0ae-5f4a070ec733.png'); }
body.page-performers,
body.page-restaurant      { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/assets/legacy-r2/0358601a-cc17-43e9-b8f4-12fa6ba2ce18.png'); }
body.page-contact         { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/assets/legacy-r2/0c9bd0c5-3c91-42cc-86b8-0a9cd197c716.png'); }
body.page-soirees         { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/assets/legacy-r2/3c4cf6bf-e0f0-4a9d-a898-1d07edcee66e.png'); }
body.page-dj,
body.page-guest,
body.page-mc,
body.page-artistes       { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/assets/legacy-r2/3c4cf6bf-e0f0-4a9d-a898-1d07edcee66e.png'); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-title, .hero h1, .page-title {
  text-transform: uppercase;
  font-family: var(--font-display);
}

html { scroll-behavior: smooth; }

.text-gold { color: var(--gold-bright); }
.text-muted { color: var(--fg-muted); }

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

/* ─── TOP LOGIN BAR ──────────────────────────────────────── */
.top-login-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0 1.5rem;
  background: #0a0e1a;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.top-login-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gold);
  text-decoration: none;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.top-login-bar__link:hover {
  color: var(--gold-bright);
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
}
.top-login-bar__link svg { flex-shrink: 0; color: inherit; }
.top-login-bar__sep {
  color: rgba(201,168,76,0.25);
  font-size: 0.7rem;
  user-select: none;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(10,14,26,0.45);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--gold-border);
  min-height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  flex-shrink: 0;
}

.nav-logo-text { display: flex; gap: 0; }
.nav-logo-gold { color: var(--gold); }

/* Legacy .nav-logo > span kept for compat */
.nav-logo > span { color: var(--gold); }

/* Tab bar strip — separate row below main nav.
   Slight transparency + backdrop-filter so the page background bleeds through
   (matches the new transparent .site-nav). Blur keeps tab labels readable. */
.nav-tabs-bar {
  position: fixed;
  top: 64px; /* 64px .site-nav */
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: stretch; /* stretch so items fill full height = larger tap target */
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  background: rgba(13,24,80,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.35);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x; /* lets browser know this container scrolls horizontally */
}
.nav-tabs-bar::-webkit-scrollbar { display: none; }

/* Each tab is a flex item that fills full height — default to 44px min tap target */
.nav-tabs-bar .nav-tab-item {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.nav-tabs-bar .nav-tab-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: #FFFFFF !important;
  opacity: 1 !important;
  text-decoration: none;
  /* min 44px vertical tap target per Apple HIG / WCAG 2.5.5 */
  padding: 0.65rem 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-bottom-color 0.25s;
  position: relative;
  top: 1px; /* sit on top of border line */
}
.nav-tabs-bar .nav-tab-link:hover { color: var(--gold-bright) !important; }
.nav-tabs-bar .nav-tab-link.active { color: #c9a84c !important; border-bottom-color: #c9a84c; font-weight: 700; }

/* Coming soon tabs (locked) */
.nav-tabs-bar .nav-tab-soon {
  cursor: default !important;
  color: rgba(240,236,230,0.55) !important;
}

/* Legacy .nav-tabs kept for compat — hidden when empty */
.nav-tabs { display: none; }

/* Hero tab-style nav links */
.nav-tab-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(240,236,230,0.6);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
  display: block;
  cursor: pointer;
}
.nav-tab-link:hover { color: var(--fg); background: rgba(201,168,76,0.08); }
.nav-tab-link.active { color: var(--gold-bright); }

/* Locked coming-soon tabs */
.nav-tab-lock {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(240,236,230,0.35);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
}

/* Nav right-side actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-cta-btn {
  color: var(--bg) !important;
  background: var(--gold);
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--gold-bright); }

/* ─── ESPACE DJ / RESTAURANT BUTTONS ────────────────────── */
.nav-espace-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 6px;
  padding: 0.45rem 0.9rem;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-espace-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold-bright, #e4c76b);
}
.nav-espace-btn--gold {
  background: var(--gold);
  color: var(--bg) !important;
  border-color: var(--gold);
}
.nav-espace-btn--gold:hover {
  background: var(--gold-bright, #e4c76b);
  border-color: var(--gold-bright, #e4c76b);
  color: var(--bg) !important;
}

.nav-coming-soon {
  font-size: 0.65rem;
  vertical-align: super;
  color: var(--gold-dim);
  margin-left: 2px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  background: #0d1850;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 4px;
  color: #c9a84c;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #c9a84c;
  transition: all 0.3s;
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--gold-border);
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.8rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .mobile-cta {
  margin-top: 0.5rem;
  background: var(--gold);
  color: var(--bg) !important;
  text-align: center;
  border-radius: 8px;
  border-bottom: none !important;
  font-weight: 600;
}

/* ─── CONNEXION DROPDOWN ─────────────────────────────────── */
.nav-connexion {
  position: relative;
  overflow: visible;
}
.nav-actions {
  overflow: visible;
}

.nav-connexion-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 6px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-connexion-btn:hover,
.nav-connexion.open .nav-connexion-btn {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold-bright, #e4c76b);
}
.nav-connexion-btn svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-connexion.open .nav-connexion-btn svg {
  transform: rotate(180deg);
}

.nav-connexion-dropdown {
  display: none;
  /* Fix: position:absolute with left:50% + translateX(-50%) centers the dropdown
     above the Connexion button regardless of screen width. The previous approach
     used position:fixed with left:0 which anchored the dropdown to the viewport's
     left edge — on wide screens only the right portion (Espace Restaurant) was
     visible, making "Espace DJ" appear missing. */
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: #0d1850;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 10px;
  padding: 0.6rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.06);
  z-index: 200;
  white-space: nowrap;
}
.nav-connexion.open .nav-connexion-dropdown {
  display: block;
}
.nav-connexion-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-connexion-dropdown a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.nav-connexion-dropdown a svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── ALWAYS-VISIBLE CONNEXION LINK ─────────────────────── */
/* WHY: .nav-actions hides on ≤900px so the dropdown Connexion disappears.
   This standalone link stays visible on all screen sizes. On desktop (>900px)
   it's hidden because .nav-actions already shows the dropdown version. */
.nav-connexion-always {
  display: none; /* hidden on desktop — .nav-actions has the dropdown */
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-connexion-always:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold-bright);
}
.nav-connexion-always svg {
  flex-shrink: 0;
  color: var(--gold);
}
.nav-connexion-always-text {
  display: inline;
}

/* Mobile connexion group */
.mobile-connexion-group {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  margin-bottom: 0.25rem;
}
.mobile-connexion-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 1.25rem 0.5rem;
}
.mobile-connexion-link {
  display: block;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted) !important;
  border-bottom: none !important;
  transition: color 0.2s;
}
.mobile-connexion-link:hover {
  color: var(--gold) !important;
}

/* Mobile locked nav items */
.nav-mobile-lock {
  display: block;
  padding: 0.8rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(240,236,230,0.35);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ─── PAGE WRAPPER ───────────────────────────────────────── */
.page-content {
  padding-top: 102px; /* 64px main nav + 38px tab bar */
  /* Ensure nothing bleeds past the viewport on mobile */
  max-width: 100%;
  overflow-x: hidden;
}

/* All sections must clear the fixed nav (64px) + tab bar (38px) = 102px */
section {
  scroll-margin-top: 102px;
}

/* ─── HERO (flyer-inspired layout) ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 6rem 4rem 4rem;
  overflow: hidden;
}

/* Dark navy background with atmospheric radial glows */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 20% 40%, rgba(201,168,76,0.08) 0%, transparent 50%),
    #0d1850;
  pointer-events: none;
  z-index: 0;
}

/* Left column: logo + headline + CTA */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-right: 2rem;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-logo-img {
  height: 90px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 18px rgba(100,140,255,0.3)) drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

.hero-logo-glow {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-logo-glow::after {
  content: '';
  position: absolute;
  inset: -8px -16px;
  background: radial-gradient(ellipse at center, rgba(80,120,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Subtle horizontal rule accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}

/* Centered hero variant — overrides the default 2-column grid */
.hero--centered {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero.hero--centered {
  padding: 4rem 4rem 3rem;
}

@media (max-width: 900px) {
  .hero.hero--centered { padding: 3rem 2rem 2.5rem; }
}

@media (max-width: 480px) {
  .hero.hero--centered { padding: 2.5rem 1.5rem 2rem; }
}

.hero-center-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero--centered .hero-sub {
  text-align: center;
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0;
}

.hero-headline .gold { color: var(--gold-bright); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Gold CTA button — premium */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, #a08030 100%);
  color: #0a0806;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.25), 0 1px 0 rgba(255,255,255,0.1) inset;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.4s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0d880 0%, var(--gold-bright) 50%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4), 0 1px 0 rgba(255,255,255,0.15) inset;
}

.btn-primary:hover::before { left: 100%; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(240,236,230,0.65);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.btn-secondary:hover { color: var(--fg); border-color: rgba(255,255,255,0.25); }

/* Right column: hexagonal photo collage */
.hero-visuals {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Hexagonal photo collage grid */
.hero-hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 160px);
  grid-template-rows: repeat(2, 185px);
  gap: 0;
  position: relative;
}

/* Hexagonal frame — clip-path creates the hex shape */
.hex-frame {
  position: relative;
  width: 160px;
  height: 185px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  background: var(--bg-elevated);
  cursor: pointer;
  transition: transform 0.3s;
}

.hex-frame:hover { transform: scale(1.04) translateY(-4px); z-index: 2; }

/* Gold border glow on hover */
.hex-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-bright));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.hex-frame:hover::before { opacity: 1; }

/* Overlay shimmer */
.hex-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.hex-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gold label at bottom of each hex */
.hex-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  z-index: 2;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}

.hex-frame:hover .hex-label { opacity: 1; }

/* Hex grid layout — offset every other row like honeycomb */
.hero-hex-grid .hex-frame:nth-child(1) { grid-column: 1; grid-row: 1; }
.hero-hex-grid .hex-frame:nth-child(2) { grid-column: 2; grid-row: 1; }
.hero-hex-grid .hex-frame:nth-child(3) { grid-column: 3; grid-row: 1; }
.hero-hex-grid .hex-frame:nth-child(4) { grid-column: 1; grid-row: 2; margin-top: -30px; }
.hero-hex-grid .hex-frame:nth-child(5) { grid-column: 2; grid-row: 2; margin-top: -30px; }
.hero-hex-grid .hex-frame:nth-child(6) { grid-column: 3; grid-row: 2; margin-top: -30px; }

/* Stats badges row below the collage */
.hero-stats {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-stat {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.06) 100%);
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  padding: 0.55rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s, transform 0.25s;
}

.hero-stat:hover {
  border-color: rgba(201,168,76,0.8);
  background: linear-gradient(135deg, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.1) 100%);
  transform: translateY(-2px);
}

.hero-stat-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}

/* Decorative glow orb behind hexagon collage */
.hero-visuals::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100,120,255,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Gold accent line bottom */
.hero-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── HERO PHOTO: Full-screen background photo (homepage) ──────── */
.hero-photo {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 4rem 4rem;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,14,26,0.82) 0%, rgba(10,14,26,0.45) 55%, rgba(10,14,26,0.15) 100%);
  z-index: 1;
}

.hero-photo-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-photo-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0;
}

.hero-photo-headline em {
  color: var(--gold-bright);
  font-style: italic;
}

.hero-photo-sub {
  font-size: 1.1rem;
  color: rgba(240,236,230,0.7);
  max-width: 480px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .hero-photo {
    padding: 5rem 2rem 3rem;
    min-height: 70vh;
  }
  .hero-photo-headline {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

@media (max-width: 480px) {
  .hero-photo {
    padding: 5rem 1.5rem 2.5rem;
    min-height: 60vh;
  }
  .hero-photo-headline { font-size: 2rem; }
  .hero-photo-sub { font-size: 0.95rem; }
}

/* ─── NEW HERO: Logo + headline + hex grid ────────────────────── */
.hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 4rem 4rem;
}

.hero-new-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(100,120,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(201,168,76,0.04) 0%, transparent 45%),
    #0d1850;
  pointer-events: none;
  z-index: 0;
}

.hero-new-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* LEFT column */
.hero-new-left {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero-new-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0;
  display: flex;
  flex-direction: column;
}

.hero-new-line1 { display: block; }
.hero-new-line2 {
  display: block;
  color: var(--fg);
}

.hero-new-gold {
  color: var(--gold-bright);
  font-style: italic;
}

.hero-new-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
}

/* Category tabs below CTAs */
.hero-new-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-new-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.hero-new-tab:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-1px);
}
.hero-new-tab-icon { font-size: 0.9rem; }

/* RIGHT column: hex grid (reuses existing .hero-hex-grid) */
.hero-new-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Empty placeholder hex */
.hex-frame-empty {
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-frame-empty-inner {
  width: 60%;
  height: 40%;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border-radius: 8px;
  border: 1px dashed rgba(201,168,76,0.15);
}

/* Stats row (new version) */
.hero-stats-row-new {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Gold divider bottom */
.hero-new-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  z-index: 1;
}

/* Decorative glow orb behind hex grid */
.hero-new-right::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(100,120,255,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Responsive: stack vertically */
@media (max-width: 900px) {
  .hero-new {
    padding: 5rem 2rem 3rem;
    min-height: auto;
  }
  .hero-new-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-new-right {
    order: -1;
  }
  .hero-new-headline {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .hero-new-left {
    align-items: center;
    text-align: center;
  }
  .hero-new-sub { max-width: 100%; }
  .hero-new-tabs { justify-content: center; }
}

@media (max-width: 600px) {
  .hero-new { padding: 5rem 1.5rem 2.5rem; }
  .hero-new-headline { font-size: 2rem; }
  .hero-new-tabs { gap: 0.4rem; }
  .hero-new-tab { font-size: 0.65rem; padding: 0.4rem 0.8rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

/* Mobile: stack vertically */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 5rem 2rem 3rem;
    gap: 2.5rem;
  }
  .hero-content { padding-right: 0; align-items: center; text-align: center; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-sub { max-width: 100%; }
  .hero-hex-grid {
    grid-template-columns: repeat(3, 120px);
    grid-template-rows: repeat(2, 138px);
  }
  .hex-frame { width: 120px; height: 138px; }
  .hero-hex-grid .hex-frame:nth-child(4),
  .hero-hex-grid .hex-frame:nth-child(5),
  .hero-hex-grid .hex-frame:nth-child(6) { margin-top: -22px; }
  .hero-visuals { width: 100%; }
  .hero-stat { font-size: 0.7rem; padding: 0.45rem 1rem; }
}

@media (max-width: 480px) {
  .hero { padding: 4.5rem 1.5rem 2.5rem; gap: 2rem; }
  .hero-logo-img { height: 70px; }
  .hero-hex-grid {
    grid-template-columns: repeat(3, 96px);
    grid-template-rows: repeat(2, 112px);
  }
  .hex-frame { width: 96px; height: 112px; }
  .hero-hex-grid .hex-frame:nth-child(4),
  .hero-hex-grid .hex-frame:nth-child(5),
  .hero-hex-grid .hex-frame:nth-child(6) { margin-top: -18px; }
  .hero-stats { gap: 0.6rem; }
  .hero-stat { padding: 0.4rem 0.8rem; }
  .btn-primary { padding: 0.85rem 1.6rem; font-size: 0.8rem; }
  .btn-secondary { padding: 0.85rem 1.4rem; font-size: 0.8rem; }
}

/* Mobile carousel for hex images (< 600px) */
@media (max-width: 600px) {
  .hero-hex-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    justify-content: flex-start;
    padding: 0 1rem 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-hex-grid::-webkit-scrollbar { display: none; }
  .hero-hex-grid .hex-frame {
    flex-shrink: 0;
    width: 140px;
    height: 162px;
    margin-top: 0 !important;
    scroll-snap-align: center;
  }
  .hero-visuals { align-items: flex-start; }
}

/* ─── HERO TABS (new tabbed photo system) ─────────────────── */
.hero-tabs {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-x: hidden;
}

/* Tab bar */
.hero-tab-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1rem 2.5rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.hero-tab-bar::-webkit-scrollbar { display: none; }

/* Individual tab button */
.hero-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(240,236,230,0.55);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s;
  position: relative;
  top: 1px; /* sit on top of border line */
}

.hero-tab:hover { color: rgba(240,236,230,0.85); }

.hero-tab.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

/* Lock icon in coming-soon tabs */
.tab-lock {
  font-size: 0.65rem;
  opacity: 0.6;
}

/* Locked tabs (Coming Soon) */
.tab-soon {
  cursor: default !important;
  color: rgba(240,236,230,0.3) !important;
  border-bottom-color: transparent !important;
  pointer-events: none;
}
.tab-soon:hover { background: transparent; }

/* Hero background — single div, src swapped via JS */
.hero-tab-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out, background-color 0.5s;
  z-index: 0;
}

/* Blue royal overlay (BR Booking logo blue) */
.hero-tab-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,16,64,0.55);
  z-index: 1;
}

/* Tab content wrapper */
.hero-tab-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 4rem 2rem;
}

/* Individual pane — hidden by default */
.hero-tab-pane {
  display: none;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 580px;
  animation: tabFadeIn 0.4s ease-out;
}

.hero-tab-pane.active { display: flex; }

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Coming Soon pane */
.hero-tab-coming-soon {
  opacity: 0.85;
}

/* Coming Soon badge in content */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(13,22,80,0.6);
  width: fit-content;
}

.coming-soon-badge-icon { font-size: 0.85rem; }

/* Stats row at bottom */
.hero-stats-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem 2.5rem;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE HERO TABS ─────────────────────────────────── */
@media (max-width: 768px) {
  .hero-tab-bar { padding: 0.8rem 1.5rem 0; }
  .hero-tab {
    font-size: 0.7rem;
    padding: 0.6rem 1rem;
  }
  .hero-tab-content { padding: 1.5rem 1.5rem 1.5rem; }
  .hero-tab-pane { max-width: 100%; }
  .hero-stats-row { gap: 1rem; padding: 1rem 1.5rem 2rem; }
}

@media (max-width: 480px) {
  .hero-tab-bar { padding: 0.6rem 1rem 0; gap: 0; }
  .hero-tab { font-size: 0.65rem; padding: 0.55rem 0.75rem; }
  .hero-tab-content { padding: 1.2rem 1rem 1.2rem; }
  .hero-headline { font-size: 2rem !important; }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

/* ─── NAV TABS BAR — Mobile (≤900px: bar hidden but still rendered) ── */
@media (max-width: 900px) {
  .nav-tabs-bar {
    /* hidden on small screens — hamburger menu takes over */
  }
}

/* ─── NAV TABS BAR — Larger mobile (375–480px) ensuring tap targets ── */
@media (max-width: 600px) {
  .nav-tabs-bar {
    justify-content: flex-start;
  }
  .nav-tabs-bar .nav-tab-link {
    font-size: 0.65rem;
    padding: 0.55rem 0.75rem;
    min-height: 44px;
  }
}

/* ─── SECTIONS ───────────────────────────────────────────── */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  background: rgba(201,168,76,0.04);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--gold-bright); }

.section-desc {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
}

/* ─── SERVICES OVERVIEW ──────────────────────────────────── */
.services-overview {
  padding: 6rem 2rem;
  background: var(--bg);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header { margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1px solid var(--gold-border);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.service-link {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-coming-soon {
  opacity: 0.6;
  cursor: default;
}
.service-coming-soon:hover { transform: none; }

.service-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 1rem;
}

/* ─── SERVICES CAROUSEL (mobile) ────────────────────────── */
.services-carousel-wrap {
  display: none;
  overflow-x: hidden;
}

.services-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 0 1.5rem 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-carousel::-webkit-scrollbar { display: none; }

.service-carousel-card {
  flex-shrink: 0;
  position: relative;     /* contains .service-carousel-card-bg (position: absolute; inset: 0) */
  width: 78vw;
  max-width: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
  scroll-snap-align: center;
  box-shadow: inset 0 0 0 1px rgba(80,160,255,0.15), 0 4px 20px rgba(0,0,0,0.3);
}
.service-carousel-card:hover {
  border-color: rgba(80,160,255,0.5);
  transform: scale(1.03);
  box-shadow: inset 0 0 0 1px rgba(80,160,255,0.35), 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(80,160,255,0.15);
}
.service-carousel-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-carousel-card-inner {
  position: relative;
  z-index: 1;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 180px;
  justify-content: flex-end;
}
.service-carousel-icon {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
  display: block;
}
.service-carousel-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
  text-shadow:
    0 1px 8px rgba(0,0,0,0.6),
    0 0 12px rgba(80,160,255,0.5);
}
.service-carousel-card p {
  font-size: 0.85rem;
  color: rgba(240,236,230,0.75);
  line-height: 1.55;
  margin: 0;
}
.service-carousel-cta {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  margin-top: 0.6rem;
}

/* Dot indicators */
.services-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 0.5rem;
}
.services-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.services-carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ─── WHY BR BOOKING ─────────────────────────────────────── */
.why-section {
  padding: 6rem 2rem;
  background: var(--bg);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text .section-desc { margin-bottom: 2.5rem; }

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.why-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.why-visual {
  position: relative;
}

.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.why-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  min-width: 60px;
  text-align: right;
}

.why-card-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.why-card-text strong {
  display: block;
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  padding: 3.5rem 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 0 2rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}

/* ─── CTA BOOKING — Réserve un DJ ─────────────────────────── */
.cta-booking {
  display: none;          /* hidden on desktop; revealed only on mobile below */
  padding: 5rem 2rem;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.cta-booking::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-booking-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-booking-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cta-booking-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.cta-booking-title em {
  color: var(--gold-bright);
  font-style: italic;
}

.cta-booking-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Two-column form layout */
.cta-booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.cta-booking-field {
  position: relative;
}

.cta-booking-field.full-width {
  grid-column: 1 / -1;
}

.cta-booking-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.cta-booking-input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}

.cta-booking-input::placeholder { color: var(--fg-muted); opacity: 0.6; }

.cta-booking-input:focus {
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.cta-booking-input option { background: var(--bg-elevated); }

.cta-booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, #a08030 100%);
  color: #0a0806;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.28), 0 1px 0 rgba(255,255,255,0.1) inset;
  position: relative;
  overflow: hidden;
}

.cta-booking-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.45s;
}

.cta-booking-submit:hover {
  background: linear-gradient(135deg, #f0d880 0%, var(--gold-bright) 50%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4), 0 1px 0 rgba(255,255,255,0.15) inset;
}

.cta-booking-submit:hover::before { left: 100%; }

.cta-booking-privacy {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0.7;
}

.cta-booking-privacy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Success state */
.cta-booking-success {
  display: none;
  text-align: center;
  padding: 2.5rem 2rem;
}

.cta-booking-success.show { display: block; }

.cta-booking-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.3);
}

.cta-booking-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}

.cta-booking-success p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 600px) {
  .cta-booking-form { grid-template-columns: 1fr; }
  .cta-booking { padding: 3rem 1.5rem; }
}

/* ─── CONTACT CTA ────────────────────────────────────────── */
.contact-cta {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-cta { padding: 4rem 1.5rem; }
}

.contact-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta-inner { max-width: 700px; margin: 0 auto; position: relative; }

.contact-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-cta p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  pointer-events: none;
  z-index: 0;
}

.page-hero-bg.has-image {
  background-image: var(--page-hero-image, none);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,26,0.65);
  pointer-events: none;
  z-index: 1;
}

.page-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.page-hero .subtitle {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .page-hero { padding: 4rem 1.25rem 2.5rem; }
}

/* Tall hero variant — shows full equipment image without cropping */
.page-hero--tall {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.page-hero--tall .page-hero-bg {
  background-position: center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .page-hero--tall { min-height: 45vh; padding-top: 2rem; }
  .page-hero--tall .page-hero-bg { background-position: center center; }
}

.page-hero-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3rem auto 0;
  max-width: 200px;
}


/* ─── COMING SOON PAGE ───────────────────────────────────── */
.coming-soon-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
}

.coming-soon-inner { max-width: 600px; }

.coming-soon-icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  display: block;
}

.coming-soon-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.coming-soon-inner p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ─── DJ CARDS ───────────────────────────────────────────── */
.djs-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.djs-inner { max-width: 1100px; margin: 0 auto; }

.djs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.dj-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.25s;
}

.dj-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.dj-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--bg-elevated);
}

.dj-photo-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold-dim);
}

.dj-card-body { padding: 1.5rem; }

.dj-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dj-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.dj-genre-tag {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
}

.dj-rating-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.dj-rating-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  width: 80px;
  flex-shrink: 0;
}

.dj-rating-track {
  flex: 1;
  height: 4px;
  background: var(--bg-elevated);
  border-radius: 2px;
  overflow: hidden;
}

.dj-rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  border-radius: 2px;
}

/* ─── MARIAGE PAGE ───────────────────────────────────────── */
.mariage-packs {
  padding: 5rem 2rem;
  background: var(--bg);
}

.mariage-inner { max-width: 1100px; margin: 0 auto; }

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pack-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pack-card.featured {
  border-color: rgba(201,168,76,0.35);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201,168,76,0.04) 100%);
}

.pack-featured-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 8px 8px;
}

.pack-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.pack-subtitle {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.pack-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.pack-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pack-features li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--fg-muted);
  align-items: flex-start;
}

.pack-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 3rem;
  border: 1px solid var(--gold-border);
  margin-top: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form:focus-within {
  border-color: var(--gold-border-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 24px var(--gold-glow);
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid rgba(240,236,230,0.08);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--gold-border-hover);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group select option { background: var(--bg-elevated); }

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

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s, border-color 0.25s;
  margin-top: 0.5rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.2);
}

.form-submit:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.45);
}

.form-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(201,168,76,0.25);
}

.form-success {
  text-align: center;
  padding: 2rem;
  color: var(--gold-bright);
  font-size: 1.05rem;
  display: none;
}

/* ─── LOCATION MATÉRIEL ──────────────────────────────────── */
.materiel-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.materiel-inner { max-width: 1100px; margin: 0 auto; }

.materiel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.materiel-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.08);
}

.materiel-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.materiel-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.materiel-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

/* ─── LOCATION MATÉRIEL (DB-driven cards) ─── */
.materiel-card--link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.materiel-card--link:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
}
.materiel-card-photo {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--bg-deep);
  flex-shrink: 0;
}
.materiel-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.materiel-card--link:hover .materiel-card-photo img {
  transform: scale(1.04);
}
.materiel-card-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.materiel-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.materiel-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 0.4rem;
}
.materiel-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.materiel-card-body p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.materiel-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}
.materiel-card-price em {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-bright);
  font-style: normal;
}
.materiel-card-price span {
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.materiel-card-cta {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 600;
  transition: color 0.2s;
}
.materiel-card--link:hover .materiel-card-cta {
  color: var(--gold-bright);
}
.materiel-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--fg-muted);
}

/* ─── RESTAURANTS ────────────────────────────────────────── */
.restaurants-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.restaurants-inner { max-width: 1100px; margin: 0 auto; }

/* ─── WHATSAPP FLOAT ─────────────────────────────────────── */
/* Stacked above chatbot bubble (62px at bottom:24px) to avoid overlap */
.whatsapp-float {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.4rem 0.8rem 1rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

.whatsapp-float svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
}

/* Hidden state when chatbot window is open — avoids overlap */
.whatsapp-float.wa-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #08102e;
  position: relative;
  overflow: hidden;
}

/* Noise texture overlay */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 50% at 20% 100%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Top decorative gold rule */
.footer-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-bright) 50%, var(--gold) 80%, transparent 100%);
  box-shadow: 0 0 12px rgba(201,168,76,0.3);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

/* Brand block */
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo-link {
  display: block;
  margin-bottom: 1.5rem;
  transition: opacity 0.2s;
}
.footer-logo-link:hover { opacity: 0.85; }

.footer-logo-img {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 2px 16px rgba(201,168,76,0.25));
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 2rem;
  font-family: var(--font-body);
  font-style: italic;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  color: var(--gold);
  text-decoration: none;
  background: rgba(201,168,76,0.04);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}

.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #08102e;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.footer-social-link svg {
  transition: transform 0.25s;
}

.footer-social-link:hover svg {
  transform: scale(1.1);
}

.footer-social-contact {
  border-color: rgba(201,168,76,0.45);
}

/* Navigation */
.footer-nav {
  display: flex;
  gap: 4rem;
  justify-content: flex-end;
  align-items: start;
}

.footer-nav-col {}

.footer-nav-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-nav-heading::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.4), transparent);
  min-width: 20px;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding-left: 0;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

.footer-nav-col a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-nav-col a:hover {
  color: var(--gold);
}

.footer-nav-col a:hover::after {
  width: 100%;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.footer-copy strong {
  color: var(--gold-dim);
  font-weight: 600;
}

.footer-made {
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.25);
}

/* ─── ALERT / FLASH ──────────────────────────────────────── */
.flash-success {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  color: #7de8a0;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.flash-error {
  background: rgba(220,50,50,0.1);
  border: 1px solid rgba(220,50,50,0.25);
  color: #e08080;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* ─── QUI SOMMES-NOUS ────────────────────────────────────── */
.about-section {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.about-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-inner .section-label { margin-bottom: 0.75rem; }

.about-inner .section-title {
  margin-bottom: 2.5rem;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-left: 2px solid var(--gold-dim);
  padding-left: 2rem;
}

.about-body p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.about-body p:first-child {
  color: var(--fg);
  font-size: 1.15rem;
  font-weight: 500;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .packs-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 900px) {
  .top-login-bar { display: none; }
  .nav-tabs, .nav-tabs-bar { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .site-nav { top: 0; }
  .page-content { padding-top: 64px; } /* no tab bar on mobile */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: 1.5rem; }
  .footer-social { justify-content: center; }
  .footer-tagline { text-align: center; max-width: 100%; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.9rem; border-radius: 50%; bottom: 5.5rem; }
  /* When chatbot window is open, hide WhatsApp float via JS-toggled class */
  .whatsapp-float.wa-hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .hero { padding: 5rem 1.5rem 3rem; }
  .contact-form { padding: 2rem 1.5rem; }
}

/* ─── DJ POLAROID CARDS (Nos DJ page) ───────────────────── */
.djs-polaroid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.dj-genre-tag-sm {
  font-size: 0.62rem !important;
  padding: 0.15rem 0.55rem !important;
}

/* ─── DJ PROFILE PAGE ────────────────────────────────────── */
.dj-profile-hero {
  padding: 3rem 2rem 4rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.dj-profile-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
}

.dj-profile-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: var(--bg-elevated);
}

.dj-profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dj-profile-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--gold-dim);
}

.dj-profile-info h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.dj-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.dj-genre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.dj-genre-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.dj-genre-row-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  width: 130px;
  flex-shrink: 0;
}

.dj-genre-row-track {
  flex: 1;
  height: 5px;
  background: var(--bg-elevated);
  border-radius: 3px;
  overflow: hidden;
}

.dj-genre-row-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  border-radius: 3px;
  transition: width 0.6s ease;
}

.dj-genre-row-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 30px;
  text-align: right;
}

/* ─── DJ VIDEOS GRID ─────────────────────────────────────── */
.dj-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dj-video-card { display: flex; flex-direction: column; gap: 0.5rem; }

.dj-video-thumb-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.dj-video-thumb-wrap:hover { transform: scale(1.02); border-color: rgba(201,168,76,0.3); }

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

.dj-video-thumb-empty {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0f0d0a, #1a1612);
}

.dj-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  color: var(--gold);
  font-size: 2rem;
  transition: background 0.2s;
}

.dj-video-thumb-wrap:hover .dj-video-play { background: rgba(0,0,0,0.6); }

.dj-video-title {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0 0.25rem;
}

/* ─── RESTAURANT CARDS (public page) ─────────────────────── */
.restaurants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.restaurant-logo { width: 100%; height: 100%; object-fit: contain; display: block; }

.restaurant-logo-placeholder { font-size: 2rem; color: var(--gold-dim); }

/* ─── SHARED SPOT-CARD CHROME (extracted from dj-polaroid + restaurant-card) ─── */
.spot-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 1rem 1rem 1.5rem;
  text-decoration: none;
  color: var(--fg);
  display: block;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 6px 28px rgba(0,0,0,0.45);
}
.spot-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.65), 0 0 0 1px var(--gold-border-hover);
  border-color: var(--gold-border-hover);
}
.spot-card-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-elevated);
  margin-bottom: 0.9rem;
}
.spot-card-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.spot-card:hover .spot-card-photo { transform: scale(1.04); }
.spot-card-photo-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: var(--gold-dim);
  background: linear-gradient(135deg, #0f0d0a, #1a1612);
}
.spot-card-body { padding: 0 0.2rem; }
.spot-card-body--restaurant {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem 0.3rem 0;
}
.spot-card-logo-wrap {
  width: 80px; height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.spot-card-name {
  font-family: var(--font-display);
  font-weight: 700;
}
.spot-card-caption .spot-card-name { font-size: 1.2rem; letter-spacing: 0.01em; margin-bottom: 0.5rem; color: var(--fg); }
.spot-card-body--restaurant .spot-card-name { font-size: 1.1rem; color: var(--gold); }
.spot-card-cta { font-size: 0.78rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 0.6rem; transition: color 0.2s; }
.spot-card:hover .spot-card-cta { color: var(--gold-bright); }
.spot-card-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.9rem; }
.spot-card-bio { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.5; margin-bottom: 0.8rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.spot-card-bars { margin-bottom: 0.8rem; }
.spot-card .btn-primary { font-size: 0.78rem; padding: 0.45rem 1.2rem; display: inline-block; }
.spot-card-badge {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
}

.spot-card.spot-card--restaurant {
  aspect-ratio: 1 / 1;
  padding: 1rem;
}
.spot-card.spot-card--restaurant .spot-card-body--restaurant {
  height: 100%;
  padding: 0;
  gap: 0.6rem;
  justify-content: center;
}
.spot-card.spot-card--restaurant .spot-card-logo-wrap {
  width: 30%;
  max-width: 96px;
  aspect-ratio: 1 / 1;
  height: auto;
}

/* ─── PRESTATIONS STATS BADGES ───────────────────────────── */
.prestations-stats {
  padding: 5rem 2rem 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.prestations-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.prestations-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.prestations-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.prestations-badge {
  background: linear-gradient(145deg, #1c2e70 0%, #0f1e55 100%);
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.06) inset, 0 4px 24px rgba(0,0,0,0.3);
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.prestations-badge:hover {
  border-color: rgba(201,168,76,0.7);
  transform: translateY(-5px);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.1) inset, 0 12px 40px rgba(201,168,76,0.12);
}

.prestations-badge-icon {
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.prestations-badge-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(232,201,109,0.3);
}

.prestations-badge-text {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.3;
}

/* ─── EXPLORER NAV (8 cards) ────────────────────────────────── */
.explorer-nav {
  padding: 5rem 2rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.explorer-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.explorer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.explorer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.explorer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem 1.5rem;
  background: rgba(13, 24, 80, 0.35);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.explorer-card:hover {
  background: #142080;
  border-color: rgba(201,168,76,0.55);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.15);
}

.explorer-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.explorer-title {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.3vw, 0.95rem);
  font-weight: 700;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

@media (max-width: 900px) {
  .explorer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .explorer-grid { gap: 0.8rem; }
  .explorer-card { padding: 1.5rem 1rem; }
  .explorer-icon { width: 50px; height: 50px; }
  .explorer-title { font-size: 0.7rem; }
}

/* ─── RESPONSIVE ADDITIONS ───────────────────────────────── */
@media (max-width: 900px) {
  .prestations-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .dj-profile-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .dj-profile-photo-wrap { max-width: 300px; margin: 0 auto; }
  .dj-genre-grid { grid-template-columns: 1fr; }
  .djs-polaroid-grid { grid-template-columns: repeat(2, 1fr); }
  .prestations-badges { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .prestations-stats { padding: 4rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
  .djs-polaroid-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .prestations-badge { padding: 2rem 1rem 1.5rem; }
}

/* ─── INSTAGRAM-STYLE GALLERY ─────────────────────────────── */

/* Section wrapper */
.ig-gallery-section {
  padding: 4rem 2rem;
}
.ig-gallery-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Hero Video ── */
.ig-hero-video-wrap {
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

/* YouTube iframe wrapper — 16:9 */
.ig-hero-yt-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}
.ig-hero-yt {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Native video wrapper — relative so play btn overlays */
.ig-hero-native-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  line-height: 0;
}
.ig-hero-video {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* Fallback thumbnail */
.ig-hero-thumb {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* Play button overlay — centered circle */
.ig-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(0,0,0,0.55);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  z-index: 2;
}
.ig-play-btn svg { width: 52px; height: 52px; }
.ig-play-btn:hover {
  background: rgba(201,168,76,0.75);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Caption below hero */
.ig-hero-caption {
  margin-top: 0.75rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* ── Photo Grid — Insta-style ── */
.ig-grid {
  display: grid;
  /* 3 cols mobile, 4 cols desktop */
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .ig-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
}

.ig-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--bg-card);
  /* Square aspect ratio */
  aspect-ratio: 1 / 1;
}
.ig-grid-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.ig-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ig-grid-item:hover .ig-grid-img {
  transform: scale(1.06);
}

/* Hover overlay with zoom icon */
.ig-grid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: background 0.25s, opacity 0.25s;
}
.ig-grid-item:hover .ig-grid-overlay {
  background: rgba(0,0,0,0.45);
  opacity: 1;
}
.ig-grid-zoom-icon {
  width: 32px; height: 32px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

/* ── Extra Videos Grid ── */
.ig-extra-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.ig-extra-video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-body);
  border: 1px solid rgba(201,168,76,0.1);
}
.ig-extra-yt-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.ig-extra-yt {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.ig-extra-native-video {
  width: 100%;
  max-height: 280px;
  display: block;
  background: #000;
}
.ig-video-title {
  padding: 10px 14px 4px;
  color: var(--fg);
  font-size: 0.88rem;
  font-weight: 600;
}
.ig-video-date {
  padding: 0 14px 10px;
  color: var(--fg-muted);
  font-size: 0.78rem;
}

/* ── Lightbox ── */
.ig-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,14,26,0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ig-lb-content {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ig-lb-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 48px rgba(0,0,0,0.7);
}
.ig-lb-caption {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  text-align: center;
  max-width: 600px;
}

/* Close button — top right */
.ig-lb-close {
  position: fixed;
  top: 1.25rem; right: 1.5rem;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10001;
}
.ig-lb-close:hover { background: rgba(201,168,76,0.6); }

/* Prev / Next arrows */
.ig-lb-prev,
.ig-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10001;
}
.ig-lb-prev { left: 1rem; }
.ig-lb-next { right: 1rem; }
.ig-lb-prev:hover,
.ig-lb-next:hover { background: rgba(201,168,76,0.55); }

@media (max-width: 640px) {
  .ig-lb-prev { left: 0.25rem; width: 40px; height: 40px; font-size: 2rem; }
  .ig-lb-next { right: 0.25rem; width: 40px; height: 40px; font-size: 2rem; }
  .ig-hero-video { max-height: 280px; }
  .ig-extra-videos-grid { grid-template-columns: 1fr; }
}

.partenaires-section {
  padding: 4rem 2rem;
  background: var(--bg);
  border-top: 1px solid rgba(201,168,76,0.08);
  overflow: hidden;
}

.partenaires-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.partenaires-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.partenaires-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}

.partenaires-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

/* Marquee track wrapper — clips the sliding track */
.partenaires-track-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* Sliding track — duplicated items for seamless loop */
.partenaires-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: partenaires-scroll 28s linear infinite;
}

.partenaires-track:hover {
  animation-play-state: paused;
}

@keyframes partenaires-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partenaire-item {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partenaire-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partenaire-item:hover .partenaire-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

.partenaire-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dim);
  text-align: center;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.partenaire-item:hover .partenaire-name {
  color: var(--gold);
}

/* ─── RESPONSIVE PARTENAIRES ──────────────────────────────── */
@media (max-width: 768px) {
  .partenaires-section { padding: 3rem 1.5rem; }
  .partenaires-item { width: 90px; height: 60px; }
  .partenaire-name { font-size: 0.75rem; }
  .partenaires-track { gap: 1.2rem; }
}

@media (max-width: 480px) {
  .partenaires-section { padding: 2.5rem 1rem; }
  .partenaires-inner { max-width: 100%; }
  .partenaires-header { margin-bottom: 2rem; }
  .partenaire-item { width: 80px; height: 54px; }
}

/* ─── ACCUEIL / QUI SOMMES-NOUS PAGE ──────────────────────────────────── */

.accueil-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
  background: rgba(13, 24, 80, 0.35);
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.accueil-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.accueil-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: #f0ece6;
  margin: 0.4rem 0 0.6rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.accueil-hero-title em {
  font-style: italic;
  color: var(--gold);
}
.accueil-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ─── QS NM CONTENT SECTION ───────────────────────────────────────────── */

.qsnm-section {
  padding: 5rem 2rem;
  background: var(--bg);
}
.qsnm-inner {
  max-width: 840px;
  margin: 0 auto;
}

.qsnm-intro {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
.qsnm-accent-bar {
  width: 3px;
  min-height: 80px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(200,169,110,0.3) 100%);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.qsnm-lead {
  font-family: 'Special Gothic Condensed One', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: #f0ece6;
  line-height: 1.65;
  margin: 0;
}
.qsnm-lead strong {
  color: var(--gold);
  font-weight: 600;
}
.qsnm-lead em {
  font-style: italic;
  color: #c9ab6e;
}

.qsnm-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.qsnm-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--fg-muted);
  margin: 0;
}
.qsnm-body strong {
  color: #e8e2d6;
  font-weight: 600;
}
.qsnm-body em {
  font-style: italic;
  color: #c9ab6e;
}

.qsnm-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  color: var(--gold-dim);
}
.qsnm-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.3), transparent);
}

.qsnm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.qsnm-stat {
  background: var(--bg-card);
  border: 1px solid rgba(200,169,110,0.15);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.qsnm-stat:hover {
  border-color: rgba(200,169,110,0.35);
  box-shadow: 0 4px 24px rgba(200,169,110,0.08);
}
.qsnm-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.qsnm-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── CTA STRIP ───────────────────────────────────────────────────────── */

.qsnm-cta {
  padding: 4rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid rgba(200,169,110,0.1);
}
.qsnm-cta-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.qsnm-cta-text {
  font-family: 'Special Gothic Condensed One', sans-serif;
  font-size: 1.6rem;
  color: #f0ece6;
  margin: 0 0 2rem;
  font-style: italic;
}
.qsnm-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE QS NM ─────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .qsnm-stats { grid-template-columns: 1fr; gap: 1rem; }
  .qsnm-stat { padding: 1.5rem; }
  .qsnm-stat-num { font-size: 2.5rem; }
  .accueil-hero { padding: 3.5rem 1.5rem 3rem; }
  .qsnm-section { padding: 3.5rem 1.5rem; }
  .qsnm-cta { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .qsnm-cta-actions { flex-direction: column; align-items: center; }
}

/* ─── NUCLEAR FONT ENFORCEMENT ────────────────────────────────────── */
/* Force Special Gothic Condensed One on ALL headings + nav — no fallback to serif */
h1, h2, h3, h4, h5, h6,
.hero-title, .page-title, .accueil-hero-title,
.qsnm-lead, .qsnm-cta-text, .qsnm-stat-num, .qsnm-stat-num span,
.navbar-brand, .nav-link,
[class*="title"], [class*="heading"],
.section-title, .section-title em,
.hero-headline, .hero-new-headline, .hero-photo-headline,
.hero-tab-pane h1, .hero-tab-pane h2,
.stats-bar .stat-value,
.page-hero h1,
.coming-soon-inner h1,
.pack-name, .dj-name, .service-card h3,
.mariage-packs h2, .location-material h2 {
  font-family: 'Special Gothic Condensed One', sans-serif !important;
}

/* ─── DEVENIR PARTENAIRE ────────────────────────────────── */
.partenaire-avantages {
  padding: 5rem 2rem 3rem;
  background: var(--bg);
}
.partenaire-avantages-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.partenaire-section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.partenaire-section-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.partenaire-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.partenaire-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.partenaire-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border-hover);
  box-shadow: 0 12px 40px rgba(201,168,76,0.12);
}
.partenaire-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.08);
  border-radius: 12px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.partenaire-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.partenaire-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Stats strip */
.partenaire-stats {
  padding: 3rem 2rem;
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.partenaire-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.partenaire-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}
.partenaire-stat-label {
  display: block;
  color: var(--fg-muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* Form title */
.partenaire-form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}
.partenaire-form-sub {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* CTA bottom strip */
.partenaire-cta {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(201,168,76,0.04) 100%);
}
.partenaire-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.partenaire-cta-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.partenaire-cta-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.partenaire-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .partenaire-cards { grid-template-columns: 1fr; }
  .partenaire-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .partenaire-section-title { font-size: 1.6rem; }
  .partenaire-stat-num { font-size: 2rem; }
  .partenaire-cta-content h2 { font-size: 1.3rem; }

  /* Services carousel — show on mobile, hide desktop grid */
  .services-carousel-wrap { display: block; }
  .services-grid { display: none; }
  .cta-booking { display: block; }
}

@media (max-width: 480px) {
  .service-carousel-card { width: 82vw; }
  .services-carousel { padding-right: 60px; }
}

/* Force nav logo text */
.nav-logo {
  font-family: 'Special Gothic Condensed One', sans-serif !important;
}

/* ─── ACCUEIL — full-page background image ──────────────────────────────── */
body.page-accueil {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('/assets/legacy-r2/29679f02-3d01-4dab-b8b7-26a1253e17a6.png');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

body.page-accueil .hero-bg {
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 20% 40%, rgba(201,168,76,0.08) 0%, transparent 50%),
    transparent;
}

/* make every section semi-transparent so body background-image shows through */
body.page-accueil .explorer-nav,
body.page-accueil .about-section,
body.page-accueil .why-section,
body.page-accueil .cta-booking,
body.page-accueil .contact-cta,
body.page-accueil .prestations-stats,
body .partenaires-section {
  background: rgba(13, 24, 80, 0.35);
}

/* Universal translucide for non-accueil public pages — every main section, card, and container */
body.page-nos-dj .djs-section,
body.page-nos-dj .contact-cta,
body.page-mariage .mariage-packs,
body.page-mariage .mariage-intro,
body.page-mariage .contact-cta,
body.page-restaurants .restaurants-section,
body.page-restaurants .contact-cta,
body.page-location-materiel .materiel-section,
body.page-location-materiel .contact-cta,
body.page-formation .mariage-packs,
body.page-formation .mariage-intro,
body.page-formation .contact-cta,
body.page-performers .performers-section,
body.page-performers .contact-cta,
body.page-soirees .soirees-section,
body.page-soirees .contact-cta,
body.page-contact .contact-section,
body.page-restaurant .restaurant-profile-section,
body.page-restaurant .restaurant-upcoming-section,
body.page-restaurant .contact-cta,
body.page-dj .dj-profile-section,
body.page-dj .dj-bio-section,
body.page-dj .dj-genre-section,
body.page-dj .insta-gallery-section,
body.page-dj .contact-cta,
body.page-guest .coming-soon-page,
body.page-mc .coming-soon-page,
body.page-artistes .coming-soon-page,
body.page-formation .partenaires-section,
body.page-location-materiel .partenaires-section,
body.page-restaurants .partenaires-section,
body.page-mariage .partenaires-section,
body.page-nos-dj .partenaires-section,
body.page-soirees .partenaires-section,
body.page-contact .partenaires-section,
body.page-performers .partenaires-section,
body.page-restaurant .partenaires-section,
body.page-dj .partenaires-section,
body.page-guest .partenaires-section,
body.page-mc .partenaires-section,
body.page-artistes .partenaires-section {
  background: var(--bg-translucent);
}

/* Translucent cards & containers across non-accueil public pages */
.dj-card,
.pack-card,
.materiel-card,
.restaurant-card,
.performer-card,
.soiree-card,
.qsnm-stat,
.spot-card {
  background: var(--bg-translucent);
}

body.page-contact .contact-form {
  background: var(--bg-translucent);
}

@media (max-width: 1024px) {
  body {
    background-attachment: scroll;
    background-color: var(--bg);
  }
  body.page-accueil {
    background-attachment: scroll;
    background-size: auto 100vh;
    background-position: center center;
  }
  body.page-nos-dj,
  body.page-soirees,
  body.page-contact,
  body.page-mariage,
  body.page-restaurants,
  body.page-formation,
  body.page-location-materiel,
  body.page-performers,
  body.page-restaurant,
  body.page-dj,
  body.page-guest,
  body.page-mc,
  body.page-artistes {
    background-attachment: scroll;
    background-color: var(--bg);
  }
  .hero-photo-bg,
  .page-hero-bg,
  .page-hero--tall .page-hero-bg,
  .soirees-hero-bg {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }
}

.mobile-wallpaper {
  display: none;
}

@media (max-width: 768px) {
  /* Exactly three copies of the desktop landscape image form one fixed
     portrait wallpaper. The site shell scrolls independently above it. */
  body {
    background-color: var(--bg) !important;
    background-image: none !important;
    background-attachment: scroll !important;
  }

  .mobile-wallpaper {
    --mobile-third: 33.3333vh;
    display: block;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
      var(--mobile-wallpaper-url),
      var(--mobile-wallpaper-url),
      var(--mobile-wallpaper-url);
    background-size:
      100% 100%,
      auto var(--mobile-third),
      auto var(--mobile-third),
      auto var(--mobile-third);
    background-position:
      0 0,
      center top,
      center var(--mobile-third),
      center bottom;
    background-repeat: no-repeat;
  }

  .site-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
  }

  .hero-photo-bg,
  .page-hero-bg,
  .page-hero--tall .page-hero-bg,
  .soirees-hero-bg {
    background-image: none !important;
    background-color: transparent !important;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 768px) {
    .mobile-wallpaper {
      --mobile-third: 33.3333dvh;
      height: 100dvh;
    }
  }
}
