/* ════════════════════════════════════════
   BELGOEVENT — style.css v4
   ════════════════════════════════════════ */

:root {
  --navy: #1F3A6B;
  --navy-deep: #142847;
  --navy-soft: #EEF2F8;
  --navy-line: #DCE3EF;

  --or: #1F3A6B; --or2: #142847; --or3: #DCE3EF;

  --ink: #0D1B2A;
  --ink-2: #1F2937;
  --paper: #FFFFFF;
  --bone: #FAFAFA;
  --bone-2: #F5F6F8;
  --line: #E5E7EB;
  --line-2: #D1D5DB;
  --mute: #6B7280;
  --mute-2: #9CA3AF;
  --texte: #0D1B2A;
  --blanc: #FFFFFF;
  --g1: #FAFAFA; --g2: #E5E7EB; --g3: #6B7280; --g4: #D1D5DB;

  --success: #10B981;
  --warn: #F59E0B;
  --danger: #EF4444;

  --sans: 'Geist', -apple-system, system-ui, sans-serif;
  --mono: 'Geist Mono', 'SF Mono', Menlo, monospace;
  --serif: 'Geist', Georgia, serif;

  --r-sm: 8px; --r: 12px; --r-lg: 18px; --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(13,27,42,0.04);
  --shadow: 0 4px 16px rgba(13,27,42,0.06);
  --shadow-lg: 0 16px 40px rgba(13,27,42,0.10);
  --shadow-navy: 0 8px 24px rgba(31,58,107,0.25);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1280px;
  --nav-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.page { display: none; }
.page.active { display: block; animation: pageIn .35s var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--navy-soft);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-weight: 500;
  margin-bottom: 16px;
}
.eyebrow-light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.section-hd {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.section-hd > div { max-width: 720px; }
.section-hd.center { flex-direction: column; align-items: center; text-align: center; }
.section-hd h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin-top: 4px; }
.section-hd p, .section-hd .sub-note { font-size: 16px; color: var(--mute); margin-top: 12px; max-width: 56ch; }
.section-hd.center .sub-note { margin-left: auto; margin-right: auto; }

/* NAV — transparente sur le hero (page d'accueil), blanche au scroll */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
#nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
/* Quand on n'est PAS sur la page d'accueil, la nav est blanche dès le départ
   (les autres pages ont déjà un header sombre qui ne nécessite pas la transparence) */
body:not(.page-home-active) #nav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}

.nav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 32px;
  height: var(--nav-h);
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; cursor: pointer; }
.logo-mark { width: 36px; height: auto; flex-shrink: 0; display: block; transition: filter 0.3s var(--ease); }
.logo-mark-light { filter: brightness(0) invert(1); }
.logo-text { font-size: 18px; font-weight: 600; letter-spacing: -0.025em; color: var(--navy); transition: color 0.3s var(--ease); }
.logo.logo-light .logo-text { color: #fff; }

/* État transparent (sur hero home) → logo + texte en blanc */
body.page-home-active #nav:not(.scrolled) .logo-mark { filter: brightness(0) invert(1); }
body.page-home-active #nav:not(.scrolled) .logo-text { color: #fff; }
body.page-home-active #nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
body.page-home-active #nav:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
body.page-home-active #nav:not(.scrolled) .nav-links a.active { color: #fff; background: rgba(255,255,255,0.14); }
body.page-home-active #nav:not(.scrolled) .burger span { background: #fff; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 24px; flex: 1; }
.nav-links a {
  display: block; padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  transition: all 0.15s var(--ease);
  cursor: pointer;
}
.nav-links a:hover { background: var(--bone-2); color: var(--navy); }
.nav-links a.active { background: var(--navy-soft); color: var(--navy); }

.cart-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 500;
  transition: all 0.2s var(--ease);
}
.cart-btn:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-navy); }
.cart-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.22);
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
}

.burger { display: none; flex-direction: column; gap: 4px; padding: 10px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); cursor: pointer; padding: 8px 24px; }
.mobile-menu a:hover { color: var(--navy); }
.mobile-close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; border-radius: 50%; background: var(--bone-2); font-size: 18px; display: flex; align-items: center; justify-content: center; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 24px;
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 0.2s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn.w100 { width: 100%; }
.btn-arrow { transition: transform 0.2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-navy); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }

