/* ============================================================
   Dk'Anim — Styles principaux
   /assets/css/style.css
   ============================================================ */

/* ── Variables ── */
:root {
  --gold:       #E02020;
  --gold-light: #FF4545;
  --gold-dark:  #A81515;
  --silver:     #AAAAAA;
  --black:      #0A0A0A;
  --black-soft: #111111;
  --black-card: #161616;
  --white:      #F5F2F2;
  --white-muted:#C8B8B8;
  --radius:     0px;
  --nav-h:      76px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ── Typography helpers ── */
.section-eyebrow {
  font-size: 0.6rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.15;
}
.divider {
  width: 3rem; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0 2.5rem;
}

/* ── Boutons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--black);
  border: none; padding: 0.85rem 2.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--white-muted);
  border: 1px solid rgba(224,32,32,0.3);
  padding: 0.85rem 2.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 3rem;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(224,32,32,0.18);
  transition: box-shadow 0.4s;
}
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 48px; width: auto; display: block;
  filter: drop-shadow(0 0 6px rgba(224,32,32,0.25));
  transition: filter 0.3s;
}
.nav-logo-img:hover {
  filter: drop-shadow(0 0 10px rgba(224,32,32,0.5));
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--white-muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black); background: var(--gold); border: none;
  padding: 0.55rem 1.4rem;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--gold-light); }

.nav-cta-group { display: flex; align-items: center; gap: 0.6rem; }

.nav-cta-ec {
  background: var(--white);
  color: var(--black) !important;
}
.nav-cta-ec:hover { background: #ffffff; }

/* Burger menu mobile */
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 1px; background: var(--gold); transition: transform 0.3s, opacity 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  margin-top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  min-height: 520px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 65%, rgba(224,32,32,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 15%, rgba(224,32,32,0.04) 0%, transparent 60%),
    var(--black);
}
/* Photo de fond — met hero.jpg dans assets/images/ */
#hero.has-photo .hero-bg {
  background:
    url('../images/hero.jpg') center/cover no-repeat,
    var(--black);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.75) 100%
  );
}
#hero:not(.has-photo) .hero-overlay { display: none; }
.hero-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image: repeating-linear-gradient(
    90deg, rgba(224,32,32,0.04) 0px, rgba(224,32,32,0.04) 1px, transparent 1px, transparent 60px
  );
}
#hero.has-photo .hero-lines { opacity: 0.4; }
.hero-content { position: relative; z-index: 1; padding: 0 1.5rem; }
.hero-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
  display: inline-block;
  border: 1px solid rgba(224,32,32,0.3);
  padding: 0.4rem 1.2rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero-title .gold { color: var(--gold); font-style: italic; display: block; }
.hero-tagline {
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--white-muted);
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
}
.scroll-line {
  width: 1px; height: 50px; margin: 0 auto;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ── STATS BAND ── */
.stats-band {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  background: var(--black-card);
  border-top: 1px solid rgba(224,32,32,0.2);
  border-bottom: 1px solid rgba(224,32,32,0.2);
  padding: 0;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.8rem 3rem;
  flex: 1 1 160px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: var(--gold);
  line-height: 1;
}
.stat-num sup { font-size: 1rem; }
.stat-label {
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white-muted);
  margin-top: 0.3rem; text-align: center;
}
.stat-sep {
  width: 1px; height: 3rem;
  background: rgba(224,32,32,0.15);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .stats-band { gap: 0; }
  .stat-item { padding: 1.2rem 1.5rem; flex: 1 1 120px; }
  .stat-sep { display: none; }
}

/* ── FAQ ── */
#faq { background: var(--black-soft); }
.faq-list { margin-top: 3rem; border: 1px solid rgba(224,32,32,0.1); }
.faq-item { border-bottom: 1px solid rgba(224,32,32,0.08); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 1.4rem 2rem;
  background: none; border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 400;
  color: var(--white); text-align: left;
  letter-spacing: 0.03em; gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1px solid rgba(224,32,32,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold); line-height: 1;
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 2rem 1.4rem;
  font-size: 0.76rem; line-height: 1.9;
  color: var(--white-muted);
}
.faq-answer strong { color: var(--white); font-weight: 500; }

/* ── Sections ── */
section { padding: 6rem 3rem; }

/* ── ABOUT ── */
#about { background: var(--black-soft); }
.about-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.about-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; font-weight: 300;
  color: rgba(224,32,32,0.08); line-height: 1; margin-bottom: -2rem;
}
.about-text p { font-size: 0.78rem; line-height: 2; color: var(--white-muted); margin-bottom: 1.2rem; }
.about-text strong { color: var(--gold); font-weight: 500; }
.about-zone {
  margin-top: 2rem; padding: 1.2rem 1.5rem;
  border-left: 2px solid var(--gold); background: rgba(224,32,32,0.03);
}
.about-zone-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.about-zone-text { font-size: 0.75rem; color: var(--white-muted); line-height: 1.7; }
.about-zone-text strong { color: var(--gold); font-weight: 500; }
.duo-cards { display: flex; flex-direction: column; gap: 1rem; }
.duo-card { background: var(--black-card); border: 1px solid rgba(224,32,32,0.15); padding: 1.8rem; display: flex; gap: 1.2rem; }
.duo-avatar {
  width: 3rem; height: 3rem; flex-shrink: 0;
  border: 1px solid rgba(224,32,32,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold);
}
.duo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--white); margin-bottom: 0.3rem; }
.duo-role { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.duo-desc { font-size: 0.72rem; line-height: 1.8; color: var(--white-muted); }

/* ── TARIFS ── */
#tarifs { background: var(--black-soft); }

/* Picker : sélection du type d'événement */
.tarifs-picker { }
.tarifs-picker-hint {
  font-size: 0.78rem; color: var(--white-muted);
  line-height: 1.8; max-width: 520px; margin-bottom: 2.5rem;
}
.event-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 0;
}
.event-type-btn {
  background: var(--black-card);
  border: 1px solid rgba(224,32,32,0.18);
  padding: 1.6rem 1.4rem;
  text-align: left; cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  display: flex; flex-direction: column; gap: 0.35rem;
  position: relative; overflow: hidden;
}
.event-type-btn::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--gold);
  transform: scaleY(0); transition: transform 0.25s;
  transform-origin: bottom;
}
.event-type-btn:hover::before,
.event-type-btn:focus::before { transform: scaleY(1); }
.event-type-btn:hover,
.event-type-btn:focus {
  border-color: rgba(224,32,32,0.5);
  background: rgba(224,32,32,0.04);
  outline: none;
}
.event-type-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--white);
  line-height: 1.2;
}
.event-type-desc,
.event-type-tags {
  font-size: 0.62rem; color: var(--white-muted);
  letter-spacing: 0.04em; line-height: 1.6;
}

/* Result : formules affichées */
.tarifs-result { }
.tarifs-result-nav {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2rem;
}
.tarifs-back-btn {
  background: none; border: 1px solid rgba(224,32,32,0.3);
  color: var(--white-muted); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.55rem 1.1rem; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.tarifs-back-btn:hover { border-color: var(--gold); color: var(--white); }
.tarifs-result-type {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.tarifs-result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; color: var(--white);
  line-height: 1.25; margin-bottom: 1rem;
}

/* Grille de formules */
.tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.tarif-card { border: 1px solid rgba(224,32,32,0.2); padding: 2.5rem 2rem; position: relative; transition: border-color 0.3s; display: flex; flex-direction: column; }
.tarif-card:hover { border-color: rgba(224,32,32,0.5); }
.tarif-card.featured { border-color: var(--gold); background: rgba(224,32,32,0.03); }
.tarif-card-cta { display: block; width: 100%; text-align: center; margin-top: auto; padding: 0.75rem 1rem; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); font-family: 'Montserrat', sans-serif; font-size: 0.63rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; transition: border-color 0.3s, color 0.3s; margin-top: 1.6rem; }
.tarif-card-cta:hover { border-color: var(--gold); color: var(--gold); }
.tarif-badge {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 1rem; font-weight: 500; white-space: nowrap;
}
.tarif-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 0.35rem; }
.tarif-duration { font-size: 0.63rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem; }
.tarif-list { list-style: none; }
.tarif-list li { font-size: 0.72rem; color: var(--white-muted); padding: 0.42rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.tarif-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.5rem; }
.tarif-list li strong { color: var(--white); }

/* Bloc options */
.tarif-options {
  margin-top: 1.5rem; padding: 0.8rem 1rem;
  border: 1px solid rgba(224,32,32,0.12);
  background: rgba(224,32,32,0.02);
}
.tarif-options-title { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-muted); margin-bottom: 0.7rem; }
.tarif-option-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.68rem; color: var(--white-muted); padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.tarif-option-row:last-child { border-bottom: none; }
.tarif-options--discount { border-color: rgba(224,32,32,0.3); background: rgba(224,32,32,0.03); }
.tarif-options--discount .tarif-options-title { color: var(--gold); }
.tarif-options--free { border-color: rgba(224,32,32,0.45); background: rgba(224,32,32,0.05); }
.tarif-options-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.tarif-options-header .tarif-options-title { margin-bottom: 0; }
.opt-pct { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.2rem 0.5rem; border-radius: 2px; white-space: nowrap; }
.opt-pct--25 { background: rgba(224,32,32,0.18); color: var(--red); }
.opt-pct--50 { background: rgba(212,175,55,0.18); color: var(--gold); }

