/* ============================================================
   LUMIBOOTH — Design System "Festival" v7
   Dark natif · néon maîtrisé · minimalism 3.0 · conversion-first
   ============================================================ */

:root {
  /* Couleurs */
  --bg: #0A0A14;
  --bg-2: #10101C;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --pink: #FF0F9E;
  --violet: #7C3AED;
  --cyan: #00D9FF;
  --lime: #C6FF3D;
  --gold: #FFC94D;
  --green: #22C55E;
  --red: #F43F5E;

  --text: #F5F5FA;
  --muted: #A9A9C4;

  --grad: linear-gradient(135deg, #FF0F9E 0%, #7C3AED 100%);
  --grad-2: linear-gradient(135deg, #00D9FF 0%, #7C3AED 100%);
  --grad-text: linear-gradient(120deg, #FF0F9E, #A855F7 55%, #00D9FF);

  --glow-pink: 0 0 40px rgba(255, 15, 158, 0.35);
  --glow-cyan: 0 0 40px rgba(0, 217, 255, 0.25);

  /* Typo */
  --font-title: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Sizing */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
  --section-pad: clamp(4.5rem, 9vw, 7.5rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  color-scheme: dark;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--pink); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* ---------- Accessibilité ---------- */
.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 9999;
  background: var(--pink); color: #fff; padding: 12px 20px;
  border-radius: 0 0 12px 12px; font-weight: 700;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Utilitaires ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-pad); position: relative; }
.section--tight { padding-block: calc(var(--section-pad) * 0.65); }
.section--alt { background: var(--bg-2); }

.section-head { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-title); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
  background: rgba(0, 217, 255, 0.08); border: 1px solid rgba(0, 217, 255, 0.22);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 1.1rem;
}
.section-title { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 0.9rem; }
.section-sub { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.13rem); }

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

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-title); font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 100px; white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 28px rgba(255, 15, 158, 0.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255, 15, 158, 0.5); }
.btn--ghost {
  background: var(--surface); border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn--ghost:hover { background: var(--surface-2); transform: translateY(-3px); }
.btn--lg { padding: 18px 38px; font-size: 1.08rem; }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--block { width: 100%; }
.btn--call { background: var(--green); color: #06130B; box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35); }
.btn--call:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(34, 197, 94, 0.5); }

/* ---------- Badges / chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.85rem; font-weight: 600; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 100px;
}
.chip svg { width: 15px; height: 15px; flex: none; }
.chip--ok { color: var(--green); border-color: rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.07); }
.badge {
  font-family: var(--font-title); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.badge--hot { background: var(--grad); color: #fff; }
.badge--new { background: rgba(0, 217, 255, 0.15); color: var(--cyan); border: 1px solid rgba(0, 217, 255, 0.35); }
.badge--promo { background: rgba(198, 255, 61, 0.13); color: var(--lime); border: 1px solid rgba(198, 255, 61, 0.3); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
  position: relative;
}
.card:hover { transform: translateY(-5px); border-color: var(--border-strong); background: var(--surface-2); }

.icon-badge {
  width: 54px; height: 54px; border-radius: 15px; flex: none;
  display: grid; place-items: center; margin-bottom: 18px;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge--pink { background: rgba(255, 15, 158, 0.14); color: var(--pink); }
.icon-badge--violet { background: rgba(124, 58, 237, 0.16); color: #A78BFA; }
.icon-badge--cyan { background: rgba(0, 217, 255, 0.12); color: var(--cyan); }
.icon-badge--lime { background: rgba(198, 255, 61, 0.1); color: var(--lime); }
.icon-badge--gold { background: rgba(255, 201, 77, 0.12); color: var(--gold); }
.icon-badge--green { background: rgba(34, 197, 94, 0.12); color: var(--green); }

/* ============================================================
   TOP BANNER
   ============================================================ */
.top-banner {
  background: var(--grad); color: #fff; text-align: center;
  padding: 10px 48px 10px 16px; font-size: 0.92rem; font-weight: 600;
  position: relative; z-index: 60;
}
.top-banner a { text-decoration: underline; text-underline-offset: 3px; font-weight: 800; }
.top-banner__close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; opacity: 0.85;
}
.top-banner__close:hover { opacity: 1; background: rgba(255,255,255,0.15); }
.top-banner.is-hidden { display: none; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 10, 20, 0.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.header__inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-title); font-weight: 900; font-size: 1.35rem; letter-spacing: -0.02em; }
.logo__mark { width: 38px; height: 38px; flex: none; }
.logo em { font-style: normal; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  font-size: 0.93rem; font-weight: 600; color: var(--muted);
  padding: 9px 14px; border-radius: 100px; position: relative;
  transition: color 0.25s, background 0.25s;
}
.nav a:hover, .nav a.is-active { color: var(--text); background: var(--surface-2); }
.header .btn { margin-left: 8px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; margin-left: auto;
  border-radius: 12px; place-items: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: rgba(10,10,20,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__close { align-self: flex-end; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--surface); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 20px; }
.mobile-menu nav a {
  font-family: var(--font-title); font-size: 1.5rem; font-weight: 700;
  padding: 13px 6px; border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: clip;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  /* Photo de fête en fond (comme V6) : recouverte d'un overlay sombre (~75 %)
     pour rester subtile et garder le texte lisible — les glows néon passent au-dessus */
  background:
    linear-gradient(180deg, rgba(10, 10, 20, 0.72) 0%, rgba(10, 10, 20, 0.78) 50%, rgba(7, 7, 14, 0.88) 100%),
    url("../assets/location-photobooth-91-essonne.webp") center center / cover no-repeat,
    var(--bg);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.hero__glow--1 { width: 520px; height: 520px; top: -180px; left: -120px; background: rgba(255, 15, 158, 0.22); }
.hero__glow--2 { width: 480px; height: 480px; top: -60px; right: -100px; background: rgba(124, 58, 237, 0.25); }
.hero__glow--3 { width: 420px; height: 420px; bottom: -220px; left: 40%; background: rgba(0, 217, 255, 0.13); }

.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px; border-radius: 100px; font-size: 0.88rem; font-weight: 600;
  margin-bottom: 1.4rem;
}
.hero__eyebrow .stars { color: var(--gold); letter-spacing: 1px; font-size: 0.8rem; }
.hero h1 { font-size: clamp(2.5rem, 5.8vw, 4.3rem); font-weight: 900; margin-bottom: 1.2rem; }
.hero__sub { font-size: clamp(1.05rem, 1.9vw, 1.25rem); color: var(--muted); max-width: 33ch; margin-bottom: 2rem; }
.hero__sub strong { color: var(--text); }

/* Barre de recherche hero */
.hero-search {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 8px;
  background: rgba(16, 16, 30, 0.75); border: 1px solid var(--border-strong);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 22px; padding: 8px; max-width: 720px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.hero-search__field { position: relative; }
.hero-search__field label {
  position: absolute; top: 8px; left: 16px; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); pointer-events: none;
}
.hero-search__field select, .hero-search__field input {
  width: 100%; background: var(--surface); border: 1px solid transparent;
  border-radius: 15px; padding: 26px 14px 9px; font-size: 0.95rem; font-weight: 600;
  appearance: none; transition: border-color 0.25s, background 0.25s;
}
.hero-search__field select:focus, .hero-search__field input:focus {
  outline: none; border-color: var(--pink); background: var(--surface-2);
}
.hero-search__field::after {
  content: ''; position: absolute; right: 15px; top: 50%;
  width: 8px; height: 8px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.hero-search__field--noarrow::after { display: none; }
.hero-search .btn { border-radius: 15px; padding-inline: 26px; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.6rem; }

/* Visuel hero */
.hero__visual { position: relative; display: grid; place-items: center; }
.hero__mascotte {
  width: min(100%, 230px); height: auto;
  filter: drop-shadow(0 30px 60px rgba(124, 58, 237, 0.45));
  animation: float 5.5s ease-in-out infinite; position: relative; z-index: 2;
}
.hero__ring {
  position: absolute; width: 115%; aspect-ratio: 1; border-radius: 50%;
  background: conic-gradient(from 0deg, #FF0F9E, #7C3AED, #00D9FF, #C6FF3D, #FF0F9E);
  opacity: 0.28; filter: blur(28px);
  animation: spin 14s linear infinite;
}
.hero__stat {
  position: absolute; z-index: 3;
  background: rgba(16, 16, 30, 0.85); border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 16px; padding: 12px 18px; text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}
.hero__stat strong { display: block; font-family: var(--font-title); font-size: 1.35rem; font-weight: 800; }
.hero__stat span { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.hero__stat--1 { top: 6%; left: -4%; animation-delay: 0.8s; }
.hero__stat--2 { bottom: 12%; right: -3%; animation-delay: 1.6s; }
.hero__stat--3 { bottom: -4%; left: 12%; animation-delay: 2.4s; }
.hero__stat--1 strong { color: var(--pink); }
.hero__stat--2 strong { color: var(--cyan); }
.hero__stat--3 strong { color: var(--lime); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-block: 1px solid var(--border); background: var(--bg-2);
  overflow: hidden; padding: 15px 0; position: relative;
}
.ticker__track { display: flex; gap: 48px; width: max-content; animation: marquee 32s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: flex; align-items: center; gap: 11px; white-space: nowrap;
  font-family: var(--font-title); font-weight: 700; font-size: 0.95rem; color: var(--muted);
}
.ticker__item svg { width: 17px; height: 17px; color: var(--pink); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STEPS (comment ça marche)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; }
.step__num {
  font-family: var(--font-title); font-size: 3.4rem; font-weight: 900; line-height: 1;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 14px; display: block;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.97rem; }

/* ============================================================
   CATALOGUE
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 2.2rem; }
.filter {
  font-family: var(--font-title); font-weight: 700; font-size: 0.9rem;
  padding: 10px 20px; border-radius: 100px; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border);
  transition: all 0.25s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--border-strong); }
.filter[aria-pressed="true"] { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 6px 20px rgba(255, 15, 158, 0.3); }

.catalogue { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.product__visual {
  height: 150px; position: relative; display: grid; place-items: center; overflow: hidden;
}
.product__visual svg { width: 64px; height: 64px; position: relative; z-index: 2; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4)); }
.product__visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.16), transparent 55%);
}
.product__visual--pink { background: linear-gradient(135deg, #FF0F9E 0%, #B3006B 100%); }
.product__visual--violet { background: linear-gradient(135deg, #7C3AED 0%, #4C1D95 100%); }
.product__visual--cyan { background: linear-gradient(135deg, #00B8D9 0%, #0E5F8A 100%); }
.product__visual--lime { background: linear-gradient(135deg, #84CC16 0%, #3F6212 100%); }
.product__visual--gold { background: linear-gradient(135deg, #F59E0B 0%, #92400E 100%); }
.product__visual--rose { background: linear-gradient(135deg, #F43F5E 0%, #881337 100%); }
.product__badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; gap: 6px; }
.product__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product__name { font-size: 1.18rem; margin-bottom: 6px; }
.product__desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; flex: 1; }
.product__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.product__price strong { font-family: var(--font-title); font-size: 1.55rem; font-weight: 800; }
.product__price span { color: var(--muted); font-size: 0.85rem; }
.product__price s { color: var(--muted); font-size: 1rem; }

/* ============================================================
   PACKS
   ============================================================ */
.packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pack { display: flex; flex-direction: column; padding: 32px 28px; text-align: center; }
.pack--featured {
  background: linear-gradient(var(--bg-2), var(--bg-2)) padding-box, var(--grad) border-box;
  border: 2px solid transparent;
  transform: scale(1.04); z-index: 2;
  box-shadow: 0 24px 70px rgba(255, 15, 158, 0.22);
}
.pack--featured:hover { transform: scale(1.04) translateY(-5px); }
.pack__flag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); }
.pack__name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }
.pack__tagline { font-family: var(--font-title); font-size: 1.45rem; font-weight: 800; margin-bottom: 16px; }
.pack__price { margin-bottom: 20px; }
.pack__price s { color: var(--muted); font-size: 1.1rem; margin-right: 8px; }
.pack__price strong { font-family: var(--font-title); font-size: 2.6rem; font-weight: 900; }
.pack__price span { color: var(--muted); font-size: 0.9rem; }
.pack ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; align-items: center; }
.pack li { display: flex; justify-content: center; gap: 10px; font-size: 0.95rem; color: var(--muted); }
.pack li svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 2px; }
.pack li strong { color: var(--text); font-weight: 600; }