.btn-ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--line-2); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-gold { background: var(--navy); color: #fff; }
.btn-gold:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-navy); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }
.btn-white-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-white-outline:hover { background: rgba(255,255,255,0.1); }

/* HERO */
/* HERO classique (utilisé par photobooth notamment) */
.hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: center;
  padding: 80px 32px 100px;
  overflow: hidden; color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.hero-ov {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(31,58,107,0.45), transparent 60%),
    linear-gradient(180deg, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.88) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: var(--container); width: 100%; margin: 0 auto; }
.hero h1 {
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 600; letter-spacing: -0.04em;
  line-height: 1.02; margin-bottom: 20px;
  max-width: 18ch;
}
.hero p { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.78); max-width: 56ch; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════
   HERO HOME — style éditorial massif (titre énorme,
   3 boutons centrés, section qui dépasse pour scroll)
   ════════════════════════════════════════════════════════ */
.hero.hero-home {
  min-height: 100vh;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 24px 120px;  /* padding-bottom pour laisser place au hero-peek */
}
.hero.hero-home .hero-bg {
  inset: -10% 0;
  will-change: transform;
}
.hero.hero-home .hero-bg img {
  filter: saturate(0.85) brightness(0.65);
}
.hero.hero-home .hero-ov {
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(13,27,42,0.6), transparent 70%),
    linear-gradient(180deg, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.55) 50%, rgba(13,27,42,0.85) 100%);
}
.hero.hero-home .hero-content {
  display: flex; flex-direction: column; align-items: center;
  max-width: 1400px;
  /* Pas de padding-top excessif → contenu remonte */
}
.hero.hero-home h1 {
  font-size: clamp(40px, 7.5vw, 110px);
  font-weight: 700; letter-spacing: -0.045em;
  line-height: 0.9;
  margin: 0 0 28px;
  text-transform: uppercase;
  max-width: 100%;
  word-break: keep-all;
  padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
}
.hero.hero-home h1 .line { display: block; line-height: 0.92; }
.hero.hero-home h1 .accent {
  color: #DCE3EF;
  font-style: normal;
}
.hero.hero-home .hero-sub {
  font-family: var(--mono);
  font-size: clamp(11px, 1.05vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero.hero-home .hero-btns {
  justify-content: center;
  margin-bottom: 0;
}

/* Section qui dépasse au-dessus du bord inférieur du hero
   → invite à scroll en montrant qu'il y a du contenu en dessous */
.hero-peek {
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
}
.hero-peek-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  padding: 18px 44px 20px;
  background: #fff;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -6px 28px rgba(0,0,0,0.18);
  transition: all 0.3s var(--ease);
}
.hero-peek:hover .hero-peek-inner {
  transform: translateY(-4px);
}
.hero-peek-eyebrow {
  font-family: var(--mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy);
}
.hero-peek-arrow {
  color: var(--navy);
  animation: peek-bounce 1.8s var(--ease) infinite;
}
@keyframes peek-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-peek-arrow { animation: none; }
}

/* ════════════════════════════════════════════════════════
   PAGE HERO — style éditorial massif pour les sous-pages
   (catalogue, atelier, contact, partenaires, mentions)
   ════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: var(--navy-deep);
}
.page-hero-bg {
  position: absolute; inset: -10% 0; z-index: 0;
  will-change: transform;
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.55);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,27,42,0.55) 0%, rgba(13,27,42,0.78) 100%);
}
.page-hero .container {
  position: relative; z-index: 2;
  max-width: 1400px;
  display: flex; flex-direction: column; align-items: center;
}
.page-hero :is(h1,.as-h1) {
  font-size: clamp(40px, 8vw, 120px);
  font-weight: 700; letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0 0 22px;
  text-transform: uppercase;
  padding: 0 12px;
  max-width: 100%;
}
.page-hero :is(h1,.as-h1) .line { display: block; line-height: 0.88; }
.page-hero :is(h1,.as-h1) .accent { color: #DCE3EF; }
.page-hero p {
  font-family: var(--mono);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  max-width: 60ch;
  font-weight: 500;
}
.page-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--r-pill);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.22s var(--ease);
}
.page-hero-cta:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-1px);
}
.page-hero-ctas {
  display: flex; gap: 12px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero-ctas .page-hero-cta { margin-top: 0; }
.page-hero-cta-primary {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.page-hero-cta-primary:hover {
  background: var(--navy-soft);
  color: var(--navy);
}

/* ════════════════════════════════════════════════════════
   BANDEAU PDF — sous le hero d'accueil
   ════════════════════════════════════════════════════════ */
