/* ==========================================================================
   FLEURAMBULLE — main.css
   Architecture : Reset → Variables → Layout → Typography → Components →
                  Sections → Pages → Animations → Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. FONTS — Self-hosted (latin + latin-ext, variable fonts)
   -------------------------------------------------------------------------- */

/* Nunito — couvre weights 300–700 (variable font) */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Playfair Display — normal, weights 400–500 (variable font) */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/playfair-display-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/playfair-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Playfair Display — italic, weights 400–500 */
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/playfair-display-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/playfair-display-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   0b. MATERIAL SYMBOLS — reset sélectif
   -------------------------------------------------------------------------- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  user-select: none;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--fond);
  color: var(--texte);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }


/* --------------------------------------------------------------------------
   2. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Couleurs */
  --rose:           #D4527A;
  --rose-hover:     #b83d64;
  --rose-doux:      #E8A0B4;
  --rose-pale:      #F9EEF2;
  --rose-tres-pale: #FDF5F8;

  --vert:           #7A9A3A;
  --vert-clair:     #A8C86A;
  --vert-pale:      #EEF4E0;

  --gris-tige:      #8A8A7A;
  --blanc:          #FFFFFF;
  --fond:           #FDFAF7;
  --fond-alt:       #F5F0EA;
  --texte:          #3A3530;
  --texte-2:        #7A7068;
  --bordure:        #EAE4DC;

  /* Typographie */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Nunito', sans-serif;

  /* Layout */
  --maxw: 1180px;
  --ps:   clamp(64px, 9vw, 112px);   /* section padding vertical */
}


/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 52px);
}


/* --------------------------------------------------------------------------
   4. TYPOGRAPHY — partagée entre toutes les pages
   -------------------------------------------------------------------------- */

/* Section label (petit texte en majuscule avec trait) */
.sl {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.sl::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
}
.sl.v           { color: var(--vert); }
.sl.v::before   { background: var(--vert); }

/* Titre de section */
.stitle {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.1vw, 2.7rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--texte);
  margin-bottom: 18px;
}
.stitle em { font-style: italic; color: var(--rose); }
.stitle b  { font-weight: 500;   color: var(--vert); }

/* Sous-titre de section */
.stxt {
  font-size: .92rem;
  color: var(--texte-2);
  line-height: 1.85;
}

/* Eyebrow (dessus d'un h1) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   5. BOUTONS — source unique, utilisés partout
   -------------------------------------------------------------------------- */

/* Rose plein */
.btn-r {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--rose);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(212,82,122,.3);
  transition: background .3s, transform .2s, box-shadow .3s;
}
.btn-r:hover {
  background: var(--rose-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,82,122,.35);
}

/* Vert contour */
.btn-v {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--vert);
  padding: 15px 26px;
  border-radius: 50px;
  border: 2px solid var(--vert-clair);
  font-size: .85rem;
  font-weight: 700;
  transition: all .3s;
}
.btn-v:hover { background: var(--vert-pale); border-color: var(--vert); }

/* Rose contour */
.btn-or {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--rose);
  color: var(--rose);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 700;
  transition: all .3s;
}
.btn-or:hover {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 6px 18px rgba(212,82,122,.25);
}

/* Téléphone */
.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--texte);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  border: 2px solid var(--bordure);
  transition: border-color .3s, box-shadow .3s;
}
.btn-tel:hover {
  border-color: var(--rose-doux);
  box-shadow: 0 4px 14px rgba(212,82,122,.1);
}


/* --------------------------------------------------------------------------
   6. COMPOSANTS UI PARTAGÉS
   -------------------------------------------------------------------------- */

/* ── Award Badges (images officielles mariages.net) ── */
.award-badge-link {
  display: inline-flex;
  flex-shrink: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.award-badge-link:hover { transform: scale(1.08); opacity: .9; }
.award-badge-img {
  width: 90px;
  height: auto;
  display: block;
}
.award-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ── Award Band ── */
.band {
  background: linear-gradient(135deg, var(--rose-tres-pale) 0%, var(--vert-pale) 100%);
  padding: 26px 0;
  border-top: 1px solid rgba(212,82,122,.1);
  border-bottom: 1px solid rgba(122,154,58,.1);
}
.band-in {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 36px);
  flex-wrap: wrap;
  justify-content: center;
}
.band-stars { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.band-stars .row { color: var(--rose); font-size: 1rem; letter-spacing: 2px; }
.band-stars small { font-size: .73rem; font-weight: 700; color: var(--texte-2); }
/* Variante mariage.html */
.band-note { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.band-note .stars { color: var(--rose); font-size: .95rem; letter-spacing: 2px; }
.band-note small  { font-size: .73rem; font-weight: 700; color: var(--texte-2); }

/* ── Galerie filtres ── */
.fbtn {
  background: #fff;
  border: 2px solid var(--bordure);
  color: var(--texte-2);
  font-family: var(--sans);
  font-size: .77rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .25s;
}
.fbtn.on,
.fbtn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  box-shadow: 0 4px 12px rgba(212,82,122,.25);
}

/* ── Gallery item ── */
.gi {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--fond-alt);
  cursor: pointer;
}
.gi img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gi:hover img { transform: scale(1.06); }
.gi-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(212,82,122,.6) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border-radius: 14px;
}
.gi:hover .gi-ov { opacity: 1; }
.gi-lb {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

/* ── FAQ Accordion ── */
.faq-g {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(36px, 6vw, 76px);
}
.faq-i p { font-size: .89rem; color: var(--texte-2); line-height: 1.8; margin-bottom: 22px; }
.faq-l   { display: flex; flex-direction: column; gap: 7px; }
.fi      { background: #fff; border-radius: 14px; overflow: hidden; }
.fq {
  width: 100%;
  background: none;
  border: none;
  padding: 19px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 13px;
  text-align: left;
}
.fq span {
  font-family: var(--serif);
  font-size: .98rem;
  font-weight: 400;
  color: var(--texte);
  line-height: 1.3;
}
.fq-ic {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--rose);
  flex-shrink: 0;
  transition: background .3s, transform .3s;
  font-weight: 300;
  line-height: 1;
}
.fi.op .fq-ic    { background: var(--rose); color: #fff; transform: rotate(45deg); }
.fa-body         { max-height: 0; overflow: hidden; transition: max-height .4s ease; padding: 0 20px; }
.fi.op .fa-body  { max-height: 200px; padding: 0 20px 18px; }
.fa-body p       { font-size: .87rem; color: var(--texte-2); line-height: 1.8; }

/* ── Témoignages cards ── */
.tc {
  background: #fff;
  border-radius: 22px;
  padding: 28px 24px;
  border: 2px solid var(--bordure);
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
}
.tc::before {
  content: '❝';
  position: absolute;
  top: -11px; left: 20px;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--rose);
  line-height: 1;
}
.tc:hover {
  border-color: var(--rose-doux);
  box-shadow: 0 12px 40px rgba(212,82,122,.1);
  transform: translateY(-4px);
}
.tc-stars { color: var(--rose); font-size: .85rem; letter-spacing: 3px; margin-bottom: 12px; }
.tc-txt   {
  font-family: var(--serif);
  font-size: .93rem;
  font-style: italic;
  color: var(--texte);
  line-height: 1.8;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tc-txt.expanded {
  display: block;
  overflow: visible;
  margin-bottom: 8px;
}
.tc-more {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--texte-2);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  letter-spacing: .02em;
}
.tc-more:hover { color: var(--rose); }
.tc-auth  { display: flex; align-items: center; gap: 10px; }
.tc-av    {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-doux));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.tc-name  { font-size: .83rem; font-weight: 700; color: var(--texte); }
.tc-meta  { font-size: .7rem; color: var(--texte-2); }
.testi-ft { text-align: center; margin-top: 36px; }
.testi-ft a {
  font-size: .84rem;
  font-weight: 700;
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Pills de confiance ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid var(--bordure);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--texte);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.pill .pi     { font-size: .9rem; }
.pill.rose-pill { background: var(--rose-pale); border-color: var(--rose-doux); color: var(--rose); }
.pill.vert-pill { background: var(--vert-pale); border-color: var(--vert-clair); color: var(--vert); }