/* ============================================================
   SERVICES (bento)
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento .card h3 { font-size: 1.15rem; margin-bottom: 7px; }
.bento .card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.bento .card .price { font-family: var(--font-title); font-weight: 800; font-size: 1.2rem; }
.bento .card .price span { color: var(--muted); font-size: 0.82rem; font-weight: 500; }

/* ============================================================
   DISPO CALENDAR
   ============================================================ */
.dispo { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.dispo > .reveal { text-align: center; }
.dispo .section-sub { margin-inline: auto; }
.calendar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
}
.calendar__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.calendar__head strong { font-family: var(--font-title); font-size: 1.1rem; }
.calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.calendar__dow { text-align: center; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--muted); padding-bottom: 6px; }
.calendar__day {
  aspect-ratio: 1; display: grid; place-items: center; border-radius: 10px;
  font-size: 0.88rem; font-weight: 600; background: var(--surface);
  border: 1px solid transparent; transition: transform 0.2s;
}
.calendar__day--ok { background: rgba(34, 197, 94, 0.12); color: var(--green); }
.calendar__day--busy { background: rgba(255, 201, 77, 0.1); color: var(--gold); }
.calendar__day--full { background: rgba(244, 63, 94, 0.1); color: var(--red); opacity: 0.65; }
.calendar__day--past { opacity: 0.25; }
.calendar__legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 18px; font-size: 0.82rem; color: var(--muted); }
.calendar__legend i { width: 11px; height: 11px; border-radius: 3px; display: inline-block; margin-right: 6px; }

