/* ==========================================================
   NEO Événements - Feuille de style principale
   ========================================================== */

:root {
  --charcoal: #2B303A;
  --mauve: #A27E8E;
  --cream: #EAE8E3;
  --sage: #7BA098;
  --sand: #D4C4A8;
  --white: #F7F5F2;
  --dark: #13161b;
}

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

/* Sécurité globale : aucune image ne peut dépasser son conteneur */
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", sans-serif;
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: all 0.4s ease;
}
nav.scrolled, nav.solid {
  background: rgba(43,48,58,0.96);
  backdrop-filter: blur(16px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(162,126,142,0.15);
}
.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
  transition: height 0.4s ease;
}
nav.scrolled .nav-logo img { height: 46px; }
nav.solid .nav-logo img { height: 52px; }
.nav-links {
  display: flex; gap: 40px;
  list-style: none; align-items: center;
}
.nav-links a {
  color: var(--sand); text-decoration: none;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--mauve);
  color: var(--cream) !important;
  padding: 10px 24px;
  border-radius: 2px;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--mauve) !important; }

/* ── HERO (page d'accueil) ── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-video-container { position: absolute; inset: 0; z-index: 0; }
.hero-video-container video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(0.75) brightness(0.82);
  z-index: 1;
}
.hero-video-fallback {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0f1115 0%, #1a1d24 40%, #12151c 100%);
}
.hero-video-fallback::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 75% 55%, rgba(123,160,152,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 25% 40%, rgba(162,126,142,0.09) 0%, transparent 65%);
  animation: ambientPulse 9s ease-in-out infinite alternate;
}
@keyframes ambientPulse {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.06); }
}
.bokeh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.b {
  position: absolute; border-radius: 50%;
  filter: blur(50px); opacity: 0;
  animation: bFloat linear infinite;
}
@keyframes bFloat {
  0%   { opacity: 0; transform: translateY(30px) scale(0.7); }
  15%  { opacity: 1; }
  85%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-100px) scale(1.3); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,
    rgba(15,17,21,0.94) 0%,
    rgba(15,17,21,0.48) 38%,
    rgba(15,17,21,0.2) 70%,
    rgba(15,17,21,0.08) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 64px 88px;
  max-width: 800px;
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-label {
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--mauve);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero-label::before {
  content: ""; display: block;
  width: 36px; height: 1px;
  background: var(--mauve); flex-shrink: 0;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 7.5vw, 90px);
  font-weight: 300; line-height: 1.05;
  color: var(--cream); margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--sand); }
.hero-sub {
  font-size: 15px; color: rgba(212,196,168,0.78);
  line-height: 1.78; max-width: 520px;
  margin-bottom: 48px; font-weight: 300;
}
.hero-actions {
  display: flex; gap: 24px;
  align-items: center; flex-wrap: wrap;
}
.btn-primary {
  background: var(--mauve); color: var(--white);
  text-decoration: none; padding: 15px 34px;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 2px;
  transition: all 0.35s; font-weight: 400;
}
.btn-primary:hover {
  background: var(--sage); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-ghost {
  color: rgba(234,232,227,0.65); text-decoration: none;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; display: flex;
  align-items: center; gap: 10px; transition: all 0.3s;
}
.btn-ghost::after { content: "\2192"; }
.btn-ghost:hover { color: var(--cream); gap: 16px; }
.hero-stats {
  position: absolute; right: 64px; bottom: 88px; z-index: 3;
  display: flex; flex-direction: column; gap: 32px;
  opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
}
.stat { text-align: right; }
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px; font-weight: 300;
  color: var(--cream); line-height: 1;
}
.stat-label {
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mauve); margin-top: 5px;
}
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 1s ease 1.4s forwards;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(162,126,142,0.8), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
.scroll-text {
  font-size: 8px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(162,126,142,0.6);
}

/* ── PAGE HERO (sous-pages) ── */
.page-hero {
  position: relative;
  padding: 200px 64px 100px;
  background: linear-gradient(155deg, var(--charcoal) 0%, #1a1d24 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(123,160,152,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 25% 60%, rgba(162,126,142,0.08) 0%, transparent 65%);
}
.page-hero-inner {
  position: relative; z-index: 1; max-width: 820px;
}
.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300; line-height: 1.05;
  color: var(--cream); margin: 24px 0 28px;
}
.page-hero h1 em { font-style: italic; color: var(--sand); }
.page-hero-sub {
  font-size: 16px; color: rgba(212,196,168,0.75);
  line-height: 1.75; max-width: 600px; font-weight: 300;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--mauve);
  padding: 13px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(247,245,242,0.82);
  padding: 0 36px;
}
.marquee-track span.dot {
  color: rgba(247,245,242,0.35); padding: 0; letter-spacing: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTIONS GÉNÉRIQUES ── */
section { padding: 120px 64px; }
.section-label {
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--mauve);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ""; display: block;
  width: 28px; height: 1px;
  background: var(--mauve); flex-shrink: 0;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300; line-height: 1.1; color: var(--cream);
}
.section-intro {
  font-size: 15px; color: rgba(212,196,168,0.65);
  line-height: 1.78; max-width: 680px;
  margin-top: 24px; font-weight: 300;
}