/* --------------------------------------------------------------------------
   7. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.hdr.on {
  background: rgba(253,250,247,.96);
  backdrop-filter: blur(16px);
  padding: 9px 0;
  box-shadow: 0 2px 20px rgba(212,82,122,.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 50px; width: auto; }
.nav-ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-ul a {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--texte);
  position: relative;
  padding-bottom: 2px;
  transition: color .25s;
}
.nav-ul a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: width .3s;
}
.nav-ul a:hover,
.nav-ul a.active          { color: var(--rose); }
.nav-ul a:hover::after,
.nav-ul a.active::after   { width: 100%; }

.nav-cta {
  background: var(--rose) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .8rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(212,82,122,.28);
  transition: background .3s, transform .2s !important;
}
.nav-cta:hover        { background: var(--rose-hover) !important; transform: translateY(-1px); }
.nav-cta::after       { display: none !important; }

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav overlay */
.mnav {
  position: fixed;
  inset: 0;
  background: var(--fond);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mnav.op          { opacity: 1; pointer-events: all; }
.mnav a {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--texte);
  transition: color .2s;
}
.mnav a:hover     { color: var(--rose); }
.mnav-x {
  position: absolute;
  top: 22px; right: 22px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--texte-2);
  cursor: pointer;
}
.mnav img { height: 56px; margin-bottom: 10px; }