/* Vue devis sur mesure (types sans formules) */
.tarifs-devis-msg {
  grid-column: 1 / -1;
  text-align: center; padding: 4rem 2rem;
  border: 1px solid rgba(224,32,32,0.15);
  background: rgba(224,32,32,0.02);
}
.tarifs-devis-icon { font-size: 1.6rem; color: var(--gold); opacity: 0.5; margin-bottom: 1.5rem; }
.tarifs-devis-msg h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--white); margin-bottom: 0.6rem; font-weight: 300; }
.tarifs-devis-subevents { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 1.2rem !important; }
.tarifs-devis-msg p { font-size: 0.8rem; color: var(--white-muted); max-width: 480px; margin: 0 auto 2rem; line-height: 1.9; }
.tarifs-devis-msg p strong { color: var(--white); }

/* Animations incluses */
.tarifs-anim { margin-top: 2.5rem; border: 1px solid rgba(224,32,32,0.15); }
.tarifs-anim-summary {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem 1.5rem;
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white-muted);
  cursor: pointer; list-style: none; user-select: none;
  transition: color 0.2s;
}
.tarifs-anim-summary::-webkit-details-marker { display: none; }
.tarifs-anim-summary:hover { color: var(--white); }
.tarifs-anim-icon { color: var(--gold); font-size: 0.7rem; }
.tarifs-anim-arrow { margin-left: auto; color: var(--gold); font-size: 0.8rem; transition: transform 0.3s; }
details[open] .tarifs-anim-arrow { transform: rotate(180deg); }
.tarifs-anim-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem; padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(224,32,32,0.1);
}
.tarifs-anim-grid span { font-size: 0.65rem; color: var(--white-muted); padding: 0.4rem 0.6rem; border: 1px solid rgba(224,32,32,0.1); text-align: center; }

/* CTA bas de section */

@media (max-width: 900px) {
  .event-types-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .event-types-grid { grid-template-columns: 1fr; }
  .tarifs-anim-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── GALERIE ── */
#galerie { background: var(--black); }
.galerie-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 210px 210px 210px; gap: 4px; margin-top: 3rem; }
.galerie-item { position: relative; overflow: hidden; background: var(--black-card); border: 1px solid rgba(224,32,32,0.08); }
.galerie-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
.galerie-item:last-child { grid-column: span 2; }
.galerie-item img, .galerie-cover-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, opacity 0.3s; display:block; opacity: 0.65; }
.galerie-item video.galerie-cover-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
.galerie-item:hover .galerie-cover-img { transform: scale(1.05); opacity: 0.45; }
.galerie-cat-label { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 1.8rem 1rem 0.8rem; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%); display: flex; align-items: center; gap: 0.5rem; pointer-events: none; }
.galerie-cat-icon { font-size: 1rem; opacity: 0.85; }
.galerie-cat-label > span:last-child { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-family: 'Montserrat', sans-serif; font-weight: 500; }
.galerie-overlay {
  position: absolute; inset: 0; z-index: 4;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-overlay span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 0.4rem 1rem; }

/* Placeholder quand pas d'image */
.galerie-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 0.5rem; }
.galerie-placeholder-icon { font-size: 2rem; opacity: 0.15; }
.galerie-placeholder-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(224,32,32,0.2); }

/* ── LIGHTBOX ── */
.glb-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.93); z-index:2000; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:1rem; }
.glb-media-wrap { max-width:90vw; max-height:80vh; display:flex; align-items:center; justify-content:center; position:relative; }
.glb-media { max-width:90vw; max-height:78vh; object-fit:contain; display:block; }
.glb-close { position:absolute; top:1.2rem; right:1.5rem; background:none; border:none; color:rgba(255,255,255,0.5); font-size:1.4rem; cursor:pointer; transition:color 0.2s; line-height:1; padding:0.3rem; }
.glb-close:hover { color:#fff; }
.glb-prev, .glb-next { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); color:rgba(255,255,255,0.6); font-size:1.2rem; width:2.8rem; height:2.8rem; cursor:pointer; transition:all 0.2s; display:flex; align-items:center; justify-content:center; }
.glb-prev { left:1rem; } .glb-next { right:1rem; }
.glb-prev:hover, .glb-next:hover { background:rgba(212,175,55,0.15); border-color:var(--gold); color:var(--gold); }
.glb-caption { font-size:0.65rem; letter-spacing:0.15em; color:rgba(255,255,255,0.4); text-align:center; min-height:1rem; }
.glb-counter { font-size:0.6rem; letter-spacing:0.12em; color:rgba(255,255,255,0.25); }

/* ── TÉMOIGNAGES ── */
#temoignages { background: var(--black-soft); }
.temoignages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-top: 3rem; }
.temoignage-card { background: var(--black-card); border: 1px solid rgba(224,32,32,0.1); padding: 2rem 1.8rem; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: rgba(224,32,32,0.15); line-height: 0; display: block; margin-bottom: 1rem; }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.temoignage-text { font-size: 0.78rem; line-height: 1.85; color: var(--white-muted); font-style: italic; margin-bottom: 1.5rem; }
.temoignage-author { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.temoignage-event { font-size: 0.62rem; color: rgba(200,191,168,0.4); margin-top: 0.2rem; }

/* ── CONTACT ── */
#contact { background: var(--black); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.contact-intro { font-size: 0.78rem; line-height: 1.9; color: var(--white-muted); margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; font-size: 0.72rem; color: var(--white-muted); }
.contact-detail-icon { width: 1.8rem; height: 1.8rem; border: 1px solid rgba(224,32,32,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--gold); flex-shrink: 0; }

/* Formulaire */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(224,32,32,0.2);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(200,191,168,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: #1a1a1a; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #e05555; }
.form-error-msg { font-size: 0.62rem; color: #e05555; margin-top: 0.3rem; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--black);
  border: none; padding: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s; margin-top: 0.5rem;
}
.form-submit:hover:not(:disabled) { background: var(--gold-light); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-feedback {
  padding: 1rem; margin-top: 1rem;
  font-size: 0.75rem; letter-spacing: 0.05em;
  display: none;
}
.form-feedback.success { display: block; border: 1px solid rgba(224,32,32,0.4); color: var(--gold); background: rgba(224,32,32,0.05); }
.form-feedback.error   { display: block; border: 1px solid rgba(224,85,85,0.4);  color: #e05555;     background: rgba(224,85,85,0.05); }

/* ── FOOTER ── */
footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid rgba(224,32,32,0.12);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-left { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo { display: flex; align-items: center; }
.footer-logo-img { height: 40px; width: auto; display: block; opacity: 0.85; transition: opacity 0.3s; }
.footer-logo-img:hover { opacity: 1; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.82rem; color: rgba(200,191,168,0.35); }
.footer-socials-inline { display: flex; gap: 0.9rem; align-items: center; margin-top: 0.2rem; }
.footer-socials-inline a { color: rgba(200,191,168,0.3); transition: color 0.25s; display: flex; }
.footer-socials-inline a:hover { color: var(--gold); }
.footer-copy { font-size: 0.6rem; color: rgba(200,191,168,0.25); letter-spacing: 0.04em; line-height: 1.8; text-align: center; }
.footer-siret { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(200,191,168,0.15); transition: border-color 0.2s; }
.footer-siret:hover { border-color: var(--gold); }
.footer-bottom-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.7rem; }
.footer-payments { display: flex; align-items: center; gap: 0.5rem; }
.payment-badge { display: flex; align-items: center; opacity: 0.65; transition: opacity 0.2s; }
.payment-badge:hover { opacity: 1; }
.footer-legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-legal-links a { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,191,168,0.3); transition: color 0.25s; }
.footer-legal-links a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 1.2rem; }
.footer-socials a { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(200,191,168,0.35); transition: color 0.3s; }
.footer-socials a:hover { color: var(--gold); }

@media (max-width: 768px) {
  footer { flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.5rem; gap: 1.2rem; }
  .footer-left { align-items: center; }
  .footer-bottom-right { align-items: center; }
  .footer-legal-links { justify-content: center; }
  .footer-copy { order: 10; }
}
@media (max-width: 480px) {
  footer { padding: 1.8rem 1rem; gap: 1rem; }
  .footer-logo-img { height: 34px; }
}

/* ── Animations d'apparition ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-wrap    { grid-template-columns: 1fr; gap: 3rem; }
  .tarifs-grid   { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .temoignages-grid { grid-template-columns: repeat(3, 1fr); max-width: none; margin-top: 3rem; }
  .contact-wrap  { grid-template-columns: 1fr; gap: 3rem; }
  .galerie-grid  { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .galerie-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
  .galerie-item:last-child { grid-column: span 1; }
}
/* ── DK'Shoot : icône desktop / overlay tablette / barre mobile ── */
.nav-dkshoot-icon {
  display: flex; align-items: center; justify-content: center;
  color: #E02020; transition: opacity 0.2s;
  opacity: 0.8;
}
.nav-dkshoot-icon:hover { opacity: 1; }
.nav-dkshoot-overlay { display: none; } /* caché sur desktop, affiché dans l'overlay */
.nav-ec-overlay { display: none; } /* caché sur desktop, affiché dans l'overlay */

/* ── Tablette & intermédiaire : hamburger dès 1100px ── */
@media (max-width: 1100px) {
  .nav-dkshoot-icon { display: none !important; } /* pas dans la barre, dans l'overlay */
  .nav-dkshoot-overlay { display: list-item; }
  .nav-ec-overlay { display: list-item; }
  .nav-links, .nav-cta-group { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    align-items: center; justify-content: center;
    gap: 2rem; z-index: 999;
  }
  .nav-links.open a { font-size: 1.05rem; display: flex; align-items: center; gap: 0.65rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 4rem 1.5rem; }
  #navbar { padding: 0 1.5rem; }
  .nav-burger { display: none !important; } /* barre basse prend le relais */
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }


  /* Galerie */
  .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(5, 160px); }
  .galerie-item:first-child { grid-column: 1 / 3; grid-row: span 2; }
  .galerie-item:last-child { grid-column: span 2; }

  /* Témoignages */
  .temoignages-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .temoignages-title-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .reviews-inline-badge { align-self: flex-start; }
  .quote-mark { font-size: 2.2rem; margin-bottom: 0.5rem; }

  /* About */
  .about-year { display: none; }

  /* Partenaires */
  #partenaires { padding: 0; }
  .partenaires-header { padding: 1.8rem 1.5rem 1.4rem; }
  .partenaire-item { padding: 0 1.5rem; }
  .partenaire-logo { height: 28px; max-width: 90px; }

  /* Tarifs */
  .tarifs-result-nav { flex-wrap: wrap; gap: 0.8rem; }
  .tarif-card { padding: 1.8rem 1.4rem; }
  .event-type-btn { padding: 1.2rem 1rem; }
  .tarifs-picker-hint { max-width: 100%; }
}