/* ── APPROCHE ── */
.approche {
  background: #1c1f26;
  padding: 100px 64px;
}
.approche-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px 80px; margin-top: 64px;
}
.approche-step {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px; color: var(--mauve);
  letter-spacing: 0.2em; margin-bottom: 12px;
  text-transform: uppercase;
}
.approche-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px; font-weight: 300;
  color: var(--cream); margin-bottom: 12px;
}
.approche-desc {
  font-size: 13.5px; color: rgba(212,196,168,0.65);
  line-height: 1.75; font-weight: 300;
}

/* ── SERVICES (page d'accueil - grille typographique) ── */
.services {
  background: var(--charcoal);
  border-top: 1px solid rgba(162,126,142,0.1);
}
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 72px;
  border: 1px solid rgba(162,126,142,0.1);
}
.service-card {
  padding: 52px;
  border-right: 1px solid rgba(162,126,142,0.1);
  border-bottom: 1px solid rgba(162,126,142,0.1);
  transition: background 0.4s;
}
.service-card:nth-child(even) { border-right: none; }
.service-card:nth-last-child(-n+2) { border-bottom: none; }
.service-card:hover { background: rgba(162,126,142,0.05); }
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px; color: var(--mauve);
  letter-spacing: 0.18em; margin-bottom: 20px;
}
.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px; font-weight: 300;
  color: var(--cream); margin-bottom: 14px; line-height: 1.2;
}
.service-desc {
  font-size: 13.5px; color: rgba(212,196,168,0.68);
  line-height: 1.75; font-weight: 300; margin-bottom: 20px;
}
.service-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.service-list li {
  font-size: 12px; color: rgba(212,196,168,0.5);
  padding-left: 14px; position: relative; font-weight: 300;
}
.service-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 5px; height: 1px; background: var(--mauve);
}