/* --------------------------------------------------------------------------
   8. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--texte); padding: 56px 0 26px; }
.footer-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 38px;
  margin-bottom: 44px;
}
.footer-logo img {
  height: 54px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1) opacity(.85);
}
.footer-p {
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  line-height: 1.8;
  max-width: 230px;
  margin-bottom: 18px;
}
.fsoc           { display: flex; gap: 9px; }
.fsp {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50px;
  padding: 7px 13px;
  font-size: .74rem;
  color: rgba(255,255,255,.48);
  transition: all .25s;
}
.fsp:hover      { background: var(--rose); border-color: var(--rose); color: #fff; }

/* Colonnes footer — alias .footer-col et .fc supportés */
.footer-col h4, .fc h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.24);
  margin-bottom: 14px;
}
.footer-col ul, .fc ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col ul a, .fc ul a {
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  transition: color .25s;
}
.footer-col ul a:hover, .fc ul a:hover { color: #fff; }

.fci {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  margin-bottom: 9px;
}
.fci svg         { color: var(--rose-doux); flex-shrink: 0; }
.footer-b {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}
.footer-b p { font-size: .71rem; color: rgba(255,255,255,.2); }


/* --------------------------------------------------------------------------
   9. SECTION — HERO (accueil)
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 72px;
  overflow: hidden;
  background: var(--fond);
}
.bubbles { position: absolute; inset: 0; pointer-events: none; }
.b { position: absolute; border-radius: 50%; animation: float linear infinite; }
.b1 { width:200px; height:200px; background:rgba(212,82,122,.07);  top:6%;   right:5%;  animation-duration:8s; }
.b2 { width:130px; height:130px; background:rgba(168,200,106,.11); top:18%;  right:20%; animation-duration:10s; animation-delay:-3s; }
.b3 { width:80px;  height:80px;  background:rgba(232,160,180,.16); top:12%;  right:12%; animation-duration:6s;  animation-delay:-1s; }
.b4 { width:48px;  height:48px;  background:rgba(122,154,58,.10);  top:34%;  right:4%;  animation-duration:9s;  animation-delay:-5s; }
.b5 { width:240px; height:240px; background:rgba(212,82,122,.04);  bottom:10%; left:2%; animation-duration:12s; animation-delay:-6s; }
.b6 { width:56px;  height:56px;  background:rgba(168,200,106,.14); bottom:28%;left:10%; animation-duration:7s;  animation-delay:-2s; }

.hero-svg {
  position: absolute;
  right: -30px; top: 50%;
  transform: translateY(-52%);
  width: clamp(280px, 40vw, 540px);
  pointer-events: none;
  animation: fadeIn 1.2s ease .5s both;
}
.hero-c {
  position: relative;
  z-index: 2;
  max-width: 570px;
  animation: fadeUp .9s ease .1s both;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--texte);
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero h1 b  { font-weight: 500;   color: var(--vert); }
.hero-sub {
  font-size: 1rem;
  color: var(--texte-2);
  max-width: 450px;
  margin-bottom: 40px;
  line-height: 1.82;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}
.hero-stats { display: flex; gap: 0; flex-wrap: wrap; }
.stat {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--bordure);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
}
.stat-l { font-size: .7rem; color: var(--texte-2); margin-top: 3px; }


/* --------------------------------------------------------------------------
   10. SECTION — À PROPOS (accueil)
   -------------------------------------------------------------------------- */
.about { padding: var(--ps) 0; }
.about-g {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-vis { position: relative; }
.blob-frame {
  position: relative;
  border-radius: 42% 58% 52% 48% / 46% 42% 58% 54%;
  overflow: hidden;
  background: var(--rose-pale);
  aspect-ratio: 4/5;
}
.blob-frame img { width:100%; height:100%; object-fit:cover; object-position:center top; }

.ab { position: absolute; border-radius: 50%; animation: float ease-in-out infinite; }
.ab1 { width:56px; height:56px; background:var(--rose);      top:-18px;  right:22px;  opacity:.9; animation-duration:5s; }
.ab2 { width:38px; height:38px; background:var(--vert-clair); bottom:28px;left:-14px;  opacity:.85;animation-duration:7s; animation-delay:-2s; }
.ab3 { width:22px; height:22px; background:var(--rose-doux);  top:32%;   right:-10px; opacity:.9; animation-duration:6s; animation-delay:-1s; }
.ab4 { width:14px; height:14px; background:var(--vert);       bottom:14%;right:-6px;  opacity:.8; animation-duration:8s; animation-delay:-3s; }

.about-badge {
  position: absolute;
  bottom: -14px; right: -14px;
  background: #fff;
  border-radius: 16px;
  padding: 13px 18px;
  box-shadow: 0 8px 28px rgba(212,82,122,.14);
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 2;
}
.about-badge .bi { display: flex; align-items: center; justify-content: center; color: var(--rose); }
.about-badge .bt strong { display:block; font-size:.83rem; font-weight:700; color:var(--texte); }
.about-badge .bt span   { font-size:.7rem; color:var(--texte-2); }

.atxt { font-size: .93rem; color: var(--texte-2); margin-bottom: 14px; line-height: 1.85; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 2px solid var(--bordure);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.value-card:hover {
  border-color: var(--rose-doux);
  box-shadow: 0 12px 40px rgba(212,82,122,.10);
  transform: translateY(-4px);
}
.value-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--texte);
  margin-bottom: 8px;
}
.value-card p {
  font-size: .84rem;
  color: var(--texte-2);
  line-height: 1.78;
}
.chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1.5px solid var(--bordure);
  border-radius: 12px;
  padding: 11px 13px;
  transition: border-color .25s, box-shadow .25s;
}
.chip:hover { border-color: var(--rose-doux); box-shadow: 0 4px 14px rgba(212,82,122,.1); }
.chip .cd   { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.cd-r       { background: var(--rose); }
.cd-v       { background: var(--vert); }
.chip span  { font-size: .81rem; font-weight: 600; color: var(--texte); }


/* --------------------------------------------------------------------------
   11. SECTION — SERVICES (accueil)
   -------------------------------------------------------------------------- */
.services {
  padding: var(--ps) 0;
  background: var(--fond-alt);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,82,122,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.svc-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.svc-lnk {
  font-size: .82rem;
  font-weight: 700;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s;
}
.svc-lnk:hover { gap: 10px; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.svc-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  border: 2px solid transparent;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 72px; height: 72px;
  border-radius: 0 20px 0 72px;
  background: var(--rose-pale);
  transition: background .3s;
}
.svc-card:hover {
  border-color: var(--rose-doux);
  box-shadow: 0 12px 36px rgba(212,82,122,.12);
  transform: translateY(-4px);
}
.svc-card:hover::before { background: rgba(212,82,122,.12); }
.svc-em   { line-height:1; margin-bottom:18px; display:flex; align-items:center; position:relative; z-index:1; color:var(--rose); }
.svc-name { font-family:var(--serif); font-size:1.18rem; font-weight:400; color:var(--texte); margin-bottom:9px; }
.svc-desc { font-size:.82rem; color:var(--texte-2); line-height:1.7; margin-bottom:16px; }
.svc-prix {
  display: inline-block;
  font-size: .73rem; font-weight: 700;
  color: var(--rose);
  background: var(--rose-pale);
  padding: 5px 13px;
  border-radius: 50px;
}


/* --------------------------------------------------------------------------
   12. SECTION — GALERIE (accueil)
   -------------------------------------------------------------------------- */
.gallery { padding: var(--ps) 0; }
.gal-hdr { text-align: center; margin-bottom: 36px; }
.gal-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 9px;
}
.gal-grid .gi:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gal-grid .gi:nth-child(5) { grid-column: span 2; }
.gal-grid .gi img          { min-height: 175px; }
.gal-cta { text-align: center; margin-top: 32px; }


/* --------------------------------------------------------------------------
   13. SECTION — ATELIERS (accueil)
   -------------------------------------------------------------------------- */
.ateliers {
  padding: var(--ps) 0;
  background: var(--vert-pale);
  position: relative;
  overflow: hidden;
}
.ateliers::before {
  content: '';
  position: absolute;
  top: -90px; right: -90px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(122,154,58,.11) 0%, transparent 70%);
  border-radius: 50%;
}
.at-g {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.at-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 26px;
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 2px solid transparent;
  transition: border-color .3s, box-shadow .3s, transform .25s;
}
.at-card:last-child { margin-bottom: 0; }
.at-card:hover {
  border-color: var(--vert-clair);
  box-shadow: 0 8px 24px rgba(122,154,58,.12);
  transform: translateX(4px);
}
.at-ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--vert-pale);
  display: flex; align-items: center; justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: background .3s;
}
.at-card:hover .at-ic { background: var(--vert-clair); }
.at-card h3  { font-family:var(--serif); font-size:1.04rem; font-weight:400; color:var(--texte); margin-bottom:7px; }
.at-card p   { font-size:.83rem; color:var(--texte-2); line-height:1.72; }
.at-tags     { display:flex; flex-wrap:wrap; gap:6px; margin-top:10px; }
.at-tag {
  font-size: .7rem; font-weight: 700;
  color: var(--vert);
  background: var(--vert-pale);
  padding: 3px 10px;
  border-radius: 50px;
}


/* --------------------------------------------------------------------------
   14. SECTION — TÉMOIGNAGES (accueil)
   -------------------------------------------------------------------------- */
.testi { padding: var(--ps) 0; }
.testi-hdr { text-align: center; margin-bottom: 40px; }
.testi-g,
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.testi-note .stars { color: var(--rose); font-size: 1.2rem; letter-spacing: 3px; }
.testi-note span   { font-size: .82rem; color: var(--texte-2); font-weight: 600; }

