/* ═══════════════════════════════════════════════
   Les Pattes Soyeuses — Style
   ═══════════════════════════════════════════════ */

:root {
  --rose:        #E68FB0;
  --rose-pale:   #FBEDF1;
  --rose-soft:   #FDF6F8;
  --bordeaux:    #8E2A4B;
  --bordeaux-dk: #6E1E3A;
  --gold:        #C9A24E;
  --gold-soft:   #E7D4A6;
  --ink:         #3A252C;
  --muted:       rgba(58, 37, 44, 0.62);
  --line:        rgba(142, 42, 75, 0.14);
  --white:       #FFFFFF;
  --shadow-sm:   0 4px 14px rgba(58,37,44,0.07);
  --shadow-md:   0 14px 40px rgba(142,42,75,0.13);
  --shadow-lg:   0 30px 70px rgba(110,30,58,0.20);
  --radius:      18px;
  --radius-lg:   28px;
  --container:   1180px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, .brand-name, .footer-name, .hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--bordeaux);
  letter-spacing: -0.01em;
}
.ital { font-style: italic; font-weight: 600; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─────────── Boutons ─────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.25s var(--ease); white-space: nowrap;
}
.btn i { width: 18px; height: 18px; }
.btn-primary { background: var(--bordeaux); color: #fff; }
.btn-primary:hover { background: var(--bordeaux-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--bordeaux); border-color: var(--gold); }
.btn-ghost:hover { background: var(--rose-pale); border-color: var(--bordeaux); transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }

/* ─────────── Navbar ─────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.3s var(--ease);
}
.navbar.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); box-shadow: 0 2px 24px rgba(58,37,44,0.07); padding: 9px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 50px; height: 50px; object-fit: contain; transition: all 0.3s var(--ease); }
.navbar.scrolled .brand-logo { width: 44px; height: 44px; }
.brand-name { font-size: 1.28rem; color: var(--bordeaux); }
.nav-links { display: flex; gap: 30px; }
.nav-link { font-weight: 700; font-size: 0.97rem; color: var(--ink); position: relative; padding: 4px 0; transition: color 0.2s; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width 0.25s var(--ease); }
.nav-link:hover { color: var(--bordeaux); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--bordeaux); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2.5px; background: var(--bordeaux); border-radius: 2px; transition: all 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(58,37,44,0.45); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 110; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100%; background: #fff; z-index: 120;
  padding: 22px; display: flex; flex-direction: column; gap: 8px; transition: right 0.35s var(--ease); box-shadow: -10px 0 50px rgba(58,37,44,0.18);
}
.drawer.open { right: 0; }
.drawer-head { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 16px; }
.drawer-logo { width: 52px; height: 52px; object-fit: contain; }
.drawer-close { background: var(--rose-pale); border: none; width: 40px; height: 40px; border-radius: 50%; color: var(--bordeaux); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.drawer-links { display: flex; flex-direction: column; }
.drawer-links a { padding: 14px 6px; font-weight: 700; font-size: 1.08rem; border-bottom: 1px solid var(--line); color: var(--ink); }
.drawer-links a:hover { color: var(--bordeaux); }
.drawer-cta { margin-top: 18px; }

/* ─────────── Eyebrow / Ribbon (signature) ─────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; line-height: 1.65;
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow i { width: 17px; height: 17px; color: var(--rose); }
.ribbon {
  width: 92px; height: 7px; margin: 16px auto 0; border-radius: 4px;
  background: repeating-linear-gradient(90deg, var(--bordeaux) 0 9px, var(--rose) 9px 18px);
  opacity: 0.9;
}
.ribbon.left { margin-left: 0; margin-right: 0; }

/* ─────────── Sections génériques ─────────── */
.section { padding: 92px 0; }
.head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.head-sub { color: var(--muted); margin-top: 18px; font-size: 1.05rem; }
.head-sub strong { color: var(--bordeaux); }

/* photo frame (médaillon doré) */
.photo-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 3px solid var(--white); box-shadow: var(--shadow-lg);
  outline: 1.5px solid var(--gold-soft); outline-offset: 6px;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ─────────── Hero ─────────── */
.hero {
  position: relative; padding: 150px 0 90px;
  background:
    radial-gradient(1100px 520px at 88% -8%, var(--rose-pale) 0%, transparent 60%),
    linear-gradient(180deg, var(--rose-soft) 0%, #fff 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero-text .hero-title { font-size: clamp(2.5rem, 5.2vw, 4rem); margin-bottom: 22px; }
.hero-sub { font-size: 1.16rem; color: var(--muted); max-width: 480px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-meta { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.hero-meta i { width: 17px; height: 17px; color: var(--gold); fill: var(--gold); vertical-align: -3px; margin-right: 4px; }
.hero-meta .dot { color: var(--rose); }

.hero-photo { position: relative; }
.hero-photo .photo-frame { height: 520px; }
.hero-badge {
  position: absolute; left: -28px; bottom: -26px; width: 116px; height: 116px;
  background: #fff; border-radius: 50%; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; border: 3px solid var(--rose-pale);
}
.hero-badge img { width: 100px; height: 100px; object-fit: contain; }

/* ─────────── Bandeau confiance ─────────── */
.trust { background: var(--bordeaux); padding: 26px 0; }
.trust-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 11px; color: #fff; font-weight: 700; font-size: 1rem; }
.trust-item i { width: 22px; height: 22px; color: var(--gold-soft); }

/* ─────────── Cards prestations ─────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--rose), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-ico {
  width: 60px; height: 60px; border-radius: 16px; background: var(--rose-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.3s var(--ease);
}
.card-ico i { width: 28px; height: 28px; color: var(--bordeaux); }
.card:hover .card-ico { background: var(--bordeaux); }
.card:hover .card-ico i { color: #fff; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card-tag { display: inline-block; margin-top: 9px; }
.tarif-note {
  text-align: center; margin-top: 40px; color: var(--muted); font-size: 0.97rem;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.tarif-note i { width: 18px; height: 18px; color: var(--gold); }
.card-price {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: var(--rose-pale); color: var(--bordeaux);
  font-weight: 800; font-size: 0.82rem; line-height: 1;
  padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line);
  white-space: nowrap; transition: all 0.3s var(--ease);
}
.card:hover .card-price { background: var(--bordeaux); color: #fff; border-color: transparent; }
.info-card {
  max-width: 640px; margin: 18px auto 0;
  display: flex; align-items: center; gap: 13px;
  background: var(--rose-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 22px;
  color: var(--ink); font-size: 0.96rem; line-height: 1.55; text-align: left;
}
.info-card i { width: 20px; height: 20px; color: var(--bordeaux); flex-shrink: 0; }

/* ─────────── À propos ─────────── */
.about { background: var(--rose-soft); }
.about-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
.about-photo .photo-frame { height: 500px; }
.about-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.about-text p { color: var(--muted); margin-top: 16px; font-size: 1.04rem; }
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.abadge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); color: var(--bordeaux); font-weight: 700; font-size: 0.9rem; padding: 9px 16px; border-radius: 999px; }
.abadge i { width: 17px; height: 17px; color: var(--gold); }

/* ─────────── Galerie ─────────── */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-zoom {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(110,30,58,0.55), rgba(110,30,58,0.05) 55%);
  display: flex; align-items: flex-end; justify-content: flex-end; padding: 16px; opacity: 0; transition: opacity 0.3s var(--ease);
}
.gal-zoom i { width: 26px; height: 26px; color: #fff; }
.gal-item:hover .gal-zoom { opacity: 1; }

.insta { text-align: center; margin-top: 46px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.insta > i { width: 30px; height: 30px; color: var(--rose); }
.insta p { color: var(--muted); font-weight: 600; }

/* ─────────── Avis ─────────── */
.avis { background: var(--rose-soft); }
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.avis-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease); }
.avis-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars i { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }
.avis-card p { color: var(--ink); font-size: 0.98rem; font-style: italic; margin-bottom: 16px; }
.avis-author { font-weight: 800; color: var(--bordeaux); font-family: 'Playfair Display', serif; }

/* ─────────── Contact ─────────── */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.3fr 0.85fr; gap: 30px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.cinfo { display: flex; gap: 16px; align-items: flex-start; }
.cinfo-ico { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; }
.cinfo-ico i { width: 22px; height: 22px; color: var(--bordeaux); }
.cinfo-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 800; margin-bottom: 3px; }
.cinfo-val { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
a.cinfo-val:hover { color: var(--bordeaux); }
.horaires { width: 100%; }
.hrow { display: flex; justify-content: space-between; padding: 5px 0; font-weight: 600; font-size: 0.96rem; border-bottom: 1px dashed var(--line); max-width: 320px; }
.hrow span:last-child { color: var(--bordeaux); font-weight: 700; }
.hrow.closed span:last-child { color: var(--muted); font-weight: 600; }
.hrow.today { background: var(--rose-pale); border-radius: 8px; padding: 5px 10px; margin: 0 -10px; border-bottom-color: transparent; }
.contact-info .btn { align-self: flex-start; margin-top: 6px; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); outline: 1.5px solid var(--gold-soft); outline-offset: 5px; }

/* ─────────── Footer ─────────── */
.footer { background: var(--bordeaux-dk); color: rgba(255,255,255,0.78); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; }
.footer-brand img { width: 82px; height: 82px; object-fit: contain; margin-bottom: 12px; }
.footer-name { font-size: 1.4rem; color: #fff; }
.footer-tag { font-size: 0.95rem; margin-top: 6px; max-width: 280px; }
.footer-col h4 { font-family: 'Nunito', sans-serif; color: #fff; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 800; }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,0.78); padding: 5px 0; font-size: 0.96rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-insta { display: inline-flex !important; align-items: center; gap: 7px; margin-top: 6px; }
.footer-insta i { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.13); padding: 22px 0; text-align: center; font-size: 0.88rem; }

/* ─────────── Bouton flottant ─────────── */
.float-call {
  position: fixed; bottom: 22px; right: 22px; width: 58px; height: 58px; border-radius: 50%;
  background: var(--bordeaux); color: #fff; display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 90; transition: transform 0.25s var(--ease);
}
.float-call:hover { transform: scale(1.08); background: var(--bordeaux-dk); }
.float-call i { width: 24px; height: 24px; }

/* ─────────── Lightbox ─────────── */
.lightbox { position: fixed; inset: 0; background: rgba(46,18,28,0.92); z-index: 200; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,0.14); border: none; color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.28); }
.lb-close { top: 24px; right: 24px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-close i, .lb-nav i { width: 24px; height: 24px; }

/* ─────────── Reveal ─────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ─────────── Responsive ─────────── */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-meta { justify-content: center; }
  .hero-photo { max-width: 460px; margin: 0 auto; }
  .hero-photo .photo-frame { height: 440px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 460px; margin: 0 auto; }
  .about-text { text-align: center; }
  .ribbon.left { margin-left: auto; margin-right: auto; }
  .about-badges { justify-content: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .hero { padding: 124px 0 70px; }
  .brand-name { font-size: 1.1rem; }
  .cards, .avis-grid, .gal-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 14px 26px; }
  .trust-item { font-size: 0.92rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-tag { margin-left: auto; margin-right: auto; }
  .footer-brand img { margin-left: auto; margin-right: auto; }
  .float-call { display: flex; }
  .hero-badge { width: 92px; height: 92px; left: 50%; transform: translateX(-50%); bottom: -34px; }
  .hero-badge img { width: 70px; height: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════ AJOUTS — v2 ═══════════ */

/* Galerie : légende au survol */
.gal-zoom {
  background: linear-gradient(0deg, rgba(110,30,58,0.62) 0%, rgba(230,143,176,0.18) 55%, transparent 100%);
  align-items: flex-start; justify-content: flex-end; padding: 14px;
}
.gal-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0 18px 16px; z-index: 3;
  color: #fff; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.1rem;
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none; text-shadow: 0 1px 8px rgba(46,18,28,0.35);
}
.gal-item:hover .gal-cap { opacity: 1; transform: none; }

/* Section vidéos */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 740px; margin: 0 auto; }
.video-card {
  position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(155deg, var(--rose) 0%, var(--bordeaux) 100%);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  cursor: pointer; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vc-logo { position: absolute; width: 122%; max-width: none; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.12; pointer-events: none; }
.vc-play { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; z-index: 2; transition: transform 0.3s var(--ease); }
.video-card:hover .vc-play { transform: scale(1.12); }
.vc-play i { width: 25px; height: 25px; color: var(--bordeaux); margin-left: 3px; }
.vc-label { position: absolute; bottom: 14px; left: 0; right: 0; text-align: center; color: #fff; font-weight: 800; font-size: 0.92rem; z-index: 2; text-shadow: 0 1px 6px rgba(46,18,28,0.4); }
.videos-more { text-align: center; margin-top: 38px; }

/* Carrousel avis */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; gap: 22px; transition: transform 0.5s var(--ease); }
.carousel-track .avis-card { flex: 0 0 calc((100% - 44px) / 3); }
.carousel-nav { display: flex; justify-content: center; gap: 14px; margin-top: 34px; }
.carousel-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold); background: #fff;
  color: var(--bordeaux); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s var(--ease);
}
.carousel-nav button:hover { background: var(--bordeaux); color: #fff; border-color: var(--bordeaux); transform: translateY(-2px); }
.carousel-nav button i { width: 22px; height: 22px; }

/* Contact : email + carte horaires */
.cinfo-mail { font-size: 0.95rem; word-break: break-all; }
.horaires-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.horaires-title { display: flex; align-items: center; gap: 9px; font-size: 1.25rem; margin-bottom: 12px; }
.horaires-title i { width: 20px; height: 20px; color: var(--gold); }
.horaires-card .hrow { max-width: none; }

/* Footer : réseaux sociaux */
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--rose); color: var(--bordeaux-dk); transform: translateY(-3px); }