/* ── SERVICE BLOCKS (page services - alterné texte/image) ── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(162,126,142,0.08);
}
.service-block:last-of-type { border-bottom: none; }
.service-block.reverse .service-block-image { order: 2; }
.service-block.reverse .service-block-text { order: 1; }
.service-block.alt { background: #1c1f26; }

.service-block-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1d24 0%, #2B303A 100%);
}
.service-block-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.88);
  transition: transform 0.8s ease, filter 0.5s ease;
}
.service-block:hover .service-block-image img {
  transform: scale(1.04);
  filter: saturate(0.9) brightness(0.95);
}
.service-block-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(15,17,21,0.4) 100%);
  pointer-events: none;
}
.image-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(212,196,168,0.25);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
  padding: 40px;
}
.image-placeholder::before {
  content: "✦"; display: block;
  font-size: 24px; margin-bottom: 16px;
  color: rgba(162,126,142,0.35); font-style: normal;
}

.service-block-text {
  padding: 88px 80px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.service-block-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: var(--mauve);
  letter-spacing: 0.22em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.service-block-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 26px;
}
.service-block-title em { font-style: italic; color: var(--sand); }
.service-block-lead {
  font-size: 15.5px;
  color: rgba(212,196,168,0.78);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 28px;
}
.service-block-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.service-block-list li {
  font-size: 13px;
  color: rgba(212,196,168,0.62);
  padding-left: 18px;
  position: relative;
  font-weight: 300;
}
.service-block-list li::before {
  content: ""; position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 1px;
  background: var(--mauve);
}

/* ── PROMESSE CLIENT (manifeste) ── */
.promesse {
  background: var(--cream);
  color: var(--charcoal);
  padding: 120px 64px;
  text-align: center;
}
.promesse .section-label {
  color: var(--mauve);
  justify-content: center;
}
.promesse .section-label::before { background: var(--mauve); }
.promesse-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  max-width: 920px;
  margin: 0 auto 40px;
}
.promesse-title em { font-style: italic; color: var(--mauve); }
.promesse-text {
  font-size: 16px;
  line-height: 1.85;
  color: #5a5a5a;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── CHIFFRES ── */
.chiffres {
  background: var(--dark);
  padding: 80px 64px;
}
.chiffres-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid rgba(162,126,142,0.12);
}
.chiffre-item {
  padding: 48px 44px; text-align: center;
  border-right: 1px solid rgba(162,126,142,0.12);
}
.chiffre-item:last-child { border-right: none; }
.chiffre-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px; font-weight: 300;
  color: var(--cream); line-height: 1;
}
.chiffre-label {
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--mauve); margin-top: 12px;
  text-transform: uppercase; font-weight: 300;
}

/* ── À PROPOS ── */
.about {
  background: var(--cream); color: var(--charcoal);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0;
}
.about-text { padding: 100px 80px; }
.about .section-label { color: var(--mauve); }
.about .section-label::before { background: var(--mauve); }
.about .section-title { color: var(--charcoal); }
.about-body {
  font-size: 15px; line-height: 1.82;
  color: #5a5a5a; margin-top: 28px; font-weight: 300;
}
.about-body strong { color: var(--charcoal); font-weight: 500; }
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 44px;
}
.pillar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px; font-weight: 300;
  color: var(--charcoal); margin-bottom: 8px;
}
.pillar-desc {
  font-size: 13px; color: #777;
  line-height: 1.65; font-weight: 300;
}
.about-visual {
  background: linear-gradient(155deg, var(--charcoal) 0%, #14171e 100%);
  position: relative; overflow: hidden;
  min-height: 520px; display: flex;
  align-items: center; justify-content: center;
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(123,160,152,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 30% 70%, rgba(162,126,142,0.1) 0%, transparent 60%);
}
.about-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px; font-style: italic; font-weight: 300;
  color: var(--cream); text-align: center;
  padding: 64px; line-height: 1.6;
  position: relative; z-index: 1;
}
.about-quote cite {
  display: block; font-style: normal;
  font-family: "DM Sans", sans-serif;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mauve); margin-top: 28px;
}

/* ── MARQUES ── */
.marques {
  background: #1c1f26;
  padding: 88px 64px;
  border-top: 1px solid rgba(162,126,142,0.1);
}
.marques-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 56px;
}
.marque-card {
  border: 1px solid rgba(162,126,142,0.18);
  padding: 48px 52px; border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}
.marque-card.sage { border-color: rgba(123,160,152,0.22); }
.marque-card:hover {
  border-color: rgba(162,126,142,0.4);
  background: rgba(162,126,142,0.04);
}
.marque-card.sage:hover { border-color: rgba(123,160,152,0.5); }
.marque-badge {
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--mauve);
  margin-bottom: 16px;
}
.marque-card.sage .marque-badge { color: var(--sage); }
.marque-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px; font-weight: 300;
  color: var(--cream); margin-bottom: 16px;
}
.marque-desc {
  font-size: 14px; color: rgba(212,196,168,0.6);
  line-height: 1.75; font-weight: 300;
}