/* Carrousel avis */
.tc-carousel { position: relative; padding: 0 28px; }
.tc-track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 14px 0 8px;
}
.tc-track::-webkit-scrollbar { display: none; }
.tc { scroll-snap-align: start; flex: 0 0 calc(33.333% - 16px); min-width: 0; }
.tc-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: var(--blanc); border: 1px solid var(--border);
  border-radius: 50%; width: 40px; height: 40px;
  font-size: 1.4rem; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .2s, background .2s;
  line-height: 1;
}
.tc-nav:hover:not(:disabled) { background: var(--rose-pale, #fdf2f4); }
.tc-nav:disabled { opacity: .3; cursor: default; }
.tc-prev { left: -4px; }
.tc-next { right: -4px; }
.tc-skeleton {
  min-height: 180px;
  background: linear-gradient(90deg, var(--fond-alt) 25%, #e8e8e0 50%, var(--fond-alt) 75%);
  background-size: 200% 100%;
  animation: tc-shimmer 1.4s infinite;
  border-radius: 12px;
}
@keyframes tc-shimmer { to { background-position: -200% 0; } }
.tc-reportage {
  display: inline-block;
  margin-top: 12px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: .03em;
}
.tc-reportage:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .tc-carousel { padding: 0 20px; }
  .tc { flex: 0 0 85%; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .tc { flex: 0 0 calc(50% - 12px); }
}


/* --------------------------------------------------------------------------
   15. SECTION — ZONE / ZONE D'INTERVENTION (accueil)
   -------------------------------------------------------------------------- */
.zone { padding: var(--ps) 0; }
.zone-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.ztxt  { font-size:.93rem; color:var(--texte-2); line-height:1.85; margin-bottom:22px; }
.ztags { display:flex; flex-wrap:wrap; gap:8px; }
.ztag  {
  font-size:.78rem; font-weight:700;
  color:var(--vert);
  background:var(--vert-pale);
  border:1px solid rgba(122,154,58,.2);
  padding:6px 14px;
  border-radius:50px;
}
.zmap {
  background: var(--rose-pale);
  border-radius: 24px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size:.85rem;
  text-align: center;
  padding: 24px;
}
.zmap svg { width:48px; margin:0 auto 12px; opacity:.4; }


/* --------------------------------------------------------------------------
   16. SECTION — CTA (partagée)
   -------------------------------------------------------------------------- */
.cta { padding: var(--ps) 0; background: var(--fond); }
.cta-in {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-t {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--texte);
  margin-bottom: 16px;
}
.cta-t em { font-style: italic; color: var(--rose); }
.cta-s    { font-size:.97rem; color:var(--texte-2); margin-bottom:34px; line-height:1.8; }
.cta-btns { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; margin-bottom:18px; }
.cta-note { font-size:.75rem; color:var(--texte-2); }
.cta-note b { color: var(--vert); }


/* --------------------------------------------------------------------------
   17. SECTION — HERO MARIAGE (spécifique page mariage)
   -------------------------------------------------------------------------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 20px;
}
.hero-eyebrow .dot { width:8px; height:8px; border-radius:50%; background:var(--rose); flex-shrink:0; }
.hero-intro { font-size:.97rem; color:var(--texte-2); line-height:1.85; margin-bottom:32px; max-width:480px; }
.trust-pills { display:flex; flex-wrap:wrap; gap:9px; margin-bottom:36px; }

/* Mosaïque hero mariage */
.hero-visual { position: relative; align-self: center; }
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: clamp(300px, 48vh, 460px); /* hauteur fixe — pas de layout shift */
}
.hm-img { position: relative; border-radius: 18px; overflow: hidden; background: var(--rose-pale); }
.hm-img:nth-child(1) { grid-row: span 2; border-radius: 24px; }
.hm-img img, .hm-img video { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.hm-img:hover img, .hm-img:hover video { transform: scale(1.04); }
/* Rotation automatique — crossfade romantique */
.hm-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; pointer-events: none;
  transition: opacity 1.8s cubic-bezier(.4,0,.2,1);
  transform: scale(1.06);
}
.hm-slide.cur { opacity: 1; }
.hm-slide.hm-ready { animation: hmKenBurns 7s ease-out both; }
@keyframes hmKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

.hero-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 28px rgba(212,82,122,.14);
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 3;
}
.hero-badge .hbi { display: flex; align-items: center; justify-content: center; color: var(--rose); }
.hero-badge strong { display:block; font-size:.84rem; font-weight:700; color:var(--texte); }
.hero-badge span   { font-size:.7rem; color:var(--texte-2); }

/* Bulles background hero mariage */
.hero-bg-bubbles { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.hb { position:absolute; border-radius:50%; animation:float ease-in-out infinite; }
.hb1 { width:320px; height:320px; background:rgba(212,82,122,.05); top:-80px; right:-60px; animation-duration:9s; }
.hb2 { width:180px; height:180px; background:rgba(168,200,106,.08); bottom:10%; left:-40px; animation-duration:11s; animation-delay:-4s; }
.hb3 { width:90px;  height:90px;  background:rgba(232,160,180,.12); top:40%; right:8%; animation-duration:7s; animation-delay:-2s; }


/* --------------------------------------------------------------------------
   18. SECTION — PRESTATIONS (page mariage)
   -------------------------------------------------------------------------- */
.prestations { padding: var(--ps) 0; }
.prest-intro { max-width: 560px; margin-bottom: 52px; }
.prest-grid  { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

.pc {
  background: #fff;
  border-radius: 22px;
  border: 2px solid var(--bordure);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  display: grid;
  grid-template-columns: auto 1fr;
}
.pc:hover { border-color:var(--rose-doux); box-shadow:0 14px 40px rgba(212,82,122,.11); transform:translateY(-3px); }
.pc-accent { width:6px; background:var(--rose-pale); transition:background .3s; flex-shrink:0; }
.pc:hover .pc-accent { background: var(--rose); }
.pc-body { padding: 26px 24px; }
.pc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.pc-icon       { line-height:1; flex-shrink:0; display:flex; align-items:center; color:var(--rose); }
.pc-prix-badge {
  background: var(--rose-pale); color: var(--rose);
  font-size:.72rem; font-weight:800;
  padding:5px 12px; border-radius:50px;
  white-space:nowrap; flex-shrink:0;
}
.pc-name    { font-family:var(--serif); font-size:1.22rem; font-weight:400; color:var(--texte); margin-bottom:8px; line-height:1.25; }
.pc-desc    { font-size:.84rem; color:var(--texte-2); line-height:1.75; margin-bottom:14px; }
.pc-details { display:flex; flex-wrap:wrap; gap:7px; }
.pc-detail  { font-size:.72rem; font-weight:600; color:var(--texte-2); background:var(--fond-alt); padding:4px 11px; border-radius:50px; }

/* Carte large (livraison) */
.pc.wide { grid-column: span 2; grid-template-columns: auto 1fr; }
.pc.wide .pc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.pc.wide .pc-right { border-left: 1px solid var(--bordure); padding-left: 24px; }
.pc.wide .pc-zones { display:flex; flex-wrap:wrap; gap:7px; }
.zone-tag {
  font-size:.72rem; font-weight:700;
  color:var(--vert);
  background:var(--vert-pale);
  border:1px solid rgba(122,154,58,.2);
  padding:4px 11px; border-radius:50px;
}


/* --------------------------------------------------------------------------
   19. SECTION — PROCESS (page mariage)
   -------------------------------------------------------------------------- */
.process {
  padding: var(--ps) 0;
  background: var(--rose-tres-pale);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,82,122,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.process-hdr { text-align: center; margin-bottom: 56px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--rose-doux), var(--vert-clair));
  z-index: 0;
}
.step { text-align:center; padding:0 16px; position:relative; z-index:1; }
.step-num {
  width:72px; height:72px;
  border-radius:50%;
  background:#fff;
  border:3px solid var(--rose-doux);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px;
  font-family:var(--serif);
  font-size:1.5rem; font-weight:400;
  color:var(--rose);
  box-shadow:0 4px 16px rgba(212,82,122,.12);
  transition:all .3s;
}
.step:hover .step-num {
  background:var(--rose); border-color:var(--rose); color:#fff;
  box-shadow:0 8px 24px rgba(212,82,122,.3);
}
.step-title { font-family:var(--serif); font-size:1.05rem; font-weight:400; color:var(--texte); margin-bottom:8px; }
.step-desc  { font-size:.82rem; color:var(--texte-2); line-height:1.7; }
.step-tag   {
  display:inline-block;
  font-size:.68rem; font-weight:700;
  color:var(--vert); background:var(--vert-pale);
  padding:3px 10px; border-radius:50px; margin-top:9px;
}


/* --------------------------------------------------------------------------
   20. SECTION — GALERIE MARIAGE (page mariage, grille 12 colonnes)
   -------------------------------------------------------------------------- */
.galerie { padding: var(--ps) 0; }
.gal-hdr-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}
.gal-grid-mariage {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-auto-rows: 180px;
  gap: 10px;
}
.gal-grid-mariage .gi:nth-child(1)  { grid-column:span 5; grid-row:span 2; }
.gal-grid-mariage .gi:nth-child(2)  { grid-column:span 4; }
.gal-grid-mariage .gi:nth-child(3)  { grid-column:span 3; }
.gal-grid-mariage .gi:nth-child(4)  { grid-column:span 4; }
.gal-grid-mariage .gi:nth-child(5)  { grid-column:span 3; }
.gal-grid-mariage .gi:nth-child(6)  { grid-column:span 5; grid-row:span 2; }
.gal-grid-mariage .gi:nth-child(7)  { grid-column:span 4; }
.gal-grid-mariage .gi:nth-child(8)  { grid-column:span 3; }
.gal-grid-mariage .gi:nth-child(9)  { grid-column:span 4; }
.gal-grid-mariage .gi:nth-child(10) { grid-column:span 3; }
/* Continuation du motif mosaïque pour 20 photos */
.gal-grid-mariage .gi:nth-child(11) { grid-column:span 5; grid-row:span 2; }
.gal-grid-mariage .gi:nth-child(12) { grid-column:span 4; }
.gal-grid-mariage .gi:nth-child(13) { grid-column:span 3; }
.gal-grid-mariage .gi:nth-child(14) { grid-column:span 4; }
.gal-grid-mariage .gi:nth-child(15) { grid-column:span 3; }
.gal-grid-mariage .gi:nth-child(16) { grid-column:span 5; grid-row:span 2; }
.gal-grid-mariage .gi:nth-child(17) { grid-column:span 4; }
.gal-grid-mariage .gi:nth-child(18) { grid-column:span 3; }
.gal-grid-mariage .gi:nth-child(19) { grid-column:span 4; }
.gal-grid-mariage .gi:nth-child(20) { grid-column:span 3; }
/* Skeleton loader */
.gi-skeleton {
  background: linear-gradient(90deg, var(--fond-alt) 25%, #e8e0d8 50%, var(--fond-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r);
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.gi-ov-mariage {
  background: linear-gradient(to top, rgba(255,255,255,.75) 0%, transparent 55%);
}

/* ── Grille galerie inspirations (3 colonnes uniformes) ── */
.gal-grid-inspi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gal-grid-inspi .gi {
  aspect-ratio: 4 / 5;
}

/* ── Compteur de photos ── */
.gal-info {
  font-size: .8rem;
  color: var(--texte-2);
  text-align: right;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ── Filtres palette de couleur ── */
.color-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.cfbtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px 5px 7px;
  border: 2px solid var(--bordure);
  border-radius: 50px;
  background: #fff;
  font-size: .74rem;
  font-weight: 600;
  color: var(--texte-2);
  cursor: pointer;
  transition: border-color .22s, color .22s, background .22s;
  white-space: nowrap;
}
.cfbtn:hover {
  border-color: var(--rose-pale);
  color: var(--texte);
}
.cfbtn.on {
  border-color: var(--rose);
  color: var(--texte);
  background: var(--rose-tres-pale);
}
.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
.swatch-all {
  background: conic-gradient(#F2B8A8 0% 17%, #7A1E2E 17% 34%, #A8C896 34% 51%, #C4A0D4 51% 68%, #D8CFC4 68% 85%, #C8714A 85% 100%);
}

/* ── Bouton "Voir plus" ── */
.gal-load-more {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.gal-load-note {
  font-size: .78rem;
  color: var(--texte-2);
}


/* --------------------------------------------------------------------------
   21. SECTION — STYLES (page mariage)
   -------------------------------------------------------------------------- */
.styles { padding: var(--ps) 0; }
.styles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.style-card {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--bordure);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.style-card:hover {
  border-color: var(--rose-doux);
  box-shadow: 0 12px 36px rgba(212,82,122,.11);
  transform: translateY(-3px);
}
.sc-img { aspect-ratio: 4/3; overflow: hidden; background: var(--rose-pale); }
.sc-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.style-card:hover .sc-img img { transform: scale(1.05); }
.sc-body { padding: 20px; background: #fff; }
.sc-name { font-family:var(--serif); font-size:1.12rem; color:var(--texte); margin-bottom:7px; }
.sc-desc { font-size:.82rem; color:var(--texte-2); line-height:1.7; }


/* --------------------------------------------------------------------------
   22. SECTION — FORMULAIRE DEVIS (page mariage & page devis)
   -------------------------------------------------------------------------- */
.devis { padding: var(--ps) 0; background: var(--fond-alt); }
.devis-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.devis-intro {}
.devis-guarantees { display:flex; flex-direction:column; gap:14px; margin-top:28px; }
.dg {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: var(--texte-2);
}
.dgi {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--rose);
  flex-shrink: 0;
}

/* Carte formulaire */
.form-card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 12px 48px rgba(212,82,122,.08);
  border: 1.5px solid var(--bordure);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--texte);
  letter-spacing: .02em;
}
.form-group .req { color: var(--rose); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--bordure);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--texte);
  background: var(--fond);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7068' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-doux);
  box-shadow: 0 0 0 3px rgba(212,82,122,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.form-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .83rem;
  color: var(--texte);
  cursor: pointer;
}
.form-check input[type="checkbox"] { accent-color: var(--rose); width:16px; height:16px; flex-shrink:0; appearance: auto; -webkit-appearance: auto; }

/* Budget chips */
.budget-chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:4px; }
.budget-chip {
  font-size: .78rem; font-weight: 700;
  color: var(--texte-2);
  background: var(--fond-alt);
  border: 2px solid var(--bordure);
  padding: 7px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .25s;
}
.budget-chip.on {
  background: var(--rose-pale);
  border-color: var(--rose-doux);
  color: var(--rose);
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--rose);
  color: #fff;
  border: none;
  padding: 16px 28px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: .9rem; font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(212,82,122,.3);
  transition: background .3s, transform .2s, box-shadow .3s;
  margin-top: 22px;
}
.form-submit:hover {
  background: var(--rose-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,82,122,.35);
}
.form-note {
  text-align: center;
  font-size: .72rem;
  color: var(--texte-2);
  margin-top: 12px;
}


