/* ══════════════════════════════════════════════════════
   ADN RÉNOVATION — style.css
   Palette claire & élégante — inspirée du site de référence
══════════════════════════════════════════════════════ */

:root {
  --blanc:      #ffffff;
  --creme:      #f7f4ef;
  --sable:      #ede9e1;
  --or:         #b07d3a;
  --or-light:   #d4a55a;
  --texte:      #1c1c1c;
  --gris:       #5a5a5a;
  --gris-clair: #9a9a9a;
  --bordure:    #e2ddd5;
  --noir-menu:  #1a1a1a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--blanc);
  color: var(--texte);
  overflow-x: hidden;
}

/* ── CURSEUR CUSTOM ─────────────────────────────────── */

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bordure);
  transition: box-shadow 0.3s;
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 3px; color: var(--texte); text-decoration: none; }
.logo span { color: var(--or); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gris); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--or); }
.nav-cta { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blanc); background: var(--or); padding: 10px 24px; text-decoration: none; transition: background 0.3s, transform 0.2s; }
.nav-cta:hover { background: var(--texte); transform: translateY(-1px); }
.nav-devis {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--or); border: 1px solid var(--or);
  padding: 10px 24px; text-decoration: none;
  transition: all 0.3s; margin-left: 8px;
}
.nav-devis:hover { background: var(--or); color: var(--blanc); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 200; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--texte); transition: all 0.3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--noir-menu); z-index: 150;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: 4px; color: var(--blanc); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--or); }
.mobile-menu .mobile-cta { margin-top: 16px; background: var(--or); color: var(--blanc); padding: 16px 40px; font-size: 18px; }

/* ── HERO ───────────────────────────────────────────── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; background: var(--creme); }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 140px 60px 80px; position: relative; z-index: 2; }
.hero-tag { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 4px; color: var(--or); text-transform: uppercase; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(68px, 7vw, 110px); line-height: 0.92; letter-spacing: 1px; color: var(--texte); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.9s 0.4s forwards; }
.hero-title em { display: block; color: var(--or); font-style: normal; }
.hero-desc { font-size: 18px; font-weight: 300; line-height: 1.9; color: var(--gris); max-width: 420px; margin-bottom: 44px; opacity: 0; animation: fadeUp 1s 0.6s forwards; }
.hero-actions { display: flex; gap: 20px; align-items: center; opacity: 0; animation: fadeUp 1s 0.8s forwards; }
.btn-primary { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; background: var(--or); color: var(--blanc); padding: 15px 34px; text-decoration: none; transition: all 0.3s; position: relative; overflow: hidden; }
.btn-primary::after { content: ''; position: absolute; inset: 0; background: var(--texte); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.btn-primary:hover::after { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }
.btn-outline { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--texte); text-decoration: none; display: flex; align-items: center; gap: 12px; transition: color 0.3s; }
.btn-outline::before { content: ''; width: 36px; height: 1px; background: var(--or); transition: width 0.3s; }
.btn-outline:hover { color: var(--or); }
.btn-outline:hover::before { width: 56px; }
.hero-right { position: relative; overflow: hidden; }
.hero-right::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--creme) 0%, transparent 35%); z-index: 1; }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.95); animation: zoomIn 8s ease-out forwards; }
.hero-stats { position: absolute; bottom: 48px; left: 60px; display: flex; gap: 56px; z-index: 3; opacity: 0; animation: fadeUp 1s 1s forwards; }
.stat-item { text-align: left; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--or); line-height: 1; }
.stat-label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; color: var(--gris-clair); text-transform: uppercase; }

/* ── TICKER ─────────────────────────────────────────── */
.ticker { background: var(--or); padding: 13px 0; overflow: hidden; display: flex; }
.ticker-track { display: flex; gap: 80px; animation: ticker 22s linear infinite; white-space: nowrap; }
.ticker-item { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 3px; color: var(--blanc); display: flex; align-items: center; gap: 24px; }
.ticker-item::after { content: '◆'; font-size: 7px; opacity: 0.6; }

/* ── SECTIONS COMMUNES ──────────────────────────────── */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 72px; }
.section-label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px; color: var(--or); text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5vw, 68px); color: var(--texte); line-height: 0.92; }
.section-title span { color: var(--or); }
.section-desc { font-size: 16px; font-weight: 300; color: var(--gris); max-width: 320px; line-height: 1.8; text-align: right; }

