/* ====================================================
   DrimEvents — style.css
   Mobile-first | Zero dépendance externe
   ==================================================== */

/* ============ 1. RESET MINIMAL ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ============ 2. VARIABLES (cf. 06-charte.md) ============ */
:root {
  /* BG */
  --bg-dark:    #0F0E0D;
  --bg-warm:    #1B1714;
  --bg-card:    #221C18;
  --bg-overlay: rgba(15, 14, 13, 0.85);

  /* Accents */
  --gold:       #D4AF37;
  --gold-soft:  #E6C66E;
  --gold-deep:  #A88928;
  --coral:      #E8654F;
  --coral-deep: #C6432D;

  /* Text */
  --text:       #F5F1EA;
  --text-muted: #A09B92;
  --text-soft:  #6E6862;

  /* État */
  --success:    #5DA67F;
  --error:      #D85A4F;
  --warning:    #E8B547;

  /* Lignes */
  --border:        rgba(245, 241, 234, 0.08);
  --border-strong: rgba(212, 175, 55, 0.30);

  /* Ombres */
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md:   0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg:   0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 0 3px rgba(212, 175, 55, 0.25);

  /* Espace */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2.5rem;
  --sp-2xl: 4rem;
  --sp-3xl: 6rem;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-pill: 999px;

  /* Transitions */
  --t:      all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ 3. TYPOGRAPHIE ============ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 { font-size: clamp(2.25rem, 8vw, 4.5rem); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.125rem); }
p, li, label { font-size: clamp(0.95rem, 2vw, 1rem); line-height: 1.6; }

.lead { font-size: clamp(1rem, 2.5vw, 1.125rem); color: var(--text-muted); line-height: 1.5; }
.eyebrow {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); display: inline-block; margin-bottom: var(--sp-md);
}
.script { font-family: 'Great Vibes', cursive; font-size: 1.5em; color: var(--gold); }
em.gold { color: var(--gold); font-style: normal; }

/* ============ 4. LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
}
.section.bg-warm { background: var(--bg-warm); }
.section.bg-dark { background: var(--bg-dark); }

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 1.25rem;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============ 5. HEADER ============ */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 14, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
/* Mobile : layout 3 colonnes (vide / logo centre / burger droite) */
@media (max-width: 1023px) {
  .site-header__inner {
    display: grid !important;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    justify-items: center;
    padding: 0.85rem 0 !important;
  }
  .site-header__inner .logo {
    grid-column: 2;
    justify-self: center;
  }
  .site-header__inner .btn-burger {
    grid-column: 3;
    justify-self: end;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 260px;
}
@media (min-width: 768px) {
  .logo-img { height: 72px; max-width: 320px; }
}
/* Header un peu plus grand pour visibilite */
.site-header .logo-img { height: 60px; }
@media (min-width: 768px) {
  .site-header .logo-img { height: 72px; }
}
/* Footer logo : encore plus grand pour signature de marque */
.site-footer .logo-img { height: 80px; max-width: 360px; }
/* Anciennes classes wordmark conservees au cas ou (deprecie) */
.logo-mark, .logo-text { display: none; }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: 1.5rem; }
  .nav-desktop a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 200ms;
  }
  .nav-desktop a:hover { color: var(--gold); }
}

.btn-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  color: var(--text);
}
@media (min-width: 1024px) {
  .btn-burger { display: none; }
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 300ms ease;
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
}
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  padding: 0.75rem 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover, .nav-mobile a:focus { color: var(--gold); }
.nav-mobile .contact-block {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.75rem;
}