/* --------------------------------------------------------------------------
   23. SECTION — BREADCRUMB (pages intérieures)
   -------------------------------------------------------------------------- */
.breadcrumb { padding: 100px 0 0; }
.breadcrumb-inner {
  padding: 18px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--texte-2);
}
.breadcrumb-inner a { color: var(--texte-2); transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--rose); }
.breadcrumb-inner span { color: var(--rose); }


/* --------------------------------------------------------------------------
   24. ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0); }
  40%     { transform: translateY(-10px) rotate(2deg); }
  70%     { transform: translateY(-5px) rotate(-1deg); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }


/* --------------------------------------------------------------------------
   25. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .svc-grid            { grid-template-columns: repeat(2,1fr); }
  .footer-g            { grid-template-columns: 1fr 1fr; }
  .gal-grid            { grid-template-columns: repeat(2,1fr); }
  .gal-grid .gi:nth-child(1) { grid-column: span 2; }
  .gal-grid .gi:nth-child(5) { grid-column: span 1; }
  .gal-grid-mariage    { grid-template-columns: repeat(6,1fr); grid-auto-rows: 160px; }
  .gal-grid-mariage .gi:nth-child(n) { grid-column: span 3; grid-row: span 1; }
  .gal-grid-mariage .gi:nth-child(1) { grid-column: span 3; grid-row: span 2; }
  .gal-grid-inspi      { grid-template-columns: repeat(2, 1fr); }
  .steps               { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .steps::before       { display: none; }
  .styles-grid         { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 960px) {
  .nav-ul              { display: none; }
  .burger              { display: flex; }
}

@media (max-width: 768px) {
  .hero-svg            { opacity: .12; width: 240px; }
  .hero-grid           { grid-template-columns: 1fr; }
  .hero-visual         { display: none; }
  .about-g, .at-g, .zone-g, .faq-g { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .about-vis           { display: none; }
  .svc-grid            { grid-template-columns: 1fr; }
  .testi-g,
  .testi-grid          { grid-template-columns: 1fr; }
  .prest-grid          { grid-template-columns: 1fr; }
  .pc.wide             { grid-column: span 1; }
  .pc.wide .pc-body    { grid-template-columns: 1fr; }
  .pc.wide .pc-right   { border-left: none; border-top: 1px solid var(--bordure); padding-left: 0; padding-top: 18px; }
  .steps               { grid-template-columns: 1fr 1fr; }
  .devis-grid          { grid-template-columns: 1fr; }
  .footer-g            { grid-template-columns: 1fr; }
  .styles-grid         { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gal-grid            { grid-template-columns: 1fr; }
  .gal-grid .gi:nth-child(1),
  .gal-grid .gi:nth-child(5) { grid-column: span 1; }
  .gal-grid-inspi      { grid-template-columns: repeat(2, 1fr); }
  .color-filters       { gap: 6px; }
  .cfbtn               { font-size: .68rem; padding: 4px 10px 4px 6px; }
  .chips               { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .form-checkboxes     { grid-template-columns: 1fr; }
  .steps               { grid-template-columns: 1fr; }
  .hero-btns           { flex-direction: column; align-items: flex-start; }
}


/* --------------------------------------------------------------------------
   PAGE LÉGALE — politique de confidentialité, mentions légales
   -------------------------------------------------------------------------- */