.pdf-band {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.pdf-band-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.22s var(--ease);
  cursor: pointer;
}
.pdf-band-inner:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13,27,42,0.06);
}
.pdf-band-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--navy-soft);
  color: var(--navy);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.pdf-band-text { flex: 1; min-width: 0; }
.pdf-band-text strong {
  display: block;
  font-size: 15px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.pdf-band-text span {
  font-size: 13px;
  color: var(--mute);
}
.pdf-band-arrow {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy);
  padding: 10px 18px;
  border: 1px solid var(--navy);
  border-radius: var(--r-pill);
  transition: all 0.22s var(--ease);
}
.pdf-band-inner:hover .pdf-band-arrow {
  background: var(--navy);
  color: #fff;
}
@media (max-width: 700px) {
  .pdf-band-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pdf-band-arrow { align-self: stretch; text-align: center; }
}

/* STATS */
.stats-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 0;
  gap: 56px;
  flex-wrap: wrap;
}
.stat { text-align: center; min-width: 140px; }
.stat-n {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-n.stat-text {
  font-size: clamp(30px, 4.2vw, 54px);
  letter-spacing: -0.03em;
}
.stat-l {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 10px;
  font-weight: 500;
}
.stat-div { width: 1px; height: 56px; background: var(--line); }
@media (max-width: 720px) {
  .stats-grid { gap: 32px; padding: 8px 0; }
  .stat-div { display: none; }
  .stat { flex: 1 1 100%; }
}

/* SERVICES */
.services { padding: 96px 0; }
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all 0.25s var(--ease); cursor: pointer;
}
.card:hover, .card.card-hover:hover { transform: translateY(-4px); border-color: var(--navy-line); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 4 / 3; position: relative; overflow: hidden; background: var(--bone-2); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .card-img img { transform: scale(1.04); }
.card-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 10px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.96);
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--navy);
}
.card-body { padding: 22px; }
.card-body h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.card-body p { font-size: 13px; color: var(--mute); line-height: 1.6; margin-bottom: 14px; }
.card-link { font-size: 13px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.18s var(--ease); }
.card:hover .card-link { gap: 8px; }

/* POUR QUI */
.for-who { background: var(--bone); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 96px 0; }
.for-who-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.for-who-left h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.for-who-left p { font-size: 16px; color: var(--mute); line-height: 1.65; margin-bottom: 28px; max-width: 50ch; }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ev-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 20px; transition: all 0.22s var(--ease); }
.ev-card:hover { border-color: var(--navy-line); transform: translateY(-2px); box-shadow: var(--shadow); }
.ev-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--navy-soft); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ev-name { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.ev-desc { font-size: 12px; color: var(--mute); line-height: 1.5; }

/* TESTIMONIALS */
.testimonials { padding: 96px 0; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; transition: all 0.22s var(--ease); }
.testi-card:hover { border-color: var(--navy-line); box-shadow: var(--shadow); transform: translateY(-2px); }
.stars { color: var(--warn); font-size: 16px; letter-spacing: 1px; margin-bottom: 14px; }
.testi-card p { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-soft); color: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 14px; font-weight: 500; color: var(--ink); }
.testi-author small { font-size: 12px; color: var(--mute); }

/* CTA BAND */
.cta-band { padding: 64px 0 96px; }
.cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; border-radius: var(--r-lg);
  padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 50%);
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px; }
.cta-final p { font-size: 17px; color: rgba(255,255,255,0.78); margin-bottom: 32px; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--ink); color: var(--mute-2); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.foot-brand .logo { margin-bottom: 16px; }
.foot-brand p { font-size: 14px; line-height: 1.6; color: var(--mute-2); max-width: 32ch; }
.footer h4 { font-family: var(--mono); font-size: 11px; font-weight: 500; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer ul li { margin-bottom: 10px; }
.footer a { font-size: 14px; color: var(--mute-2); transition: color 0.15s var(--ease); }
.footer a:hover { color: #fff; }
.footer p { font-size: 14px; margin-bottom: 8px; }
.foot-social {
  display: flex; gap: 12px;
}
.foot-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--mute-2);
  transition: all 0.2s var(--ease);
}
.foot-social-link:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  transform: translateY(-2px);
}
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-family: var(--mono); font-size: 11px; color: var(--mute-2); text-transform: uppercase; letter-spacing: 0.06em; margin: 0; }
.footer-bottom a { color: var(--mute-2); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }

/* PDF STRIP (catalogue top) */
.pdf-strip-band { background: #fff; border-bottom: 1px solid var(--line); padding: 32px 0; }
.pdf-strip {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--navy-soft) 0%, #fff 100%);
  border: 1px solid var(--navy-line);
  border-radius: var(--r-lg);
}
.pdf-strip-icon {
  width: 56px; height: 56px;
  border-radius: var(--r); background: #fff;
  border: 1px solid var(--navy-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); flex-shrink: 0;
}
.pdf-strip-txt { flex: 1; min-width: 0; }
.pdf-strip-txt h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 4px; color: var(--ink); }
.pdf-strip-txt p { font-size: 13px; color: var(--mute); line-height: 1.5; }
.pdf-strip-btn { flex-shrink: 0; }

/* PDF promo dans la grille catalogue */
.cat-pdf-promo {
  background: var(--ink); color: #fff;
  padding: 28px 32px;
  border-radius: var(--r-lg);
  margin: 32px 0;
  display: flex; align-items: center; gap: 24px;
  position: relative; overflow: hidden;
  grid-column: 1 / -1;
}
.cat-pdf-promo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(31,58,107,0.4), transparent 60%);
  pointer-events: none;
}
.cat-pdf-promo > * { position: relative; z-index: 1; }
.cat-pdf-promo-icon {
  width: 48px; height: 48px;
  border-radius: var(--r);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: rgba(255,255,255,0.85);
}
.cat-pdf-promo-txt { flex: 1; min-width: 0; }
.cat-pdf-promo-txt h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 2px; }
.cat-pdf-promo-txt p { font-size: 13px; color: rgba(255,255,255,0.65); margin: 0; }
.cat-pdf-promo-btn { background: #fff; color: var(--navy); flex-shrink: 0; }
.cat-pdf-promo-btn:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); }