/* ============ 6. BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none;
  transition: var(--t);
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-link {
  display: inline-flex; align-items: center; gap: 0.25rem;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
  padding: 0;
  min-height: 0;
}
.btn-link:hover { color: var(--gold-soft); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; min-height: 40px; }

.btn-floating {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 55;
  transition: var(--t);
}
.btn-floating:hover { transform: scale(1.05); }

/* ============ 7. HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  padding: 6rem 1.5rem 4rem;
}
/* Variant hero avec video en arriere-plan */
.hero--video .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero--video .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,14,13,0.55) 0%, rgba(15,14,13,0.75) 60%, rgba(15,14,13,0.92) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.14), transparent 60%);
}
.hero--video .hero__content {
  position: relative;
  z-index: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.18), transparent 55%),
    radial-gradient(ellipse at 25% 85%, rgba(232, 101, 79, 0.12), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(212, 175, 55, 0.08), transparent 55%),
    var(--bg-dark);
}
.hero__bg::before {
  /* Motif d'ondes sonores stylisées en SVG, très subtil */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='xMidYMid slice'><g fill='none' stroke='%23D4AF37' stroke-width='1' opacity='0.06'><circle cx='600' cy='300' r='80'/><circle cx='600' cy='300' r='160'/><circle cx='600' cy='300' r='240'/><circle cx='600' cy='300' r='320'/><circle cx='600' cy='300' r='400'/><circle cx='600' cy='300' r='480'/></g></svg>");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 0, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.04) 0, transparent 1px);
  background-size: 6px 6px;
  opacity: 0.6;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero__content > * { animation: heroFadeIn 800ms cubic-bezier(0.2, 0, 0.2, 1) backwards; }
.hero__content > *:nth-child(1) { animation-delay: 50ms; }
.hero__content > *:nth-child(2) { animation-delay: 200ms; }
.hero__content > *:nth-child(3) { animation-delay: 350ms; }
.hero__content > *:nth-child(4) { animation-delay: 500ms; }
.hero__content { max-width: 780px; }
.hero h1 {
  background: linear-gradient(180deg, var(--text) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 1.25rem;
}
.hero .lead {
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  margin-bottom: 1.5rem;
}
.hero__zones {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.7;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -6px); }
}

/* ============ 8. PROOF STRIP ============ */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
  padding: 2rem 0;
}
@media (min-width: 768px) { .proof-strip { grid-template-columns: repeat(4, 1fr); } }
.proof-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.proof-item__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

/* ============ 9. CARDS ============ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: var(--t);
  position: relative;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card-featured {
  background: linear-gradient(180deg, var(--bg-card), rgba(212, 175, 55, 0.06));
  border: 1px solid var(--border-strong);
}
.card-featured::before {
  content: "⭐ Le plus choisi";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.25rem 0.875rem;
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); margin-bottom: 1rem; }

/* Carte type d'événement (illustration CSS, pas de photo nécessaire) */
.event-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: var(--t);
  isolation: isolate;
  background: var(--bg-card);
}
.event-card::before {
  /* Overlay sombre en bas pour lisibilité du texte */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 14, 13, 0.92) 100%);
  z-index: 1;
}
.event-card__art {
  /* Visuel généré côté CSS (gradients + SVG en background-image) */
  position: absolute; inset: 0;
  z-index: 0;
  transition: transform 600ms cubic-bezier(0.2, 0, 0.2, 1);
}
.event-card:hover .event-card__art { transform: scale(1.06); }
.event-card > h3, .event-card > .event-card__meta { position: relative; z-index: 2; }
.event-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Illustration : Mariage mixte FR-Oriental (or + coral) */
.event-card--mixte .event-card__art {
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.45), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(232, 101, 79, 0.45), transparent 55%),
    linear-gradient(135deg, #2a1d12 0%, #1a1410 100%);
}
.event-card--mixte .event-card__art::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23D4AF37' stroke-width='1' opacity='0.18'><circle cx='100' cy='100' r='40'/><circle cx='100' cy='100' r='60'/><circle cx='100' cy='100' r='80'/></g><g fill='%23E8654F' opacity='0.32'><circle cx='100' cy='100' r='6'/></g></svg>");
  background-size: 220px 220px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Illustration : Mariage 100 % oriental (arabesque + coral) */