.legal-hero {
  padding: clamp(100px, 14vw, 140px) 0 clamp(40px, 5vw, 56px);
  background: var(--rose-tres-pale);
  border-bottom: 1px solid var(--bordure);
  text-align: center;
}

.legal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--texte);
  margin-top: 10px;
}

.legal-body {
  padding: clamp(48px, 7vw, 80px) 0 clamp(64px, 9vw, 112px);
}

/* Typographie du contenu Markdown */
.prose {
  max-width: 760px;
  font-size: .9375rem;
  line-height: 1.8;
  color: var(--texte);
}

.prose h2 {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--texte);
  margin: 2.5em 0 .75em;
  padding-bottom: .5em;
  border-bottom: 1px solid var(--bordure);
}

.prose h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--texte);
  margin: 2em 0 .5em;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.prose h4 {
  font-family: var(--sans);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--texte);
  margin: 1.5em 0 .4em;
}

.prose p      { margin-bottom: 1em; }
.prose em     { color: var(--texte-2); }
.prose strong { font-weight: 700; color: var(--texte); }

.prose a {
  color: var(--rose);
  text-decoration: underline;
}
.prose a:hover { color: var(--rose-hover); }

.prose ul,
.prose ol {
  padding-left: 1.4em;
  margin-bottom: 1em;
}
.prose li { margin-bottom: .35em; }

.prose hr {
  border: none;
  border-top: 1px solid var(--bordure);
  margin: 2.5em 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  margin-bottom: 1.5em;
}
.prose th {
  background: var(--fond-alt);
  font-weight: 600;
  text-align: left;
  padding: 8px 12px;
  border: 1px solid var(--bordure);
  color: var(--texte);
}
.prose td {
  padding: 8px 12px;
  border: 1px solid var(--bordure);
  color: var(--texte-2);
  vertical-align: top;
}
.prose tr:nth-child(even) td { background: var(--fond-alt); }

.prose code {
  font-family: monospace;
  font-size: .875em;
  background: var(--fond-alt);
  padding: 1px 5px;
  border-radius: 3px;
}

@media (max-width: 640px) {
  .prose table { font-size: .8125rem; }
  .prose th,
  .prose td    { padding: 6px 8px; }
}


/* --------------------------------------------------------------------------
   COOKIE CONSENT BANNER — RGPD / Google Consent Mode v2
   -------------------------------------------------------------------------- */

.ck-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--blanc);
  border-top: 1px solid var(--bordure);
  box-shadow: 0 -4px 24px rgba(58, 53, 48, .10);
  animation: ck-slide-up .35s ease;
}

.ck-banner[hidden] { display: none; }

@keyframes ck-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.ck-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px clamp(20px, 5vw, 52px);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ck-text {
  flex: 1;
  min-width: 200px;
  font-size: .875rem;
  color: var(--texte-2);
  line-height: 1.5;
}

.ck-link {
  color: var(--rose);
  text-decoration: underline;
  white-space: nowrap;
}

.ck-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ck-btn {
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  line-height: 1;
  white-space: nowrap;
}

.ck-btn--primary {
  background: var(--rose);
  color: var(--blanc);
  border-color: var(--rose);
}
.ck-btn--primary:hover {
  background: var(--rose-hover);
  border-color: var(--rose-hover);
}

.ck-btn--secondary {
  background: transparent;
  color: var(--texte);
  border-color: var(--bordure);
}
.ck-btn--secondary:hover { border-color: var(--texte-2); }

.ck-btn--text {
  background: transparent;
  border-color: transparent;
  color: var(--texte-2);
  padding: 9px 6px;
  font-weight: 400;
  text-decoration: underline;
  font-size: .8rem;
}
.ck-btn--text:hover { color: var(--texte); }