/* ── SERVICES ───────────────────────────────────────── */
.services { padding: 110px 60px; background: var(--blanc); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { background: var(--creme); border: 1px solid var(--bordure); padding: 44px 36px; position: relative; overflow: hidden; transition: transform 0.35s, box-shadow 0.35s, background 0.35s;  }
.service-card:hover { transform: translateY(-4px); background: var(--blanc); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--or); transform: scaleX(0); transition: transform 0.35s; }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--bordure); line-height: 1; margin-bottom: 20px; }
.service-icon { font-size: 30px; margin-bottom: 16px; }
.service-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; color: var(--texte); margin-bottom: 12px; }
.service-desc { font-size: 16px; font-weight: 300; color: var(--texte); line-height: 1.75; }

/* ── PORTFOLIO ──────────────────────────────────────── */
.portfolio { padding: 110px 60px; background: var(--creme); }
.portfolio .section-title { color: var(--texte); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 12px; margin-top: 72px; }
.portfolio-item { position: relative; overflow: hidden;  background: var(--sable); }
.portfolio-bg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-item:hover .portfolio-bg { transform: scale(1.06); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,28,28,0.75) 0%, transparent 55%); opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; padding: 28px; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; color: var(--or-light); text-transform: uppercase; margin-bottom: 6px; }
.portfolio-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--blanc); }
.p1 { background: #d8d2c8; } .p2 { background: #cfc8bc; } .p3 { background: #c8c0b2; } .p4 { background: #d2cbbf; } .p5 { background: #c4bcaf; }
.portfolio-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 44px; opacity: 0.35; }

/* ── POURQUOI NOUS ──────────────────────────────────── */
.why { padding: 110px 60px; background: var(--blanc); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left .section-label { color: var(--or); }
.why-left .section-title { color: var(--texte); }
.why-text { font-size: 17px; font-weight: 300; line-height: 1.95; color: var(--gris); margin: 24px 0; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-item { padding: 28px 24px; background: var(--creme); border: 1px solid var(--bordure); transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;  }
.feature-item:hover { border-color: var(--or); background: var(--blanc); box-shadow: 0 6px 24px rgba(176,125,58,0.1); }
.feature-icon { font-size: 26px; margin-bottom: 12px; }
.feature-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--texte); margin-bottom: 8px; }
.feature-text { font-size: 14px; font-weight: 300; color: var(--gris); line-height: 1.65; }

/* ── TÉMOIGNAGES ────────────────────────────────────── */
.testimonials { padding: 110px 60px; background: var(--creme); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 72px; }
#testi-dynamic:empty { display: none; margin-top: 0; }
#testi-dynamic { margin-top: 32px; }
.testi-card { background: var(--blanc); padding: 36px; border: 1px solid var(--bordure); border-top: 3px solid var(--or); transition: box-shadow 0.3s; }
.testi-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.testi-quote { font-size: 56px; font-family: 'Bebas Neue', sans-serif; color: var(--or); opacity: 0.25; line-height: 1; margin-bottom: 8px; }
.testi-text { font-size: 16px; font-style: italic; font-weight: 300; color: var(--gris); line-height: 1.85; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--or); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--blanc); flex-shrink: 0; }
.testi-name { font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 400; color: var(--texte); letter-spacing: 1px; }
.testi-role { font-size: 13px; color: var(--gris-clair); margin-top: 2px; }