.event-card--oriental .event-card__art {
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 101, 79, 0.55), transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(212, 175, 55, 0.30), transparent 60%),
    linear-gradient(135deg, #2b160f 0%, #1a0e0a 100%);
}
.event-card--oriental .event-card__art::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23D4AF37' stroke-width='0.9' opacity='0.28'><path d='M100 30 Q130 50 130 80 Q130 110 100 130 Q70 110 70 80 Q70 50 100 30 Z'/><path d='M100 50 Q120 65 120 80 Q120 95 100 105 Q80 95 80 80 Q80 65 100 50 Z'/><circle cx='100' cy='80' r='4' fill='%23D4AF37'/></g><g fill='%23E8654F' opacity='0.18'><circle cx='40' cy='160' r='3'/><circle cx='160' cy='160' r='3'/><circle cx='40' cy='40' r='3'/><circle cx='160' cy='40' r='3'/></g></svg>");
  background-size: 200px 200px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Illustration : Mariage classique FR (or pur, lignes épurées) */
.event-card--classique .event-card__art {
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.40), transparent 60%),
    linear-gradient(135deg, #1f1a13 0%, #14110d 100%);
}
.event-card--classique .event-card__art::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23D4AF37' stroke-width='0.8' opacity='0.30'><line x1='100' y1='40' x2='100' y2='160'/><line x1='40' y1='100' x2='160' y2='100'/><circle cx='100' cy='100' r='30'/><circle cx='100' cy='100' r='50'/></g><g fill='%23D4AF37' opacity='0.45'><circle cx='100' cy='100' r='3'/></g></svg>");
  background-size: 180px 180px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Illustration : Événement privé (plus festif, accent coral) */
.event-card--prive .event-card__art {
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 101, 79, 0.40), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.30), transparent 55%),
    linear-gradient(135deg, #1f1410 0%, #14100c 100%);
}
.event-card--prive .event-card__art::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='%23D4AF37' opacity='0.35'><circle cx='60' cy='70' r='2.5'/><circle cx='140' cy='70' r='2.5'/><circle cx='100' cy='40' r='3'/><circle cx='80' cy='130' r='2'/><circle cx='130' cy='150' r='2.5'/><circle cx='50' cy='160' r='2'/><circle cx='160' cy='110' r='2'/></g><g fill='none' stroke='%23E8654F' stroke-width='0.8' opacity='0.28'><path d='M100 60 L110 90 L140 95 L116 115 L122 145 L100 130 L78 145 L84 115 L60 95 L90 90 Z'/></g></svg>");
  background-size: 190px 190px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Subtle pulse au hover sur l'icône de l'illustration */
@keyframes eventCardGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.78; }
}
.event-card:hover .event-card__art::after { animation: eventCardGlow 2.4s ease-in-out infinite; }
.event-card h3 {
  color: var(--text);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.event-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
}
.event-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

/* ============ 10. USP / FEATURES ============ */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 1100px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(232, 101, 79, 0.05));
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.feature p { color: var(--text-muted); font-size: 0.9375rem; }

/* ============ 11. STEPPER (comment ça marche) ============ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.step { position: relative; padding-left: 3.5rem; }
.step__num {
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.9375rem; }

/* ============ 12. TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
}
.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.testimonial__author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold);
}
.testimonial__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* ============ 13. PRICING TABLE ============ */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
/* Variante 4 cartes : 2x2 desktop standard, 1x4 sur grand écran */
.pricing-grid--4 {
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .pricing-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .pricing-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-card__head h3 { font-size: 1.5rem; }
.pricing-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.pricing-card__price-from {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}
.pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card__features li.muted { color: var(--text-soft); text-decoration: line-through; }
.pricing-card__features li.muted::before { content: "—"; color: var(--text-soft); text-decoration: none; }

.pricing-table {
  margin-top: 3rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.pricing-table table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.pricing-table th, .pricing-table td {
  padding: 0.875rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.pricing-table th { font-weight: 600; color: var(--text); }
.pricing-table td:first-child, .pricing-table th:first-child {
  text-align: left; font-weight: 500; color: var(--text);
}
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table .col-featured { background: rgba(212, 175, 55, 0.05); color: var(--gold); }

/* ============ 14. OPTIONS LIST ============ */
.options-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .options-list { grid-template-columns: repeat(2, 1fr); }
}
.option-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.option-item__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--r-sm);
}
.option-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
  color: var(--text);
}
.option-item p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.option-item__price {
  flex-shrink: 0;
  margin-left: auto;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ============ 15. FORMS ============ */
.field { margin-bottom: 1.25rem; }
label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-dark);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--t);
  min-height: 48px;
}
textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
input::placeholder, textarea::placeholder { color: var(--text-soft); }