/* Panneau de paramétrage granulaire */
.ck-panel {
  display: none;
  border-top: 1px solid var(--bordure);
}
.ck-panel.visible { display: block; }

.ck-panel-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px clamp(20px, 5vw, 52px) 20px;
}

.ck-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.ck-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--fond-alt);
  border-radius: 8px;
}

.ck-toggle-info strong {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--texte);
  margin-bottom: 2px;
}
.ck-toggle-info span {
  font-size: .75rem;
  color: var(--texte-2);
}

/* Toggle switch */
.ck-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.ck-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.ck-switch-track {
  position: absolute;
  inset: 0;
  background: var(--bordure);
  border-radius: 22px;
  cursor: pointer;
  transition: background .2s;
}
.ck-switch-track::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--blanc);
  border-radius: 50%;
  transition: transform .2s;
}
.ck-switch input:checked + .ck-switch-track           { background: var(--rose); }
.ck-switch input:checked + .ck-switch-track::after    { transform: translateX(18px); }
.ck-switch input:disabled + .ck-switch-track          { opacity: .45; cursor: not-allowed; }

.ck-panel-confirm {
  display: flex;
  justify-content: flex-end;
}

/* Bouton flottant discret (ré-ouverture) */
.ck-reopen {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9998;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blanc);
  border: 1px solid var(--bordure);
  box-shadow: 0 2px 8px rgba(58, 53, 48, .12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texte-2);
  transition: box-shadow .2s, color .2s;
  padding: 0;
}
.ck-reopen:hover {
  box-shadow: 0 4px 16px rgba(58, 53, 48, .18);
  color: var(--rose);
}
.ck-reopen[hidden] { display: none; }

@media (max-width: 640px) {
  .ck-inner    { flex-direction: column; align-items: flex-start; gap: 14px; }
  .ck-actions  { width: 100%; justify-content: flex-start; }
}


/* ==========================================================================
   LIGHTBOX GALERIE PARTAGÉE — home, mariage, cours-art-floral
   ========================================================================== */
.glb-wrap { display:flex; align-items:center; justify-content:center; }
.lb-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.88); }
.lb-modal {
  position:relative; z-index:1;
  display:flex;
  background:#1c1c1c;
  border-radius:18px;
  overflow:hidden;
  width:min(1160px,96vw);
  height:92vh; max-height:92vh;
  box-shadow:0 24px 80px rgba(0,0,0,.65);
}
.lb-close {
  position:absolute; top:13px; right:15px; z-index:20;
  background:rgba(255,255,255,.1);
  border:none; color:#fff;
  width:34px; height:34px;
  border-radius:50%;
  font-size:1rem; cursor:pointer; line-height:1;
  transition:background .2s;
  display:flex; align-items:center; justify-content:center;
}
.lb-close:hover { background:rgba(255,255,255,.22); }
.lb-img-col {
  flex:1 1 62%; position:relative;
  display:flex; flex-direction:column;
  background:#111; min-width:0;
}
.lb-img-wrap {
  flex:1;
  display:flex; align-items:center; justify-content:center;
  padding:32px 28px 20px; min-height:0; overflow:hidden;
}
.lb-main-img {
  max-width:100%; max-height:calc(92vh - 40px);
  object-fit:contain; border-radius:6px;
  display:block; transition:transform .18s ease, opacity .12s ease;
  transform-origin:center center;
  user-select:none; -webkit-user-select:none;
}
.lb-arr {
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:10; width:46px; height:46px;
  background:rgba(0,0,0,.48);
  border:1px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.9);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .18s, transform .18s; flex-shrink:0;
}
.lb-arr:hover { background:rgba(0,0,0,.75); transform:translateY(-50%) scale(1.1); }
.lb-arr--prev { left:12px; }
.lb-arr--next { right:12px; }
.lb-pos {
  position:absolute; bottom:10px; left:50%; transform:translateX(-50%);
  color:rgba(255,255,255,.5); font-size:.7rem; font-family:var(--sans);
  background:rgba(0,0,0,.38); padding:2px 10px; border-radius:50px;
  pointer-events:none; white-space:nowrap;
}
.lb-panel {
  flex:0 0 290px;
  display:flex; flex-direction:column;
  border-left:1px solid rgba(255,255,255,.07);
  overflow:hidden;
}
.lb-panel-in {
  flex:1; overflow-y:auto;
  padding:26px 20px 18px;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.12) transparent;
}
.lb-details-btn {
  display:none;
  align-items:center; gap:7px; width:100%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:8px;
  color:rgba(255,255,255,.6);
  font-family:var(--sans); font-size:.73rem; font-weight:700;
  padding:7px 12px; cursor:pointer; margin-top:10px;
  transition:background .18s; text-align:left;
}
.lb-details-btn:hover { background:rgba(255,255,255,.1); color:rgba(255,255,255,.9); }
.lb-details-chev { flex-shrink:0; transition:transform .2s; margin-left:auto; }
.lb-caption { color:rgba(255,255,255,.42); font-size:.72rem; font-family:var(--sans); margin-bottom:14px; }
.lb-chips { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.lb-style-chip {
  display:inline-flex; align-items:center;
  background:rgba(244,143,177,.15); color:#F48FB1;
  box-shadow:inset 0 0 0 1.5px rgba(244,143,177,.4);
  font-family:var(--sans); font-size:.71rem; font-weight:700; line-height:1;
  padding:3px 10px; border-radius:50px; margin:0;
}
.lb-lieu-pill {
  display:inline-flex; align-items:center; gap:4px;
  background:rgba(200,175,120,.14); color:#C8A96E;
  box-shadow:inset 0 0 0 1.5px rgba(200,175,120,.32);
  font-family:var(--sans); font-size:.71rem; font-weight:700; line-height:1;
  padding:3px 10px 3px 8px; border-radius:50px; margin:0;
}
.lb-desc { color:rgba(255,255,255,.72); font-family:var(--sans); font-size:.8rem; line-height:1.72; margin-bottom:18px; }
.lb-panel-err { color:rgba(255,255,255,.3); font-size:.78rem; font-family:var(--sans); }
.lb-colors { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px; }
.lb-color-pill {
  display:inline-flex; align-items:center; gap:5px;
  background:rgba(255,255,255,.06); color:rgba(255,255,255,.75);
  font-family:var(--sans); font-size:.71rem;
  padding:3px 9px 3px 5px; border-radius:50px;
}
.lb-color-dot { width:13px; height:13px; border-radius:50%; display:inline-block; flex-shrink:0; }
.lb-elements-lbl {
  color:rgba(255,255,255,.35); font-size:.62rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.1em; margin-bottom:9px;
}
.lb-elements { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px; }
.lb-elem { font-family:var(--sans); font-size:.71rem; font-weight:600; padding:3px 9px; border-radius:7px; }
.lb-elem--fleur     { background:rgba(244,143,177,.14); color:#F4A8C0; }
.lb-elem--feuillage { background:rgba(67,160,71,.14);   color:#7CB87E; }
.lb-admin-btn {
  display:inline-flex; align-items:center; gap:5px; margin-top:16px;
  color:rgba(255,255,255,.28); font-family:var(--sans); font-size:.67rem;
  text-decoration:none; padding:4px 9px; border-radius:6px;
  border:1px solid rgba(255,255,255,.1); transition:color .15s, border-color .15s;
}
.lb-admin-btn:hover { color:rgba(255,255,255,.65); border-color:rgba(255,255,255,.28); }
.lb-skel-line { background:rgba(255,255,255,.07); border-radius:5px; animation:lb-shimmer 1.5s ease-in-out infinite alternate; }
@keyframes lb-shimmer { from{opacity:.5} to{opacity:1} }
.lb-siblings { flex-shrink:0; border-top:1px solid rgba(255,255,255,.07); padding:12px 16px 14px; background:#161616; }
.lb-siblings-lbl { color:rgba(255,255,255,.35); font-size:.61rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; margin-bottom:9px; }
.lb-siblings-strip { display:flex; gap:7px; overflow-x:auto; scrollbar-width:thin; scrollbar-color:rgba(255,255,255,.12) transparent; }
.lb-siblings-strip::-webkit-scrollbar { height:3px; }
.lb-siblings-strip::-webkit-scrollbar-thumb { background:rgba(255,255,255,.15); border-radius:2px; }
.lb-sib-thumb {
  width:58px; height:58px; object-fit:cover; border-radius:7px;
  cursor:pointer; flex-shrink:0;
  border:2px solid transparent; transition:border-color .2s, transform .18s; opacity:.8;
}
.lb-sib-thumb:hover { border-color:var(--rose); opacity:1; }
@media (max-width:860px) {
  .lb-modal { flex-direction:column; border-radius:14px 14px 0 0; align-self:flex-end; height:95vh; max-height:95vh; }
  .lb-img-col  { flex:0 0 44vh; }
  .lb-img-wrap { padding:16px 50px 16px; }
  .lb-main-img { max-height:calc(44vh - 32px); }
  .lb-main-video { max-height:calc(44vh - 32px); }
  .lb-arr  { width:38px; height:38px; }
  .lb-panel { flex:1; border-left:none; border-top:1px solid rgba(255,255,255,.07); }
}

/* ── Vidéos : preview autoplay sur tuile + lecture dans lightbox ────── */
.gi.gi-video, .rm-photo-thumb.gi-video { position: relative; }
.gi .gi-play, .rm-photo-thumb .gi-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: .92;
  transition: opacity .15s, transform .15s;
}
.gi.gi-video:hover .gi-play, .rm-photo-thumb.gi-video:hover .gi-play {
  opacity: 1; transform: scale(1.08);
}
.gi-vid-preview {
  display: none;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.lb-main-video {
  max-width: 100%;
  max-height: calc(92vh - 40px);
  object-fit: contain;
  border-radius: 6px;
  display: block;
  background: #000;
}

/* --------------------------------------------------------------------------
   BLOG — Liste & Article
   -------------------------------------------------------------------------- */

/* Hero blog */
.blog-hero {
  padding: 32px 0 var(--ps);
  background: var(--fond);
  position: relative;
  overflow: hidden;
}

/* Grille de cartes */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--bordure);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.blog-card:hover {
  box-shadow: 0 12px 36px rgba(212,82,122,.1);
  transform: translateY(-4px);
}

.blog-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 3/2; }
.blog-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-card-img-wrap:hover .blog-card-img { transform: scale(1.04); }
.blog-card-placeholder {
  width: 100%; height: 100%;
  background: var(--fond-alt);
  display: flex; align-items: center; justify-content: center;
}

.blog-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  display: inline-block;
  background: var(--rose-pale);
  color: var(--rose);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.blog-tag--sm { font-size: .65rem; padding: 3px 10px; }

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--texte);
  margin-bottom: 10px;
}
.blog-card-title a { color: inherit; transition: color .2s; }
.blog-card-title a:hover { color: var(--rose); }