/* ============================================================
   GALERIE (moments — photos réelles)
   ============================================================ */
.moments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.moment {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 300px; display: flex; align-items: flex-end; padding: 26px;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease);
}
.moment:hover { transform: translateY(-6px); }
.moment__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.moment:hover .moment__img { transform: scale(1.06); }
.moment::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,20,0) 35%, rgba(10,10,20,0.88) 100%);
}
.moment__content { position: relative; z-index: 2; }
.moment__content span { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); }
.moment__content h3 { font-size: 1.35rem; margin-top: 4px; }
.moment__note { grid-column: 1 / -1; text-align: center; color: var(--muted); font-size: 0.88rem; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { display: flex; flex-direction: column; gap: 14px; }
.review__stars { color: var(--gold); letter-spacing: 2px; }
.review p { color: var(--text); font-size: 0.97rem; flex: 1; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-title); font-weight: 800;
  background: var(--grad); color: #fff;
}
.review__author strong { display: block; font-size: 0.95rem; }
.review__author span { font-size: 0.8rem; color: var(--muted); }
.reviews__google { text-align: center; margin-top: 2.2rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; background: var(--surface); overflow: hidden; transition: border-color 0.3s; }
.faq__item.is-open { border-color: var(--border-strong); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; text-align: left; font-family: var(--font-title);
  font-weight: 700; font-size: 1.02rem;
}
.faq__q svg { width: 20px; height: 20px; flex: none; color: var(--pink); transition: transform 0.35s var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a > div { padding: 0 24px 22px; color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { position: relative; overflow: clip; }
.cta-final__card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(135deg, rgba(255,15,158,0.16), rgba(124,58,237,0.16)), var(--bg-2);
  border: 1px solid var(--border-strong);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2rem; align-items: center;
}
.cta-final h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.cta-final p { color: var(--muted); margin-bottom: 1.8rem; max-width: 46ch; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-final img { width: min(100%, 300px); height: auto; margin-inline: auto; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 20px 50px rgba(255, 15, 158, 0.3)); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 4rem 0 7rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; margin-top: 14px; max-width: 32ch; }
.footer h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--muted); font-size: 0.93rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: var(--muted); font-size: 0.85rem;
}