/* ── FOOTER ─────────────────────────────────────────── */
footer { background: var(--noir-menu); padding: 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; border-top: 3px solid var(--or); }
.footer-brand .logo { display: inline-block; margin-bottom: 18px; color: var(--blanc); }
.footer-brand .logo span { color: var(--or); }
.footer-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; }
.footer-col-title { font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: 2px; color: var(--blanc); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--or-light); }
.footer-bottom { background: var(--noir-menu); padding: 18px 60px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE MOBILE
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links, .nav-cta, .nav-devis, .nav-rdv { display: none; }
  .hamburger { display: flex; }
  .logo { font-size: 22px; letter-spacing: 3px; }
  .hero { grid-template-columns: 1fr; min-height: 100svh; position: relative; }
  .hero-right { display: block; position: absolute; inset: 0; z-index: 0; }
  .hero-right::before { background: linear-gradient(to bottom, rgba(247,244,239,0.88), rgba(247,244,239,0.94)); }
  .hero-left { padding: 110px 20px 160px; position: relative; z-index: 1; }
  .hero-title { font-size: clamp(50px, 13vw, 76px); line-height: 0.92; }
  .hero-desc { font-size: 15px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-primary { width: 100%; text-align: center; padding: 15px 24px; }
  .hero-stats { position: absolute; bottom: 24px; left: 20px; right: 20px; display: grid; grid-template-columns: repeat(3,1fr); gap: 0; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border: 1px solid var(--bordure); padding: 14px 0; }
  .stat-item { text-align: center; border-right: 1px solid var(--bordure); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-size: 30px; }
  .stat-label { font-size: 8px; }
  .ticker-item { font-size: 13px; }
  .services, .portfolio, .why, .contact, .testimonials { padding: 60px 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .section-desc { text-align: left; max-width: 100%; font-size: 14px; }
  .section-title { font-size: clamp(34px, 9vw, 52px); }
  .services-grid { grid-template-columns: 1fr; gap: 10px; }
  .service-card { padding: 28px 22px; }
  .service-num { font-size: 40px; margin-bottom: 10px; }
  .service-name { font-size: 22px; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 8px; }
  .portfolio-overlay { opacity: 1; }
  .why { grid-template-columns: 1fr; gap: 36px; }
  .why-features { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feature-item { padding: 18px 14px; }
  .feature-name { font-size: 16px; }
  .feature-text { font-size: 12px; }
  .testi-grid,
  #testi-dynamic { grid-template-columns: 1fr !important; gap: 16px; }
  .testi-card { padding: 26px 18px; }
  .testi-text { font-size: 15px; }
  footer { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .footer-desc { font-size: 13px; }
  .footer-bottom { padding: 14px 20px; flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 46px; }
  .why-features { grid-template-columns: 1fr; }
  .stat-num { font-size: 26px; }
}

/* ══════════════════════════════════════════════════════
   MODULE AVIS CLIENTS
══════════════════════════════════════════════════════ */

/* Formulaire dépôt d'avis */
.avis-form-wrap {
  margin-top: 60px;
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-top: 3px solid var(--or);
  padding: 40px 48px;
  max-width: 780px;
}
.avis-form { display: flex; flex-direction: column; gap: 18px; }
.avis-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.avis-input {
  background: var(--creme);
  border: 1px solid var(--bordure);
  color: var(--texte);
  padding: 12px 16px;
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
  resize: vertical;
}
.avis-input:focus { border-color: var(--or); background: var(--blanc); }

/* Étoiles */
.avis-stars-select {
  display: flex;
  gap: 6px;
  font-size: 32px;
  cursor: pointer;
  margin-bottom: 4px;
}
.avis-star {
  color: var(--bordure);
  transition: color 0.15s, transform 0.15s;
  user-select: none;
}
.avis-star.active,
.avis-star.hover { color: var(--or); transform: scale(1.15); }

/* Messages */
.avis-msg { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 1px; padding: 12px 16px; display: none; }
.avis-msg-error  { background: rgba(220,50,50,0.07); border: 1px solid #dc3232; color: #c0392b; }
.avis-msg-success { background: rgba(176,125,58,0.08); border: 1px solid var(--or); color: var(--or); }

/* Avis dynamiques dans la grille */
.testi-stars { display: flex; gap: 3px; font-size: 16px; margin-bottom: 12px; }
.testi-star-filled { color: var(--or); }
.testi-star-empty  { color: var(--bordure); }

/* Badge "En attente" dans grille */
.testi-pending-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 1px;
  background: rgba(176,125,58,0.12);
  color: var(--or);
  padding: 3px 8px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Admin — liste des avis */
.admin-avis-card {
  background: var(--creme);
  border: 1px solid var(--bordure);
  border-left: 3px solid var(--or);
  padding: 18px 20px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.admin-avis-card.pending { border-left-color: #e67e22; }
.admin-avis-card.approved { border-left-color: #27ae60; }
.admin-avis-body { flex: 1; }
.admin-avis-stars { font-size: 16px; margin-bottom: 6px; color: var(--or); }
.admin-avis-text { font-size: 14px; color: var(--gris); font-style: italic; margin-bottom: 8px; line-height: 1.6; }
.admin-avis-meta { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--gris-clair); letter-spacing: 1px; }
.admin-avis-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.avis-btn-approve {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; background: #27ae60; color: white;
  border: none; padding: 8px 14px; cursor: pointer; transition: opacity 0.2s;
}
.avis-btn-approve:hover { opacity: 0.8; }
.avis-btn-delete {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; background: none; color: #c0392b;
  border: 1px solid #c0392b; padding: 8px 14px; cursor: pointer; transition: all 0.2s;
}
.avis-btn-delete:hover { background: #c0392b; color: white; }
.admin-avis-status {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 8px; margin-bottom: 8px; display: inline-block;
}
.status-pending  { background: rgba(230,126,34,0.12); color: #e67e22; }
.status-approved { background: rgba(39,174,96,0.12);  color: #27ae60; }

@media (max-width: 768px) {
  .avis-form-wrap { padding: 28px 20px; margin-top: 40px; }
  .avis-form-row { grid-template-columns: 1fr; }
  .admin-avis-card { flex-direction: column; }
  .admin-avis-actions { flex-direction: row; }
}

/* Bouton RDV nav */
.nav-rdv {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blanc); background: var(--or);
  padding: 10px 24px; text-decoration: none;
  transition: background 0.3s, transform 0.2s; margin-left: 4px;
}
.nav-rdv:hover { background: var(--texte); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
   BANNIÈRE RDV
══════════════════════════════════════════════════════ */
.rdv-banner {
  position: relative;
  background: var(--noir-menu);
  padding: 80px 60px;
  overflow: hidden;
}
.rdv-banner-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(176,125,58,0.12) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(176,125,58,0.03) 40px,
      rgba(176,125,58,0.03) 41px
    );
}
.rdv-banner-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.rdv-banner-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--or);
  margin-bottom: 16px;
}
.rdv-banner-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.92; letter-spacing: 1px;
  color: var(--blanc);
}
.rdv-banner-title span { color: var(--or); }
.rdv-banner-desc {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8; margin-top: 20px;
  max-width: 380px;
}
.rdv-banner-right {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 20px;
}

/* Bouton CTA principal */
.rdv-cta-btn {
  display: inline-flex; align-items: center; gap: 18px;
  background: var(--or);
  padding: 22px 32px;
  text-decoration: none;
  transition: all 0.35s;
  position: relative; overflow: hidden;
  width: 100%;
}
.rdv-cta-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--blanc);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.rdv-cta-btn:hover::before { transform: scaleX(1); }
.rdv-cta-btn:hover .rdv-cta-icon,
.rdv-cta-btn:hover .rdv-cta-main,
.rdv-cta-btn:hover .rdv-cta-sub  { color: var(--noir-menu); }
.rdv-cta-btn:hover .rdv-cta-arrow { color: var(--or); }
.rdv-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(176,125,58,0.35); }

.rdv-cta-icon {
  position: relative; z-index: 1;
  color: var(--blanc); flex-shrink: 0;
  transition: color 0.35s;
}
.rdv-cta-text {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 3px; flex: 1;
}
.rdv-cta-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 2px; color: var(--blanc);
  line-height: 1; transition: color 0.35s;
}
.rdv-cta-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  transition: color 0.35s;
}
.rdv-cta-arrow {
  position: relative; z-index: 1;
  font-size: 24px; color: rgba(255,255,255,0.5);
  transition: all 0.35s; flex-shrink: 0;
}
.rdv-cta-btn:hover .rdv-cta-arrow { transform: translateX(6px); }

/* Badges */
.rdv-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.rdv-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px;
  transition: all 0.2s;
}