/* Responsive v2 */
@media (max-width: 980px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .carousel-track .avis-card { flex-basis: calc((100% - 22px) / 2); }
  .video-grid { max-width: 520px; }
}
@media (max-width: 640px) {
  .carousel-track .avis-card { flex-basis: 100%; }
  .video-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 100%; }
  .vc-play { width: 44px; height: 44px; }
  .vc-play i { width: 18px; height: 18px; }
  .vc-label { font-size: 0.72rem; bottom: 9px; }
  .footer-social { justify-content: center; }
}

/* ═══════════ AJUSTEMENTS — v3 ═══════════ */
/* Lucide génère des <svg> : on cible le svg (les règles 'i' ne s'appliquent plus au rendu final) */

/* Icône prestations : bordeaux par défaut, BLANCHE au survol */
.card-ico { color: var(--bordeaux); }
.card-ico svg { width: 28px; height: 28px; }
.card:hover .card-ico { color: #fff; }

/* Étoiles d'avis pleines (dorées) */
.stars svg { fill: var(--gold); stroke: var(--gold); }

/* Footer mobile/tablette : structure identique à Desigaud
   ── ligne 1 : logo + nom + tagline (pleine largeur, centré)
   ── ligne 2 : « Le salon » | « Contact » (deux colonnes)
   ── ligne 3 : « Suivez-nous » + icônes (pleine largeur, centré) */
@media (max-width: 980px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px 26px; text-align: left; padding-bottom: 40px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand img { margin-left: auto; margin-right: auto; }
  .footer-tag { margin-left: auto; margin-right: auto; }
  .footer-social { margin-top: 14px; margin-bottom: 6px; }
}

/* Footer bas : dégager le copyright du bouton flottant sur mobile */
@media (max-width: 640px) {
  .footer-bottom { padding: 18px 16px 30px; }
  .footer-bottom p { font-size: 0.82rem; }
}

/* ═══════════ v4 — vidéos réelles ═══════════ */
.vc-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(46,18,28,0) 45%, rgba(46,18,28,0.55) 100%); }
.video-card .vc-play, .video-card .vc-label { z-index: 2; }
.video-card .vc-play { background: rgba(255,255,255,0.92); }

/* Lightbox vidéo */
.video-lightbox { position: fixed; inset: 0; background: rgba(46,18,28,0.93); z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.video-lightbox.open { display: flex; }
.vlb-content video { max-width: 92vw; max-height: 86vh; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); background: #000; display: block; }
.vlb-close { position: absolute; top: 22px; right: 22px; background: rgba(255,255,255,0.14); border: none; color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.vlb-close:hover { background: rgba(255,255,255,0.28); }
.vlb-close i { width: 24px; height: 24px; }