/* ============================================================
   ÉLÉMENTS FIXES (sticky bar, whatsapp, toasts)
   ============================================================ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
  display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 20, 0.92); border-top: 1px solid var(--border);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.sticky-bar .btn { flex: 1; padding: 14px 10px; font-size: 0.95rem; }

.whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 54;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-bounce);
}
.whatsapp:hover { transform: scale(1.1); }
.whatsapp svg { width: 30px; height: 30px; fill: #fff; }

.toasts { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 10px; width: min(92vw, 420px); }
.toast {
  background: rgba(16, 16, 30, 0.95); border: 1px solid var(--border-strong);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 14px; padding: 14px 18px; font-size: 0.92rem; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  animation: toast-in 0.4s var(--ease-bounce);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}
.toast--ok { border-color: rgba(34, 197, 94, 0.45); }
.toast--err { border-color: rgba(244, 63, 94, 0.5); }
.toast.is-out { animation: toast-out 0.3s forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateY(16px) scale(0.96); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(10px); } }

/* ============================================================
   FORMULAIRES
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.85rem; font-weight: 700; }
.field input, .field select, .field textarea {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px; color: var(--text);
  transition: border-color 0.25s, background 0.25s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink); background: var(--surface-2);
}
.field input.is-invalid { border-color: var(--red); }
.field .hint { font-size: 0.78rem; color: var(--muted); }
.field .error { font-size: 0.78rem; color: var(--red); display: none; }
.field input.is-invalid ~ .error { display: block; }

/* ============================================================
   WIZARD RÉSERVATION
   ============================================================ */