/* CATALOGUE */
.catalogue-layout {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 48px;
  padding-top: 56px; padding-bottom: 80px;
  align-items: flex-start;
}
.cat-sidebar {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px;
}
.cat-sidebar h4 { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mute); margin-bottom: 14px; padding: 0 6px; }
.cat-nav-btn {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r);
  background: transparent; text-align: left;
  margin-bottom: 4px; position: relative;
  transition: all 0.18s var(--ease);
}
.cat-nav-btn:hover { background: var(--bone-2); }
.cat-nav-btn.active { background: var(--navy-soft); }
.cat-nav-btn img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.cn-name { font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.cat-nav-btn.active .cn-name { color: var(--navy); }
.cn-count { font-family: var(--mono); font-size: 10px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 1px; }
.cn-bar { position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px; border-radius: 0 3px 3px 0; background: transparent; transition: all 0.18s var(--ease); }
.cat-nav-btn.active .cn-bar { background: var(--navy); }

.sidebar-pdf {
  margin-top: 16px;
  padding: 18px 16px;
  background: linear-gradient(135deg, var(--navy-soft) 0%, #fff 100%);
  border: 1px solid var(--navy-line);
  border-radius: var(--r);
  text-align: center;
}
.sidebar-pdf-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 10px;
  border: 1px solid var(--navy-line);
}
.sidebar-pdf p { font-size: 12px; color: var(--ink-2); line-height: 1.5; margin-bottom: 12px; font-weight: 500; }
.sidebar-pdf .btn { font-size: 12px; padding: 9px 14px; width: 100%; }

.sidebar-cart {
  margin-top: 16px;
  padding: 16px;
  background: var(--navy);
  border-radius: var(--r);
  text-align: center; color: #fff;
}
.sidebar-cart .sc-n { font-size: 32px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.sidebar-cart .sc-l { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.7); margin-top: 4px; margin-bottom: 12px; }
.sidebar-cart .btn-gold { background: #fff; color: var(--navy); }

.cat-main { min-width: 0; }
.cat-section-hd { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.cs-tag { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 6px; }
.cat-section-hd h2 { font-size: 32px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.cat-section-hd p { font-size: 14px; color: var(--mute); margin-top: 6px; max-width: 60ch; }
.cs-count { font-family: var(--mono); font-size: 11px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 12px; background: var(--bone-2); border-radius: var(--r-pill); }

.prods-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.prod-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: all 0.22s var(--ease); display: flex; flex-direction: column; }
.prod-card:hover { border-color: var(--navy-line); transform: translateY(-3px); box-shadow: var(--shadow); }
.prod-card.wide { grid-column: span 2; }
.prod-img { position: relative; background: var(--bone-2); overflow: hidden; aspect-ratio: 4 / 3; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: var(--r-pill); background: var(--navy); color: #fff; font-family: var(--mono); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.prod-in-cart { position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; border-radius: 50%; background: var(--success); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; opacity: 0; transform: scale(0.6); transition: all 0.22s var(--ease); }
.prod-in-cart.show { opacity: 1; transform: scale(1); }
.prod-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.prod-cat { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mute); margin-bottom: 6px; }
.prod-name { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 6px; line-height: 1.25; }
.prod-desc { font-size: 13px; color: var(--mute); line-height: 1.5; margin-bottom: 12px; }
.prod-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.prod-spec { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--mute); padding: 3px 8px; background: var(--bone-2); border-radius: var(--r-sm); }
.prod-footer { display: grid; grid-template-columns: auto auto 1fr; gap: 8px; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.prod-price { font-size: 14px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.qty-wrap { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-pill); overflow: hidden; }
.qty-btn { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--mute); transition: all 0.15s var(--ease); }
.qty-btn:hover { background: var(--bone-2); color: var(--navy); }
.qty-val { min-width: 24px; text-align: center; font-family: var(--mono); font-size: 12px; font-weight: 500; }
.qty-input {
  width: 38px; min-width: 38px;
  text-align: center;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: none; outline: none;
  padding: 4px 2px;
  -moz-appearance: textfield;
  appearance: textfield;
  cursor: text;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input:focus {
  background: var(--bone-2);
}
.add-btn { display: inline-flex; align-items: center; justify-content: center; gap: 4px; padding: 7px 14px; border-radius: var(--r-pill); background: var(--navy); color: #fff; font-size: 12px; font-weight: 500; transition: all 0.18s var(--ease); white-space: nowrap; }
.add-btn:hover { background: var(--navy-deep); transform: translateY(-1px); }
.add-btn.added { background: var(--success); }

/* CART DRAWER */
.cart-overlay { position: fixed; inset: 0; background: rgba(13,27,42,0.5); z-index: 199; opacity: 0; visibility: hidden; transition: all 0.25s var(--ease); }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 90vw;
  background: #fff; z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -16px 0 48px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-hd { display: flex; align-items: flex-start; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-hd h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.cart-hd p { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); margin-top: 4px; }
.cart-hd button { width: 36px; height: 36px; border-radius: 50%; background: var(--bone-2); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--mute); }
.cart-hd button:hover { background: var(--line); color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--mute); }
.cart-empty-icon { font-size: 40px; margin-bottom: 16px; opacity: 0.4; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item:last-child { border-bottom: none; }
.ci-img { width: 60px; height: 60px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.ci-info { flex: 1; min-width: 0; }
.ci-cat { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); margin-bottom: 2px; }
.ci-name { font-size: 13px; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.01em; }
.ci-qty-wrap { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r-pill); overflow: hidden; }
.ci-qty-btn { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--mute); }
.ci-qty-btn:hover { background: var(--bone-2); color: var(--navy); }
.ci-qty-val { min-width: 24px; text-align: center; font-family: var(--mono); font-size: 12px; font-weight: 500; }
.ci-qty-input {
  width: 36px; min-width: 36px;
  text-align: center;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: none; outline: none;
  padding: 3px 2px;
  -moz-appearance: textfield;
  appearance: textfield;
  cursor: text;
}
.ci-qty-input::-webkit-outer-spin-button,
.ci-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ci-qty-input:focus {
  background: var(--bone-2);
}
.ci-rm { width: 28px; height: 28px; border-radius: 50%; background: var(--bone-2); color: var(--mute); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; transition: all 0.15s var(--ease); }
.ci-rm:hover { background: var(--danger); color: #fff; }
.cart-ft { padding: 20px 24px 24px; border-top: 1px solid var(--line); }

/* MODAL */
.modal-bg { position: fixed; inset: 0; background: rgba(13,27,42,0.5); z-index: 250; opacity: 0; visibility: hidden; transition: all 0.25s var(--ease); display: flex; align-items: flex-start; justify-content: center; padding: 32px 16px; overflow-y: auto; }
.modal-bg.open { opacity: 1; visibility: visible; }
.modal-box { background: #fff; border-radius: var(--r-lg); width: 100%; max-width: 600px; margin: auto; transform: translateY(-20px); transition: transform 0.3s var(--ease); }
.modal-bg.open .modal-box { transform: translateY(0); }
.modal-hd { display: flex; align-items: flex-start; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.modal-hd h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.modal-hd p { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); margin-top: 4px; }
.modal-hd button { width: 36px; height: 36px; border-radius: 50%; background: var(--bone-2); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--mute); }
.modal-hd button:hover { background: var(--line); color: var(--ink); }
.modal-body { padding: 24px 28px 28px; }
.modal-items { background: var(--bone-2); border-radius: var(--r); padding: 18px; margin-bottom: 8px; }
.modal-items h4 { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mute); margin-bottom: 12px; }
.modal-item { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 13px; color: var(--ink-2); }
.modal-item strong { font-family: var(--mono); font-size: 12px; color: var(--navy); }

/* FORMS */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; font: inherit; font-size: 14px; color: var(--ink); background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-sm); transition: all 0.15s var(--ease); font-family: var(--sans); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(31,58,107,0.1); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* PHOTOBOOTH */
.hero-pb .hero-bg img { filter: saturate(0.8) brightness(0.65); }
.pb-title { font-size: clamp(60px, 9vw, 120px); font-weight: 600; letter-spacing: -0.05em; line-height: 0.95; margin-bottom: 8px; }
.pb-sub { font-family: var(--mono); font-size: 13px !important; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.6) !important; margin-bottom: 24px !important; }

