/* ============================================================
   MACARON MARIAGE — style.css
   macaron-mariage.fr | Orange, Vaucluse
   ============================================================ */

/* 1. Variables & Reset
   ---------------------------------------------------------- */
:root {
  /* Palette inspirée de la photo macarons-mariages-coffrets-invité */
  /* Rose poudré (macarons roses)          */ --rose:       #D4909F;
  /* Rose foncé hover                      */ --rose-dark:  #B87080;
  /* Rose très clair (fonds sections)      */ --rose-bg:    #FDF0F2;
  /* Caramel/ivoire (macarons biscuit)     */ --gold:       #C49A78;
  /* Caramel foncé                         */ --gold-dark:  #A07858;
  /* Caramel clair                         */ --gold-light: #DEC0A0;
  /* Fond caramel très pâle               */ --gold-bg:    #FAF5EE;
  /* Blush rose pâle (sections alt)        */ --blush:      #F9EEF0;
  /* Espresso chaud (brun profond)         */ --dark:       #3C2215;
  /* Chocolat corps de texte               */ --text:       #4A2E1E;
  /* Moka clair texte secondaire           */ --text-light: #8A6E5E;
  /* Fond blanc lin chaud (tissu photo)    */ --bg:         #FAF8F5;
  --white:      #FFFFFF;
  /* Bordures rose-beige                   */ --border:     #ECD8DC;
  --radius:     6px;
  --shadow:     0 2px 16px rgba(60,34,21,0.08);
  --font-h:     'Cormorant Garamond', Georgia, serif;
  --font-b:     'Lato', 'Helvetica Neue', Arial, sans-serif;
  --max-w:      1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* 2. Typographie
   ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.section-intro {
  max-width: 600px;
  margin: 0.75rem auto 0;
  color: var(--text-light);
  font-size: 1.05rem;
  text-align: center;
}
.separator {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 0.9rem auto 0;
}

/* 3. Mise en page
   ---------------------------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5rem 0; }
.section--alt  { background: var(--blush); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section-header { text-align: center; margin-bottom: 3rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}

/* 4. Boutons
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: .8rem 1.9rem;
  font-family: var(--font-b);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary  { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-dark); }
.btn-outline  { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover  { background: var(--gold); color: var(--white); }
.btn-outline-w { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn-outline-w:hover { background: var(--white); color: var(--dark); }
.btn-white  { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--gold-bg); }

/* 5. Header & Navigation
   ---------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: .02em;
}
.logo em { color: var(--gold); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: 1.1rem;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta a {
  background: var(--rose); color: var(--white);
  padding: .45rem 1.1rem; border-radius: var(--radius);
}
.nav-links .nav-cta a:hover { background: var(--rose-dark); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem;
  background: none; border: none;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); transition: all .3s;
}

@media (max-width: 960px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; gap: 0;
    padding: 1rem 1.5rem 2rem;
    border-bottom: 2px solid var(--border);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: .75rem 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { font-size: 1rem; }
  .nav-links .nav-cta a { background: none; color: var(--gold); padding: 0; }
}

/* 6. Hero (page d'accueil)
   ---------------------------------------------------------- */
.hero {
  position: relative; min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: var(--blush);
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(60,34,21,.62) 0%, rgba(60,34,21,.08) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 560px;
  color: var(--dark);
  padding: 4rem 1.5rem;
  margin-left: max(1.5rem, calc((100vw - 1100px)/2));
  background: rgba(250,248,245,.72);
  border-radius: var(--radius);
  backdrop-filter: blur(2px);
}
.hero-content .eyebrow { color: var(--rose); }
.hero-content h1 { color: var(--dark); margin: .5rem 0 1rem; }
.hero-content p   { font-size: 1.1rem; margin-bottom: 2rem; color: var(--text); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 600px) {
  .hero { min-height: 400px; }
  .hero-content { margin-left: 0; padding: 2.5rem 1.5rem; }
}

/* 7. Page hero (pages intérieures)
   ---------------------------------------------------------- */
.page-hero {
  background: var(--blush);
  padding: 2.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  font-size: .78rem; color: var(--text-light); margin-bottom: .4rem;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 .4rem; }

/* 8. Cartes produit
   ---------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(60,34,21,.12); }
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p  { color: var(--text-light); margin-bottom: 1.5rem; flex: 1; font-size: .95rem; }
.card-body .btn { align-self: flex-start; }
.card-badge {
  display: inline-block;
  background: var(--gold); color: var(--white);
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .15rem .55rem; border-radius: 3px;
  margin-bottom: .4rem;
}

/* 9. Parfums (12 bulles de couleur)
   ---------------------------------------------------------- */
.parfum-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem 1rem;
}
.parfum-item {
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem; text-align: center;
}
.parfum-dot {
  width: 90px; height: 90px; border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
  flex-shrink: 0;
}
img.parfum-dot {
  object-fit: contain; display: block;
  border-radius: 0; box-shadow: none; background: transparent;
  width: 90px; height: 90px;
}
img.parfum-dot-lg {
  object-fit: contain; display: block;
  border-radius: 0; box-shadow: none; background: transparent;
  width: 110px; height: 110px;
}
.parfum-name { font-size: .78rem; color: var(--text); font-weight: 600; line-height: 1.2; }