/* ── PARTENAIRES ── */
.partenaires {
  background: var(--charcoal);
  padding: 72px 64px;
  border-top: 1px solid rgba(162,126,142,0.1);
}
.partenaires-intro {
  font-size: 14px; color: rgba(212,196,168,0.6);
  line-height: 1.75; max-width: 700px;
  margin-top: 20px; font-weight: 300;
}
.partenaires-grid {
  display: flex; gap: 0; margin-top: 52px;
  border: 1px solid rgba(162,126,142,0.1); overflow: hidden;
}
.partenaire-item {
  flex: 1; padding: 28px 24px;
  border-right: 1px solid rgba(162,126,142,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; letter-spacing: 0.12em;
  color: rgba(212,196,168,0.4); text-transform: uppercase;
  text-align: center; font-weight: 300;
  transition: color 0.3s, background 0.3s;
}
.partenaire-item:last-child { border-right: none; }
.partenaire-item:hover {
  color: var(--sand); background: rgba(162,126,142,0.04);
}

/* ── GALERIE (mosaïque photos d'événements réels) ── */
.galerie {
  background: var(--dark);
  padding: 120px 64px;
}
.galerie-header {
  max-width: 800px;
  margin-bottom: 64px;
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.galerie-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1d24 0%, #2B303A 100%);
  border-radius: 2px;
}
.galerie-item.tall { grid-row: span 2; }
.galerie-item.wide { grid-column: span 2; }
.galerie-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.85);
  transition: transform 0.7s ease, filter 0.4s ease;
}
.galerie-item:hover img {
  transform: scale(1.05);
  filter: saturate(1) brightness(0.95);
}
.galerie-item .image-placeholder {
  font-size: 10px;
}
.galerie-item .image-placeholder::before {
  font-size: 20px;
}

/* ── CTA ── */
.cta-section {
  background: var(--mauve);
  padding: 110px 64px; text-align: center;
}
.cta-section .section-title { color: var(--white); }
.cta-sub {
  font-size: 16px; color: rgba(247,245,242,0.75);
  margin: 24px auto 0; font-weight: 300;
  max-width: 560px; line-height: 1.75;
}
.cta-btn {
  display: inline-block; margin-top: 48px;
  background: var(--charcoal); color: var(--cream);
  padding: 16px 44px; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.3s;
}
.cta-btn:hover {
  background: var(--cream); color: var(--charcoal);
  transform: translateY(-2px);
}

/* CTA inline (entre sections, plus discret) */
.cta-inline {
  background: var(--charcoal);
  padding: 80px 64px;
  text-align: center;
  border-top: 1px solid rgba(162,126,142,0.1);
  border-bottom: 1px solid rgba(162,126,142,0.1);
}
.cta-inline-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.3;
  margin: 0 auto 32px; max-width: 720px;
}
.cta-inline-text em {
  font-style: normal; color: var(--mauve);
}
.cta-inline-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--mauve);
  color: var(--cream);
  padding: 14px 36px;
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: all 0.3s;
}
.cta-inline-btn:hover {
  background: var(--mauve); transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 64px;
  border-top: 1px solid rgba(162,126,142,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 48px;
}
.footer-logo img {
  height: 42px; width: auto;
  margin-bottom: 18px; opacity: 0.9;
}
.footer-tagline {
  font-size: 13px; color: rgba(212,196,168,0.5);
  line-height: 1.7; font-weight: 300;
}
.footer-col-title {
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--mauve); margin-bottom: 20px;
}
.footer-links {
  list-style: none; display: flex;
  flex-direction: column; gap: 11px;
}
.footer-links a {
  color: rgba(212,196,168,0.55); text-decoration: none;
  font-size: 13px; font-weight: 300; transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }
.footer-contact {
  font-size: 13px; color: rgba(212,196,168,0.55);
  font-weight: 300; line-height: 1.85;
}
.footer-contact a {
  color: var(--sage); text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--cream); }