.wizard-page { padding: calc(var(--header-h) + 2.5rem) 0 6rem; min-height: 100vh; }
.wizard { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.wizard__progress { display: flex; gap: 6px; margin-bottom: 2.5rem; grid-column: 1 / -1; }
.wizard__progress .dot {
  flex: 1; height: 5px; border-radius: 100px; background: var(--surface-2);
  position: relative; overflow: hidden;
}
.wizard__progress .dot::after {
  content: ''; position: absolute; inset: 0; background: var(--grad);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.wizard__progress .dot.is-done::after, .wizard__progress .dot.is-current::after { transform: scaleX(1); }
.wizard__progress-labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); grid-column: 1 / -1; }
.wizard__progress-labels .is-current { color: var(--pink); }

.wstep { display: none; }
.wstep.is-active { display: block; animation: step-in 0.45s var(--ease); }
@keyframes step-in { from { opacity: 0; transform: translateY(18px); } }
.wstep h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.5rem; }
.wstep > p { color: var(--muted); margin-bottom: 2rem; }

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.choice-grid--2 { grid-template-columns: repeat(2, 1fr); }
.choice {
  position: relative; display: block; cursor: pointer;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; transition: all 0.25s var(--ease);
}
.choice:hover { border-color: var(--border-strong); background: var(--surface-2); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice:has(input:checked) {
  border-color: var(--pink); background: rgba(255, 15, 158, 0.08);
  box-shadow: 0 0 0 1px var(--pink), 0 10px 30px rgba(255, 15, 158, 0.15);
}
.choice__check {
  position: absolute; top: 12px; right: 12px; width: 22px; height: 22px;
  border-radius: 50%; border: 2px solid var(--border-strong);
  display: grid; place-items: center; transition: all 0.2s;
}
.choice:has(input:checked) .choice__check { background: var(--pink); border-color: var(--pink); }
.choice__check svg { width: 12px; height: 12px; color: #fff; opacity: 0; }
.choice:has(input:checked) .choice__check svg { opacity: 1; }
.choice strong { display: block; font-family: var(--font-title); font-size: 1.02rem; margin-bottom: 4px; padding-right: 26px; }
.choice small { color: var(--muted); font-size: 0.83rem; display: block; }
.choice .price { font-family: var(--font-title); font-weight: 800; color: var(--pink); margin-top: 8px; font-size: 1.05rem; }

.wizard__nav { display: flex; gap: 12px; margin-top: 2.2rem; }
.wizard__nav .btn--ghost { margin-right: auto; }

/* Récap sticky */
.summary {
  position: sticky; top: calc(var(--header-h) + 20px);
  background: var(--bg-2); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 26px;
}
.summary h3 { font-size: 1.1rem; margin-bottom: 18px; }
.summary__lines { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.summary__line { display: flex; justify-content: space-between; gap: 12px; font-size: 0.92rem; color: var(--muted); }
.summary__line strong { color: var(--text); font-weight: 600; text-align: right; }
.summary__line--promo { color: var(--lime); }
.summary__totals { border-top: 1px solid var(--border); padding-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.summary__total { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--muted); }
.summary__total--ttc { font-size: 1.05rem; color: var(--text); font-weight: 700; }
.summary__total--ttc strong { font-family: var(--font-title); font-size: 1.5rem; }
.summary__acompte {
  margin-top: 14px; background: rgba(0, 217, 255, 0.07); border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: 12px; padding: 12px 16px; font-size: 0.9rem;
  display: flex; justify-content: space-between; align-items: center;
}
.summary__acompte strong { color: var(--cyan); font-family: var(--font-title); font-size: 1.2rem; }
.summary__empty { color: var(--muted); font-size: 0.9rem; text-align: center; padding: 20px 0; }

/* Dispo inline dans le wizard */
.dispo-check { margin-top: 10px; font-size: 0.9rem; font-weight: 600; min-height: 24px; display: flex; align-items: center; gap: 8px; }
.dispo-check--ok { color: var(--green); }
.dispo-check--busy { color: var(--gold); }
.dispo-check--loading { color: var(--muted); }
.spinner {
  width: 15px; height: 15px; border-radius: 50%; flex: none;
  border: 2px solid var(--border-strong); border-top-color: var(--pink);
  animation: spin 0.8s linear infinite;
}

/* Suggestions adresse BAN */
.address-wrap { position: relative; }
.address-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30;
  background: var(--bg-2); border: 1px solid var(--border-strong);
  border-radius: 12px; overflow: hidden; display: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.address-suggestions.is-open { display: block; }
.address-suggestions button {
  width: 100%; text-align: left; padding: 12px 16px; font-size: 0.9rem;
  transition: background 0.15s; display: block;
}
.address-suggestions button:hover, .address-suggestions button.is-focused { background: var(--surface-2); }
.address-suggestions button small { color: var(--muted); display: block; }

/* Écran succès */
.success-box { text-align: center; max-width: 560px; margin-inline: auto; padding: 3rem 0; }
.success-box__icon {
  width: 84px; height: 84px; margin: 0 auto 1.6rem; border-radius: 50%;
  background: rgba(34, 197, 94, 0.12); border: 2px solid var(--green);
  display: grid; place-items: center; animation: pop 0.5s var(--ease-bounce);
}
.success-box__icon svg { width: 38px; height: 38px; color: var(--green); }
@keyframes pop { from { transform: scale(0.4); opacity: 0; } }

/* ============================================================
   PAGES SEGMENT / LÉGALES
   ============================================================ */
.page-hero { padding: calc(var(--header-h) + 4rem) 0 4rem; position: relative; overflow: clip; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; margin-bottom: 1.1rem; }
.page-hero .section-sub { max-width: 60ch; }
.legal { max-width: 760px; }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 0.8rem; }
.legal p, .legal li { color: var(--muted); font-size: 0.95rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }

/* ============================================================
   REVEAL / ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Desktop : grande photo de fête (paysage) en fond du hero, comme V6 */
@media (min-width: 1025px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(10, 10, 20, 0.72) 0%, rgba(10, 10, 20, 0.78) 50%, rgba(7, 7, 14, 0.88) 100%),
      url("../assets/location-photobooth-91-paris.webp") center center / cover no-repeat,
      var(--bg);
  }
}

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  /* Le texte + la recherche passent AVANT le visuel : conversion d'abord */
  .hero__visual { margin-top: 1.5rem; }
  .hero__sub { margin-inline: auto; }
  .hero-search { margin-inline: auto; }
  .hero__trust { justify-content: center; }
  .hero__mascotte { width: min(38vw, 190px); }
  .hero__stat--1 { left: 2%; }
  .hero__stat--2 { right: 2%; }
  .catalogue, .packs, .moments, .reviews, .steps { grid-template-columns: repeat(2, 1fr); }
  .pack--featured { transform: none; }
  .pack--featured:hover { transform: translateY(-5px); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .dispo { grid-template-columns: 1fr; }
  .wizard { grid-template-columns: 1fr; }
  .summary { position: static; order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-final__card { grid-template-columns: 1fr; text-align: center; }
  .cta-final__actions { justify-content: center; }
  .cta-final img { width: 200px; }
}

@media (max-width: 768px) {
  .nav, .header .btn { display: none; }
  .nav-toggle { display: grid; }
  .sticky-bar { display: flex; }
  .whatsapp { bottom: 86px; right: 14px; width: 50px; height: 50px; }
  body { padding-bottom: 64px; }
  /* Comme V6 : pas de borne flottante sur mobile, le texte centré suffit */
  .hero__visual { display: none; }
  .hero-search { grid-template-columns: 1fr; border-radius: 20px; }
  .hero-search .btn { width: 100%; }
  .catalogue, .packs, .moments, .reviews, .steps, .bento, .choice-grid, .choice-grid--2 { grid-template-columns: 1fr; }
  .hero__stat { padding: 9px 13px; }
  .hero__stat strong { font-size: 1.05rem; }
  .wizard__progress-labels { display: none; }
  .top-banner { font-size: 0.82rem; }
}

/* ============================================================
   BANDEAU COOKIES (RGPD) — glassmorphism, accent néon
   ============================================================ */
.cookie-banner {
  position: fixed; right: 20px; bottom: 20px; left: auto; z-index: 2500;
  max-width: 420px;
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(16, 16, 30, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 15, 158, 0.08), 0 0 32px rgba(255, 15, 158, 0.12);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.cookie-banner p strong { color: var(--text); }
.cookie-banner p a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }

@media (max-width: 640px) {
  .cookie-banner {
    right: 12px; left: 12px; bottom: 76px; /* au-dessus de la sticky bar */
    max-width: none; padding: 16px 18px;
  }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; }
}