@media (max-width: 480px) {
  section { padding: 3rem 1rem; }

  /* Hero */
  .hero-subtitle { font-size: 0.65rem; }
  .hero-btns { width: 100%; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { display: block; width: 100%; text-align: center; }

  /* Stats */
  .stat-num { font-size: 2.5rem; }
  .stat-item { padding: 1rem; flex: 1 1 100%; }

  /* Galerie — 1 colonne */
  .galerie-grid { grid-template-columns: 1fr; grid-template-rows: repeat(8, 160px); }
  .galerie-item:first-child { grid-column: auto; grid-row: auto; }
  .galerie-item:last-child { grid-column: auto; }

  /* Partenaires */
  .partenaire-item { padding: 0 1rem; }
  .partenaire-logo { height: 24px; max-width: 70px; }

  /* Témoignages */
  .reviews-inline-badge { flex-wrap: wrap; }

  /* Contact */
  .contact-detail { font-size: 0.68rem; }

  /* reCAPTCHA — scale pour tenir dans les petits écrans */
  .g-recaptcha { transform: scale(0.88); transform-origin: center; }

  /* Footer */
  .fv2-logo { height: 44px; }
}

/* ── SOCIAL FLOAT (barre latérale réseaux sociaux — desktop) ── */
.social-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 490;
  display: flex;
  flex-direction: column;
  background: rgba(8,8,8,0.93);
  border: 1px solid rgba(201,52,60,0.2);
  border-right: none;
  border-radius: 6px 0 0 6px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.social-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(200,191,168,0.38);
  transition: color 0.22s, background 0.22s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.social-float a:last-child { border-bottom: none; }
.social-float a:hover { color: #C9343C; background: rgba(201,52,60,0.1); }
.social-float svg { display: block; }

/* ── MOBILE BOTTOM NAV (barre basse — mobile seulement) ── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: rgba(6,6,6,0.97);
  border-top: 1px solid rgba(201,52,60,0.22);
  z-index: 1000;
  align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  backdrop-filter: blur(12px);
}
.mbn-socials {
  display: flex;
  align-items: center;
  flex: 1;
}
.mbn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  color: rgba(200,191,168,0.42);
  transition: color 0.2s, background 0.2s;
}
.mbn-social:active,
.mbn-social:hover { color: #C9343C; }
.mbn-sep {
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,0.08);
  align-self: center;
  flex-shrink: 0;
}
.mbn-actions { display: flex; align-items: stretch; }
.mbn-menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 54px;
  height: 100%;
  background: none;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.06);
  color: rgba(200,191,168,0.45);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.mbn-menu-btn .bln {
  display: block;
  width: 19px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.28s, opacity 0.28s;
}
.mbn-menu-btn.open { color: #C9343C; }
.mbn-menu-btn.open .bln:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.mbn-menu-btn.open .bln:nth-child(2) { opacity: 0; }
.mbn-menu-btn.open .bln:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mbn-devis-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  background: #C9343C;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.mbn-devis-btn:hover,
.mbn-devis-btn:active { background: #a82830; }

/* ── Mobile social bar (espace client) ── */
.ec-mobile-social {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: rgba(6,6,6,0.97);
  border-top: 1px solid rgba(201,52,60,0.18);
  z-index: 1000;
  align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  backdrop-filter: blur(12px);
}
.ec-mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  color: rgba(200,191,168,0.4);
  transition: color 0.2s;
}
.ec-mobile-social a:active,
.ec-mobile-social a:hover { color: #C9343C; }

@media (max-width: 768px) {
  .social-float { display: none; }
  .mobile-bottom-nav { display: flex; }
  .nav-burger { display: none !important; }
  body:not(.ec-page) { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
  .nav-links.open { bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 600px) {
  .ec-mobile-social { display: flex; }
  .ec-page { padding-bottom: calc(50px + env(safe-area-inset-bottom, 0px)); }
}

/* ── GOOGLE REVIEWS ── */
.google-rating-bar {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(224,32,32,0.15);
  background: rgba(224,32,32,0.03);
  width: fit-content;
}
.google-rating-logo {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--white-muted);
  padding-right: 1rem;
  border-right: 1px solid rgba(224,32,32,0.15);
}
.google-rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.google-rating-stars {
  color: var(--gold); font-size: 1rem; letter-spacing: 0.05em;
}
.google-rating-count {
  font-size: 0.65rem; color: var(--white-muted);
  letter-spacing: 0.1em;
}

/* Card Google review */
.temoignage-header {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1rem;
}
.temoignage-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(224,32,32,0.2);
  flex-shrink: 0;
}
.temoignage-avatar-initiale {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%; flex-shrink: 0;
  background: rgba(224,32,32,0.15);
  border: 1px solid rgba(224,32,32,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--gold);
}
.temoignage-no-text {
  font-style: normal !important;
  opacity: 0.4;
  font-size: 0.7rem !important;
}

/* ── GOOGLE REVIEWS ── */
/* Titre section avis + badge Google inline */
.temoignages-title-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.reviews-inline-badge {
  display: flex; align-items: center; gap: 0.7rem;
  border: 1px solid rgba(224,32,32,0.2);
  background: var(--black-card);
  padding: 0.6rem 1rem;
  flex-shrink: 0; align-self: center;
}
.reviews-inline-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--gold); line-height: 1;
}
.reviews-inline-right { display: flex; flex-direction: column; gap: 0.2rem; }
.reviews-inline-label {
  font-size: 0.58rem; color: rgba(200,191,168,0.5);
  letter-spacing: 0.05em;
}
.reviews-inline-label .g  { color: #4285F4; font-weight: 700; }
.reviews-inline-label .o1 { color: #EA4335; font-weight: 700; }
.reviews-inline-label .o2 { color: #FBBC05; font-weight: 700; }
.reviews-inline-label .gl { color: #4285F4; font-weight: 700; }
.reviews-inline-label .e  { color: #34A853; font-weight: 700; }

/* Étoiles Google */
.g-stars { display: inline-flex; gap: 1px; margin-bottom: 0.4rem; }
.g-star { font-size: 0.75rem; }
.g-star--full  { color: var(--gold); }
.g-star--half  { color: var(--gold); opacity: 0.6; }
.g-star--empty { color: rgba(224,32,32,0.2); }

/* Carte avis Google */
.google-review-card {
  background: var(--black-card);
  border: 1px solid rgba(224,32,32,0.1);
  padding: 1rem 1.1rem;
  transition: border-color 0.3s;
}
.google-review-card:hover { border-color: rgba(224,32,32,0.3); }
.review-author-row {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem;
}
.review-avatar {
  width: 1.8rem; height: 1.8rem; border-radius: 50%;
  background: rgba(224,32,32,0.15);
  border: 1px solid rgba(224,32,32,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem; color: var(--gold); flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.review-author-name { font-size: 0.7rem; font-weight: 500; color: var(--white); }
.review-date { font-size: 0.58rem; color: rgba(200,191,168,0.4); margin-top: 0.1rem; }
.review-text {
  font-size: 0.7rem; line-height: 1.7;
  color: var(--white-muted); font-style: italic;
  margin-top: 0.5rem;
}
.review-text-toggle {
  background: none; border: none; color: var(--gold);
  font-size: 0.65rem; letter-spacing: 0.1em;
  cursor: pointer; padding: 0; margin-top: 0.4rem;
  text-transform: uppercase; font-family: 'Montserrat', sans-serif;
}
.reviews-cta {
  text-align: center; margin-top: 2.5rem;
}
.reviews-cta a {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(224,32,32,0.3);
  padding-bottom: 2px; transition: border-color 0.3s;
}
.reviews-cta a:hover { border-color: var(--gold); }

/* ── PARTENAIRES ── */
#partenaires {
  background: var(--black-card);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0;
  overflow: hidden;
}
.partenaires-header {
  padding: 2.5rem 3rem 2rem;
}
.partenaires-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}
.partenaires-track-wrapper {
  overflow: hidden;
  padding-bottom: 2.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0px, black 100px, black calc(100% - 100px), transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0px, black 100px, black calc(100% - 100px), transparent 100%);
}
.partenaires-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 35s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partenaire-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0 3rem; flex-shrink: 0;
}
.partenaire-item a {
  display: flex; align-items: center; justify-content: center;
}
.partenaire-logo {
  height: 40px; max-width: 140px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.partenaire-item:hover .partenaire-logo { opacity: 1; }
.partenaire-name-fallback {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; color: rgba(200,191,168,0.5);
  letter-spacing: 0.08em; white-space: nowrap;
  transition: color 0.3s;
}
.partenaire-item:hover .partenaire-name-fallback { color: var(--gold); }

/* ── FORMULAIRE MULTI-STEP ── */
.multistep-wrapper { position: relative; }

/* Barre de progression */
.steps-bar {
  display: flex; align-items: center;
  margin-bottom: 2.5rem; gap: 0;
}
.step-item {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px; left: 50%; width: 100%; height: 1px;
  background: rgba(224,32,32,0.15);
  z-index: 0;
  transition: background 0.4s;
}
.step-item.done:not(:last-child)::after { background: var(--gold); }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(224,32,32,0.25);
  background: var(--black-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; color: var(--white-muted);
  position: relative; z-index: 1;
  transition: all 0.3s;
}
.step-item.active .step-dot {
  border-color: var(--gold); color: var(--gold);
  background: rgba(224,32,32,0.1);
  box-shadow: 0 0 0 4px rgba(224,32,32,0.08);
}
.step-item.done .step-dot {
  background: var(--gold); border-color: var(--gold);
  color: var(--black); font-weight: 700;
}
.step-label {
  font-size: 0.55rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(200,191,168,0.3);
  margin-top: 0.5rem; text-align: center; white-space: nowrap;
}
.step-item.active .step-label { color: var(--gold); }
.step-item.done .step-label  { color: rgba(200,191,168,0.5); }

/* Panneaux d'étapes */
.step-panel { display: none; animation: fadeStep 0.3s ease; }
.step-panel.active { display: block; }
@keyframes fadeStep { from { opacity:0; transform:translateX(12px); } to { opacity:1; transform:translateX(0); } }

/* Titre d'étape */
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--white);
  margin-bottom: 0.3rem;
}
.step-subtitle {
  font-size: 0.65rem; color: var(--white-muted);
  margin-bottom: 1.5rem; letter-spacing: 0.05em;
}

/* Grille 2 colonnes dans les étapes */
.step-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Checkboxes options style bouton */
.options-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem; margin-bottom: 1rem;
}
.option-check { display: none; }
.option-label {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.3rem;
  padding: 0.9rem 0.6rem;
  border: 1px solid rgba(224,32,32,0.15);
  background: rgba(255,255,255,0.02);
  cursor: pointer; text-align: center;
  font-size: 0.65rem; letter-spacing: 0.08em;
  color: var(--white-muted);
  transition: all 0.2s;
  user-select: none;
}
.option-label .opt-icon { font-size: 1.4rem; }
.option-check:checked + .option-label {
  border-color: var(--gold);
  background: rgba(224,32,32,0.08);
  color: var(--gold);
}
.option-label:hover { border-color: rgba(224,32,32,0.35); color: var(--white); }

/* Navigation étapes */
.step-nav {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(224,32,32,0.1);
}
.step-counter {
  font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(200,191,168,0.3);
}
.btn-step-prev {
  background: transparent; border: 1px solid rgba(224,32,32,0.2);
  color: var(--white-muted); padding: 0.7rem 1.5rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-step-prev:hover { border-color: var(--gold); color: var(--gold); }
.btn-step-next {
  background: var(--gold); border: none; color: var(--black);
  padding: 0.7rem 1.8rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-step-next:hover { background: var(--gold-light); }
.btn-step-next:disabled { opacity: 0.5; cursor: not-allowed; }

/* Résumé étape 4 */
.recap-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.5rem; margin-bottom: 1.5rem;
}
.recap-item {
  padding: 0.6rem 0.8rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(224,32,32,0.06);
}
.recap-label {
  font-size: 0.55rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.2rem;
}
.recap-value { font-size: 0.73rem; color: var(--white-muted); }

@media (max-width: 768px) {
  .step-row     { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr 1fr; }
  .recap-grid   { grid-template-columns: 1fr; }
  .step-label   { display: none; }
}

/* ── FORMULAIRE MULTI-STEP ── */
.multistep-form { position: relative; }

/* Barre de progression */
.steps-progress {
  display: flex; align-items: center;
  margin-bottom: 2.5rem; gap: 0;
}
.step-item {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute; top: 14px; left: 50%; width: 100%;
  height: 1px; background: rgba(224,32,32,0.15);
  z-index: 0;
}
.step-item.done:not(:last-child)::after { background: var(--gold); }
.step-circle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(224,32,32,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 500;
  color: var(--white-muted); background: var(--black-card);
  position: relative; z-index: 1;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.step-item.active .step-circle {
  border-color: var(--gold); color: var(--gold);
  background: rgba(224,32,32,0.08);
}
.step-item.done .step-circle {
  border-color: var(--gold); background: var(--gold);
  color: var(--black); font-weight: 700;
}
.step-label {
  font-size: 0.55rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white-muted);
  margin-top: 0.4rem; text-align: center;
  transition: color 0.3s;
}
.step-item.active .step-label { color: var(--gold); }
.step-item.done .step-label   { color: rgba(224,32,32,0.6); }

/* Panels */
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeInUp 0.35s ease; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300;
  color: var(--white); margin-bottom: 1.5rem;
}
.step-title span { color: var(--gold); font-style: italic; }

/* Options à cocher */
.options-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem; margin-bottom: 1rem;
}
.option-checkbox { display: none; }
.option-label {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(224,32,32,0.15);
  background: rgba(255,255,255,0.02);
  font-size: 0.72rem; color: var(--white-muted);
  cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
}
.option-label:hover { border-color: rgba(224,32,32,0.3); color: var(--white); }
.option-checkbox:checked + .option-label {
  border-color: var(--gold); background: rgba(224,32,32,0.07); color: var(--white);
}
.option-icon { font-size: 1rem; flex-shrink: 0; }
.option-check {
  width: 14px; height: 14px; border: 1px solid rgba(224,32,32,0.3);
  border-radius: 2px; margin-left: auto; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: transparent;
  transition: background 0.2s, border-color 0.2s;
}
.option-checkbox:checked + .option-label .option-check {
  background: var(--gold); border-color: var(--gold); color: var(--black);
}