/* ── BOUTON FLOTTANT RDV ────────────────────────────── */
.rdv-float {
  position: fixed;
  bottom: 80px; right: 24px;
  z-index: 499;
  display: flex; align-items: center; gap: 0;
  background: var(--or);
  color: var(--blanc);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(176,125,58,0.4);
  transition: all 0.35s;
  overflow: hidden;
  height: 48px;
  border-radius: 24px;
  padding: 0 16px 0 14px;
}
.rdv-float-icon {
  flex-shrink: 0; display: flex; align-items: center;
  transition: transform 0.3s;
}
.rdv-float-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap;
  max-width: 0; overflow: hidden;
  transition: max-width 0.4s ease, margin-left 0.4s ease, opacity 0.3s;
  opacity: 0;
}
.rdv-float:hover {
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(176,125,58,0.5);
  transform: translateY(-2px);
}
.rdv-float:hover .rdv-float-label {
  max-width: 140px;
  margin-left: 10px;
  opacity: 1;
}
.rdv-float:hover .rdv-float-icon { transform: scale(1.1); }

/* Pulse animation */
.rdv-float::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: inherit;
  border: 2px solid var(--or);
  opacity: 0;
  animation: rdvPulse 2.5s ease-out infinite;
}
@keyframes rdvPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Responsive bannière */
@media (max-width: 768px) {
  .rdv-banner { padding: 60px 20px; }
  .rdv-banner-content { grid-template-columns: 1fr; gap: 36px; }
  .rdv-cta-btn { width: 100%; }
  .rdv-float { bottom: 88px; right: 16px; }
  #admin-trigger { bottom: 16px; right: 16px; }
}