/* Honeypot field (hidden) */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; }

/* Radio cards */
.radio-cards {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .radio-cards { grid-template-columns: repeat(2, 1fr); }
}
.radio-cards.cols-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .radio-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.radio-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card:has(input:checked) {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--bg-card), rgba(212, 175, 55, 0.06));
}
.radio-card__title { font-weight: 600; color: var(--text); }
.radio-card__sub { font-size: 0.8125rem; color: var(--text-muted); }
.radio-card__price { font-size: 1rem; color: var(--gold); font-weight: 600; margin-top: 0.25rem; }

/* Checkbox cards (options) */
.check-cards {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .check-cards { grid-template-columns: repeat(2, 1fr); } }
.check-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--t);
}
.check-card:has(input:checked) {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--bg-card), rgba(212, 175, 55, 0.06));
}
.check-card input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.25rem;
  accent-color: var(--gold);
  width: 18px; height: 18px;
  cursor: pointer;
}
.check-card__body { flex: 1; }
.check-card__title { font-weight: 600; color: var(--text); font-size: 0.9375rem; }
.check-card__price { color: var(--gold); font-weight: 600; font-size: 0.875rem; }
.check-card.disabled { opacity: 0.55; cursor: not-allowed; }
.check-card.disabled .check-card__title::after {
  content: "  ✓ Inclus dans le forfait";
  color: var(--gold);
  font-weight: 500;
  margin-left: 0.5rem;
}

/* Slider invités */
.slider-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--border);
  border-radius: var(--r-pill);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--bg-dark);
  box-shadow: var(--shadow-sm);
}
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--bg-dark);
}
.slider-value {
  min-width: 64px;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  text-align: center;
}

/* ============ 16. STEP NAVIGATION ============ */
.steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
}
.steps-nav__item {
  display: flex; align-items: center;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.steps-nav__item.active { color: var(--gold); font-weight: 600; }
.steps-nav__item.done { color: var(--text-muted); }
.steps-nav__item::after {
  content: "→";
  margin: 0 0.5rem;
  color: var(--text-soft);
}
.steps-nav__item:last-child::after { content: ""; }

/* Progressive enhancement multi-step :
   - Par DÉFAUT, toutes les step-panes sont VISIBLES (fallback si JS plante).
   - Quand body.js-multistep est ajouté par JS, on cache les non-actives. */
.step-pane {
  display: block;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}
.step-pane:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.step-pane[data-success] { display: none; }
.step-pane[data-success].active { display: block; border: 0; }
/* Mode multi-step (activé par JS) : seule la pane .active est visible */
body.js-multistep .step-pane:not(.active) { display: none; }
body.js-multistep .step-pane.active { display: block; animation: fadeIn 250ms ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Numéro pastille avant chaque h2 de section */
.step-pane > h2:first-child::before {
  content: attr(data-step-num);
  display: inline-block;
  width: 28px; height: 28px; line-height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-right: 0.5rem;
  font-family: 'Inter', sans-serif;
}

/* Barre de progression du formulaire (visible uniquement en mode multi-step) */
.progress-wrap {
  display: none;
  margin-bottom: 1.5rem;
}
body.js-multistep .progress-wrap { display: block; }
.progress-bar {
  position: relative;
  height: 6px;
  background: var(--bg-card);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  width: 25%;
  transition: width 300ms cubic-bezier(0.2, 0, 0.2, 1);
  border-radius: var(--r-pill);
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.progress-label__pct { color: var(--gold); font-weight: 600; }

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Estimate box */
.estimate-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(232, 101, 79, 0.05));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}
.estimate-box__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.estimate-box__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin: 0.25rem 0;
}
.estimate-box__hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.estimate-detail {
  text-align: left;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.estimate-detail__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.25rem 0;
}
.estimate-detail__row strong { color: var(--text); }