/* Ambiances musicales */
.ambiance-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem; margin-bottom: 1rem;
}
.ambiance-chip {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(224,32,32,0.15);
  font-size: 0.65rem; letter-spacing: 0.05em;
  color: var(--white-muted); cursor: pointer;
  text-align: center; transition: all 0.2s; user-select: none;
}
.ambiance-chip:hover { border-color: rgba(224,32,32,0.3); }
.ambiance-chip.selected { border-color: var(--gold); background: rgba(224,32,32,0.07); color: var(--white); }

/* Navigation boutons */
.step-nav {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(224,32,32,0.1);
}
.btn-step-prev {
  background: transparent; border: 1px solid rgba(224,32,32,0.2);
  color: var(--white-muted); padding: 0.75rem 1.8rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
  font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-step-prev:hover { border-color: var(--gold); color: var(--gold); }
.btn-step-next {
  background: var(--gold); color: var(--black); border: none;
  padding: 0.75rem 2rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-step-next:hover { background: var(--gold-light); }
.btn-step-next:disabled { opacity: 0.5; cursor: not-allowed; }
.step-counter {
  font-size: 0.6rem; color: rgba(200,191,168,0.35);
  letter-spacing: 0.1em;
}

/* Budget slider */
.budget-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 2px; background: rgba(224,32,32,0.2);
  outline: none; margin: 1rem 0 0.3rem;
}
.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); cursor: pointer;
}
.budget-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--gold); text-align: center;
  margin-bottom: 0.3rem;
}
.budget-labels {
  display: flex; justify-content: space-between;
  font-size: 0.6rem; color: rgba(200,191,168,0.35);
}