/* ── PORTFOLIO CAPTION (description sous image) ─────── */
.portfolio-caption {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-top: none;
  padding: 14px 18px;
}
.portfolio-caption-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 1px;
  color: var(--texte); margin-bottom: 4px;
}
.portfolio-caption-desc {
  font-size: 14px; font-weight: 300;
  color: var(--gris); line-height: 1.6;
}
.portfolio-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.5; margin-top: 6px;
}
@media (max-width: 768px) {
  .portfolio-caption { padding: 12px 14px; }
  .portfolio-caption-desc { font-size: 13px; }
}

/* ── BOUTON WHATSAPP FLOTTANT ────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 136px; right: 24px;
  z-index: 499;
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.3s;
  overflow: hidden;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; transition: transform 0.3s; flex-shrink: 0; }
.wa-float-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; white-space: nowrap;
  max-width: 0; overflow: hidden;
  transition: max-width 0.4s ease, margin-left 0.3s, opacity 0.3s;
  opacity: 0;
}
.wa-float:hover {
  border-radius: 28px;
  padding: 0 20px 0 14px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  transform: translateY(-2px);
}
.wa-float:hover .wa-float-label { max-width: 120px; margin-left: 10px; opacity: 1; }
.wa-float:hover svg { transform: scale(1.1); }

/* Pulse */
.wa-float::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: inherit;
  border: 2px solid #25d366;
  opacity: 0;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
  .wa-float { bottom: 152px; right: 16px; width: 48px; height: 48px; }
  .wa-float:hover { border-radius: 50%; padding: 0; }
  .wa-float:hover .wa-float-label { max-width: 0; opacity: 0; margin-left: 0; }
}

/* ── BOUTON RDV HERO ─────────────────────────────────── */
.btn-rdv-hero {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--texte); text-decoration: none;
  border: 1px solid var(--bordure);
  background: var(--blanc);
  padding: 12px 24px;
  margin-top: 12px;
  transition: all 0.3s;
  align-self: flex-start;
}
.btn-rdv-hero:hover {
  background: var(--or);
  color: var(--blanc);
  border-color: var(--or);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(176,125,58,0.25);
}
@media (max-width: 768px) {
  .btn-rdv-hero { width: 100%; justify-content: center; }
}

/* ── BOUTON RDV HERO ─────────────────────────────────── */
.hero-rdv-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--texte); text-decoration: none;
  border: 1px solid var(--bordure);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  padding: 12px 24px;
  transition: all 0.3s;
  margin-top: 16px;
  margin-bottom: 16px;
  width: fit-content;
}
.hero-rdv-btn svg { color: var(--or); flex-shrink: 0; }
.hero-rdv-btn:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--blanc);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(176,125,58,0.25);
}
.hero-rdv-btn:hover svg { color: var(--blanc); }

@media (max-width: 768px) {
  .hero-rdv-btn { width: 100%; justify-content: center; }
}