/* ============ 17. FAQ ============ */
.faq { max-width: 760px; margin: 0 auto; }
details {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
details summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 200ms;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
details > p, details .answer {
  padding-top: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ============ 18. GALLERY ============ */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.gallery-filter {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--t);
}
.gallery-filter.active, .gallery-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: var(--bg-card);
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.05); }
.gallery-item__badge {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  background: rgba(15, 14, 13, 0.7);
  color: var(--gold);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-sm);
}

/* Placeholder gallery items — dégradés thématiques selon catégorie (no images yet) */
.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-size: 2.4rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.gallery-item.placeholder::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-warm));
}
.gallery-item.placeholder[data-cat="mixte"]::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.35), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(232, 101, 79, 0.30), transparent 60%),
    linear-gradient(135deg, #251c14, #18130f);
}
.gallery-item.placeholder[data-cat="oriental"]::before {
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 101, 79, 0.42), transparent 60%),
    linear-gradient(135deg, #2a1410, #1a0e0a);
}
.gallery-item.placeholder[data-cat="classique"]::before {
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.30), transparent 60%),
    linear-gradient(135deg, #1c1813, #14110d);
}
.gallery-item.placeholder[data-cat="prive"]::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 101, 79, 0.30), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.22), transparent 55%),
    linear-gradient(135deg, #1f1410, #14100c);
}
.gallery-item.placeholder::after {
  /* Petit motif décoratif central */
  content: "";
  position: absolute; inset: 30%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='none' stroke='%23D4AF37' stroke-width='1' opacity='0.35'><circle cx='50' cy='50' r='20'/><circle cx='50' cy='50' r='35'/></g></svg>");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.gallery-item.placeholder span.gallery-item__badge { z-index: 2; }

/* ============ 19. CTA SECTION ============ */
.cta-section {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1rem;
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12), transparent 60%),
    var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 1.75rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-section__actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.cta-section__contacts {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.cta-section__contacts a {
  color: var(--text);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.cta-section__contacts a:hover { color: var(--gold); }

/* ============ 20. FOOTER ============ */
.site-footer {
  background: #0a0908;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col p, .footer-col a, .footer-col li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-col a:hover { color: var(--gold); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.25rem; }
.social-row { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  transition: var(--t);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--text-muted); margin: 0 0.5rem; }

/* ============ 21. UTILITIES ============ */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-gold   { color: var(--gold); }
.mb-0  { margin-bottom: 0; }
.mb-md { margin-bottom: 1rem; }
.mt-md { margin-top: 1rem; }
.mt-xl { margin-top: 2.5rem; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============ 22. TOAST ============ */
.toast {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  max-width: calc(100% - 2rem);
  width: 360px;
  font-size: 0.9375rem;
  transform: translateX(120%);
  transition: transform 300ms ease;
  z-index: 200;
}
.toast.show { transform: translateX(0); }
.toast.success { border-left: 3px solid var(--success); }
.toast.error   { border-left: 3px solid var(--error); }

/* ============ 23. SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { animation: none; }
  * { transition: none !important; }
}

/* ============ 24. SUCCESS / CONFIRM PAGE ============ */
.success-card {
  max-width: 560px;
  margin: 4rem auto;
  text-align: center;
  padding: 2rem;
}
.success-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(93, 166, 127, 0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--success);
  font-size: 2rem;
}
.success-card h1 { margin-bottom: 1rem; }
.success-card .ref-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-pill);
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
}