.blog-card-excerpt {
  font-size: .84rem;
  color: var(--texte-2);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bordure);
  padding-top: 14px;
  margin-top: auto;
}

.blog-card-date {
  font-size: .74rem;
  color: var(--texte-2);
}

.blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--rose);
  transition: gap .2s;
}
.blog-card-more:hover { gap: 8px; }

/* Pagination */
.blog-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

/* ── Article individuel ── */
.article-header {
  padding: calc(var(--ps) + 20px) 0 48px;
  background: var(--fond);
}
.article-header-inner {
  max-width: 760px;
}
.article-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--texte);
  margin-bottom: 18px;
}
.article-excerpt {
  font-size: 1.05rem;
  color: var(--texte-2);
  line-height: 1.82;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-style: italic;
}
.article-meta { display: flex; align-items: center; gap: 14px; }
.article-author { display: flex; align-items: center; gap: 12px; }
.article-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
}
.article-author-name { display: block; font-size: .84rem; font-weight: 700; color: var(--texte); }
.article-date { display: block; font-size: .75rem; color: var(--texte-2); margin-top: 2px; }

.article-cover { margin: 0 auto 56px; }
.article-cover-img {
  width: 100%;
  border-radius: 20px;
  max-height: 480px;
  object-fit: cover;
}

/* Layout 2 colonnes article + sidebar */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  padding-bottom: var(--ps);
}

/* Prose — contenu Markdown */
.article-content {
  font-size: 1rem;
  line-height: 1.88;
  color: var(--texte);
}
.article-content h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--texte);
  margin: 40px 0 16px;
}
.article-content h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--rose);
  margin: 28px 0 10px;
}
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol {
  margin: 0 0 20px 22px;
}
.article-content li { margin-bottom: 6px; }
.article-content strong { font-weight: 700; color: var(--texte); }
.article-content em { font-style: italic; }
.article-content a { color: var(--rose); text-decoration: underline; }
.article-content a:hover { color: var(--rose-hover); }
.article-content blockquote {
  border-left: 3px solid var(--rose-doux);
  padding-left: 20px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--texte-2);
}
.article-content img {
  border-radius: 14px;
  margin: 28px 0;
  width: 100%;
}

/* Sidebar */
.article-sidebar { position: sticky; top: 100px; }
.aside-block {
  background: #fff;
  border: 1px solid var(--bordure);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 20px;
}
.aside-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--texte);
  margin-bottom: 12px;
}
.aside-txt { font-size: .83rem; color: var(--texte-2); line-height: 1.7; }
.aside-author { text-align: center; }
.aside-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
  margin: 0 auto;
}
.aside-cta { background: var(--rose-tres-pale); border-color: var(--rose-pale); }
.article-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* Responsive blog */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Spinner galerie — utilisé par partials/simple-gallery.html.twig */
@keyframes gal-spin { to { transform: rotate(360deg); } }