/* PHOTOBOOTH — Présentation avec photo + 3 promesses */
.pb-presentation { padding: 96px 0; background: #fff; }
.pb-pres-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.pb-pres-img {
  background: linear-gradient(135deg, var(--navy-soft) 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pb-pres-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(13, 27, 42, 0.12));
}
.pb-pres-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 4px;
}
.pb-pres-intro {
  font-size: 16px;
  color: var(--mute);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 50ch;
}
.pb-promises-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pb-promise {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: all 0.2s var(--ease);
}
.pb-promise:hover {
  border-color: var(--navy-line);
  transform: translateX(3px);
}
.pb-promise-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--navy-line);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pb-promise h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--ink);
}
.pb-promise p {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.55;
  margin: 0;
}

.pb-offers { padding: 96px 0; background: #fff; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.offer-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; position: relative; display: flex; flex-direction: column; transition: all 0.25s var(--ease); }
.offer-card:hover { border-color: var(--navy-line); transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-card.featured { border: 2px solid var(--navy); box-shadow: var(--shadow-navy); transform: scale(1.02); }
.offer-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.offer-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 5px 14px; border-radius: var(--r-pill); background: var(--navy); color: #fff; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; white-space: nowrap; }
.offer-hd { text-align: center; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.offer-hd h3 { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 4px; }
.offer-hd p { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); }
.offer-card ul { flex: 1; margin-bottom: 24px; }
.offer-card li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; }
.offer-card li::before { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.offer-card li.yes { color: var(--ink-2); }
.offer-card li.yes::before { content: '✓'; background: rgba(16,185,129,0.12); color: var(--success); }
.offer-card li.no { color: var(--mute-2); text-decoration: line-through; }
.offer-card li.no::before { content: '✕'; background: var(--bone-2); color: var(--mute-2); }

.faq-section { padding: 96px 0; background: #fff; }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; text-align: left; font-size: 16px; font-weight: 500; color: var(--ink); transition: color 0.18s var(--ease); }
.faq-q:hover { color: var(--navy); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--bone-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: var(--mute); transition: all 0.25s var(--ease); }
.faq-item.open .faq-icon { background: var(--navy); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; font-size: 15px; color: var(--mute); line-height: 1.65; transition: all 0.3s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

.booking-section { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%); color: #fff; padding: 96px 0; position: relative; overflow: hidden; }
.booking-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(255,255,255,0.05), transparent 60%); }
.booking-grid { position: relative; display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.booking-txt h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.booking-txt p { font-size: 16px; color: rgba(255,255,255,0.78); margin-bottom: 28px; max-width: 50ch; }
.booking-promises { display: flex; flex-direction: column; gap: 12px; }
.booking-promises li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.85); }
.booking-promises svg { color: var(--success); flex-shrink: 0; }
.form-box { background: #fff; color: var(--ink); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-lg); }

/* L'ATELIER (BLOG) */
.atelier-wrap { padding-top: 64px; padding-bottom: 96px; }
.atelier-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.atelier-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: all 0.25s var(--ease); cursor: pointer; display: flex; flex-direction: column; }
.atelier-card:hover { transform: translateY(-4px); border-color: var(--navy-line); box-shadow: var(--shadow-lg); }
.atelier-card-img { aspect-ratio: 16 / 10; position: relative; overflow: hidden; background: var(--bone-2); }
.atelier-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.atelier-card:hover .atelier-card-img img { transform: scale(1.04); }
.atelier-card-tag { position: absolute; top: 14px; left: 14px; padding: 5px 10px; border-radius: var(--r-pill); background: rgba(255,255,255,0.96); font-family: var(--mono); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); }
.atelier-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.atelier-card-meta { font-family: var(--mono); font-size: 11px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.atelier-card-body h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 10px; }
.atelier-card-body p { font-size: 14px; color: var(--mute); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.atelier-card-link { font-size: 13px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.18s var(--ease); margin-top: auto; }
.atelier-card:hover .atelier-card-link { gap: 8px; }

.atelier-empty { text-align: center; padding: 80px 32px; color: var(--mute); border: 1px dashed var(--line-2); border-radius: var(--r-lg); }
.atelier-empty h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.015em; }
.atelier-empty p { font-size: 14px; max-width: 40ch; margin: 0 auto; }