.footer-middle {
  padding: 36px 0;
  border-top: 1px solid rgba(162,126,142,0.08);
  border-bottom: 1px solid rgba(162,126,142,0.08);
  text-align: center;
  margin-bottom: 24px;
}
.footer-email {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.footer-email:hover { color: var(--mauve); }

.footer-bottom {
  padding-top: 0; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 10px; color: rgba(212,196,168,0.25);
  letter-spacing: 0.08em;
}
.footer-lang {
  display: flex; gap: 16px;
}
.footer-lang a {
  font-size: 10px; color: rgba(212,196,168,0.25);
  text-decoration: none; letter-spacing: 0.12em; transition: color 0.3s;
}
.footer-lang a:hover, .footer-lang a.active { color: var(--mauve); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav, nav.scrolled, nav.solid { padding: 20px 32px; }
  .hero-content { padding: 0 32px 64px; }
  .hero-stats { right: 32px; bottom: 64px; }

  section, .approche, .chiffres, .marques, .partenaires,
  .galerie, .promesse, .cta-inline { padding: 80px 32px; }

  .page-hero { padding: 160px 32px 80px; }
  .services-grid, .approche-grid, .about, .marques-grid { grid-template-columns: 1fr; }

  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse .service-block-image { order: 1; }
  .service-block.reverse .service-block-text { order: 2; }
  .service-block-image { min-height: 320px; }
  .service-block-text { padding: 56px 32px; }

  .about-text { padding: 64px 32px; }
  .chiffres-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .partenaires-grid { flex-wrap: wrap; }
  .partenaire-item { flex: 1 1 33%; }

  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex !important; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 100%;
    max-width: 380px;
    background: #14171e;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 110;
    border-left: 1px solid rgba(162,126,142,0.15);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 14px;
    letter-spacing: 0.16em;
    padding: 4px 0;
    color: var(--cream);
  }
  .nav-links a:hover {
    color: var(--mauve);
  }
  .nav-cta {
    margin-top: 8px;
    color: var(--cream) !important;
  }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15,17,21,0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 105;
  }
  .nav-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
  }
  .hero-stats { display: none; }
  .hero-content { padding: 0 24px 48px; }

  section, .approche, .chiffres, .marques, .partenaires,
  .galerie, .promesse, .cta-inline, .evenements { padding: 64px 24px; }

  .page-hero { padding: 130px 24px 64px; }
  .about-text { padding: 48px 24px; }
  .service-card { padding: 36px 28px; }
  .service-block-text { padding: 48px 24px; }
  .service-block-list { grid-template-columns: 1fr; }
  .chiffres-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-pillars { grid-template-columns: 1fr; }
  .marque-card { padding: 32px 28px; }

  .galerie-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .galerie-item.tall, .galerie-item.wide { grid-column: span 1; grid-row: span 1; }
}

/* ── NOS ÉVÉNEMENTS (bande horizontale page d'accueil) ── */
.evenements {
  background: #1c1f26;
  padding: 110px 64px;
  border-top: 1px solid rgba(162,126,142,0.08);
}
.evenements-header {
  max-width: 760px;
  margin-bottom: 64px;
}
.evenements-intro {
  font-size: 15px;
  color: rgba(212,196,168,0.65);
  line-height: 1.78;
  margin-top: 24px;
  font-weight: 300;
}
.evenements-strip {
  /* Fallback flexbox d'abord, au cas où grid ne fonctionne pas */
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  /* Puis grid moderne par-dessus */
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.evenement-card {
  display: flex;
  flex-direction: column;
  /* Sécurité fallback : force la largeur en flex à ~1/5e */
  flex: 1 1 calc(20% - 16px);
  min-width: 0;
  max-width: 100%;
}
.evenement-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1d24 0%, #2B303A 100%);
  border-radius: 2px;
  margin-bottom: 16px;
  width: 100%;
}
.evenement-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 0.7s ease, filter 0.4s ease;
}
.evenement-card:hover .evenement-image img {
  transform: scale(1.05);
  filter: saturate(1) brightness(0.95);
}
.evenement-meta {
  padding: 0 4px;
}
.evenement-cat {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 6px;
}
.evenement-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
}

@media (max-width: 1024px) {
  .evenements { padding: 80px 32px; }
  .evenements-strip { grid-template-columns: repeat(3, 1fr); }
  .evenement-card:nth-child(n+4) { display: none; }
}
@media (max-width: 640px) {
  .evenements-strip { grid-template-columns: repeat(2, 1fr); }
  .evenement-card:nth-child(n+3) { display: none; }
}

/* ── HAMBURGER MOBILE ── */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 115;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