/* ============ 25. CONTACT BLOCK ============ */
.contact-block {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-block a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  transition: var(--t);
}
.contact-block a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.contact-block__icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
}

/* ============ 26. PROSE (mentions, articles) ============ */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 1.75rem 0 0.75rem; }
.prose p, .prose li { margin-bottom: 0.875rem; color: var(--text-muted); }
.prose ul { padding-left: 1.5rem; list-style: disc; }
.prose strong { color: var(--text); }
.prose a { color: var(--gold); border-bottom: 1px solid currentColor; }

/* ============ 27. RESPONSIVE FIX-UPS ============ */
@media (max-width: 480px) {
  .hero { min-height: 88vh; padding-top: 5rem; padding-bottom: 3rem; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; }
}

/* =========================================================================
 * RESPONSIVE V1.1 — Mobile first ajustements pour sections recentes
 * ======================================================================= */

/* === COUPON SECTION === */
@media (max-width: 640px) {
  .coupon-section [data-coupon-form] {
    grid-template-columns: 1fr !important;
  }
  .coupon-section h2 { font-size: 1.5rem !important; }
  .coupon-section .container > div { padding: 1.25rem !important; }
}

/* === AWARDS STRIP === */
@media (max-width: 640px) {
  .awards-strip {
    gap: 1.25rem !important;
  }
  .award-item img {
    height: 100px !important;
    max-width: 130px !important;
  }
}

/* === VIDEO GRIDS === */
@media (max-width: 480px) {
  .video-grid {
    gap: 0.75rem !important;
  }
  .video-card figcaption {
    font-size: 0.75rem !important;
    padding: 0.5rem !important;
  }
  .video-card--cta div:first-child {
    font-size: 1.25rem !important;
  }
}

/* === HERO VIDEO === */
/* Sur mobile, le hero video peut etre lourd : on garde l'autoplay
 * mais on s'assure que le poster s'affiche immediatement et que la
 * lecture commence sans bloquer le rendu. */
.hero--video .hero__video {
  background: #0F0E0D url('../images/hero/home-hero-poster.jpg') center/cover no-repeat;
}
@media (max-width: 480px) {
  .hero--video { min-height: 92vh; }
  .hero h1 { font-size: 1.875rem !important; line-height: 1.15 !important; }
  .hero .lead { font-size: 0.9375rem !important; }
}

/* === PROOF STRIP MOBILE === */
@media (max-width: 480px) {
  .proof-strip { gap: 0.75rem; }
  .proof-item__num { font-size: 1.5rem !important; }
  .proof-item__label { font-size: 0.75rem !important; }
}

/* === DISTINCTIONS WEDDING AWARDS HEADING === */
@media (max-width: 640px) {
  /* Le H2 sur 2 lignes peut etre trop grand */
  section[style*="DISTINCTIONS"] h2,
  .awards-strip + p {
    font-size: 1.5rem !important;
  }
}

/* === HEADER MOBILE : logo CENTRE et plus GROS (signature visuelle DJ DRIM) === */
@media (max-width: 1023px) {
  .site-header .logo-img {
    height: 88px !important;
    max-width: 280px !important;
    width: auto !important;
    max-height: none !important;
  }
}
@media (max-width: 480px) {
  .site-header .logo-img {
    height: 72px !important;
    max-width: 240px !important;
  }
}

/* === KANBAN ADMIN — scrollable horizontal sur mobile === */
@media (max-width: 768px) {
  .kanban { grid-template-columns: repeat(7, 250px) !important; }
  .admin-layout { grid-template-columns: 1fr !important; }
  .admin-sidebar { display: none !important; }
}

/* === Performance : reduire la qualite de scaling sur images === */
img { image-rendering: -webkit-optimize-contrast; }

/* === Eviter le scroll horizontal accidentel === */
html, body { overflow-x: hidden; max-width: 100vw; }