/* Récap final */
.recap-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.4rem; margin-bottom: 1.5rem;
}
.recap-item { font-size: 0.72rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.recap-label { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.2rem; }
.recap-val { color: var(--white-muted); }

@media (max-width: 768px) {
  .options-grid  { grid-template-columns: 1fr; }
  .ambiance-grid { grid-template-columns: 1fr 1fr; }
  .recap-grid    { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   EFFETS NÉON
══════════════════════════════════════════ */

/* Logo navbar */
.nav-logo-img {
  filter:
    drop-shadow(0 0 6px  rgba(224,32,32,0.7))
    drop-shadow(0 0 18px rgba(224,32,32,0.35));
  transition: filter 0.3s;
}
.nav-logo-img:hover {
  filter:
    drop-shadow(0 0 10px rgba(224,32,32,1))
    drop-shadow(0 0 28px rgba(224,32,32,0.55));
}

/* Titre hero — la partie rouge */
.hero-title .gold {
  text-shadow:
    0 0 8px  rgba(224,32,32,0.9),
    0 0 24px rgba(224,32,32,0.55),
    0 0 60px rgba(224,32,32,0.25);
}

/* Bouton CTA principal */
.btn-primary {
  box-shadow:
    0 0 10px rgba(224,32,32,0.45),
    0 0 28px rgba(224,32,32,0.18);
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
  box-shadow:
    0 0 18px rgba(224,32,32,0.8),
    0 0 50px rgba(224,32,32,0.35);
}

/* Bouton navbar "Demander un devis" */
.nav-cta {
  box-shadow: 0 0 10px rgba(224,32,32,0.3);
  transition: background 0.25s, box-shadow 0.25s;
}
.nav-cta:hover {
  box-shadow: 0 0 18px rgba(224,32,32,0.65);
}

/* Bouton "Espace client" — néon blanc */
.nav-cta-ec {
  box-shadow: 0 0 8px rgba(245,242,242,0.35), 0 0 22px rgba(245,242,242,0.15);
  transition: background 0.25s, box-shadow 0.25s;
}
.nav-cta-ec:hover {
  box-shadow: 0 0 14px rgba(245,242,242,0.7), 0 0 40px rgba(245,242,242,0.35);
}

/* Dividers */
.divider {
  box-shadow: 0 0 8px rgba(224,32,32,0.55);
}

/* Chiffres stats */
.stat-num {
  text-shadow:
    0 0 10px rgba(224,32,32,0.65),
    0 0 28px rgba(224,32,32,0.25);
}

/* Eyebrow labels (sections) */
.section-eyebrow {
  text-shadow: 0 0 8px rgba(224,32,32,0.45);
}

/* Cards — glow au hover */
.tarif-card:hover,
.google-review-card:hover,
.temoignage-card:hover {
  box-shadow: 0 0 24px rgba(224,32,32,0.12);
}
.tarif-card.featured {
  box-shadow: 0 0 30px rgba(224,32,32,0.2);
}

/* Scroll indicator hero */
.scroll-line {
  box-shadow: 0 0 6px rgba(224,32,32,0.5);
}

/* ════════════════════════════════════════════════════════════
   ADMINISTRATION — fond clair, sidebar sombre conservée
   ════════════════════════════════════════════════════════════ */

:root {
  --sidebar:       #0D0D0D;
  --admin-bg:      #111111;
  --admin-surface: #1a1a1a;
  --admin-border:  rgba(255,255,255,0.07);
  --admin-text:    #e8e4da;
  --admin-muted:   rgba(200,184,184,0.45);
}

/* ── Layout ── */
.admin-wrapper { display:flex; min-height:100vh; }

/* ── Sidebar (utilisée si .admin-sidebar, sinon .ec-sidebar) ── */
.admin-sidebar { width:230px; flex-shrink:0; background:var(--sidebar); border-right:1px solid rgba(224,32,32,0.12); display:flex; flex-direction:column; position:sticky; top:0; height:100vh; overflow-y:auto; }
.sidebar-logo { padding:1.8rem 1.5rem 1.5rem; border-bottom:1px solid rgba(224,32,32,0.12); }
.sidebar-logo-name { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:600; color:var(--gold); letter-spacing:0.1em; }
.sidebar-logo-sub { font-size:0.55rem; letter-spacing:0.25em; text-transform:uppercase; color:rgba(200,184,184,0.35); margin-top:0.2rem; }
.sidebar-nav { padding:1rem 0; flex:1; }
.sidebar-section { font-size:0.52rem; letter-spacing:0.25em; text-transform:uppercase; color:rgba(224,32,32,0.35); padding:0.8rem 1.5rem 0.4rem; }
.sidebar-link { display:flex; align-items:center; gap:0.8rem; padding:0.75rem 1.5rem; font-size:0.68rem; letter-spacing:0.06em; color:rgba(200,184,184,0.7); transition:background 0.2s,color 0.2s; position:relative; text-decoration:none; }
.sidebar-link:hover { background:rgba(224,32,32,0.05); color:#fff; }
.sidebar-link.active { background:rgba(224,32,32,0.08); color:var(--gold); border-right:2px solid var(--gold); }
.sidebar-link .icon { font-size:1rem; width:1.2rem; text-align:center; flex-shrink:0; }
.sidebar-badge { margin-left:auto; background:var(--gold); color:#fff; font-size:0.55rem; font-weight:700; padding:0.15rem 0.45rem; border-radius:10px; min-width:18px; text-align:center; }
.sidebar-footer { padding:1rem 1.5rem; border-top:1px solid rgba(224,32,32,0.1); display:flex; flex-direction:column; gap:0.6rem; }
.sidebar-footer-link { font-size:0.62rem; letter-spacing:0.1em; color:rgba(200,184,184,0.35); transition:color 0.2s; display:flex; align-items:center; gap:0.5rem; }
.sidebar-footer-link:hover { color:var(--gold); }
.btn-logout { background:transparent; border:1px solid rgba(224,32,32,0.15); color:rgba(200,184,184,0.4); padding:0.5rem 1rem; font-size:0.6rem; letter-spacing:0.15em; text-transform:uppercase; transition:border-color 0.2s,color 0.2s; width:100%; text-align:center; }
.btn-logout:hover { border-color:var(--gold); color:var(--gold); }

/* ── Zone de contenu principale ── */
.admin-main {
  flex:1; display:flex; flex-direction:column; min-width:0; min-height:100vh;
  background:var(--admin-bg); color:var(--admin-text);
}

/* ── Topbar (barre supérieure) ── */
.admin-topbar { background:var(--admin-surface); border-bottom:1px solid var(--admin-border); padding:0.9rem 2rem; display:flex; justify-content:space-between; align-items:center; position:sticky; top:0; z-index:50; box-shadow:0 1px 6px rgba(0,0,0,0.06); }
.topbar-title { font-size:0.6rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--admin-muted); }
.topbar-title span { color:var(--gold); }
.topbar-right { font-size:0.6rem; color:#bbb; }
.topbar-search { display:flex; align-items:center; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:2px; overflow:hidden; flex:1; max-width:320px; }
.topbar-search input { background:transparent; border:none; outline:none; color:var(--white); font-size:0.72rem; letter-spacing:0.04em; padding:0.4rem 0.7rem; flex:1; font-family:inherit; }
.topbar-search input::placeholder { color:rgba(200,191,168,0.3); }
.topbar-search button { background:transparent; border:none; cursor:pointer; padding:0.35rem 0.65rem; color:rgba(200,191,168,0.4); font-size:0.85rem; display:flex; align-items:center; }
.topbar-search button:hover { color:var(--gold); }

/* ── Corps de page ── */
.admin-body { padding:2.5rem 2.2rem; max-width:1100px; }
.page-title { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:300; margin-bottom:0.3rem; color:var(--admin-text); }
.page-title span { color:var(--gold); }
.page-sub { font-size:0.63rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--admin-muted); }
.admin-body .divider { width:2.5rem; height:1px; background:var(--gold); margin:1rem 0 2rem; }

/* ── Stats dashboard ── */
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; margin-bottom:2rem; }
.stat-card { background:var(--admin-surface); border:1px solid var(--admin-border); box-shadow:0 2px 8px rgba(0,0,0,0.05); padding:1.6rem 1.4rem; transition:border-color 0.2s,box-shadow 0.2s; text-decoration:none; display:block; color:inherit; }
.stat-card:hover { border-color:rgba(224,32,32,0.3); box-shadow:0 4px 16px rgba(0,0,0,0.1); }
.stat-value { font-family:'Cormorant Garamond',serif; font-size:2.5rem; font-weight:300; color:var(--gold); line-height:1; margin-bottom:0.35rem; }
.stat-label { font-size:0.6rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--admin-muted); }
.stat-sub { font-size:0.62rem; color:#bbb; margin-top:0.4rem; }
.stat-alert { border-left:3px solid var(--gold); }

/* ── Dernières demandes ── */
.recent-list { display:flex; flex-direction:column; gap:0.5rem; }
.recent-item { display:flex; justify-content:space-between; align-items:center; padding:0.8rem 1rem; background:rgba(255,255,255,0.02); border:1px solid var(--admin-border); border-left:2px solid transparent; transition:all 0.2s; }
.recent-item:hover { border-left-color:var(--gold); background:rgba(255,255,255,0.04); }
.recent-name { font-size:0.78rem; color:var(--admin-text); }
.recent-meta { font-size:0.62rem; color:#aaa; margin-top:0.15rem; }
.recent-right { display:flex; align-items:center; gap:0.8rem; }

/* ── Messages ── */
.msg { padding:0.85rem 1.2rem; font-size:0.75rem; margin-bottom:1.5rem; }
.msg.success { background:rgba(40,180,80,0.08); border:1px solid rgba(40,180,80,0.2); border-left:3px solid #4caf72; color:#4caf72; }
.msg.error { background:rgba(224,85,85,0.08); border:1px solid rgba(224,85,85,0.2); border-left:3px solid #e05555; color:#e05555; }

/* ── Cards admin ── */
.card { background:var(--admin-surface); border:1px solid var(--admin-border); box-shadow:0 2px 8px rgba(0,0,0,0.05); padding:1.8rem; margin-bottom:1.2rem; }
.card-title { font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:var(--admin-text); margin-bottom:1.2rem; padding-bottom:0.8rem; border-bottom:1px solid var(--admin-border); }

/* ── Formulaires admin (.admin-wrapper ou .admin-main) ── */
.admin-wrapper .form-group,
.admin-main .form-group { display:flex; flex-direction:column; gap:0.35rem; margin-bottom:1rem; }
.admin-wrapper label,
.admin-main label { font-size:0.58rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--admin-muted); }
.admin-wrapper input[type=text],
.admin-wrapper input[type=email],
.admin-wrapper input[type=tel],
.admin-wrapper input[type=url],
.admin-wrapper input[type=number],
.admin-wrapper input[type=date],
.admin-wrapper input[type=password],
.admin-wrapper input[type=file],
.admin-wrapper select,
.admin-wrapper textarea,
.admin-main input[type=text],
.admin-main input[type=email],
.admin-main input[type=tel],
.admin-main input[type=url],
.admin-main input[type=number],
.admin-main input[type=date],
.admin-main input[type=password],
.admin-main input[type=file],
.admin-main select,
.admin-main textarea { background:var(--admin-surface); border:1px solid var(--admin-border); color:var(--admin-text); padding:0.65rem 0.9rem; font-size:0.75rem; font-family:'Montserrat',sans-serif; outline:none; width:100%; transition:border-color 0.2s,box-shadow 0.2s; }
/* ============================================================
   Espace client
   ============================================================ */

/* ── Layout ── */
.ec-page {
  background: var(--black); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 300;
}
.ec-layout { display: flex; min-height: 100vh; }

/* ── Sidebar ── */
.ec-sidebar {
  width: 230px; flex-shrink: 0;
  background: var(--black-card);
  border-right: 1px solid rgba(224,32,32,0.12);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}
.ec-sidebar-logo {
  padding: 1.5rem 1.4rem 1.2rem;
  border-bottom: 1px solid rgba(224,32,32,0.1);
}
.ec-sidebar-logo img { height: 30px; margin-bottom: 0.5rem; }
.ec-sidebar-sub { font-size: 0.52rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--silver); }
.ec-sidebar-nav { flex: 1; padding: 0.8rem 0; }
.ec-sidebar-section {
  font-size: 0.5rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(200,184,184,0.3); padding: 0.9rem 1.4rem 0.3rem;
}
.ec-sidebar-link {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 1.4rem; font-size: 0.72rem;
  color: var(--white-muted); transition: color 0.15s, background 0.15s;
  text-decoration: none; position: relative;
}
.ec-sidebar-link:hover,
.ec-sidebar-link.active { color: var(--white); background: rgba(224,32,32,0.06); }
.ec-sidebar-link.active::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--gold);
}
.ec-sidebar-link .icon { font-size: 0.85rem; flex-shrink: 0; }
.ec-sidebar-badge {
  margin-left: auto; background: var(--gold); color: var(--black);
  font-size: 0.52rem; font-weight: 600; padding: 0.1rem 0.42rem;
  min-width: 17px; text-align: center;
}
.ec-sidebar-footer {
  border-top: 1px solid rgba(224,32,32,0.1);
  padding: 1rem 1.4rem;
}
.ec-sidebar-user-name { font-size: 0.72rem; color: var(--white); margin-bottom: 0.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ec-sidebar-user-role { font-size: 0.52rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.ec-sidebar-site-link { display: flex; align-items: center; gap: 0.4rem; font-size: 0.62rem; color: var(--silver); margin-bottom: 0.5rem; text-decoration: none; }
.ec-sidebar-site-link:hover { color: var(--white); }
.ec-sidebar-logout {
  display: block; background: rgba(224,32,32,0.08);
  border: 1px solid rgba(224,32,32,0.2); color: var(--gold);
  text-align: center; padding: 0.42rem; font-size: 0.58rem;
  letter-spacing: 0.14em; text-transform: uppercase; transition: background 0.2s;
  text-decoration: none;
}
.ec-sidebar-logout:hover { background: rgba(224,32,32,0.16); }

/* ── Contenu principal ── */
.ec-content { flex: 1; min-width: 0; }
.ec-main { padding: 3rem 2.5rem; max-width: 920px; }
.ec-main select, .ec-main select option { background:#1a1a1a; color:#fff; }

/* ── Section title ── */
.ec-section-eye { font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.ec-title { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 300; margin-bottom: 2rem; }

/* ── Banner devis en attente ── */
.ec-banner {
  background: rgba(224,32,32,0.07);
  border: 1px solid rgba(224,32,32,0.35);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.ec-banner-icon { font-size: 1.1rem; flex-shrink: 0; }
.ec-banner-text { font-size: 0.75rem; line-height: 1.6; }
.ec-banner-text strong { color: var(--gold); }
.ec-banner-text a { color: var(--gold); border-bottom: 1px solid rgba(224,32,32,0.4); }

/* ── Carte demande ── */
.ec-demandes { display: flex; flex-direction: column; gap: 1rem; }
.ec-demande-card {
  background: var(--black-card);
  border: 1px solid rgba(224,32,32,0.1);
  padding: 1.3rem 1.6rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: border-color 0.2s;
  text-decoration: none; color: inherit;
}
.ec-demande-card:hover { border-color: rgba(224,32,32,0.35); }
.ec-demande-info { flex: 1; min-width: 0; }
.ec-demande-type { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; margin-bottom: 0.25rem; }
.ec-demande-meta { font-size: 0.65rem; color: var(--silver); letter-spacing: 0.08em; }
.ec-demande-right { display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }

/* ── Badge statut ── */
.ec-badge {
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border: 1px solid currentColor;
}
.ec-badge-recu         { color: var(--silver); border-color: rgba(170,170,170,0.3); }
.ec-badge-devis_envoye { color: #e0b420; border-color: rgba(224,180,32,0.4); background: rgba(224,180,32,0.07); }
.ec-badge-accepte      { color: #4caf50; border-color: rgba(76,175,80,0.4); background: rgba(76,175,80,0.07); }
.ec-badge-refuse       { color: #e05555; border-color: rgba(224,85,85,0.4); background: rgba(224,85,85,0.07); }

/* ── Détail demande ── */
.ec-devis-back { font-size: 0.65rem; letter-spacing: 0.12em; color: var(--silver); display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 2rem; }
.ec-devis-back:hover { color: var(--white); }

.ec-devis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.ec-devis-block { background: var(--black-card); border: 1px solid rgba(224,32,32,0.1); padding: 1.4rem; }
.ec-devis-block-title { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(224,32,32,0.1); }
.ec-devis-row { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.75rem; }
.ec-devis-label { color: var(--silver); min-width: 130px; flex-shrink: 0; }
.ec-devis-val { color: var(--white); }

.ec-devis-message { background: var(--black-card); border: 1px solid rgba(224,32,32,0.1); padding: 1.4rem; margin-bottom: 2rem; }
.ec-devis-message p { font-size: 0.8rem; line-height: 1.7; white-space: pre-wrap; }

/* ── Actions accepter / refuser ── */
.ec-actions-box {
  background: rgba(224,180,32,0.04);
  border: 1px solid rgba(224,180,32,0.3);
  border-left: 3px solid #e0b420;
  padding: 1.4rem 1.6rem;
  margin-bottom: 2rem;
}
.ec-actions-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 0.4rem; }
.ec-actions-box p { font-size: 0.75rem; color: var(--silver); margin-bottom: 1.2rem; }
.ec-actions-btns { display: flex; gap: 1rem; }
.btn-accept {
  background: rgba(76,175,80,0.1); color: #4caf50;
  border: 1px solid rgba(76,175,80,0.5); padding: 0.7rem 1.8rem;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif; cursor: pointer;
  transition: background 0.2s;
}
.btn-accept:hover { background: rgba(76,175,80,0.2); }
.btn-refuse {
  background: rgba(224,85,85,0.1); color: #e05555;
  border: 1px solid rgba(224,85,85,0.5); padding: 0.7rem 1.8rem;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif; cursor: pointer;
  transition: background 0.2s;
}
.btn-refuse:hover { background: rgba(224,85,85,0.2); }

/* ── Login page ── */
.ec-login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--black); padding: 2rem;
}
.ec-login-box { width: 100%; max-width: 420px; }
.ec-login-logo { margin-bottom: 2.5rem; }
.ec-login-logo img { height: 44px; }
.ec-login-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; margin-bottom: 0.3rem; }
.ec-login-sub { font-size: 0.7rem; color: var(--silver); margin-bottom: 2rem; }
.ec-login-form .form-group { margin-bottom: 1.2rem; }
.ec-login-form label { display: block; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver); margin-bottom: 0.4rem; }
.ec-login-form input {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(224,32,32,0.2);
  color: var(--white); padding: 0.75rem 1rem; font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif; outline: none; transition: border-color 0.2s;
}
.ec-login-form input:focus { border-color: rgba(224,32,32,0.5); }
.ec-login-form .btn-primary { width: 100%; margin-top: 0.5rem; }
.ec-login-footer { margin-top: 1.5rem; font-size: 0.65rem; color: var(--silver); text-align: center; }
.ec-login-footer a { color: var(--gold); }
.ec-msg { padding: 0.75rem 1rem; font-size: 0.72rem; margin-bottom: 1rem; }
.ec-msg-error { background: rgba(224,85,85,0.08); border: 1px solid rgba(224,85,85,0.3); color: #e05555; }
.ec-msg-success { background: rgba(76,175,80,0.08); border: 1px solid rgba(76,175,80,0.3); color: #4caf50; }

/* ── Empty state ── */
.ec-empty { text-align: center; padding: 4rem 2rem; color: var(--silver); font-size: 0.8rem; }
.ec-empty a { color: var(--gold); border-bottom: 1px solid rgba(224,32,32,0.4); }

/* ── Responsive espace client ── */
@media (max-width: 900px) {
  .ec-sidebar { width: 56px; }
  .ec-sidebar-sub, .ec-sidebar-section,
  .ec-sidebar-link span:not(.icon),
  .ec-sidebar-badge, .ec-sidebar-user-name,
  .ec-sidebar-user-role, .ec-sidebar-site-link span { display: none; }
  .ec-sidebar-link { justify-content: center; padding: 0.75rem; }
  .ec-sidebar-logo img { height: 22px; }
  .ec-sidebar-footer { padding: 0.6rem; }
  .ec-sidebar-logout { font-size: 0; padding: 0.5rem; }
  .ec-sidebar-logout::after { content: '⏻'; font-size: 0.9rem; }
}
@media (max-width: 600px) {
  .ec-sidebar { display: none; }
  .ec-main { padding: 2rem 1.2rem; }
  .ec-devis-grid { grid-template-columns: 1fr; }
  .ec-demande-card { flex-direction: column; align-items: flex-start; }
  .ec-actions-btns { flex-direction: column; }
}

.admin-wrapper input:focus,
.admin-wrapper select:focus,
.admin-wrapper textarea:focus,
.admin-main input:focus,
.admin-main select:focus,
.admin-main textarea:focus { border-color:var(--gold); box-shadow:0 0 0 2px rgba(224,32,32,0.08); outline:none; }
.admin-wrapper select option,
.admin-main select option { background:#fff; color:var(--admin-text); }
.admin-wrapper textarea,
.admin-main textarea { resize:vertical; min-height:80px; }
.admin-wrapper input[type=file],
.admin-main input[type=file] { padding:0.5rem 0.9rem; cursor:pointer; }
.checkbox-row { display:flex; align-items:center; gap:0.6rem; font-size:0.72rem; color:var(--admin-muted); }
.admin-wrapper input[type=checkbox],
.admin-main input[type=checkbox] { width:auto; accent-color:var(--gold); }
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-row-3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:1rem; }

/* ── Boutons admin ── */
.btn-submit { width:100%; background:var(--gold); color:#fff; border:none; padding:0.85rem; font-size:0.68rem; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; transition:background 0.2s; font-family:'Montserrat',sans-serif; cursor:pointer; }
.btn-submit:hover { background:var(--gold-dark); }
.btn-sm { font-size:0.6rem; letter-spacing:0.1em; text-transform:uppercase; padding:0.3rem 0.8rem; border:none; cursor:pointer; transition:all 0.2s; display:inline-block; font-family:'Montserrat',sans-serif; }
.btn-edit { background:rgba(224,32,32,0.07); color:var(--gold); border:1px solid rgba(224,32,32,0.2); }
.btn-edit:hover { background:rgba(224,32,32,0.14); }
.btn-toggle { background:rgba(255,255,255,0.04); color:rgba(200,191,168,0.6); border:1px solid var(--admin-border); }
.btn-toggle:hover { background:rgba(255,255,255,0.07); color:var(--admin-text); }
.btn-danger { background:rgba(239,68,68,0.07); color:#b91c1c; border:1px solid rgba(239,68,68,0.25); }
.btn-danger:hover { background:rgba(239,68,68,0.15); }
.btn-gold { background:var(--gold); color:#fff; font-weight:500; border:none; }
.btn-gold:hover { background:var(--gold-dark); }
.btn-action { background:rgba(224,32,32,0.07); color:var(--gold); border:1px solid rgba(224,32,32,0.15); }
.btn-action:hover { background:rgba(224,32,32,0.14); }
.btn-outline { background:transparent; color:rgba(200,191,168,0.5); border:1px solid var(--admin-border); }
.btn-outline:hover { color:var(--admin-text); border-color:rgba(200,191,168,0.4); }
.actions { display:flex; gap:0.4rem; flex-wrap:wrap; align-items:center; }

/* ── Table admin ── */
.admin-table { width:100%; border-collapse:collapse; }
.admin-main select, .admin-main select option { background:var(--admin-surface); color:var(--admin-text); }
.admin-table th { font-size:0.58rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--admin-muted); padding:0.7rem 1rem; text-align:left; background:rgba(255,255,255,0.03); border-bottom:1px solid var(--admin-border); }
.admin-table td { padding:0.85rem 1rem; border-bottom:1px solid var(--admin-border); font-size:0.73rem; color:rgba(200,191,168,0.75); vertical-align:middle; }
.admin-table tr:hover td { background:rgba(255,255,255,0.02); }
.partner-logo-thumb { width:48px; height:32px; object-fit:contain; }

/* ── Badge statut ── */
.statut-badge { font-size:0.58rem; letter-spacing:0.12em; text-transform:uppercase; padding:0.25rem 0.7rem; border-width:1px; border-style:solid; white-space:nowrap; display:inline-block; }

/* ── Filtres ── */
.filters { display:flex; gap:0.5rem; margin-bottom:1.5rem; flex-wrap:wrap; }
.filter-btn { background:var(--admin-surface); border:1px solid var(--admin-border); color:var(--admin-muted); padding:0.4rem 1rem; font-size:0.62rem; letter-spacing:0.12em; text-transform:uppercase; transition:all 0.2s; cursor:pointer; font-family:'Montserrat',sans-serif; }
.filter-btn.active,.filter-btn:hover { border-color:var(--gold); color:var(--gold); background:rgba(224,32,32,0.04); }

/* ── Contacts ── */
.contact-card { background:var(--admin-surface); border:1px solid var(--admin-border); box-shadow:0 1px 4px rgba(0,0,0,0.04); padding:1.5rem; margin-bottom:1rem; transition:box-shadow 0.2s,border-color 0.2s; }
.contact-card.is-new { border-left:3px solid var(--gold); }
.contact-card:hover { box-shadow:0 4px 14px rgba(0,0,0,0.08); }
.contact-card-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:1rem; }
.contact-name { font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:var(--admin-text); margin-bottom:0.3rem; }
.contact-meta { display:flex; gap:1rem; flex-wrap:wrap; font-size:0.65rem; color:#aaa; }
.contact-right { display:flex; flex-direction:column; align-items:flex-end; gap:0.4rem; }
.devis-count { font-size:0.58rem; color:rgba(224,32,32,0.6); letter-spacing:0.1em; }
.contact-details { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:0.5rem; margin-bottom:1rem; padding:0.8rem; background:rgba(255,255,255,0.02); border:1px solid var(--admin-border); }
.contact-detail-row { font-size:0.72rem; }
.detail-label { font-size:0.58rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:0.15rem; }
.contact-message { color:rgba(200,191,168,0.75); font-size:0.72rem; line-height:1.6; }
.contact-actions { display:flex; gap:0.6rem; flex-wrap:wrap; align-items:center; padding-top:0.8rem; border-top:1px solid var(--admin-border); }
.select-statut { background:var(--admin-surface); border:1px solid var(--admin-border); color:var(--admin-text); padding:0.3rem 0.6rem; font-size:0.65rem; outline:none; font-family:'Montserrat',sans-serif; transition:border-color 0.2s; }
.select-statut:focus { border-color:var(--gold); }

/* ── Éditeur de devis ── */
.lignes-table { width:100%; border-collapse:collapse; margin-bottom:1rem; }
.lignes-table th { font-size:0.58rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--admin-muted); padding:0.5rem 0.8rem; text-align:left; background:rgba(255,255,255,0.03); border-bottom:1px solid var(--admin-border); }
.lignes-table td { padding:0.4rem; vertical-align:top; }
.lignes-table input,.lignes-table textarea { background:var(--admin-surface); border:1px solid var(--admin-border); color:var(--admin-text); padding:0.5rem 0.6rem; font-size:0.72rem; outline:none; width:100%; transition:border-color 0.2s; font-family:'Montserrat',sans-serif; }
.lignes-table input:focus,.lignes-table textarea:focus { border-color:var(--gold); }
.lignes-table textarea { resize:vertical; min-height:36px; }
.td-num{width:70px;} .td-prix{width:110px;} .td-del{width:36px;}
.td-ttc { width:100px; font-size:0.72rem; color:var(--gold); padding:0.5rem 0.6rem !important; font-weight:600; }
.btn-add-ligne { background:transparent; border:1px dashed rgba(224,32,32,0.25); color:var(--admin-muted); padding:0.6rem 1.2rem; font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; width:100%; margin-bottom:1.5rem; transition:border-color 0.2s,color 0.2s; font-family:'Montserrat',sans-serif; cursor:pointer; }
.btn-add-ligne:hover { border-color:var(--gold); color:var(--gold); }
.btn-del-ligne { background:rgba(239,68,68,0.07); border:1px solid rgba(239,68,68,0.2); color:#b91c1c; width:28px; height:28px; font-size:1rem; display:flex; align-items:center; justify-content:center; cursor:pointer; }
.btn-del-ligne:hover { background:rgba(239,68,68,0.15); }
.totaux-box { background:rgba(255,255,255,0.02); border:1px solid var(--admin-border); padding:1rem 1.2rem; margin-bottom:1.5rem; }
.totaux-row { display:flex; justify-content:space-between; font-size:0.75rem; padding:0.3rem 0; color:rgba(200,191,168,0.75); }
.totaux-row.total { color:var(--gold); font-size:1rem; border-top:2px solid var(--admin-border); margin-top:0.4rem; padding-top:0.6rem; font-family:'Cormorant Garamond',serif; font-weight:600; }
.action-bar { display:flex; gap:0.8rem; flex-wrap:wrap; margin-top:1.5rem; }
.btn-preview { background:transparent; border:1px solid var(--admin-border); color:#666; padding:0.85rem 1.8rem; font-size:0.68rem; letter-spacing:0.18em; text-transform:uppercase; transition:all 0.2s; font-family:'Montserrat',sans-serif; cursor:pointer; }
.btn-preview:hover { border-color:var(--gold); color:var(--gold); }
.btn-save { background:rgba(224,32,32,0.07); border:1px solid rgba(224,32,32,0.3); color:var(--gold); padding:0.85rem 1.8rem; font-size:0.68rem; letter-spacing:0.18em; text-transform:uppercase; transition:background 0.2s; font-family:'Montserrat',sans-serif; cursor:pointer; }
.btn-save:hover { background:rgba(224,32,32,0.14); }
.btn-send { background:var(--gold); border:none; color:#fff; padding:0.85rem 2.2rem; font-size:0.68rem; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; transition:background 0.2s; font-family:'Montserrat',sans-serif; cursor:pointer; }
.btn-send:hover { background:var(--gold-dark); }
.devis-numero { font-family:'Cormorant Garamond',serif; font-size:1rem; color:rgba(224,32,32,0.45); margin-left:1rem; }

/* ── Empty state ── */
.empty-state { text-align:center; padding:4rem; color:#ccc; font-size:0.75rem; letter-spacing:0.1em; }

/* ── Modal ── */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.65); z-index:200; align-items:center; justify-content:center; backdrop-filter:blur(2px); }
.modal-overlay.open { display:flex; }
.modal { background:var(--admin-surface); border:1px solid var(--admin-border); box-shadow:0 12px 40px rgba(0,0,0,0.15); padding:2rem; width:100%; max-width:480px; max-height:90vh; overflow-y:auto; }
.modal-title { font-family:'Cormorant Garamond',serif; font-size:1.4rem; color:var(--admin-text); margin-bottom:1.5rem; border-bottom:1px solid var(--admin-border); padding-bottom:0.8rem; }
.modal-close { float:right; background:none; border:none; color:#aaa; font-size:1.2rem; cursor:pointer; line-height:1; }
.modal-close:hover { color:var(--admin-text); }

/* ── Overrides light-mode pour admin pages utilisant des classes ec-* ── */
.admin-main .ec-section-eye { color:var(--admin-muted); }
.admin-main .ec-title { color:var(--admin-text); font-size:2rem; }
.admin-main .ec-title span { color:var(--gold); }
.admin-main .ec-msg { padding:0.85rem 1.2rem; font-size:0.75rem; margin-bottom:1.5rem; }
.admin-main .ec-msg-success { background:rgba(40,180,80,0.08); border:1px solid rgba(40,180,80,0.2); border-left:3px solid #4caf72; color:#4caf72; }
.admin-main .ec-msg-error { background:rgba(224,85,85,0.08); border:1px solid rgba(224,85,85,0.2); border-left:3px solid #e05555; color:#e05555; }
.admin-main .ec-devis-block { background:var(--admin-surface); border:1px solid var(--admin-border); box-shadow:0 2px 8px rgba(0,0,0,0.05); }
.admin-main .ec-devis-block-title { color:var(--gold); border-color:var(--admin-border); }
.admin-main .ec-devis-row { color:var(--admin-text); }
.admin-main .ec-devis-label { color:var(--admin-muted); }
.admin-main .ec-devis-val { color:var(--admin-text); }
.admin-main .ec-demande-card { background:var(--admin-surface); border-color:var(--admin-border); color:var(--admin-text); }
.admin-main .ec-demande-card:hover { border-color:rgba(224,32,32,0.3); }
.admin-main .ec-demande-type { color:var(--admin-text); }
.admin-main .ec-demande-meta { color:var(--admin-muted); }
.admin-main .ec-devis-back { color:var(--admin-muted); }
.admin-main .ec-devis-back:hover { color:var(--admin-text); }
.admin-main .ec-devis-message { background:var(--admin-surface); border-color:var(--admin-border); }
.admin-main .ec-devis-message p { color:var(--admin-text); }
.admin-main .ec-empty { color:#bbb; }

/* ── Responsive admin ── */
@media (max-width:900px) {
  .admin-sidebar { width:60px; }
  .sidebar-logo-name,.sidebar-logo-sub,.sidebar-section,.sidebar-link span,.sidebar-badge,.sidebar-footer-link span { display:none; }
  .sidebar-link { justify-content:center; padding:0.9rem; }
  .sidebar-footer { padding:0.5rem; align-items:center; }
  .stats-grid { grid-template-columns:1fr 1fr; }

  /* Admin hamburger dès 900px */
  .is-admin .admin-topbar { top:52px; padding:0.65rem 1rem; }
  .is-admin .admin-body { padding:1rem 0.9rem; }
  .is-admin .admin-body [style*="grid-template-columns"],
  .is-admin .card [style*="grid-template-columns"] { grid-template-columns:1fr !important; }
  .is-admin .stats-grid { grid-template-columns:1fr 1fr; }
  .is-admin .topbar-search { max-width:200px; }
}
@media (max-width:600px) {
  .admin-sidebar { display:none; }
  .stats-grid { grid-template-columns:1fr; }
  .form-row-2,.form-row-3 { grid-template-columns:1fr; }
}

/* Optimisation mobile admin → voir assets/css/admin-mobile.css */