/* ARTICLE détail */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 64px 32px 96px; }
.article-back { font-family: var(--mono); font-size: 12px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.08em; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 32px; transition: color 0.15s var(--ease); }
.article-back:hover { color: var(--navy); }
.article-meta { font-family: var(--mono); font-size: 12px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; display: flex; gap: 12px; flex-wrap: wrap; }
.article-meta span { display: inline-flex; align-items: center; }
.article-wrap h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 16px; color: var(--ink); }
.article-excerpt { font-size: 18px; color: var(--mute); line-height: 1.6; margin-bottom: 32px; }
.article-cover { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9; margin-bottom: 40px; background: var(--bone-2); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-content { font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.article-content p { margin-bottom: 18px; }
.article-content h2 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin: 40px 0 16px; color: var(--ink); }
.article-content h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; margin: 28px 0 12px; color: var(--ink); }
.article-content ul, .article-content ol { margin: 0 0 18px 24px; }
.article-content li { margin-bottom: 8px; }
.article-content a { color: var(--navy); border-bottom: 1px solid var(--navy-line); }
.article-content a:hover { border-bottom-color: var(--navy); }
.article-content img { border-radius: var(--r); margin: 24px 0; }
.article-content blockquote { border-left: 3px solid var(--navy); padding: 8px 20px; margin: 24px 0; font-style: italic; color: var(--mute); }
.article-content code { font-family: var(--mono); font-size: 14px; background: var(--bone-2); padding: 2px 6px; border-radius: 4px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; padding-top: 64px; padding-bottom: 96px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 24px; }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; transition: all 0.18s var(--ease); }
.contact-method:hover { border-color: var(--navy-line); background: var(--navy-soft); transform: translateX(4px); }
.cm-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--navy-soft); color: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method:hover .cm-icon { background: var(--navy); color: #fff; }
.cm-label { display: block; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); margin-bottom: 2px; }
.cm-val { display: block; font-size: 14px; font-weight: 500; color: var(--ink); }
.cm-arrow { margin-left: auto; color: var(--mute); font-size: 18px; transition: transform 0.18s var(--ease); }
.contact-method:hover .cm-arrow { color: var(--navy); transform: translateX(4px); }

.contact-social {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.contact-social-label {
  font-family: var(--mono);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--mute);
  margin-bottom: 12px;
}
.contact-social-icons {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.contact-social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.contact-social-link:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.contact-social-link svg { flex-shrink: 0; }

.zone-box { margin-top: 28px; padding: 24px; background: var(--bone); border: 1px solid var(--line); border-radius: var(--r); }
.zone-title { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); margin-bottom: 12px; }
.zone-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.zone-tag { padding: 5px 12px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); font-size: 12px; font-weight: 500; color: var(--ink-2); }
.zone-tag.primary { background: var(--navy); color: #fff; border-color: var(--navy); }

.contact-form-box { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; }
.contact-form-box h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 24px; }