.p-vanille     { background: radial-gradient(circle at 38% 35%, #D9BD98, #B89060); }
.p-cafe        { background: radial-gradient(circle at 38% 35%, #9A6840, #6B4022); }
.p-coco        { background: radial-gradient(circle at 38% 35%, #EAD8B8, #CEB888); }
.p-mangue      { background: radial-gradient(circle at 38% 35%, #F8A558, #E07820); }
.p-framboise   { background: radial-gradient(circle at 38% 35%, #E05878, #B8304A); }
.p-citron      { background: radial-gradient(circle at 38% 35%, #EFCF4A, #C8A810); }
.p-fraise      { background: radial-gradient(circle at 38% 35%, #EE9AAE, #D06880); }
.p-pistache    { background: radial-gradient(circle at 38% 35%, #96A848, #6A7C28); }
.p-choc-noir   { background: radial-gradient(circle at 38% 35%, #784030, #4A2010); }
.p-caramel     { background: radial-gradient(circle at 38% 35%, #D49040, #A06818); }
.p-choc-lait   { background: radial-gradient(circle at 38% 35%, #B87868, #885040); }
.p-choc-blanc  { background: radial-gradient(circle at 38% 35%, #5A6878, #384858); }

@media (max-width: 900px) { .parfum-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 600px) { .parfum-grid { grid-template-columns: repeat(3,1fr); } }

/* 10. Atouts
   ---------------------------------------------------------- */
.atout-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: .65rem;
}
.atout-icon { font-size: 2.4rem; line-height: 1; }
.atout-item h4 {
  font-size: .95rem; font-weight: 700;
  color: var(--dark); font-family: var(--font-b);
}
.atout-item p { font-size: .88rem; color: var(--text-light); }

/* 11. Galerie
   ---------------------------------------------------------- */
.galerie-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .75rem;
}
.galerie-grid .g-main { grid-row: 1/3; }
.galerie-grid img, .galerie-grid .photo-ph {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galerie-grid .g-main { grid-row: auto; }
}
@media (max-width: 480px) { .galerie-grid { grid-template-columns: 1fr; } }

/* 12. Placeholders photos
   ---------------------------------------------------------- */
.photo-ph {
  background: var(--gold-bg);
  border: 2px dashed var(--gold-light);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  color: var(--gold); gap: .4rem;
  min-height: 200px;
}
.photo-ph--hero   { min-height: 520px; }
.photo-ph--card   { min-height: 220px; }
.photo-ph--tall   { min-height: 420px; }
.photo-ph--medium { min-height: 200px; }

.ph-icon  { font-size: 2.2rem; }
.ph-num   {
  font-size: .65rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; background: var(--gold); color: var(--white);
  padding: .12rem .55rem; border-radius: 3px;
}
.ph-title { font-weight: 700; font-size: .92rem; color: var(--dark); }
.ph-desc  { font-size: .78rem; color: var(--text-light); max-width: 260px; }
.ph-dim   {
  font-size: .72rem; font-family: monospace;
  background: var(--border); padding: .1rem .45rem;
  border-radius: 3px; color: var(--text);
}

@media (max-width: 600px) {
  .photo-ph--hero { min-height: 360px; }
  .photo-ph--tall { min-height: 280px; }
}

/* 13. Tarifs — tableaux
   ---------------------------------------------------------- */
.tarif-block { margin-bottom: 3.5rem; }
.tarif-block h3 { margin-bottom: .2rem; }
.tarif-sub  { color: var(--text-light); font-size: .88rem; margin-bottom: 1.1rem; }

table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
thead { background: var(--dark); color: var(--white); }
thead th {
  padding: .8rem 1.2rem; text-align: left;
  font-family: var(--font-b); font-size: .78rem;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
tbody tr { border-bottom: 1px solid var(--border); transition: background .1s; }
tbody tr:last-child { border-bottom: none; }
tbody td { padding: .8rem 1.2rem; font-size: .93rem; }
tbody tr:hover { background: var(--blush); }

.price { font-weight: 700; color: var(--gold); font-size: 1rem; white-space: nowrap; }
.badge-local {
  display: inline-block;
  background: #FDECD8; color: #7A4E10;
  font-size: .65rem; font-weight: 700;
  padding: .1rem .4rem; border-radius: 3px; margin-left: .4rem;
}
.badge-fr {
  display: inline-block;
  background: #EEF0F8; color: #3A3A7A;
  font-size: .65rem; font-weight: 700;
  padding: .1rem .4rem; border-radius: 3px; margin-left: .4rem;
}

.tarif-note {
  margin-top: .65rem;
  font-size: .82rem; color: var(--text-light); font-style: italic;
}
.tarif-note strong { color: var(--text); font-style: normal; }

.tarif-box {
  background: var(--gold-bg);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  font-size: .9rem;
}

/* Zone info banner
   ---------------------------------------------------------- */
.zone-banner {
  background: var(--blush);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem 1.4rem;
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .88rem; color: var(--text);
  margin-bottom: 1.5rem;
}
.zone-banner strong { color: var(--dark); }

/* 14. Formulaire de contact
   ---------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-full  { grid-column: 1/-1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } .form-full { grid-column: 1; } }

.form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: .65rem .9rem;
  font-family: var(--font-b); font-size: .93rem;
  color: var(--text); background: var(--white);
  width: 100%; transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 110px; resize: vertical; }

.form-checks { display: flex; flex-direction: column; gap: .45rem; }
.form-check  { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .9rem; }
.form-check input[type="checkbox"] { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }

.contact-card {
  background: var(--gold-bg);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  position: sticky; top: 90px;
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.contact-item { display: flex; gap: .7rem; align-items: flex-start; }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; padding-top: .1rem; }
.ci-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-light); margin-bottom: .1rem; }
.contact-item a { color: var(--dark); font-weight: 700; font-size: .98rem; }
.contact-item a:hover { color: var(--gold); text-decoration: none; }
.contact-item p { font-size: .88rem; color: var(--text); }

/* 15. CTA strip
   ---------------------------------------------------------- */
.cta-strip { background: var(--rose); padding: 3.5rem 0; text-align: center; }
.cta-strip h2 { color: var(--white); margin-bottom: .4rem; }
.cta-strip p  { color: rgba(255,255,255,.9); margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* 16. Footer
   ---------------------------------------------------------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 3rem 0 1.5rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.footer-brand .logo  { color: var(--white); }
.footer-brand p      { margin-top: .7rem; font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-col h4       { color: var(--white); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; font-family: var(--font-b); }
.footer-col ul       { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-col a        { color: rgba(255,255,255,.6); font-size: .88rem; }
.footer-col a:hover  { color: var(--gold-light); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.1rem;
  font-size: .75rem; color: rgba(255,255,255,.35);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* 17. Pyramide — bloc comparatif
   ---------------------------------------------------------- */
.pyr-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem; }
@media (max-width: 700px) { .pyr-cards { grid-template-columns: 1fr; } }

.pyr-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pyr-card-head {
  background: var(--dark); color: var(--white);
  padding: 1rem 1.5rem;
}
.pyr-card-head h3 { color: var(--white); font-size: 1.3rem; margin-bottom: .2rem; }
.pyr-card-head p  { font-size: .82rem; opacity: .75; }
.pyr-card-body    { padding: 1.5rem; background: var(--white); }

/* Utilitaires
   ---------------------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.highlight { color: var(--gold); font-weight: 700; }

/* 18. Bandeau réassurance
   ---------------------------------------------------------- */
.reassurance-bar {
  background: var(--dark);
  padding: .38rem 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.rb-item {
  display: flex; align-items: center; gap: .35rem;
  padding: .22rem 1.1rem;
  font-size: .67rem; font-weight: 700;
  letter-spacing: .11em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.rb-item + .rb-item { border-left: 1px solid rgba(255,255,255,.14); }
.rb-icon { color: var(--gold-light); }
@media (max-width: 600px) {
  .rb-item { padding: .2rem .65rem; font-size: .6rem; }
}

/* 19. Bouton WhatsApp flottant
   ---------------------------------------------------------- */
.whatsapp-float {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 200;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem 1.15rem; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.38);
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  text-decoration: none; color: var(--white);
}
.whatsapp-float svg { flex-shrink: 0; }
@media (max-width: 480px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: .78rem; border-radius: 50%; }
}

/* 20. Galerie pleine page
   ---------------------------------------------------------- */
.galerie-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.galerie-full-grid .g-wide { grid-column: span 2; }
.galerie-full-grid .g-tall { grid-row: span 2; aspect-ratio: unset; }
.galerie-full-grid .g-full { grid-column: 1 / -1; aspect-ratio: 21/9; }
.galerie-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--gold-bg);
}
.galerie-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .35s;
}
.galerie-item:hover img { transform: scale(1.05); }
.galerie-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(60,34,21,.78) 0%, transparent 100%);
  color: var(--white);
  padding: 1.1rem .9rem .55rem;
  font-size: .73rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase;
  opacity: 0; transition: opacity .25s;
}
.galerie-item:hover .galerie-caption { opacity: 1; }
@media (max-width: 768px) {
  .galerie-full-grid { grid-template-columns: 1fr 1fr; }
  .galerie-full-grid .g-wide { grid-column: span 1; }
}
@media (max-width: 480px) { .galerie-full-grid { grid-template-columns: 1fr; } }

/* 21. FAQ — accordéon natif (details/summary)
   ---------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: .45rem; }
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer; padding: 1.05rem 1.4rem;
  font-weight: 700; font-size: .97rem; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; user-select: none;
  transition: background .15s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 300;
  color: var(--gold); flex-shrink: 0; margin-left: 1rem;
}
.faq-list details[open] > summary { background: var(--gold-bg); }
.faq-list details[open] > summary::after { content: '−'; }
.faq-list summary:hover { background: var(--blush); }
.faq-answer {
  padding: .2rem 1.4rem 1.2rem;
  font-size: .95rem; color: var(--text); line-height: 1.75;
}
.faq-answer p { margin-bottom: .5rem; }
.faq-answer a { color: var(--gold); }
.faq-answer ul { padding-left: 1.4rem; margin-top: .3rem; display: flex; flex-direction: column; gap: .25rem; }

/* 22. Timeline (page À Propos)
   ---------------------------------------------------------- */
.timeline {
  display: flex; flex-direction: column; gap: 2rem;
  position: relative; padding-left: 2.5rem;
}
.timeline::before {
  content: ''; position: absolute; left: .6rem;
  top: .5rem; bottom: .5rem;
  width: 2px; background: var(--gold-light);
}
.tl-item { position: relative; }
.tl-dot {
  position: absolute; left: -2.5rem; top: .35rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.tl-year {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .2rem;
}
.tl-item h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.tl-item p  { font-size: .93rem; color: var(--text-light); }

/* 23. Mentions légales / CGV
   ---------------------------------------------------------- */
.legal-content {
  max-width: 820px; margin: 0 auto;
  padding: 3rem 0 5rem;
}
.legal-content h2 { margin: 2.2rem 0 .5rem; font-size: 1.4rem; }
.legal-content h3 { margin: 1.5rem 0 .3rem; font-size: 1.1rem; }
.legal-content p,
.legal-content li { font-size: .95rem; color: var(--text); line-height: 1.78; margin-bottom: .5rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: .8rem; }
.legal-content a  { color: var(--gold); }

/* 24. Page Merci
   ---------------------------------------------------------- */
.merci-section {
  text-align: center; padding: 7rem 1.5rem 6rem;
}
.merci-icon { font-size: 4.5rem; margin-bottom: 1rem; line-height: 1; }
.merci-section h1 { margin-bottom: 1rem; }
.merci-section p { color: var(--text-light); max-width: 500px; margin: 0 auto 1rem; }
.merci-steps {
  display: flex; gap: 2rem; justify-content: center;
  flex-wrap: wrap; margin: 3rem auto;
  max-width: 780px;
}
.merci-step {
  flex: 1; min-width: 180px; max-width: 220px;
  text-align: center;
}
.merci-step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: 1.1rem; margin-bottom: .65rem;
}
.merci-step h4 { font-size: .9rem; margin-bottom: .3rem; }
.merci-step p  { font-size: .85rem; color: var(--text-light); }

/* 25. Footer social
   ---------------------------------------------------------- */
.footer-social {
  display: flex; gap: .75rem; margin-top: .85rem; align-items: center;
}
.footer-social a {
  display: block;
  width: 44px; height: 44px;
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
}
.footer-social a:hover { opacity: .8; transform: scale(1.08); text-decoration: none; }
.footer-social a img  { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; }

/* 26. Avis clients
   ---------------------------------------------------------- */
.avis-overall {
  display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap;
  background: var(--white); border-radius: 14px; padding: 1.75rem 2rem;
  border: 1px solid var(--border); margin-bottom: 3rem;
  box-shadow: var(--shadow);
}
.avis-score-big {
  font-family: var(--font-h); font-size: 4.5rem; color: var(--dark);
  line-height: 1; flex-shrink: 0;
}
.avis-score-right { display: flex; flex-direction: column; gap: .4rem; }
.avis-score-stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 3px; }
.avis-score-label { font-size: .82rem; color: var(--text-light); }
.avis-bars { display: flex; flex-direction: column; gap: .35rem; margin-left: auto; }
.avis-bar-row {
  display: flex; gap: .75rem; align-items: center;
  font-size: .78rem; color: var(--text-light);
}
.avis-bar-track {
  width: 140px; height: 6px;
  background: var(--border); border-radius: 3px; flex-shrink: 0;
}
.avis-bar-fill { height: 6px; background: var(--gold); border-radius: 3px; }
.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px,1fr));
  gap: 1.5rem;
}
.avis-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: box-shadow .2s;
}
.avis-card:hover { box-shadow: var(--shadow); }
.avis-stars { color: var(--gold); font-size: .95rem; letter-spacing: 2px; }
.avis-text {
  font-style: italic; color: var(--text-light);
  line-height: 1.75; font-size: .92rem; flex: 1;
}
.avis-text::before { content: '\AB\00A0'; color: var(--gold-light); }
.avis-text::after  { content: '\00A0\BB'; color: var(--gold-light); }
.avis-author {
  display: flex; gap: .75rem; align-items: center;
  padding-top: .75rem; border-top: 1px solid var(--border);
}
.avis-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blush); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.2rem; color: var(--gold); flex-shrink: 0;
}
.avis-name   { font-weight: 700; font-size: .86rem; color: var(--dark); }
.avis-detail { font-size: .75rem; color: var(--text-light); }
/* 3 avis en homepage */
.avis-home-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .avis-home-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .avis-home-grid { grid-template-columns: 1fr; } }

/* 27. Blog — listing
   ---------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px,1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 3px 12px rgba(60,34,21,.07);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(60,34,21,.13); }
.blog-card-img { width: 100%; height: 210px; object-fit: cover; display: block; }
.blog-card-img-placeholder {
  width: 100%; height: 210px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--gold-bg) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.blog-card-body { padding: 1.3rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-tag {
  display: inline-block; background: var(--blush); color: var(--gold-dark);
  padding: .15rem .65rem; border-radius: 20px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: .6rem;
}
.blog-meta { font-size: .77rem; color: var(--text-light); margin-bottom: .45rem; }
.blog-card-title {
  font-family: var(--font-h); font-size: 1.15rem;
  color: var(--dark); line-height: 1.35; margin-bottom: .6rem;
}
.blog-card-excerpt { font-size: .87rem; color: var(--text-light); line-height: 1.65; flex: 1; }
.blog-card-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1rem; font-size: .82rem; font-weight: 700;
  color: var(--gold); text-decoration: none;
}
.blog-card-link:hover { color: var(--rose); text-decoration: none; }
.blog-card-link::after { content: ' →'; }
.blog-card--popular { position: relative; }
.blog-popular-badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 2;
  background: var(--gold); color: var(--white);
  font-family: var(--font-b); font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .3rem .65rem; border-radius: 20px;
  box-shadow: 0 2px 8px rgba(60,34,21,.18);
}

/* 28. Blog — article
   ---------------------------------------------------------- */
.article-hero { background: var(--blush); padding: 3.5rem 0 2.5rem; }
.article-hero-meta {
  display: flex; gap: .6rem 1.25rem; align-items: center;
  font-size: .8rem; color: var(--text-light);
  margin-bottom: 1rem; flex-wrap: wrap;
}
.article-hero-meta .blog-tag { margin-bottom: 0; }
.article-hero h1 { font-size: clamp(1.8rem,4vw,2.6rem); max-width: 720px; line-height: 1.3; margin-bottom: 1rem; }
.article-intro {
  font-size: 1.02rem; color: var(--text-light);
  max-width: 680px; line-height: 1.85;
}
.article-layout {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 3rem; align-items: start; padding: 3rem 0 5rem;
}
@media (max-width: 860px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { order: -1; }
}
.article-body h2 { font-size: 1.5rem; margin: 2rem 0 .7rem; }
.article-body h3 { font-size: 1.1rem; color: var(--gold-dark); margin: 1.4rem 0 .5rem; }
.article-body p  { line-height: 1.85; color: var(--text); margin-bottom: 1rem; font-size: .97rem; }
.article-body ul, .article-body ol { padding-left: 1.3rem; margin-bottom: 1rem; }
.article-body li { line-height: 1.8; color: var(--text); font-size: .97rem; margin-bottom: .3rem; }
.article-highlight {
  background: var(--blush); border-left: 3px solid var(--gold);
  padding: 1rem 1.3rem; border-radius: 0 8px 8px 0;
  margin: 1.5rem 0; font-style: italic; color: var(--text-light);
}
.article-img {
  width: 100%; border-radius: 10px; margin: 1.5rem 0;
  display: block; background: var(--border); object-fit: cover;
}
.article-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
.article-table th {
  background: var(--dark); color: var(--white); padding: .6rem 1rem;
  text-align: left; font-weight: 700; font-size: .82rem; font-family: var(--font-b);
}
.article-table td { padding: .55rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.article-table tr:nth-child(even) td { background: var(--blush); }
.article-cta-box {
  background: var(--dark); color: var(--white);
  border-radius: 12px; padding: 1.75rem 1.5rem;
  text-align: center; margin: 2.5rem 0;
}
.article-cta-box h3 { color: var(--white); font-size: 1.3rem; margin-bottom: .5rem; }
.article-cta-box p  { font-size: .9rem; color: rgba(255,255,255,.72); margin-bottom: 1.1rem; line-height: 1.65; }
.article-sidebar { position: sticky; top: 88px; }
.sidebar-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
.sidebar-box h4 {
  font-family: var(--font-h); font-size: 1.05rem; color: var(--dark);
  margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.sidebar-box ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.sidebar-box ul li a { font-size: .87rem; color: var(--text-light); }
.sidebar-box ul li a:hover { color: var(--gold); text-decoration: none; }
.sidebar-box ul li a::before { content: '→ '; color: var(--gold-light); font-size: .8rem; }
.article-nav {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
  flex-wrap: wrap; margin-top: 1.5rem;
}
.article-nav-link { font-size: .87rem; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: .4rem; }
.article-nav-link:hover { color: var(--rose); text-decoration: none; }