/* PARTENAIRES */
.partenaires-wrap { padding-top: 72px; padding-bottom: 80px; }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.partner-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: all 0.22s var(--ease); }
.partner-card:hover { transform: translateY(-3px); border-color: var(--navy-line); box-shadow: var(--shadow); }
.partner-card-img { aspect-ratio: 4 / 3; background: var(--bone-2); position: relative; overflow: hidden; }
.partner-card-img img { width: 100%; height: 100%; object-fit: cover; }
.partner-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 56px; background: linear-gradient(135deg, var(--navy-soft), var(--navy-line)); }
.partner-type-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: var(--r-pill); background: rgba(255,255,255,0.96); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); font-weight: 500; }
.partner-body { padding: 22px; }
.partner-name { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 6px; }
.partner-desc { font-size: 13px; color: var(--mute); line-height: 1.55; margin-bottom: 14px; }
.partner-contacts { display: flex; flex-direction: column; gap: 6px; padding-top: 14px; border-top: 1px solid var(--line); }
.partner-contact { font-size: 12px; color: var(--ink-2); display: flex; align-items: center; gap: 6px; transition: color 0.15s var(--ease); }
.partner-contact:hover { color: var(--navy); }
.partners-empty { text-align: center; padding: 80px 32px; color: var(--mute); }
.partners-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.4; }

/* MENTIONS */
.mentions-wrap { max-width: 880px; padding-top: 64px; padding-bottom: 96px; }
.mention-block { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; margin-bottom: 20px; }
.mention-block h2 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.mention-block .rule { width: 40px; height: 2px; background: var(--navy); margin-bottom: 24px; border-radius: 2px; }
.mention-block h3 { font-size: 15px; font-weight: 600; margin: 18px 0 8px; }
.mention-block p { font-size: 14px; line-height: 1.75; color: var(--ink-2); margin-bottom: 12px; }
.mention-block p:last-child { margin-bottom: 0; }
.mention-block a { color: var(--navy); }
.mention-block a:hover { text-decoration: underline; }
.mention-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mention-note { margin-top: 20px; padding: 14px 18px; background: rgba(245,158,11,0.08); border-left: 3px solid var(--warn); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-size: 13px; color: var(--mute); }

/* TOAST */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: var(--ink); color: #fff;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), visibility 0.2s;
  max-width: calc(100vw - 32px);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .cart-label { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .for-who-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .catalogue-layout { grid-template-columns: 1fr; gap: 24px; }
  .cat-sidebar { position: static; }
  .pb-pres-grid { grid-template-columns: 1fr; gap: 40px; }
  .pb-pres-img { aspect-ratio: 4 / 3; max-width: 480px; margin: 0 auto; }
  .pb-presentation { padding: 64px 0; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card.featured { transform: none; }
  .offer-card.featured:hover { transform: translateY(-4px); }
  .mention-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 24px; }
  .stat-div { display: none; }
  .cta-final { padding: 48px 32px; }
  .pdf-strip { flex-direction: column; text-align: center; padding: 24px; }
  .pdf-strip-icon { margin: 0 auto; }
  .pdf-strip-btn { width: 100%; }
  .cat-pdf-promo { flex-direction: column; text-align: center; }
  .cat-pdf-promo-icon { margin: 0 auto; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; gap: 16px; }
  .hero { padding: 64px 20px 80px; min-height: 80vh; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 15px; }
  .form-row { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .prods-grid { grid-template-columns: 1fr; }
  .prod-card.wide { grid-column: span 1; }
  .pb-presentation { padding: 48px 0; }
  .pb-pres-img { padding: 20px; }
  .mention-block { padding: 28px 24px; }
  .contact-form-box { padding: 24px; }
  .form-box { padding: 24px; }
  .modal-box { margin: 0; }
  .cart-drawer { width: 100vw; max-width: 100vw; }
  .section-hd { flex-direction: column; align-items: flex-start; }
  .article-wrap { padding: 40px 20px 64px; }
}

.cart-items::-webkit-scrollbar { width: 6px; }
.cart-items::-webkit-scrollbar-track { background: transparent; }
.cart-items::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

.seo-catalog{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
